Skip to content
This repository has been archived by the owner on Jul 6, 2022. It is now read-only.

Commit

Permalink
Version 0.19.7
Browse files Browse the repository at this point in the history
- Bumped Jackson dependency to version 2.9.10 which has patched
  CVE-2019-16335, CVE-2019-14540
  • Loading branch information
emlun committed Oct 8, 2019
2 parents b5d47a9 + 65074c3 commit 4a6ab18
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 12 deletions.
5 changes: 5 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
== Version 0.19.7 ==

* Bumped Jackson dependency to version 2.9.10 which has patched CVE-2019-16335, CVE-2019-14540


== Version 0.19.6 ==

* Bumped Jackson dependency to version 2.9.9.3 which fixes a regression in 2.9.9.2
Expand Down
4 changes: 2 additions & 2 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ Maven:
<dependency>
<groupId>com.yubico</groupId>
<artifactId>u2flib-server-core</artifactId>
<version>0.19.5</version>
<version>0.19.7</version>
</dependency>

Gradle:
[source, groovy]
repositories{ mavenCentral() }
dependencies {
compile 'com.yubico:u2flib-server-core:0.19.5'
compile 'com.yubico:u2flib-server-core:0.19.7'
}

=== Example Usage
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ allprojects {
}

group = 'com.yubico'
version = '0.19.5'
version = '0.19.7'

sourceCompatibility = 1.6
targetCompatibility = 1.6
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>com.yubico</groupId>
<artifactId>u2flib-server-parent</artifactId>
<packaging>pom</packaging>
<version>0.19.6</version>
<version>0.19.7</version>
<name>U2F parent</name>
<description>Java server-side library for U2F</description>
<properties>
Expand Down
4 changes: 2 additions & 2 deletions u2flib-server-attestation/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<artifactId>u2flib-server-parent</artifactId>
<groupId>com.yubico</groupId>
<version>0.19.6</version>
<version>0.19.7</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand All @@ -14,7 +14,7 @@
<dependency>
<groupId>com.yubico</groupId>
<artifactId>u2flib-server-core</artifactId>
<version>0.19.6</version>
<version>0.19.7</version>
</dependency>
</dependencies>

Expand Down
2 changes: 1 addition & 1 deletion u2flib-server-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ dependencies {
compile(
[group: 'org.bouncycastle', name: 'bcpkix-jdk15on', version:'1.54'],
[group: 'com.google.guava', name: 'guava', version:'19.0'],
[group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version:'2.9.9'],
[group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version:'2.9.10'],
)

}
4 changes: 2 additions & 2 deletions u2flib-server-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<artifactId>u2flib-server-parent</artifactId>
<groupId>com.yubico</groupId>
<version>0.19.6</version>
<version>0.19.7</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand All @@ -24,7 +24,7 @@
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.9.9.3</version>
<version>2.9.10</version>
</dependency>
</dependencies>
</project>
6 changes: 3 additions & 3 deletions u2flib-server-demo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>u2flib-server-parent</artifactId>
<groupId>com.yubico</groupId>
<version>0.19.6</version>
<version>0.19.7</version>
</parent>
<artifactId>u2flib-server-demo</artifactId>
<name>U2F demo</name>
Expand All @@ -14,12 +14,12 @@
<dependency>
<groupId>com.yubico</groupId>
<artifactId>u2flib-server-core</artifactId>
<version>0.19.6</version>
<version>0.19.7</version>
</dependency>
<dependency>
<groupId>com.yubico</groupId>
<artifactId>u2flib-server-attestation</artifactId>
<version>0.19.6</version>
<version>0.19.7</version>
</dependency>
<dependency>
<groupId>io.dropwizard</groupId>
Expand Down

0 comments on commit 4a6ab18

Please sign in to comment.