This is an automated email from the ASF dual-hosted git repository.

ntimofeev pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cayenne.git


The following commit(s) were added to refs/heads/master by this push:
     new f5632b8a7 CAY-2865 Upgrade test dependencies
f5632b8a7 is described below

commit f5632b8a797ab6fddeeeea86c3dc592b2fa7757e
Author: Nikita Timofeev <[email protected]>
AuthorDate: Mon Aug 5 15:55:57 2024 +0400

    CAY-2865 Upgrade test dependencies
---
 RELEASE-NOTES.txt      |  1 +
 cayenne-dbsync/pom.xml |  5 +++++
 cayenne-jcache/pom.xml |  5 +++++
 cayenne/pom.xml        |  5 +++++
 pom.xml                | 10 +++++++++-
 5 files changed, 25 insertions(+), 1 deletion(-)

diff --git a/RELEASE-NOTES.txt b/RELEASE-NOTES.txt
index b8bd3151b..8a20d9d4f 100644
--- a/RELEASE-NOTES.txt
+++ b/RELEASE-NOTES.txt
@@ -75,6 +75,7 @@ CAY-2856 Upgrade Gradle to 8.8
 CAY-2857 Java 22 support
 CAY-2858 Redesign Collection and Map Property API
 CAY-2862 Cleanup and upgrade Maven plugins dependencies
+CAY-2865 Upgrade test dependencies
 
 Bug Fixes:
 
diff --git a/cayenne-dbsync/pom.xml b/cayenne-dbsync/pom.xml
index ff07d6e4d..2b35252ad 100644
--- a/cayenne-dbsync/pom.xml
+++ b/cayenne-dbsync/pom.xml
@@ -79,6 +79,11 @@
                        <artifactId>testcontainers</artifactId>
                        <scope>test</scope>
                </dependency>
+               <dependency>
+                       <groupId>org.apache.commons</groupId>
+                       <artifactId>commons-compress</artifactId>
+                       <scope>test</scope>
+               </dependency>
                <dependency>
                        <groupId>org.testcontainers</groupId>
                        <artifactId>mysql</artifactId>
diff --git a/cayenne-jcache/pom.xml b/cayenne-jcache/pom.xml
index 494be8290..f2a1be388 100644
--- a/cayenne-jcache/pom.xml
+++ b/cayenne-jcache/pom.xml
@@ -124,6 +124,11 @@
             <artifactId>testcontainers</artifactId>
             <scope>test</scope>
         </dependency>
+        <dependency>
+            <groupId>org.apache.commons</groupId>
+            <artifactId>commons-compress</artifactId>
+            <scope>test</scope>
+        </dependency>
         <dependency>
             <groupId>org.testcontainers</groupId>
             <artifactId>mysql</artifactId>
diff --git a/cayenne/pom.xml b/cayenne/pom.xml
index 1f39c8e65..f230492f4 100644
--- a/cayenne/pom.xml
+++ b/cayenne/pom.xml
@@ -105,6 +105,11 @@
                        <artifactId>testcontainers</artifactId>
                        <scope>test</scope>
                </dependency>
+               <dependency>
+                       <groupId>org.apache.commons</groupId>
+                       <artifactId>commons-compress</artifactId>
+                       <scope>test</scope>
+               </dependency>
                <dependency>
                        <groupId>org.testcontainers</groupId>
                        <artifactId>mysql</artifactId>
diff --git a/pom.xml b/pom.xml
index ff8e2d9b0..ba2cfdf5c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -39,7 +39,7 @@
                
<project.build.datetime>${maven.build.timestamp}</project.build.datetime>
                <slf4j.version>1.7.36</slf4j.version>
                <ant.version>1.10.12</ant.version>
-               <testcontainers.version>1.20.0</testcontainers.version>
+               <testcontainers.version>1.20.1</testcontainers.version>
 
                <maven.compiler.target>11</maven.compiler.target>
                <maven.compiler.source>11</maven.compiler.source>
@@ -422,6 +422,14 @@
                        <version>${slf4j.version}</version>
                                <scope>test</scope>
                        </dependency>
+                       <!-- This dependency update the one provided by the 
testcontainers,
+                                should be removed once testcontainers uses a 
version without active CVEs -->
+                       <dependency>
+                               <groupId>org.apache.commons</groupId>
+                               <artifactId>commons-compress</artifactId>
+                               <version>1.26.2</version>
+                               <scope>test</scope>
+                       </dependency>
                        <dependency>
                                <groupId>org.testcontainers</groupId>
                                <artifactId>testcontainers</artifactId>

Reply via email to