Skip to content

Commit 5775c5f

Browse files
authored
Add Cassandra 3.11.16 and DSE 6.8.38 (#394)
1 parent ceb4dee commit 5775c5f

File tree

9 files changed

+16
-13
lines changed

9 files changed

+16
-13
lines changed

.github/workflows/docker-release.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010
strategy:
1111
fail-fast: false
1212
matrix:
13-
dse-version: [6.8.25, 6.8.26, 6.8.28, 6.8.29, 6.8.30, 6.8.31, 6.8.32, 6.8.33, 6.8.34, 6.8.35, 6.8.36, 6.8.37]
13+
dse-version: [6.8.25, 6.8.26, 6.8.28, 6.8.29, 6.8.30, 6.8.31, 6.8.32, 6.8.33, 6.8.34, 6.8.35, 6.8.36, 6.8.37, 6.8.38]
1414
image-base: [jdk8, jdk11]
1515
include:
16-
- dse-version: 6.8.37
16+
- dse-version: 6.8.38
1717
latest: true
1818
runs-on: ubuntu-latest
1919
steps:
@@ -106,10 +106,10 @@ jobs:
106106
strategy:
107107
fail-fast: false
108108
matrix:
109-
dse-version: [6.8.25, 6.8.26, 6.8.28, 6.8.29, 6.8.30, 6.8.31, 6.8.32, 6.8.33, 6.8.34, 6.8.35, 6.8.36, 6.8.37]
109+
dse-version: [6.8.25, 6.8.26, 6.8.28, 6.8.29, 6.8.30, 6.8.31, 6.8.32, 6.8.33, 6.8.34, 6.8.35, 6.8.36, 6.8.37, 6.8.38]
110110
image-base: [ubi8]
111111
include:
112-
- dse-version: 6.8.37
112+
- dse-version: 6.8.38
113113
latest: true
114114
runs-on: ubuntu-latest
115115
steps:
@@ -174,9 +174,9 @@ jobs:
174174
strategy:
175175
fail-fast: false
176176
matrix:
177-
cassandra-version: [3.11.7, 3.11.8, 3.11.11, 3.11.12, 3.11.13, 3.11.14, 3.11.15]
177+
cassandra-version: [3.11.7, 3.11.8, 3.11.11, 3.11.12, 3.11.13, 3.11.14, 3.11.15, 3.11.16]
178178
include:
179-
- cassandra-version: 3.11.15
179+
- cassandra-version: 3.11.16
180180
latest: true
181181
runs-on: ubuntu-latest
182182
steps:

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ Changelog for Management API, new PRs should update the `main / unreleased` sect
1414
[FEATURE] [#323](https://github.com/k8ssandra/management-api-for-apache-cassandra/issues/323) Add OpenAPI Java client generation
1515
[FEATURE] [#337](https://github.com/k8ssandra/management-api-for-apache-cassandra/issues/337) Publish Maven artifacts to Cloudsmith.io
1616
[BUGFIX] [#339](https://github.com/k8ssandra/management-api-for-apache-cassandra/issues/339) OpenAPI client publish does not also publish other artifacts
17+
[FEATURE] [#395](https://github.com/k8ssandra/management-api-for-apache-cassandra/issues/395) Add Cassandra version 3.11.16
18+
[FEATURE] [#380](https://github.com/k8ssandra/management-api-for-apache-cassandra/issues/380) Add DSE 6.8.38
1719

1820

1921
## Releases older than this point did not maintain a Changelog in the format above. The changes below were generated by the gen_changelog.sh script.

Dockerfile-oss

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

33
FROM --platform=$BUILDPLATFORM maven:3.8.7-eclipse-temurin-11 as builder
44

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,11 +63,12 @@ The following versions of Cassandra and DSE are published to Docker and supporte
6363
| 3.11.13 | 4.0.5 | | 6.8.30 |
6464
| 3.11.14 | 4.0.6 | | 6.8.31 |
6565
| 3.11.15 | 4.0.7 | | 6.8.32 |
66-
| | 4.0.8 | | 6.8.33 |
66+
| 3.11.16 | 4.0.8 | | 6.8.33 |
6767
| | 4.0.9 | | 6.8.34 |
6868
| | 4.0.10 | | 6.8.35 |
6969
| | | | 6.8.36 |
7070
| | | | 6.8.37 |
71+
| | | | 6.8.38 |
7172

7273
- All supported images are available in `linux/amd64` or `linux/arm64` formats.
7374
- All images (with the exception of Cassandra trunk) are available as an Ubuntu based image or a RedHat UBI 8 based image.

dse-68/Dockerfile.jdk11

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ENV DSE_HOME /opt/dse
1010
ENV DSE_AGENT_HOME /opt/agent
1111

1212
# Get commandline parameters
13-
ARG DSE_VERSION=6.8.37
13+
ARG DSE_VERSION=6.8.38
1414
ARG URL_PREFIX=https://downloads.datastax.com/enterprise
1515
ARG TARBALL=dse-${DSE_VERSION}-bin.tar.gz
1616
ARG DOWNLOAD_URL=${URL_PREFIX}/${TARBALL}

dse-68/Dockerfile.jdk8

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ENV DSE_HOME /opt/dse
1010
ENV DSE_AGENT_HOME /opt/agent
1111

1212
# Get commandline parameters
13-
ARG DSE_VERSION=6.8.37
13+
ARG DSE_VERSION=6.8.38
1414
ARG URL_PREFIX=https://downloads.datastax.com/enterprise
1515
ARG TARBALL=dse-${DSE_VERSION}-bin.tar.gz
1616
ARG DOWNLOAD_URL=${URL_PREFIX}/${TARBALL}

dse-68/Dockerfile.ubi8

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG DSE_VERSION=6.8.37
1+
ARG DSE_VERSION=6.8.38
22
ARG UBI_MAJOR=8
33
ARG UBI_BASETAG=latest
44

management-api-agent-dse-6.8/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
</repository>
3131
</repositories>
3232
<properties>
33-
<dse.version>6.8.37</dse.version>
33+
<dse.version>6.8.38</dse.version>
3434
</properties>
3535
<dependencies>
3636
<dependency>

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-
<cassandra3.version>3.11.15</cassandra3.version>
20+
<cassandra3.version>3.11.16</cassandra3.version>
2121
<cassandra4.version>4.0.10</cassandra4.version>
2222
<docker.java.version>3.2.13</docker.java.version>
2323
<junit.version>4.13.2</junit.version>

0 commit comments

Comments
 (0)