Upgrade Jackson-databind dependency#82
Upgrade Jackson-databind dependency#82lbalmaceda merged 1 commit intoauth0:masterfrom LuisSaybe:master
Conversation
|
Bumping the version will fix the NPE? I thought you also wanted to change that |
|
The NPE precisely occurs with protected StdDeserializer(JavaType valueType) {
_valueClass = valueType.getRawClass();
}2.9.2 code: protected StdDeserializer(JavaType valueType) {
// 26-Sep-2017, tatu: [databind#1764] need to add null-check back until 3.x
_valueClass = (valueType == null) ? Object.class : valueType.getRawClass();
}The NPE happened originally with my project because I had a transitive dependency of auth0 -> gradle's default conflict resolution strategy is
So because of this, my project was it forced auth0 to use This will naturally have an affect on transitive dependencies in other projects based on the above default conflict resolution strategy. It will fix the the NPE issue for those projects which have a transitive dependency of It's not necessary to change other code, unless a user decides to force |
|
That makes a lot of sense. Thanks for the details 👍 |
Upgrades jackson-databind to latest version
Fixes #78