Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Backport 2.x] Add newer versions of server to compatibility matrix #643

Merged
merged 1 commit into from
Oct 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/test-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- { opensearch_version: 1.0.1, java: 11 }
- { opensearch_version: 1.1.0, java: 11 }
- { opensearch_version: 1.2.4, java: 11 }
- { opensearch_version: 1.3.9, java: 11 }
- { opensearch_version: 1.3.13, java: 11 }
- { opensearch_version: 2.0.1, java: 11 }
- { opensearch_version: 2.1.0, java: 11 }
- { opensearch_version: 2.2.1, java: 11 }
Expand All @@ -21,6 +21,9 @@ jobs:
- { opensearch_version: 2.5.0, java: 11 }
- { opensearch_version: 2.6.0, java: 11 }
- { opensearch_version: 2.7.0, java: 11 }
- { opensearch_version: 2.8.0, java: 11 }
- { opensearch_version: 2.9.0, java: 11 }
- { opensearch_version: 2.10.0, java: 11 }
steps:
- name: Checkout Java Client
uses: actions/checkout@v3
Expand Down
10 changes: 2 additions & 8 deletions COMPATIBILITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,8 @@ The below matrix shows the compatibility of the [`opensearch-java-client`](https

| Client Version | OpenSearch Version |
|----------------|--------------------|
| 1.0.0 | 1.0.0-1.3.9 |
| 2.0.0 | 1.3.9-2.0.1 |
| 2.1.0 | 1.3.9-2.3.0 |
| 2.2.0 | 1.3.9-2.5.0 |
| 2.3.0 | 1.3.9-2.7.0 |
| 2.4.0 | 1.3.9-2.7.0 |
| 2.5.0 | 1.3.9-2.7.0 |
| 2.6.0 | 1.3.9-2.7.0 |
| 1.0.0 | 1.x |
| 2.x.0 | 1.3.13-2.10.0 |

## Upgrading

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
import java.util.TreeSet;

public abstract class OpenSearchJavaClientTestCase extends OpenSearchRestTestCase implements OpenSearchTransportSupport {
private static final List<String> systemIndices = List.of(".opensearch-observability", ".opendistro_security");
private static final List<String> systemIndices = List.of(".opensearch-observability", ".opendistro_security", ".plugins-ml-config");
private static OpenSearchClient javaClient;
private static OpenSearchClient adminJavaClient;

Expand Down
Loading