From b5503a837ff557d4f8aae1f5f9b94238b68e19c3 Mon Sep 17 00:00:00 2001 From: amitai stern <123amitai@gmail.com> Date: Fri, 17 Feb 2023 19:25:34 +0200 Subject: [PATCH 1/3] Upgrading compatibility to opensearch 2.5 Signed-off-by: amitai stern <123amitai@gmail.com> --- .github/workflows/test-integration.yml | 2 ++ COMPATIBILITY.md | 8 ++++---- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test-integration.yml b/.github/workflows/test-integration.yml index 921815ecb8..1f40ec697b 100644 --- a/.github/workflows/test-integration.yml +++ b/.github/workflows/test-integration.yml @@ -17,6 +17,8 @@ jobs: - { opensearch_version: 2.1.0, java: 11 } - { opensearch_version: 2.2.1, java: 11 } - { opensearch_version: 2.3.0, java: 11 } + - { opensearch_version: 2.4.0, java: 11 } + - { opensearch_version: 2.5.0, java: 11 } steps: - name: Set up JDK ${{ matrix.java }} uses: actions/setup-java@v1 diff --git a/COMPATIBILITY.md b/COMPATIBILITY.md index c0b9044ee4..f54662e078 100644 --- a/COMPATIBILITY.md +++ b/COMPATIBILITY.md @@ -6,10 +6,10 @@ The below matrix shows the compatibility of the [`opensearch-java-client`](https://search.maven.org/artifact/org.opensearch.client/opensearch-java) with versions of [`OpenSearch`](https://opensearch.org/downloads.html#opensearch). | Client Version | OpenSearch Version | -| --- | --- | -| 1.0.0 | 1.0.0-1.3.3 | -| 2.0.0 | 1.3.3-2.0.1 | -| 2.1.0 | 1.3.3-2.3.0 | +| --- |--------------------| +| 1.0.0 | 1.0.0-1.3.3 | +| 2.0.0 | 1.3.3-2.0.1 | +| 2.1.0 | 1.3.3-2.5.0 | ## Upgrading From c6b20246c9ae72049c2371a0bdda5178aa334d70 Mon Sep 17 00:00:00 2001 From: amitai stern <123amitai@gmail.com> Date: Fri, 17 Feb 2023 19:46:32 +0200 Subject: [PATCH 2/3] latest 2.4 version Signed-off-by: amitai stern <123amitai@gmail.com> --- .github/workflows/test-integration.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-integration.yml b/.github/workflows/test-integration.yml index 1f40ec697b..0c170ff080 100644 --- a/.github/workflows/test-integration.yml +++ b/.github/workflows/test-integration.yml @@ -17,7 +17,7 @@ jobs: - { opensearch_version: 2.1.0, java: 11 } - { opensearch_version: 2.2.1, java: 11 } - { opensearch_version: 2.3.0, java: 11 } - - { opensearch_version: 2.4.0, java: 11 } + - { opensearch_version: 2.4.1, java: 11 } - { opensearch_version: 2.5.0, java: 11 } steps: - name: Set up JDK ${{ matrix.java }} From 819cb7cde7cc976bb504e07bad1cbc1629ded26e Mon Sep 17 00:00:00 2001 From: amitai stern <123amitai@gmail.com> Date: Fri, 17 Feb 2023 20:16:09 +0200 Subject: [PATCH 3/3] keep existing compatibility matrix rows, this pr adds a new row for versions of opensearch after 2.3.0 Signed-off-by: amitai stern <123amitai@gmail.com> --- COMPATIBILITY.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/COMPATIBILITY.md b/COMPATIBILITY.md index f54662e078..78b2b1372b 100644 --- a/COMPATIBILITY.md +++ b/COMPATIBILITY.md @@ -6,10 +6,11 @@ The below matrix shows the compatibility of the [`opensearch-java-client`](https://search.maven.org/artifact/org.opensearch.client/opensearch-java) with versions of [`OpenSearch`](https://opensearch.org/downloads.html#opensearch). | Client Version | OpenSearch Version | -| --- |--------------------| -| 1.0.0 | 1.0.0-1.3.3 | -| 2.0.0 | 1.3.3-2.0.1 | -| 2.1.0 | 1.3.3-2.5.0 | +|----------------|--------------------| +| 1.0.0 | 1.0.0-1.3.3 | +| 2.0.0 | 1.3.3-2.0.1 | +| 2.1.0 | 1.3.3-2.3.0 | +| 2.2.0 | 1.3.3-2.5.0 | ## Upgrading