Skip to content

Commit 18db833

Browse files
committed
#80 update to version 1.5.2 - security fixes
1 parent dc32470 commit 18db833

File tree

2 files changed

+18
-3
lines changed

2 files changed

+18
-3
lines changed

pom.xml

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
<groupId>com.github.dariobalinzo</groupId>
2929
<artifactId>elastic-source-connect</artifactId>
30-
<version>1.5.1</version>
30+
<version>1.5.2</version>
3131

3232
<licenses>
3333
<license>
@@ -38,6 +38,11 @@
3838
</licenses>
3939

4040
<dependencies>
41+
<dependency>
42+
<groupId>org.apache.logging.log4j</groupId>
43+
<artifactId>log4j-api</artifactId>
44+
<version>2.19.0</version>
45+
</dependency>
4146
<dependency>
4247
<groupId>org.apache.kafka</groupId>
4348
<artifactId>connect-api</artifactId>
@@ -93,7 +98,17 @@
9398
<dependency>
9499
<groupId>com.fasterxml.jackson.core</groupId>
95100
<artifactId>jackson-databind</artifactId>
96-
<version>2.13.2.1</version>
101+
<version>2.14.0-rc1</version>
102+
</dependency>
103+
<dependency>
104+
<groupId>org.yaml</groupId>
105+
<artifactId>snakeyaml</artifactId>
106+
<version>1.32</version>
107+
</dependency>
108+
<dependency>
109+
<groupId>org.apache.httpcomponents</groupId>
110+
<artifactId>httpclient</artifactId>
111+
<version>4.5.13</version>
97112
</dependency>
98113
</dependencies>
99114

src/main/java/com/github/dariobalinzo/Version.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@
1717
package com.github.dariobalinzo;
1818

1919
public class Version {
20-
public static final String VERSION = "1.5.0";
20+
public static final String VERSION = "1.5.2";
2121
}

0 commit comments

Comments
 (0)