Skip to content

Commit

Permalink
* Update to latest version of the libs (#125)
Browse files Browse the repository at this point in the history
Update SDK and versions
  • Loading branch information
ag-ramachandran authored Aug 7, 2024
1 parent a6d11c2 commit d92d6ef
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 76 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ Therefore the connector supports "At least once" delivery guarantees.

- There are some core configs that need to be set at the Kafka connect worker level. Some of these are security configs
and the (consumer) override policy. These for e.g. need to be baked into
the [Docker image](Readme.md#10-distributed-deployment-details) covered further on in this document-
the [Docker image](#11-distributed-deployment-details) covered further on in this document-

### 4.1. Confluent Cloud

Expand Down Expand Up @@ -714,7 +714,7 @@ then launch the copy tasks.
<hr>

For information about what changes are included in each release, please see
the [Release History](README.md#16-release-history) section of this document.
the [Release History](README.md#17-release-history) section of this document.

## 17. Release History

Expand Down Expand Up @@ -746,7 +746,8 @@ the [Release History](README.md#16-release-history) section of this document.
| 4.0.7 | 2024-03-19 | <ul><li>Fix vulnerability CVE-2023-52428 and upgrade Kusto SDK libs</li></ul> |
| 4.0.8 | 2024-04-22 | <ul><li>Fix vulnerability CVE-2024-29025 by upgrading io.netty</li></ul> |
| 4.0.9 | 2024-04-22 | <ul><li>Fix vulnerability CVE-2024-29025 by upgrading io.netty referenced indirectly</li></ul> |
| 4.0.10 | 2024-06-25 | <ul><li>Fix vulnerability CVE-2024-35255 by upgrading azure libs referenced indirectly & update Java SDK</li></ul> |
| 4.0.10 | 2024-06-25 | <ul><li>Fix vulnerability CVE-2024-35255 by upgrading azure libs referenced indirectly & update Java SDK</li></ul> |
| 4.0.11 | 2024-08-07 | <ul><li>Upgrade SDK dependencies</li></ul> |


## 17. Contributing
Expand Down
96 changes: 23 additions & 73 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,38 +8,30 @@
<artifactId>kafka-sink-azure-kusto</artifactId>
<packaging>jar</packaging>
<description>A Kafka Connect plugin for Azure Data Explorer (Kusto) Database</description>
<version>4.0.10</version>
<version>4.0.11</version>
<properties>
<avro.random.generator.version>0.4.1</avro.random.generator.version>
<awaitility.version>4.2.0</awaitility.version>
<azure.core.version>1.49.1</azure.core.version>
<azure.core.netty.version>1.15.1</azure.core.netty.version>
<azure.identity.version>1.13.0</azure.identity.version>
<commoncodec.version>1.16.0</commoncodec.version>
<commonio.version>2.13.0</commonio.version>
<dependency-check-maven.version>9.0.10</dependency-check-maven.version>
<az.core.version>1.51.0</az.core.version>
<az.identity.version>1.13.2</az.identity.version>
<az.netty.version>1.15.3</az.netty.version>
<commoncodec.version>1.17.1</commoncodec.version>
<commonio.version>2.16.1</commonio.version>
<dependency-check-maven.version>10.0.2</dependency-check-maven.version>
<formatter.version>2.20.0</formatter.version>
<impsort.version>1.6.2</impsort.version>
<jackson.version>2.15.2</jackson.version>
<java.release.version>1.8</java.release.version>
<jsonassert.version>1.5.1</jsonassert.version>
<!-- Added to override vulnerable deps -->
<jsonsmart.version>2.4.10</jsonsmart.version>
<junit.version>5.10.0</junit.version>
<kafka.connect.avro.converter.version>7.6.0</kafka.connect.avro.converter.version>
<kafka.version>3.5.1</kafka.version>
<kusto.sdk.version>5.1.0</kusto.sdk.version>
<msal4j.version>1.15.1</msal4j.version>
<kafka.connect.avro.converter.version>7.7.0</kafka.connect.avro.converter.version>
<kafka.version>3.8.0</kafka.version>
<kusto.sdk.version>5.1.1</kusto.sdk.version>
<mockito.version>4.11.0</mockito.version>
<mvn.assembly.plugin.version>3.2.0</mvn.assembly.plugin.version>
<mvn.compiler.plugin.version>3.11.0</mvn.compiler.plugin.version>
<mvn.failsafe.plugin.version>3.0.0</mvn.failsafe.plugin.version>
<mvn.surefire.plugin.version>3.0.0</mvn.surefire.plugin.version>
<mockito.version>4.11.0</mockito.version>
<!-- Added to override vulnerable deps -->
<netty.version>4.1.110.Final</netty.version>
<nimbusjose.jwt.version>9.31</nimbusjose.jwt.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<snappy.version>1.1.10.4</snappy.version>
<testcontainer.version>1.18.3</testcontainer.version>
</properties>
<build>
Expand Down Expand Up @@ -204,29 +196,13 @@
<artifactId>kusto-data</artifactId>
<version>${kusto.sdk.version}</version>
<exclusions>
<exclusion>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</exclusion>
<exclusion>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
</exclusion>
<exclusion>
<groupId>net.minidev</groupId>
<artifactId>json-smart</artifactId>
</exclusion>
<exclusion>
<groupId>com.azure</groupId>
<artifactId>azure-core</artifactId>
</exclusion>
<exclusion>
<groupId>com.azure</groupId>
<artifactId>azure-identity</artifactId>
</exclusion>
<exclusion>
<groupId>com.microsoft.azure</groupId>
<artifactId>msal4j</artifactId>
<groupId>com.azure</groupId>
<artifactId>azure-core</artifactId>
</exclusion>
<exclusion>
<groupId>com.azure</groupId>
Expand All @@ -235,49 +211,39 @@
</exclusions>
</dependency>
<dependency>
<groupId>com.microsoft.azure</groupId>
<artifactId>msal4j</artifactId>
<version>${msal4j.version}</version>
<groupId>com.azure</groupId>
<artifactId>azure-identity</artifactId>
<version>${az.identity.version}</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-core</artifactId>
<version>${azure.core.version}</version>
<version>${az.core.version}</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-identity</artifactId>
<version>${azure.identity.version}</version>
<artifactId>azure-core-http-netty</artifactId>
<version>${az.netty.version}</version>
</dependency>
<dependency>
<groupId>com.microsoft.azure.kusto</groupId>
<artifactId>kusto-ingest</artifactId>
<version>${kusto.sdk.version}</version>
<exclusions>
<exclusion>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<groupId>com.azure</groupId>
<artifactId>azure-identity</artifactId>
</exclusion>
<exclusion>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<groupId>com.azure</groupId>
<artifactId>azure-core</artifactId>
</exclusion>
<exclusion>
<groupId>com.azure</groupId>
<artifactId>azure-core-http-netty</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-core-http-netty</artifactId>
<version>${azure.core.netty.version}</version>
</dependency>
<dependency>
<groupId>net.minidev</groupId>
<artifactId>json-smart</artifactId>
<version>2.4.11</version>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
Expand All @@ -288,22 +254,6 @@
<artifactId>commons-io</artifactId>
<version>${commonio.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${jackson.version}</version>
<exclusions>
<exclusion>
<groupId>org.xerial.snappy</groupId>
<artifactId>snappy-java</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.xerial.snappy</groupId>
<artifactId>snappy-java</artifactId>
<version>${snappy.version}</version>
</dependency>
<!-- Provided scopes -->
<dependency>
<groupId>org.apache.kafka</groupId>
Expand Down

0 comments on commit d92d6ef

Please sign in to comment.