Skip to content

Commit 05153e3

Browse files
authored
Merge pull request #580 from microsoft/dev
Merge Dev into Main for a release
2 parents 6b9fadd + 06fff01 commit 05153e3

File tree

3 files changed

+17
-3
lines changed

3 files changed

+17
-3
lines changed

.github/workflows/mavenCI.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
run: ./src/docker/startup.ps1
3232
if: github.ref == 'refs/heads/main'
3333
- name: Upload JaCoCo coverage report
34-
uses: actions/upload-artifact@v3
34+
uses: actions/upload-artifact@v4
3535
with:
3636
name: jacoco-report
3737
path: target/site/jacoco/

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
## Release History
2+
### 1.17.0 (2025-02-24)
3+
#### Key Bug Fixes
4+
* Updated `azure-cosmos` version to 4.67.0 to address these security vulnerabilities.
5+
https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2025-25193,
6+
https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2025-24970
7+
* Added direct dependency on json smart to address the security vulnerability. - [PR 579](https://github.com/microsoft/kafka-connect-cosmosdb/pull/579)
8+
https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-57699
9+
210
### 1.16.0 (2024-11-21)
311
#### New Features
412
* Updated `azure-cosmos` version to 4.65.0.

pom.xml

+8-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
<groupId>com.azure.cosmos.kafka</groupId>
99
<artifactId>kafka-connect-cosmos</artifactId>
10-
<version>1.16.0</version>
10+
<version>1.17.0</version>
1111

1212
<name> kafka-connect-cosmos</name>
1313
<url>https://github.com/microsoft/kafka-connect-cosmosdb</url>
@@ -48,13 +48,19 @@
4848
<dependency>
4949
<groupId>com.azure</groupId>
5050
<artifactId>azure-cosmos</artifactId>
51-
<version>4.65.0</version>
51+
<version>4.67.0</version>
5252
</dependency>
5353
<dependency>
5454
<groupId>com.jayway.jsonpath</groupId>
5555
<artifactId>json-path</artifactId>
5656
<version>2.9.0</version>
5757
</dependency>
58+
<!-- remove once jsonpath increments version -->
59+
<dependency>
60+
<groupId>net.minidev</groupId>
61+
<artifactId>json-smart</artifactId>
62+
<version>2.5.2</version>
63+
</dependency>
5864

5965
<!-- Apache commons -->
6066
<dependency>

0 commit comments

Comments
 (0)