Skip to content

Commit

Permalink
#80 update to version 1.5.2 - security fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
DarioBalinzo committed Oct 16, 2022
1 parent dc32470 commit 18db833
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 3 deletions.
19 changes: 17 additions & 2 deletions 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.1</version>
<version>1.5.2</version>

<licenses>
<license>
Expand All @@ -38,6 +38,11 @@
</licenses>

<dependencies>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>2.19.0</version>
</dependency>
<dependency>
<groupId>org.apache.kafka</groupId>
<artifactId>connect-api</artifactId>
Expand Down Expand Up @@ -93,7 +98,17 @@
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.13.2.1</version>
<version>2.14.0-rc1</version>
</dependency>
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
<version>1.32</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.5.13</version>
</dependency>
</dependencies>

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.0";
public static final String VERSION = "1.5.2";
}

0 comments on commit 18db833

Please sign in to comment.