Skip to content
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

RMB-504: Jackson-* version 2.10.0, fixes jackson-databind security. #549

Merged
merged 2 commits into from
Nov 5, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 17 additions & 8 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -79,17 +79,26 @@
<type>pom</type>
<scope>import</scope>
</dependency>
<!-- jackson security update because of jackson-databind:
https://issues.folio.org/browse/FOLIO-2341
https://issues.folio.org/browse/RMB-504
TODO: Remove these jackson dependencies when vertx-stack-depchain
contains jackson-databind >= 2.10.0
-->
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>2.10.0</version>
</dependency>
<dependency>
<!-- Security update:
https://issues.folio.org/browse/FOLIO-1682
https://issues.folio.org/browse/RMB-315
https://issues.folio.org/browse/RMB-377
https://issues.folio.org/browse/RMB-477
TODO: Remove this jackson-databind dependency when vertx-stack-depchain
contains jackson-databind >= 2.9.10 -->
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.9.10</version>
<version>2.10.0</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>2.10.0</version>
</dependency>
<dependency>
<groupId>javax.el</groupId>
Expand Down