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.8
Browse files Browse the repository at this point in the history
- Bumped Jackson dependency to version 2.9.10.1 which has patched
  CVE-2019-16942
  • Loading branch information
emlun committed Nov 6, 2019
2 parents 4a6ab18 + 081e4d1 commit 825fb18
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 13 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
language: java
jdk:
- openjdk8
- oraclejdk8
after_success:
- ./gradlew coveralls

Expand Down
5 changes: 5 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
== Version 0.19.8 ==

* Bumped Jackson dependency to version 2.9.10.1 which has patched CVE-2019-16942


== Version 0.19.7 ==

* Bumped Jackson dependency to version 2.9.10 which has patched CVE-2019-16335, CVE-2019-14540
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.7</version>
<version>0.19.8</version>
</dependency>

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

=== 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.7'
version = '0.19.8'

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.7</version>
<version>0.19.8</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.7</version>
<version>0.19.8</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.7</version>
<version>0.19.8</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.10'],
[group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version:'2.9.10.1'],
)

}
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.7</version>
<version>0.19.8</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.10</version>
<version>2.9.10.1</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.7</version>
<version>0.19.8</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.7</version>
<version>0.19.8</version>
</dependency>
<dependency>
<groupId>com.yubico</groupId>
<artifactId>u2flib-server-attestation</artifactId>
<version>0.19.7</version>
<version>0.19.8</version>
</dependency>
<dependency>
<groupId>io.dropwizard</groupId>
Expand Down

0 comments on commit 825fb18

Please sign in to comment.