Replies: 3 comments 4 replies
-
Hello, I would like to ask please, would adding this:
regards |
Beta Was this translation helpful? Give feedback.
-
I think the advice contains typo. The word |
Beta Was this translation helpful? Give feedback.
-
We just came across Just to check Play's policy on Jackson updates, Play can only make 'patch' version upgrades on Jackson while maintaining the same Play 'major.minor' release version, is that right? So the first version of Play that could contain Jackson 2.15 would be Play 3.1, given that Play is on v3.0.5 (and Jackson 2.14.3) at the moment? Related PRs (with some challenges due to failing tests): |
Beta Was this translation helpful? Give feedback.
-
To fix CVE-2020-36518 in your Play 2.8 application you need to upgrade to either latest Jackson 2.12.x or 2.13.x. Play 2.8 uses older Jackson 2.11, but unfortunately the Jackson developers won't backport the fix to the 2.11.x branch.
We don't plan to upgrade Jackson 2.11.x in Play 2.8.x as of now, since that might break existing Play applications.
Make sure to thoroughly test your application before putting it into production with an upgraded major Jackson version!
To upgrade Jackson you have to add this to your
build.sbt
:If you now run
sbt dependencyTree
orshow runtime:fullClasspat
you should see all the Jackson versions should be upgraded.Also see:
main
branch)main
branch)Beta Was this translation helpful? Give feedback.
All reactions