Skip to content

Update build matrix to include OpenSearch 2.19.2 and 3.0.0 #467

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

Merged
merged 2 commits into from
May 27, 2025
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
14 changes: 8 additions & 6 deletions .github/workflows/main_and_pr_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
fail-fast: false
matrix:
java-version: [17, 21]
java-version: [17, 21, 24]
runs-on: [ubuntu-latest]
name: Assemble on ${{ matrix.runs-on }} with JDK ${{ matrix.java-version }}
runs-on: ${{ matrix.runs-on }}
Expand All @@ -30,13 +30,15 @@ jobs:
fail-fast: false
matrix:
entry:
- { opensearch-version: 1.3.18, java-version: 17 }
- { opensearch-version: 1.3.18, java-version: 21 }
- { opensearch-version: 1.3.20, java-version: 17 }
- { opensearch-version: 1.3.20, java-version: 21 }
- { opensearch-version: 2.11.0, java-version: 17 }
- { opensearch-version: 2.11.0, java-version: 21 }
- { opensearch-version: 2.18.0, java-version: 17 }
- { opensearch-version: 2.18.0, java-version: 21 }
- { opensearch-version: 2.18.0, java-version: 23 }
- { opensearch-version: 2.19.2, java-version: 17 }
- { opensearch-version: 2.19.2, java-version: 21 }
- { opensearch-version: 2.19.2, java-version: 24 }
- { opensearch-version: 3.0.0, java-version: 21 }
- { opensearch-version: 3.0.0, java-version: 24 }
runs-on: [ubuntu-latest]
name: Check on ${{ matrix.runs-on }} with JDK ${{ matrix.entry.java-version }} against OpenSearch ${{ matrix.entry.opensearch-version }}
runs-on: ${{ matrix.runs-on }}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ The Spring Data OpenSearch follows the release model of the Spring Data Elastics

| Spring Data Release Train | Spring Data OpenSearch | Spring Data Elasticsearch | OpenSearch Server | OpenSearch Client | Spring Framework | Spring Boot |
|---------------------------|------------------------|---------------------------|-------------------|-------------------|------------------|---------------|
| 2025.0 | 1.7.x | 5.5.x | 1.x / 2.x | 2.10.x and above | 6.2.x | 3.4.x |
| 2025.0 | 1.7.x | 5.5.x | 1.x / 2.x / 3.x | 2.10.x and above | 6.2.x | 3.4.x |
| 2024.1 | 1.6.x | 5.4.x | 1.x / 2.x | 2.10.x and above | 6.2.x | 3.4.x |
| 2024.0 | 1.5.x | 5.3.x | 1.x / 2.x | 2.10.x and above | 6.1.x | 3.2.x / 3.3.x |
| 2023.1 (Vaughan) | 1.4.x | 5.2.x | 1.x / 2.x | 2.10.x and above | 6.1.x | 3.2.x |
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ org.gradle.jvmargs=--add-exports jdk.compiler/com.sun.tools.javac.api=ALL-UNNAME
--add-exports jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED \
--add-exports jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED

sde.testcontainers.image-version=2.18.0
sde.testcontainers.image-version=2.19.2
Loading