play-json icon indicating copy to clipboard operation
play-json copied to clipboard

jackson-core, jackson-databind 2.17.1 (was 2.14.3)

Open mkurz opened this issue 1 year ago • 1 comments

About this PR

📦 Updates

from 2.14.3 to 2.17.1

Usage

Please merge!

I'll automatically update this PR to resolve conflicts as long as you don't change it yourself.

If you'd like to skip this version, you can just close this PR. If you have any feedback, just mention me in the comments below.

Configure Scala Steward for your repository with a .scala-steward.conf file.

Have a fantastic day writing Scala!

🔍 Files still referring to the old version number

The following files still refer to the old version number (2.14.3). You might want to review and update them manually.

build.sbt
⚙ Adjust future updates

Add this to your .scala-steward.conf file to ignore future updates of this dependency:

updates.ignore = [ { groupId = "com.fasterxml.jackson.core" } ]

Or, add this to slow down future updates of this dependency:

dependencyOverrides = [{
  pullRequests = { frequency = "30 days" },
  dependency = { groupId = "com.fasterxml.jackson.core" }
}]
labels: library-update, early-semver-minor, semver-spec-minor, old-version-remains, commit-count:1

mkurz avatar Jun 27 '24 12:06 mkurz

https://github.com/playframework/play-json/pull/999 contains code to set the stream-read-constraints in Jackson and fixes the test issue by setting the Jackson max number size to unlimited. Play-JSON has its own check for number length so doesn't need Jackson to do it too. JSON Number parsing is something that can be exploited if users allow untrusted JSON inputs to be parsed.

See https://github.com/apache/pekko/pull/564 for the Pekko change to support the stream-read-constraints.

pjfanning avatar Jul 08 '24 11:07 pjfanning

Replaced by

  • #1072

mkurz avatar Jul 09 '25 22:07 mkurz