Skip to content

Commit 7eb53b0

Browse files
GeBeaterOndraFiedler
authored andcommitted
update jackson-core/databind to mitigate CVE-2020-36518 vulnerability
1 parent 3fd56db commit 7eb53b0

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ The client is available in the [Maven Central Repository](https://mvnrepository.
1313
<dependency>
1414
<groupId>com.recombee</groupId>
1515
<artifactId>api-client</artifactId>
16-
<version>3.2.0</version>
16+
<version>3.2.1</version>
1717
</dependency>
1818
```
1919

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>com.recombee</groupId>
88
<artifactId>api-client</artifactId>
9-
<version>3.2.0</version>
9+
<version>3.2.1</version>
1010
<name>Recombee API Client</name>
1111
<description>A client library for easy use of the Recombee recommendation API</description>
1212
<url>http://recombee.com</url>
@@ -45,12 +45,12 @@
4545
<dependency>
4646
<groupId>com.fasterxml.jackson.core</groupId>
4747
<artifactId>jackson-core</artifactId>
48-
<version>2.12.1</version>
48+
<version>2.13.2</version>
4949
</dependency>
5050
<dependency>
5151
<groupId>com.fasterxml.jackson.core</groupId>
5252
<artifactId>jackson-databind</artifactId>
53-
<version>2.12.1</version>
53+
<version>2.13.2.2</version>
5454
</dependency>
5555
<dependency>
5656
<groupId>junit</groupId>

src/main/java/com/recombee/api_client/RecombeeClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ public class RecombeeClient {
9090

9191
final int BATCH_MAX_SIZE = 10000; //Maximal number of requests within one batch request
9292

93-
final String USER_AGENT = "recombee-java-api-client/3.2.0";
93+
final String USER_AGENT = "recombee-java-api-client/3.2.1";
9494

9595
private final OkHttpClient httpClient = new OkHttpClient();
9696

0 commit comments

Comments
 (0)