Skip to content

Commit

Permalink
GEODE-10179: Bump jackson-databind to 2.13.2.1 (apache#7500)
Browse files Browse the repository at this point in the history
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.

This bump of jackson-databind from 2.13.2 to micropatch 2.13.2.1 is
a little clunkly and once 2.13.3 or 2.14.0 is available, this should
first be reverted...
  • Loading branch information
onichols-pivotal authored Mar 28, 2022
1 parent 5272cbb commit 41844a5
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 4 deletions.
7 changes: 6 additions & 1 deletion boms/geode-all-bom/src/test/resources/expected-pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -490,7 +490,12 @@
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.13.2</version>
<version>2.13.2.1</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson</groupId>
<artifactId>jackson-bom</artifactId>
<version>2.13.2.20220324</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ class DependencyConstraints implements Plugin<Project> {
deps.put("slf4j-api.version", "1.7.32")
deps.put("jboss-modules.version", "1.11.0.Final")
deps.put("jackson.version", "2.13.2")
deps.put("jackson.databind.version", "2.13.2.1")
deps.put("jackson.bom.version", "2.13.2.20220324")
deps.put("springshell.version", "1.2.0.RELEASE")
deps.put("springframework.version", "5.3.16")

Expand Down Expand Up @@ -185,9 +187,16 @@ class DependencyConstraints implements Plugin<Project> {
dependencySet(group: 'com.fasterxml.jackson.core', version: get('jackson.version')) {
entry('jackson-annotations')
entry('jackson-core')
}

dependencySet(group: 'com.fasterxml.jackson.core', version: get('jackson.databind.version')) {
entry('jackson-databind')
}

dependencySet(group: 'com.fasterxml.jackson', version: get('jackson.bom.version')) {
entry('jackson-bom')
}

dependencySet(group: 'com.fasterxml.jackson.datatype', version: get('jackson.version')) {
entry('jackson-datatype-joda')
entry('jackson-datatype-jsr310')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1007,7 +1007,7 @@ lib/httpcore-4.4.15.jar
lib/istack-commons-runtime-4.0.1.jar
lib/jackson-annotations-2.13.2.jar
lib/jackson-core-2.13.2.jar
lib/jackson-databind-2.13.2.jar
lib/jackson-databind-2.13.2.1.jar
lib/javax.activation-api-1.2.0.jar
lib/javax.mail-api-1.6.2.jar
lib/javax.resource-api-1.7.1.jar
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ httpcore-4.4.15.jar
istack-commons-runtime-4.0.1.jar
jackson-annotations-2.13.2.jar
jackson-core-2.13.2.jar
jackson-databind-2.13.2.jar
jackson-databind-2.13.2.1.jar
javax.activation-api-1.2.0.jar
javax.resource-api-1.7.1.jar
javax.servlet-api-3.1.0.jar
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ httpcore-4.4.15.jar
istack-commons-runtime-4.0.1.jar
jackson-annotations-2.13.2.jar
jackson-core-2.13.2.jar
jackson-databind-2.13.2.jar
jackson-databind-2.13.2.1.jar
javax.activation-api-1.2.0.jar
javax.resource-api-1.7.1.jar
javax.servlet-api-3.1.0.jar
Expand Down

0 comments on commit 41844a5

Please sign in to comment.