Skip to content

Commit d42e91c

Browse files
authored
Include Cassandra 5.0.6 to build matrix (#698)
* Include Cassandra 5.0.6 to build matrix * Add Cassandra 4.0.19 * Add CHANGELOG for #695 and #699
1 parent 5a7ba5c commit d42e91c

File tree

8 files changed

+16
-14
lines changed

8 files changed

+16
-14
lines changed

.github/workflows/release.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -316,9 +316,9 @@ jobs:
316316
fail-fast: false
317317
max-parallel: 4
318318
matrix:
319-
cassandra-version: [4.0.0, 4.0.1, 4.0.3, 4.0.4, 4.0.5, 4.0.6, 4.0.7, 4.0.8, 4.0.9, 4.0.10, 4.0.11, 4.0.12, 4.0.13, 4.0.14, 4.0.15, 4.0.17, 4.0.18]
319+
cassandra-version: [4.0.0, 4.0.1, 4.0.3, 4.0.4, 4.0.5, 4.0.6, 4.0.7, 4.0.8, 4.0.9, 4.0.10, 4.0.11, 4.0.12, 4.0.13, 4.0.14, 4.0.15, 4.0.17, 4.0.18, 4.0.19]
320320
include:
321-
- cassandra-version: 4.0.18
321+
- cassandra-version: 4.0.19
322322
latest: true
323323
runs-on: ubuntu-latest
324324
steps:
@@ -499,9 +499,9 @@ jobs:
499499
fail-fast: false
500500
max-parallel: 4
501501
matrix:
502-
cassandra-version: [5.0.1, 5.0.2, 5.0.3, 5.0.4, 5.0.5]
502+
cassandra-version: [5.0.1, 5.0.2, 5.0.3, 5.0.4, 5.0.5, 5.0.6]
503503
include:
504-
- cassandra-version: 5.0.5
504+
- cassandra-version: 5.0.6
505505
latest: true
506506
runs-on: ubuntu-latest
507507
steps:

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ Changelog for Management API, new PRs should update the `main / unreleased` sect
1111

1212
## unreleased
1313

14+
* [FEATURE] [#695](https://github.com/k8ssandra/management-api-for-apache-cassandra/issues/695) Add Cassandra 5.0.6 to the build matrix
15+
* [FEATURE] [#699](https://github.com/k8ssandra/management-api-for-apache-cassandra/issues/699) Add Cassandra 4.0.19 to the build matrix
16+
1417
## v0.1.109 [2025-10-17]
1518
* [FEATURE] [#682](https://github.com/k8ssandra/management-api-for-apache-cassandra/issues/682) Add DSE 6.8.60 to the build matrix
1619
* [FEATURE] [#683](https://github.com/k8ssandra/management-api-for-apache-cassandra/issues/683) Add DSE 6.9.14 to the build matrix

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,13 +55,13 @@
5555
The following versions of Cassandra and DSE are published to Docker and supported:
5656

5757
| Cassandra 4.0.x | Cassandra 4.1.x | Cassandra 5.0.x | DSE 6.8.x | DSE 6.9.x | HCD 1.1.x | HCD 1.2.x |
58-
|---------------- | --------------- |---------------- |---------- |---------- | --------- | --------- |
58+
|-----------------| --------------- |-----------------|---------- |---------- | --------- | --------- |
5959
| 4.0.0 | 4.1.0 | 5.0.1 | 6.8.25 | 6.9.0 | 1.1.0 | 1.2.0 |
6060
| 4.0.1 | 4.1.1 | 5.0.2 | 6.8.26 | 6.9.1 | | |
6161
| 4.0.3 | 4.1.2 | 5.0.3 | 6.8.28 | 6.9.2 | | |
6262
| 4.0.4 | 4.1.3 | 5.0.4 | 6.8.29 | 6.9.3 | | |
6363
| 4.0.5 | 4.1.4 | 5.0.5 | 6.8.30 | 6.9.4 | | |
64-
| 4.0.6 | 4.1.5 | | 6.8.31 | 6.9.5 | | |
64+
| 4.0.6 | 4.1.5 | 5.0.6 | 6.8.31 | 6.9.5 | | |
6565
| 4.0.7 | 4.1.6 | | 6.8.32 | 6.9.6 | | |
6666
| 4.0.8 | 4.1.7 | | 6.8.33 | 6.9.7 | | |
6767
| 4.0.9 | 4.1.8 | | 6.8.34 | 6.9.8 | | |
@@ -73,7 +73,7 @@ The following versions of Cassandra and DSE are published to Docker and supporte
7373
| 4.0.15 | | | 6.8.40 | 6.9.14 | | |
7474
| 4.0.17 | | | 6.8.41 | 6.9.15 | | |
7575
| 4.0.18 | | | 6.8.42 | | | |
76-
| | | | 6.8.43 | | | |
76+
| 4.0.19 | | | 6.8.43 | | | |
7777
| | | | 6.8.44 | | | |
7878
| | | | 6.8.46 | | | |
7979
| | | | 6.8.47 | | | |

cassandra/Dockerfile-4.0

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG CASSANDRA_VERSION=4.0.18
1+
ARG CASSANDRA_VERSION=4.0.19
22

33
FROM --platform=$BUILDPLATFORM alpine:latest AS builder
44

cassandra/Dockerfile-4.0.ubi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
ARG UBI_MAJOR=9
22
ARG UBI_BASETAG=latest
3-
ARG CASSANDRA_VERSION=4.0.18
3+
ARG CASSANDRA_VERSION=4.0.19
44
FROM cassandra:${CASSANDRA_VERSION} AS cassandra-base
55

66
FROM --platform=$BUILDPLATFORM registry.access.redhat.com/ubi${UBI_MAJOR}/ubi-minimal:${UBI_BASETAG} AS builder

cassandra/Dockerfile-5.0.ubi

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
ARG UBI_MAJOR=9
22
ARG UBI_BASETAG=latest
3-
ARG CASSANDRA_VERSION=5.0.5
3+
ARG CASSANDRA_VERSION=5.0.6
44
FROM cassandra:${CASSANDRA_VERSION} AS cassandra-base
55

66
FROM registry.access.redhat.com/ubi${UBI_MAJOR}/ubi-minimal:${UBI_BASETAG} AS builder
@@ -14,9 +14,8 @@ ENV CASSANDRA_HOME=/opt/cassandra
1414
RUN microdnf install -y --nodocs shadow-utils \
1515
&& groupadd -r cassandra --gid=999 \
1616
&& useradd -m -d "$CASSANDRA_HOME" -r -g cassandra -G root --uid=999 cassandra \
17-
&& microdnf update && rm -rf /var/cache/yum \
1817
# Install packages needed during install process
19-
&& microdnf install -y tar gzip unzip && microdnf clean all
18+
&& microdnf install -y tar gzip unzip
2019

2120
WORKDIR /
2221

management-api-agent-5.0.x/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<version>${revision}</version>
1717
<artifactId>datastax-mgmtapi-agent-5.0.x</artifactId>
1818
<properties>
19-
<cassandra5.version>5.0.5</cassandra5.version>
19+
<cassandra5.version>5.0.6</cassandra5.version>
2020
<netty.http.codec.version>4.1.96.Final</netty.http.codec.version>
2121
</properties>
2222
<dependencies>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<build.version.file>build_version.sh</build.version.file>
1818
<revision>0.1.0-SNAPSHOT</revision>
1919
<driver.version>4.15.0</driver.version>
20-
<cassandra4.version>4.0.18</cassandra4.version>
20+
<cassandra4.version>4.0.19</cassandra4.version>
2121
<docker.java.version>3.3.6</docker.java.version>
2222
<junit.version>4.13.2</junit.version>
2323
<assertj.version>3.17.2</assertj.version>

0 commit comments

Comments
 (0)