Skip to content

Commit 7c404c5

Browse files
committed
Upgrade to Jackson 2.11.1
Jackson 2.9.x had and still gets a lot of CVEs because of how it handles deserialization of polymorphic types. This has been fixed in Jackson 2.10.x and 2.11.x, so upgrading will safe this project from (unnecessary) security alerts. * https://medium.com/@cowtowncoder/on-jackson-cves-dont-panic-here-is-what-you-need-to-know-54cd0d6e8062 * https://medium.com/@cowtowncoder/jackson-2-10-safe-default-typing-2d018f0ce2ba
1 parent 88de324 commit 7c404c5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,11 @@
4242
<dependency>
4343
<groupId>com.fasterxml.jackson.core</groupId>
4444
<artifactId>jackson-databind</artifactId>
45-
<version>2.9.10.4</version>
45+
<version>2.11.1</version>
4646
</dependency>
4747
<dependency>
4848
<groupId>com.google.code.findbugs</groupId>
4949
<artifactId>jsr305</artifactId>
5050
</dependency>
5151
</dependencies>
52-
</project>
52+
</project>

0 commit comments

Comments
 (0)