Skip to content

Commit

Permalink
Merge pull request #576 from microsoft/dev
Browse files Browse the repository at this point in the history
Merge dev into main
  • Loading branch information
tvaron3 authored Nov 21, 2024
2 parents 53ccdff + 74e36d0 commit 4369bbc
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/mavenCI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,11 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v1
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: 11
- name: Build with Maven
run: mvn -B package --file pom.xml
Expand All @@ -30,7 +31,7 @@ jobs:
run: ./src/docker/startup.ps1
if: github.ref == 'refs/heads/main'
- name: Upload JaCoCo coverage report
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: jacoco-report
path: target/site/jacoco/
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
## Release History
### 1.16.0 (2024-11-21)
#### New Features
* Updated `azure-cosmos` version to 4.65.0.

### 1.15.0 (2024-04-18)
#### Key Bug Fixes
* Fixed an issue where using `CosmosDBSinkConnector` in bulk mode failed to write items for container with nested partition key path - [PR 565](https://github.com/microsoft/kafka-connect-cosmosdb/pull/565)
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<groupId>com.azure.cosmos.kafka</groupId>
<artifactId>kafka-connect-cosmos</artifactId>
<version>1.15.0</version>
<version>1.16.0</version>

<name> kafka-connect-cosmos</name>
<url>https://github.com/microsoft/kafka-connect-cosmosdb</url>
Expand Down Expand Up @@ -48,7 +48,7 @@
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-cosmos</artifactId>
<version>4.58.0</version>
<version>4.65.0</version>
</dependency>
<dependency>
<groupId>com.jayway.jsonpath</groupId>
Expand Down

0 comments on commit 4369bbc

Please sign in to comment.