From 8daf5be76f1575793597f5fd59a8fc7037514c91 Mon Sep 17 00:00:00 2001 From: "opensearch-trigger-bot[bot]" <98922864+opensearch-trigger-bot[bot]@users.noreply.github.com> Date: Mon, 20 Feb 2023 15:46:57 -0800 Subject: [PATCH] Upgrading compatibility to opensearch 2.5 (#367) (#368) * Upgrading compatibility to opensearch 2.5 * latest 2.4 version * keep existing compatibility matrix rows, this pr adds a new row for versions of opensearch after 2.3.0 --------- (cherry picked from commit a924a74e02b2fc6d2d7991f3365ff97e95a20d6b) Signed-off-by: amitai stern <123amitai@gmail.com> Signed-off-by: github-actions[bot] Co-authored-by: github-actions[bot] --- .github/workflows/test-integration.yml | 2 ++ COMPATIBILITY.md | 9 +++++---- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test-integration.yml b/.github/workflows/test-integration.yml index 921815ecb8..0c170ff080 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.1, 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..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.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.3.0 | +| 2.2.0 | 1.3.3-2.5.0 | ## Upgrading