diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 717945d7e5..2c064c62b3 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -30,6 +30,8 @@ Deprecations Runtime Behavior Changes ~~~~~~~~~~~~~~~~~~~~~~~~ +* util: Bump version of Jackson to 2.14.1. ``PHAB_ID=D1025778`` + * util-core: `Time.at`, `Time.toString`, and `Time.fromRss` now use `TimeFormatter` internally and thus have better performance and do not cause contention through synchronization. `toString` always uses `TimeFormatter` while `at` and `fromRss` only use it when run with Java 9 or later due to a diff --git a/build.sbt b/build.sbt index e483451629..b9abac63ea 100644 --- a/build.sbt +++ b/build.sbt @@ -5,7 +5,7 @@ Global / excludeLintKeys += scalacOptions // might be actually unused in util-do val releaseVersion = "22.10.0-SNAPSHOT" val slf4jVersion = "1.7.30" -val jacksonVersion = "2.13.4" +val jacksonVersion = "2.14.1" val json4sVersion = "4.0.3" val mockitoVersion = "3.3.3" val mockitoScalaVersion = "1.14.8"