Skip to content

Commit

Permalink
jackson: Update to 2.9.10 (and jackson-databind to 2.9.10.1)
Browse files Browse the repository at this point in the history
Problem / Solution

We want to upgrade to the latest version of jackson that we can, yet
at this time upgrading to jackson 2.10 is problematic. Let's upgrade
instead to the latest 2.9 version - 2.9.10.1.

JIRA Issues: CSL-9183

Differential Revision: https://phabricator.twitter.biz/D410846
  • Loading branch information
ryanoneill authored and jenkins committed Dec 10, 2019
1 parent 90efe95 commit e333c83
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ Unreleased
Runtime Behavior Changes
~~~~~~~~~~~~~~~~~~~~~~~~

* finagle: Upgrade to jackson 2.9.10 and jackson-databind 2.9.10.1 ``PHAB_ID=D410846``

* finagle-core: Per-method metrics on MethodBuilder are now created lazily, so if you have
methods that you don't use, the associated metrics won't be exported. ``PHAB_ID=D400382``

Expand Down
5 changes: 3 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,11 @@ val netty4Http = "io.netty" % "netty-codec-http" % netty4Version
val netty4Http2 = "io.netty" % "netty-codec-http2" % netty4Version
val netty4StaticSsl = "io.netty" % "netty-tcnative-boringssl-static" % netty4StaticSslVersion
val opencensusVersion = "0.19.1"
val jacksonVersion = "2.9.9"
val jacksonVersion = "2.9.10"
val jacksonDatabindVersion = "2.9.10.1"
val jacksonLibs = Seq(
"com.fasterxml.jackson.core" % "jackson-core" % jacksonVersion,
"com.fasterxml.jackson.core" % "jackson-databind" % jacksonVersion,
"com.fasterxml.jackson.core" % "jackson-databind" % jacksonDatabindVersion,
"com.fasterxml.jackson.module" %% "jackson-module-scala" % jacksonVersion exclude("com.google.guava", "guava")
)
val thriftLibs = Seq(
Expand Down

0 comments on commit e333c83

Please sign in to comment.