From 6531fe32a114b6b60fd85563ed27ea9bf5455d07 Mon Sep 17 00:00:00 2001 From: tvaron3 Date: Thu, 21 Nov 2024 10:10:04 -0800 Subject: [PATCH 1/6] increase versions and update changelog --- CHANGELOG.md | 4 ++++ pom.xml | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2a8bb663..327329e4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/pom.xml b/pom.xml index b921ee85..f1ab1089 100644 --- a/pom.xml +++ b/pom.xml @@ -7,7 +7,7 @@ com.azure.cosmos.kafka kafka-connect-cosmos - 1.15.0 + 1.16.0 kafka-connect-cosmos https://github.com/microsoft/kafka-connect-cosmosdb @@ -48,7 +48,7 @@ com.azure azure-cosmos - 4.58.0 + 4.65.0 com.jayway.jsonpath From e5e38d3d150838488c622942f9a5aecdb23b4fae Mon Sep 17 00:00:00 2001 From: tvaron3 Date: Thu, 21 Nov 2024 10:22:07 -0800 Subject: [PATCH 2/6] increase github actions versions --- .github/workflows/mavenCI.yml | 4 ++-- .github/workflows/release.yml | 10 +++++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/mavenCI.yml b/.github/workflows/mavenCI.yml index 31fb90c7..9e881922 100644 --- a/.github/workflows/mavenCI.yml +++ b/.github/workflows/mavenCI.yml @@ -16,9 +16,9 @@ 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: java-version: 11 - name: Build with Maven diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index af35b7ca..5a216073 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -28,9 +28,9 @@ jobs: runs-on: ubuntu-latest 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: java-version: 11 - name: Get java-version @@ -47,7 +47,7 @@ jobs: run: ./src/docker/startup.ps1 - name: Create Release id: create_release - uses: actions/create-release@v1 + uses: actions/create-release@v3 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: @@ -57,7 +57,7 @@ jobs: prerelease: false - name: Upload Release Asset 1 id: upload-release-asset-1 - uses: actions/upload-release-asset@v1 + uses: actions/upload-release-asset@v3 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: @@ -67,7 +67,7 @@ jobs: asset_content_type: application/java-archive - name: Upload Release Asset 2 id: upload-release-asset-2 - uses: actions/upload-release-asset@v1 + uses: actions/upload-release-asset@v3 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: From 3ee5e64ddb5273dbc176e488adc30fcf68646241 Mon Sep 17 00:00:00 2001 From: tvaron3 Date: Thu, 21 Nov 2024 10:24:47 -0800 Subject: [PATCH 3/6] increase github actions versions --- .github/workflows/mavenCI.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/mavenCI.yml b/.github/workflows/mavenCI.yml index 9e881922..eb71e988 100644 --- a/.github/workflows/mavenCI.yml +++ b/.github/workflows/mavenCI.yml @@ -30,7 +30,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/ From 30e4eaf769af7eefe76b63ae83025665fea2b7dd Mon Sep 17 00:00:00 2001 From: tvaron3 Date: Thu, 21 Nov 2024 10:32:34 -0800 Subject: [PATCH 4/6] fix build --- .github/workflows/mavenCI.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/mavenCI.yml b/.github/workflows/mavenCI.yml index eb71e988..f8e928b3 100644 --- a/.github/workflows/mavenCI.yml +++ b/.github/workflows/mavenCI.yml @@ -20,6 +20,7 @@ jobs: - name: Set up JDK 11 uses: actions/setup-java@v3 with: + distribution: 'zulu' java-version: 11 - name: Build with Maven run: mvn -B package --file pom.xml From 0cadf6effb0f1bbb24e13da7e34d0c3a6f9c1b92 Mon Sep 17 00:00:00 2001 From: Tomas Varon <70857381+tvaron3@users.noreply.github.com> Date: Thu, 21 Nov 2024 10:42:29 -0800 Subject: [PATCH 5/6] Update .github/workflows/release.yml --- .github/workflows/release.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5a216073..0818cf37 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -32,6 +32,7 @@ jobs: - name: Set up JDK 11 uses: actions/setup-java@v3 with: + distribution: 'zulu' java-version: 11 - name: Get java-version id: get-version From a26ba9cb2918a023b7f3d87f087480f4cb904d06 Mon Sep 17 00:00:00 2001 From: tvaron3 Date: Thu, 21 Nov 2024 10:50:46 -0800 Subject: [PATCH 6/6] revert release.yml changes --- .github/workflows/release.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0818cf37..af35b7ca 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -28,11 +28,10 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v2 - name: Set up JDK 11 - uses: actions/setup-java@v3 + uses: actions/setup-java@v1 with: - distribution: 'zulu' java-version: 11 - name: Get java-version id: get-version @@ -48,7 +47,7 @@ jobs: run: ./src/docker/startup.ps1 - name: Create Release id: create_release - uses: actions/create-release@v3 + uses: actions/create-release@v1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: @@ -58,7 +57,7 @@ jobs: prerelease: false - name: Upload Release Asset 1 id: upload-release-asset-1 - uses: actions/upload-release-asset@v3 + uses: actions/upload-release-asset@v1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: @@ -68,7 +67,7 @@ jobs: asset_content_type: application/java-archive - name: Upload Release Asset 2 id: upload-release-asset-2 - uses: actions/upload-release-asset@v3 + uses: actions/upload-release-asset@v1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: