Skip to content

Commit 5ff0865

Browse files
authored
Merge pull request #19 from GovTechSG/development
Fixed CVE-2019-14439 , CVE-2019-14479
2 parents ff73489 + 442b396 commit 5ff0865

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Change Log
22

3+
### V1.3.4-SNAPSHOT
4+
5+
- Fixed vulnerablity CVE-2019-14379 and CVE-2019-14439
6+
37
### V1.3.3-SNAPSHOT
48

59
- Set TravisCI build dist to Trusty

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44
id 'com.github.kt3k.coveralls' version '2.6.3'
55
}
66

7-
version '1.3.3-SNAPSHOT'
7+
version '1.3.4-SNAPSHOT'
88

99
tasks.withType(JavaCompile) {
1010
options.encoding = "UTF-8"
@@ -18,7 +18,7 @@ dependencies {
1818
//compile group: 'org.apache.commons', name: 'commons-collections4', version: '4.1'
1919
compile group: 'commons-lang', name: 'commons-lang', version: '2.4'
2020
compile group: 'org.slf4j', name: 'slf4j-api', version: '1.7.25'
21-
compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.9.9.1'
21+
compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.9.9.2'
2222
compile group: 'com.googlecode.json-simple', name: 'json-simple', version: '1.1.1'
2323
compile group: 'org.bouncycastle', name: 'bcpkix-jdk15on', version: '1.60'
2424
testCompile group: 'org.slf4j', name: 'slf4j-log4j12', version: '1.7.25'

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<modelVersion>4.0.0</modelVersion>
33
<groupId>com.api.util</groupId>
44
<artifactId>ApiSecurity</artifactId>
5-
<version>1.3.3-SNAPSHOT</version>
5+
<version>1.3.4-SNAPSHOT</version>
66
<build>
77
<plugins>
88
<plugin>
@@ -90,7 +90,7 @@
9090
<dependency>
9191
<groupId>com.fasterxml.jackson.core</groupId>
9292
<artifactId>jackson-databind</artifactId>
93-
<version>2.9.9.1</version>
93+
<version>2.9.9.2</version>
9494
</dependency>
9595
<dependency>
9696
<groupId>com.googlecode.json-simple</groupId>

0 commit comments

Comments
 (0)