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

onichols pushed a commit to branch support/1.15
in repository https://gitbox.apache.org/repos/asf/geode.git


The following commit(s) were added to refs/heads/support/1.15 by this push:
     new c6ba6e806a GEODE-10275: Bump 3rd-party dependency versions
c6ba6e806a is described below

commit c6ba6e806a591d8981d9aaf93415b74621fb67bf
Author: Owen Nichols <[email protected]>
AuthorDate: Mon May 23 14:30:37 2022 -0700

    GEODE-10275: Bump 3rd-party dependency versions
    
    Geode endeavors to update to the latest version of 3rd-party
    dependencies on develop wherever possible.  Doing so increases the
    shelf life of releases and increases security and reliability.
    Doing so regularly makes the occasional hiccups this can cause easier
    to pinpoint and address.
    
    Dependency bumps in this batch:
    * Bump spring from 5.3.19 to 5.3.20
---
 .../src/test/resources/expected-pom.xml              | 20 ++++++++++----------
 .../gradle/plugins/DependencyConstraints.groovy      |  2 +-
 .../integrationTest/resources/assembly_content.txt   | 10 +++++-----
 .../resources/gfsh_dependency_classpath.txt          | 10 +++++-----
 .../resources/dependency_classpath.txt               | 10 +++++-----
 5 files changed, 26 insertions(+), 26 deletions(-)

diff --git a/boms/geode-all-bom/src/test/resources/expected-pom.xml 
b/boms/geode-all-bom/src/test/resources/expected-pom.xml
index 6aca5230e9..3907f31257 100644
--- a/boms/geode-all-bom/src/test/resources/expected-pom.xml
+++ b/boms/geode-all-bom/src/test/resources/expected-pom.xml
@@ -665,52 +665,52 @@
       <dependency>
         <groupId>org.springframework</groupId>
         <artifactId>spring-aspects</artifactId>
-        <version>5.3.19</version>
+        <version>5.3.20</version>
       </dependency>
       <dependency>
         <groupId>org.springframework</groupId>
         <artifactId>spring-beans</artifactId>
-        <version>5.3.19</version>
+        <version>5.3.20</version>
       </dependency>
       <dependency>
         <groupId>org.springframework</groupId>
         <artifactId>spring-context</artifactId>
-        <version>5.3.19</version>
+        <version>5.3.20</version>
       </dependency>
       <dependency>
         <groupId>org.springframework</groupId>
         <artifactId>spring-core</artifactId>
-        <version>5.3.19</version>
+        <version>5.3.20</version>
       </dependency>
       <dependency>
         <groupId>org.springframework</groupId>
         <artifactId>spring-expression</artifactId>
-        <version>5.3.19</version>
+        <version>5.3.20</version>
       </dependency>
       <dependency>
         <groupId>org.springframework</groupId>
         <artifactId>spring-oxm</artifactId>
-        <version>5.3.19</version>
+        <version>5.3.20</version>
       </dependency>
       <dependency>
         <groupId>org.springframework</groupId>
         <artifactId>spring-test</artifactId>
-        <version>5.3.19</version>
+        <version>5.3.20</version>
       </dependency>
       <dependency>
         <groupId>org.springframework</groupId>
         <artifactId>spring-tx</artifactId>
-        <version>5.3.19</version>
+        <version>5.3.20</version>
       </dependency>
       <dependency>
         <groupId>org.springframework</groupId>
         <artifactId>spring-web</artifactId>
-        <version>5.3.19</version>
+        <version>5.3.20</version>
       </dependency>
       <dependency>
         <groupId>org.springframework</groupId>
         <artifactId>spring-webmvc</artifactId>
-        <version>5.3.19</version>
+        <version>5.3.20</version>
       </dependency>
       <dependency>
         <groupId>org.springframework.boot</groupId>
diff --git 
a/build-tools/geode-dependency-management/src/main/groovy/org/apache/geode/gradle/plugins/DependencyConstraints.groovy
 
