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 e01a383 commit b7ff768Copy full SHA for b7ff768
core/src/main/java/com/arangodb/internal/serde/SerdeUtils.java
@@ -58,7 +58,7 @@ static void checkSupportedJacksonVersion() {
58
).forEach(version -> {
59
int major = version.getMajorVersion();
60
int minor = version.getMinorVersion();
61
- if (major != 2 || minor < 10 || minor > 18) {
+ if (major != 2 || minor < 10 || minor > 19) {
62
LOGGER.warn("Unsupported Jackson version: {}", version);
63
}
64
});
pom.xml
@@ -145,7 +145,7 @@
145
<dependency>
146
<groupId>com.arangodb</groupId>
147
<artifactId>jackson-dataformat-velocypack</artifactId>
148
- <version>4.6.0</version>
+ <version>4.6.1</version>
149
</dependency>
150
151
0 commit comments