Skip to content

Commit

Permalink
3rdparty: Bump jackson to 2.11.0
Browse files Browse the repository at this point in the history
Problem / Solution / Result

There's a new version of jackson, let's update to the new version.

JIRA Issues: CSL-9562, CSL-9723

Differential Revision: https://phabricator.twitter.biz/D457496
  • Loading branch information
mosesn authored and jenkins committed Apr 29, 2020
1 parent 9eae50d commit 82270a8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ New Features
~~~~~~~~~~~~
* util-tunable: ConfigurationLinter accepts a relative path. ``PHAB_ID=D468528``

Runtime Behavior Changes
~~~~~~~~~~~~~~~~~~~~~~~~

* util: Bump jackson version to 2.11.0. ``PHAB_ID=D457496``

20.4.0
------

Expand Down
7 changes: 3 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@ val zkDependency = "org.apache.zookeeper" % "zookeeper" % zkVersion excludeAll (
ExclusionRule("javax.jms", "jms")
)
val slf4jVersion = "1.7.30"
val jacksonVersion = "2.9.10"
val jacksonDatabindVersion = "2.9.10.1"
val jacksonVersion = "2.11.0"

val guavaLib = "com.google.guava" % "guava" % "25.1-jre"
val caffeineLib = "com.github.ben-manes.caffeine" % "caffeine" % "2.8.0"
Expand Down Expand Up @@ -481,7 +480,7 @@ lazy val utilThrift = Project(
"org.apache.thrift" % "libthrift" % "0.10.0",
slf4jApi % "provided",
"com.fasterxml.jackson.core" % "jackson-core" % jacksonVersion,
"com.fasterxml.jackson.core" % "jackson-databind" % jacksonDatabindVersion
"com.fasterxml.jackson.core" % "jackson-databind" % jacksonVersion
)
).dependsOn(utilCodec)

Expand All @@ -494,7 +493,7 @@ lazy val utilTunable = Project(
name := "util-tunable",
libraryDependencies ++= Seq(
"com.fasterxml.jackson.core" % "jackson-core" % jacksonVersion,
"com.fasterxml.jackson.core" % "jackson-databind" % jacksonDatabindVersion,
"com.fasterxml.jackson.core" % "jackson-databind" % jacksonVersion,
"com.fasterxml.jackson.module" %% "jackson-module-scala" % jacksonVersion exclude ("com.google.guava", "guava")
)
).dependsOn(utilApp, utilCore)
Expand Down

0 comments on commit 82270a8

Please sign in to comment.