Skip to content

Commit

Permalink
Update Jackson to 2.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
robotdan committed Oct 17, 2019
1 parent ee8ea11 commit a284deb
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 8 deletions.
4 changes: 4 additions & 0 deletions CHANGES
@@ -1,6 +1,10 @@
FusionAuth JWT Changes


Changes in 3.1.4

* Upgraded Jackson Core, Databind and Annotations to 2.10.0.

Changes in 3.1.3

* Upgraded Jackson Databind to 2.9.9.2. This upgrade addresses CVE-2019-14379, CVE-2019-14439 and CVE-2019-12814.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -31,7 +31,7 @@ We are very interested in compensating anyone that can identify a security relat
<dependency>
<groupId>io.fusionauth</groupId>
<artifactId>fusionauth-jwt</artifactId>
<version>3.1.3</version>
<version>3.1.4</version>
</dependency>
```

Expand Down
6 changes: 3 additions & 3 deletions build.savant
Expand Up @@ -15,9 +15,9 @@
*/

savantVersion = "1.0.0"
jacksonVersion = "2.9.9"
jacksonVersion = "2.10.0"

project(group: "io.fusionauth", name: "fusionauth-jwt", version: "3.1.3", licenses: ["ApacheV2_0"]) {
project(group: "io.fusionauth", name: "fusionauth-jwt", version: "3.1.4", licenses: ["ApacheV2_0"]) {

workflow {
standard()
Expand All @@ -30,7 +30,7 @@ project(group: "io.fusionauth", name: "fusionauth-jwt", version: "3.1.3", licens
dependencies {
group(name: "compile") {
dependency(id: "com.fasterxml.jackson.core:jackson-core:${jacksonVersion}")
dependency(id: "com.fasterxml.jackson.core:jackson-databind:2.9.11+2.9.9.2")
dependency(id: "com.fasterxml.jackson.core:jackson-databind:${jacksonVersion}")
dependency(id: "com.fasterxml.jackson.core:jackson-annotations:${jacksonVersion}")
}
group(name: "test-compile", export: false) {
Expand Down
8 changes: 4 additions & 4 deletions pom.xml
Expand Up @@ -6,7 +6,7 @@

<groupId>io.fusionauth</groupId>
<artifactId>fusionauth-jwt</artifactId>
<version>3.1.3</version>
<version>3.1.4</version>
<packaging>jar</packaging>

<name>FusionAuth JWT</name>
Expand Down Expand Up @@ -60,17 +60,17 @@
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>2.9.9</version>
<version>2.10.0</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.9.9.2</version>
<version>2.10.0</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>2.9.9</version>
<version>2.10.0</version>
</dependency>

<dependency>
Expand Down

0 comments on commit a284deb

Please sign in to comment.