Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/fix CVE netty #116

Merged
merged 4 commits into from
May 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -742,9 +742,10 @@ the [Release History](README.md#16-release-history) section of this document.
| 4.0.2 | 2023-06-28 | <ul><li>Upgrade Kusto Java SDK to 5.0.0</li><li>Fix vulnerabilities in libs</li></ul> |
| 4.0.3 | 2023-07-23 | <ul><li>Upgrade Kusto Java SDK to 5.0.1</li><li>Fix vulnerabilities in libs</li></ul> |
| 4.0.4 | 2023-09-27 | <ul><li>Upgrade Kusto Java SDK to 5.0.2</li><li>Fix vulnerabilities in snappy-java</li></ul> |
| 4.0.5 | 2023-10-27 | <ul><li>Fix vulnerabilities by upgrading io.netty </li></ul>
| 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.5 | 2023-10-27 | <ul><li>Fix vulnerabilities by upgrading io.netty </li></ul> |
| 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> |


## 17. Contributing
Expand Down
22 changes: 11 additions & 11 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<artifactId>kafka-sink-azure-kusto</artifactId>
<packaging>jar</packaging>
<description>A Kafka Connect plugin for Azure Data Explorer (Kusto) Database</description>
<version>4.0.8</version>
<version>4.0.9</version>
<properties>
<avro.random.generator.version>0.4.1</avro.random.generator.version>
<awaitility.version>4.2.0</awaitility.version>
Expand Down Expand Up @@ -221,10 +221,6 @@
<groupId>com.azure</groupId>
<artifactId>azure-core</artifactId>
</exclusion>
<exclusion>
<groupId>com.azure</groupId>
<artifactId>azure-core-http-netty</artifactId>
</exclusion>
<exclusion>
<groupId>com.azure</groupId>
<artifactId>azure-identity</artifactId>
Expand All @@ -233,6 +229,10 @@
<groupId>com.microsoft.azure</groupId>
<artifactId>msal4j</artifactId>
</exclusion>
<exclusion>
<groupId>io.netty</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
Expand All @@ -245,15 +245,10 @@
<artifactId>azure-core</artifactId>
<version>1.45.1</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-core-http-netty</artifactId>
<version>1.13.11</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-identity</artifactId>
<version>1.11.1</version>
<version>1.12.0</version>
</dependency>
<dependency>
<groupId>com.microsoft.azure.kusto</groupId>
Expand Down Expand Up @@ -395,5 +390,10 @@
<id>confluent</id>
<url>https://packages.confluent.io/maven/</url>
</repository>
<repository>
<id>maven_central</id>
<name>Maven Central</name>
<url>https://repo.maven.apache.org/maven2/</url>
</repository>
</repositories>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@
import static org.junit.jupiter.api.Assertions.fail;
import static org.skyscreamer.jsonassert.JSONCompareMode.LENIENT;

@Disabled
class KustoSinkIT {
private static final Logger log = LoggerFactory.getLogger(KustoSinkIT.class);
private static final Network network = Network.newNetwork();
Expand Down
Loading