Skip to content

Commit 678b213

Browse files
* Fix Jackson vuln (#154)
Upgrade versions
1 parent 506d4b1 commit 678b213

File tree

1 file changed

+20
-1
lines changed

1 file changed

+20
-1
lines changed

pom.xml

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<artifactId>kafka-sink-azure-kusto</artifactId>
99
<packaging>jar</packaging>
1010
<description>A Kafka Connect plugin for Azure Data Explorer (Kusto) Database</description>
11-
<version>5.2.0</version>
11+
<version>5.2.1</version>
1212
<properties>
1313
<!-- Compile dependencies -->
1414
<az.core.version>1.57.0</az.core.version>
@@ -48,6 +48,7 @@
4848
<maven.shade.plugin.version>3.6.0</maven.shade.plugin.version>
4949
<kusto.shade.prefix>kusto_kafka_connector_shaded</kusto.shade.prefix>
5050
<!-- Netty version to resolve conflicts -->
51+
<jackson.version>2.21.1</jackson.version>
5152
<netty.version>4.1.131.Final</netty.version>
5253
</properties>
5354
<dependencyManagement>
@@ -572,8 +573,26 @@
572573
<groupId>com.azure</groupId>
573574
<artifactId>azure-identity</artifactId>
574575
</exclusion>
576+
<exclusion>
577+
<groupId>com.fasterxml.jackson.core</groupId>
578+
<artifactId>jackson-core</artifactId>
579+
</exclusion>
580+
<exclusion>
581+
<groupId>com.fasterxml.jackson.datatype</groupId>
582+
<artifactId>jackson-datatype-jsr310</artifactId>
583+
</exclusion>
575584
</exclusions>
576585
</dependency>
586+
<dependency>
587+
<groupId>com.fasterxml.jackson.core</groupId>
588+
<artifactId>jackson-core</artifactId>
589+
<version>${jackson.version}</version>
590+
</dependency>
591+
<dependency>
592+
<groupId>com.fasterxml.jackson.datatype</groupId>
593+
<artifactId>jackson-datatype-jsr310</artifactId>
594+
<version>${jackson.version}</version>
595+
</dependency>
577596
<dependency>
578597
<groupId>com.azure</groupId>
579598
<artifactId>azure-identity</artifactId>

0 commit comments

Comments
 (0)