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

Add newer versions of server to compatibility matrix #635

Merged
merged 2 commits into from
Sep 30, 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 }
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just fyi, 2.10 is supposed to be released on Monday (:crossed_fingers: ), may be we could include it as well

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Definitely! I will leave this open till then.

- { 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 @@ -47,7 +47,7 @@
import javax.net.ssl.SSLEngine;

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