Skip to content

Commit

Permalink
fix jackson vulnerability
Browse files Browse the repository at this point in the history
  • Loading branch information
DarioBalinzo committed Apr 22, 2023
1 parent 732b1c4 commit 34b4156
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

<groupId>com.github.dariobalinzo</groupId>
<artifactId>elastic-source-connect</artifactId>
<version>1.5.4</version>
<version>1.5.5</version>

<licenses>
<license>
Expand Down Expand Up @@ -100,6 +100,12 @@
<artifactId>jackson-databind</artifactId>
<version>2.12.7.1</version>
</dependency>
<!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.dataformat/jackson-dataformat-cbor -->
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-cbor</artifactId>
<version>2.14.2</version>
</dependency>
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/github/dariobalinzo/Version.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@
package com.github.dariobalinzo;

public class Version {
public static final String VERSION = "1.5.4";
public static final String VERSION = "1.5.5";
}

0 comments on commit 34b4156

Please sign in to comment.