b/build-tools/geode-dependency-management/src/main/groovy/org/apache/geode/gradle/plugins/DependencyConstraints.groovy
index 9e0d3dc080..2bad136bd6 100644
--- 
a/build-tools/geode-dependency-management/src/main/groovy/org/apache/geode/gradle/plugins/DependencyConstraints.groovy
+++ 
b/build-tools/geode-dependency-management/src/main/groovy/org/apache/geode/gradle/plugins/DependencyConstraints.groovy
@@ -47,7 +47,7 @@ class DependencyConstraints {
     deps.put("jackson.version", "2.13.2")
     deps.put("jackson.databind.version", "2.13.2.2")
     deps.put("springshell.version", "1.2.0.RELEASE")
-    deps.put("springframework.version", "5.3.19")
+    deps.put("springframework.version", "5.3.20")
 
     // These version numbers are used in testing various versions of tomcat 
and are consumed explicitly
     // in will be called explicitly in the relevant extensions module, and 
respective configurations
diff --git a/geode-assembly/src/integrationTest/resources/assembly_content.txt 
b/geode-assembly/src/integrationTest/resources/assembly_content.txt
index a0497f4721..738e4cb73e 100644
--- a/geode-assembly/src/integrationTest/resources/assembly_content.txt
+++ b/geode-assembly/src/integrationTest/resources/assembly_content.txt
@@ -1055,12 +1055,12 @@ lib/shiro-event-1.9.0.jar
 lib/shiro-lang-1.9.0.jar
 lib/slf4j-api-1.7.32.jar
 lib/snappy-0.4.jar
-lib/spring-beans-5.3.19.jar
-lib/spring-context-5.3.19.jar
-lib/spring-core-5.3.19.jar
-lib/spring-jcl-5.3.19.jar
+lib/spring-beans-5.3.20.jar
+lib/spring-context-5.3.20.jar
+lib/spring-core-5.3.20.jar
+lib/spring-jcl-5.3.20.jar
 lib/spring-shell-1.2.0.RELEASE.jar
-lib/spring-web-5.3.19.jar
+lib/spring-web-5.3.20.jar
 lib/swagger-annotations-2.2.0.jar
 tools/Extensions/geode-web-0.0.0.war
 tools/Extensions/geode-web-api-0.0.0.war
diff --git 
a/geode-assembly/src/integrationTest/resources/gfsh_dependency_classpath.txt 
b/geode-assembly/src/integrationTest/resources/gfsh_dependency_classpath.txt
index 528fb98f8f..3c6af519ed 100644
--- a/geode-assembly/src/integrationTest/resources/gfsh_dependency_classpath.txt
+++ b/geode-assembly/src/integrationTest/resources/gfsh_dependency_classpath.txt
@@ -18,7 +18,7 @@ geode-common-0.0.0.jar
 geode-unsafe-0.0.0.jar
 geode-deployment-legacy-0.0.0.jar
 spring-shell-1.2.0.RELEASE.jar
-spring-web-5.3.19.jar
+spring-web-5.3.20.jar
 commons-lang3-3.12.0.jar
 rmiio-2.1.2.jar
 jackson-annotations-2.13.2.jar
@@ -31,8 +31,8 @@ log4j-core-2.17.2.jar
 log4j-jcl-2.17.2.jar
 log4j-jul-2.17.2.jar
 log4j-api-2.17.2.jar
-spring-context-5.3.19.jar
-spring-core-5.3.19.jar
+spring-context-5.3.20.jar
+spring-core-5.3.20.jar
 lucene-analyzers-phonetic-6.6.6.jar
 lucene-analyzers-common-6.6.6.jar
 lucene-queryparser-6.6.6.jar
@@ -74,11 +74,11 @@ shiro-event-1.9.0.jar
 shiro-crypto-core-1.9.0.jar
 shiro-lang-1.9.0.jar
 slf4j-api-1.7.32.jar
-spring-beans-5.3.19.jar
+spring-beans-5.3.20.jar
 javax.activation-api-1.2.0.jar
 jline-2.12.jar
 lucene-queries-6.6.6.jar
-spring-jcl-5.3.19.jar
+spring-jcl-5.3.20.jar
 HdrHistogram-2.1.12.jar
 LatencyUtils-2.0.3.jar
 javax.transaction-api-1.3.jar
diff --git 
a/geode-server-all/src/integrationTest/resources/dependency_classpath.txt 
b/geode-server-all/src/integrationTest/resources/dependency_classpath.txt
index 04e9e8bdf8..5c2f4c5264 100644
--- a/geode-server-all/src/integrationTest/resources/dependency_classpath.txt
+++ b/geode-server-all/src/integrationTest/resources/dependency_classpath.txt
@@ -1,11 +1,11 @@
-spring-web-5.3.19.jar
+spring-web-5.3.20.jar
 shiro-event-1.9.0.jar
 shiro-crypto-hash-1.9.0.jar
 shiro-crypto-cipher-1.9.0.jar
 shiro-config-core-1.9.0.jar
 commons-digester-2.1.jar
 commons-validator-1.7.jar
-spring-jcl-5.3.19.jar
+spring-jcl-5.3.20.jar
 commons-codec-1.15.jar
 classgraph-4.8.146.jar
 jackson-databind-2.13.2.2.jar
@@ -17,7 +17,7 @@ javax.resource-api-1.7.1.jar
 LatencyUtils-2.0.3.jar
 jline-2.12.jar
 jetty-servlet-9.4.46.v20220331.jar
-spring-core-5.3.19.jar
+spring-core-5.3.20.jar
 jetty-util-ajax-9.4.46.v20220331.jar
 geode-cq-0.0.0.jar
 geode-old-client-support-0.0.0.jar
@@ -25,7 +25,7 @@ javax.servlet-api-3.1.0.jar
 jgroups-3.6.14.Final.jar
 shiro-cache-1.9.0.jar
 httpcore-4.4.15.jar
-spring-beans-5.3.19.jar
+spring-beans-5.3.20.jar
 lucene-queries-6.6.6.jar
 shiro-core-1.9.0.jar
 HikariCP-4.0.3.jar
@@ -76,7 +76,7 @@ micrometer-core-1.9.0.jar
 shiro-config-ogdl-1.9.0.jar
 geode-log4j-0.0.0.jar
 lucene-analyzers-phonetic-6.6.6.jar
-spring-context-5.3.19.jar
+spring-context-5.3.20.jar
 jetty-security-9.4.46.v20220331.jar
 geode-logging-0.0.0.jar
 commons-io-2.11.0.jar

Reply via email to