-
Notifications
You must be signed in to change notification settings - Fork 95
Upgrade jackson to 2.9.5 #713
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 15 commits
9a7fa90
0559a9f
90433a2
899387c
3ab55e5
3b43cab
5187ec5
559514b
39014b4
16dda72
0ae20b8
6e4a688
88a34bd
a99404b
202eef6
8ddfb85
0031ca6
c2c5aa1
aa8b20f
d8a9527
8dd61ef
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -108,7 +108,6 @@ public static ObjectMapper newCborServerObjectMapper() { | |
public static ObjectMapper withDefaultModules(ObjectMapper mapper) { | ||
return mapper | ||
.registerModule(new GuavaModule()) | ||
.registerModule(new ShimJdk7Module()) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If this is the only piece of non-test code that was changed then in theory if people hit sad times with the new jackson, they could conceivably force back to a lower version (and re-add this) right? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. So for this code, there are two arguments:
|
||
.registerModule(new Jdk8Module().configureAbsentsAsNulls(true)) | ||
.registerModule(new AfterburnerModule()) | ||
.registerModule(new JavaTimeModule()) | ||
|
This file was deleted.
This file was deleted.
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
in 2.8 or 2.9 a lot of this stuff got renamed, no? specifically, why don't we have to update
extras/jackson-support/build.gradle
to reflect the new maven coordinates of the Guava and Java8 data formats?