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

Update dependencies to C* 5.0 #735

Merged
merged 1 commit into from
Oct 11, 2024
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
12 changes: 6 additions & 6 deletions .github/workflows/actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ jobs:
java_version: 11
test_suite: 'verify -P docker-integration-test,standalone-integration-tests -Dit.cassandra.version=4.1 -DskipUTs'
artifacts_dir: "standalone-integration/target"
- name: "Standalone integration 5.0-alpha1 - Java 11"
- name: "Standalone integration 5.0- - Java 11"
java_version: 11
test_suite: 'verify -P docker-integration-test,standalone-integration-tests -Dit.cassandra.version=5.0-alpha1 -DskipUTs'
test_suite: 'verify -P docker-integration-test,standalone-integration-tests -Dit.cassandra.version=5.0 -DskipUTs'
artifacts_dir: "standalone-integration/target"
- name: "Python integration - Java 11"
java_version: 11
Expand All @@ -62,9 +62,9 @@ jobs:
java_version: 17
test_suite: 'verify -P docker-integration-test,standalone-integration-tests -Dit.cassandra.version=4.1 -Djava.version=17 -DskipUTs'
artifacts_dir: "standalone-integration/target"
- name: "Standalone integration 5.0-alpha1 - Java 17"
- name: "Standalone integration 5.0 - Java 17"
java_version: 17
test_suite: 'verify -P docker-integration-test,standalone-integration-tests -Dit.cassandra.version=5.0-alpha1 -Djava.version=17 -DskipUTs'
test_suite: 'verify -P docker-integration-test,standalone-integration-tests -Dit.cassandra.version=5.0 -Djava.version=17 -DskipUTs'
artifacts_dir: "standalone-integration/target"
- name: "Python integration - Java 17"
java_version: 17
Expand All @@ -86,9 +86,9 @@ jobs:
java_version: 21
test_suite: 'verify -P docker-integration-test,standalone-integration-tests -Dit.cassandra.version=4.1 -Djava.version=21 -DskipUTs'
artifacts_dir: "standalone-integration/target"
- name: "Standalone integration 5.0-alpha1 - Java 21"
- name: "Standalone integration 5.0 - Java 21"
java_version: 21
test_suite: 'verify -P docker-integration-test,standalone-integration-tests -Dit.cassandra.version=5.0-alpha1 -Djava.version=21 -DskipUTs'
test_suite: 'verify -P docker-integration-test,standalone-integration-tests -Dit.cassandra.version=5.0 -Djava.version=21 -DskipUTs'
artifacts_dir: "standalone-integration/target"
- name: "Python integration - Java 21"
java_version: 21
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,4 @@ dependency-reduced-pom.xml
*htmlcov
application/statistics/
statistics/
.python-version
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

## Version 5.0.5

* Update dependencies to C* 5.0 - Issue #734
* Bump org.springframework:spring-web from 5.3.34 to 5.3.39 - Issue #733
* Bump commons-io:commons-io to 2.17.0 - Issue #732
* State what versions are maintained - Issue #658
Expand Down
8 changes: 4 additions & 4 deletions docs/COMPATIBILITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

The table below shows what versions of Cassandra have been verified with ecChronos releases.

| ecChronos | 3.0.x | 3.11.x | 4.0.x | 4.1.x | 5.0-alpha1 |
|:----------:|:-----:|:------:|:-----:|:-----:|:----------:|
| 4.x.x | X | X | X | - | - |
| 5.x.x | - | - | X | X | X |
| ecChronos \ C* | 3.0.x | 3.11.x | 4.0.x | 4.1.x | 5.0.x |
|:--------------:|:-----:|:------:|:-----:|:-----:|:-----:|
| 4.x.x | X | X | X | - | - |
| 5.x.x | - | - | X | X | X |
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -674,6 +674,7 @@ limitations under the License.
</headerSections>
<excludes>
<exclude>CODEOWNERS</exclude>
<exclude>.python-version</exclude>
<exclude>src/test/resources/cassandra.yaml</exclude>
<exclude>src/test/resources/cassandra-rackdc.properties</exclude>
<exclude>**/*.cql</exclude>
Expand Down
Loading