|
8 | 8 | <artifactId>kafka-sink-azure-kusto</artifactId> |
9 | 9 | <packaging>jar</packaging> |
10 | 10 | <description>A Kafka Connect plugin for Azure Data Explorer (Kusto) Database</description> |
11 | | - <version>5.3.2</version> |
| 11 | + <version>5.3.3</version> |
12 | 12 | <properties> |
13 | 13 | <!-- Compile dependencies --> |
14 | 14 | <az.core.version>1.57.0</az.core.version> |
|
47 | 47 | <!-- Shade plugin --> |
48 | 48 | <maven.shade.plugin.version>3.6.0</maven.shade.plugin.version> |
49 | 49 | <kusto.shade.prefix>kusto_kafka_connector_shaded</kusto.shade.prefix> |
50 | | - <!-- Netty version to resolve conflicts --> |
51 | | - <jackson.version>2.21.1</jackson.version> |
| 50 | + <!-- Bumped 2026-07-01: jackson-bom 2.21.4 remediates CVE-2026-54512, CVE-2026-54513 (HIGH, |
| 51 | + PolymorphicTypeValidator bypasses) and CVE-2026-54514 (InetSocketAddress eager DNS), and aligns |
| 52 | + jackson-databind/annotations (previously 2.16.0) with jackson-core. CVE-2026-54515 (MEDIUM) is |
| 53 | + fixed only in 2.21.5/2.18.9 (not yet published) or Jackson 3.1.4; bump to 2.21.5 when released. |
| 54 | + See https://github.com/FasterXML/jackson-databind/security/advisories --> |
| 55 | + <jackson.version>2.21.4</jackson.version> |
52 | 56 | <!-- Bumped 2026-06-15: 4.2.15.Final remediates CVE-2026-47244, CVE-2026-48043 (netty-codec-http2), |
53 | 57 | CVE-2026-44249, CVE-2026-45416 (netty-handler), CVE-2026-45674, CVE-2026-47691, CVE-2026-45673 |
54 | 58 | (netty-resolver-dns) and CVE-2026-45536 (netty-transport-native-epoll/kqueue). |
|
65 | 69 | <type>pom</type> |
66 | 70 | <scope>import</scope> |
67 | 71 | </dependency> |
| 72 | + <!-- Pin jackson-bom to ${jackson.version} so all com.fasterxml.jackson.* modules (core, |
| 73 | + databind, annotations, datatype) resolve to the same patched release --> |
| 74 | + <dependency> |
| 75 | + <groupId>com.fasterxml.jackson</groupId> |
| 76 | + <artifactId>jackson-bom</artifactId> |
| 77 | + <version>${jackson.version}</version> |
| 78 | + <type>pom</type> |
| 79 | + <scope>import</scope> |
| 80 | + </dependency> |
68 | 81 | </dependencies> |
69 | 82 | </dependencyManagement> |
70 | 83 | <build> |
|
0 commit comments