We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ef7fa6 commit e3d25c2Copy full SHA for e3d25c2
core/src/main/java/com/arangodb/internal/serde/SerdeUtils.java
@@ -49,7 +49,7 @@ static void checkSupportedJacksonVersion() {
49
).forEach(version -> {
50
int major = version.getMajorVersion();
51
int minor = version.getMinorVersion();
52
- if (major != 2 || minor < 10 || minor > 17) {
+ if (major != 2 || minor < 10 || minor > 18) {
53
LOGGER.warn("Unsupported Jackson version: {}", version);
54
}
55
});
0 commit comments