Is it compatible to upgrade version 2.12.7 to 2.13.5 #186
-
Previously used 2.12.7 in the project, but now I want to upgrade to 2.13.5! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Could you read up on Semver? https://semver.org/ Some people love to argue about whether projects follow semver exactly but the Jackson version numbering is at least inspired by semver. You can also read the release notes. E.g. https://github.com/FasterXML/jackson-databind/tree/2.16/release-notes You are mistaken if you think open source volunteers appreciate this sort of question. This is a free software with no warranties. There is an onus on the user to do due diligence for themselves. Maybe you could write some tests for your code so you would know if your code works when you upgrade. |
Beta Was this translation helpful? Give feedback.
-
I agree with @pjfanning. The only addition I'd say is that as per SemVer, the expectation is that code that works with 2.12.x, using Jackson as documented via its public API, should work with 2.13.x. +1 for considering the latest patch versions of 2.12 and 2.13. |
Beta Was this translation helpful? Give feedback.
Could you read up on Semver? https://semver.org/
Some people love to argue about whether projects follow semver exactly but the Jackson version numbering is at least inspired by semver.
You can also read the release notes. E.g. https://github.com/FasterXML/jackson-databind/tree/2.16/release-notes
You are mistaken if you think open source volunteers appreciate this sort of question. This is a free software with no warranties. There is an onus on the user to do due diligence for themselves. Maybe you could write some tests for your code so you would know if your code works when you upgrade.