Skip to content

Commit c6b9683

Browse files
authored
Add Cassandra 3.11.15 and DSE 6.8.35 (#296)
1 parent 55a03f2 commit c6b9683

File tree

9 files changed

+16
-14
lines changed

9 files changed

+16
-14
lines changed

.github/workflows/docker-release.yaml

+6-6
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]
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]
1414
image-base: [jdk8, jdk11]
1515
include:
16-
- dse-version: 6.8.34
16+
- dse-version: 6.8.35
1717
latest: true
1818
runs-on: ubuntu-latest
1919
steps:
@@ -104,10 +104,10 @@ jobs:
104104
strategy:
105105
fail-fast: false
106106
matrix:
107-
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]
107+
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]
108108
image-base: [ubi7]
109109
include:
110-
- dse-version: 6.8.34
110+
- dse-version: 6.8.35
111111
latest: true
112112
runs-on: ubuntu-latest
113113
steps:
@@ -170,9 +170,9 @@ jobs:
170170
strategy:
171171
fail-fast: false
172172
matrix:
173-
cassandra-version: [3.11.7, 3.11.8, 3.11.11, 3.11.12, 3.11.13, 3.11.14]
173+
cassandra-version: [3.11.7, 3.11.8, 3.11.11, 3.11.12, 3.11.13, 3.11.14, 3.11.15]
174174
include:
175-
- cassandra-version: 3.11.14
175+
- cassandra-version: 3.11.15
176176
latest: true
177177
runs-on: ubuntu-latest
178178
steps:

Dockerfile-oss

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG CASSANDRA_VERSION=3.11.14
1+
ARG CASSANDRA_VERSION=3.11.15
22

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

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ Cassandra 3.11.x
6969
k8ssandra/cass-management-api:3.11.12
7070
k8ssandra/cass-management-api:3.11.13
7171
k8ssandra/cass-management-api:3.11.14
72+
k8ssandra/cass-management-api:3.11.15
7273

7374
Cassandra 4.0.x
7475

@@ -102,6 +103,7 @@ DSE 6.8.x
102103
datastax/dse-mgmtapi-6_8:6.8.32 (jdk8, jdk11 and ubi7 based images)
103104
datastax/dse-mgmtapi-6_8:6.8.33 (jdk8, jdk11 and ubi7 based images)
104105
datastax/dse-mgmtapi-6_8:6.8.34 (jdk8, jdk11 and ubi7 based images)
106+
datastax/dse-mgmtapi-6_8:6.8.35 (jdk8, jdk11 and ubi7 based images)
105107

106108
### Cassandra trunk
107109

dse-68/Dockerfile.jdk11

+1-1
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.34
13+
ARG DSE_VERSION=6.8.35
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

+1-1
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.34
13+
ARG DSE_VERSION=6.8.35
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.ubi7

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
ARG VERSION=6.8.34
2+
ARG VERSION=6.8.35
33
ARG BASETAG=7.8
44

55
FROM datastax/dse-mgmtapi-6_8:${VERSION} AS dse-server-base

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<groupId>com.datastax</groupId>
1717
<artifactId>datastax-mgmtapi-agent-4.1.x</artifactId>
1818
<properties>
19-
<cassandra4.version>4.1.0</cassandra4.version>
19+
<cassandra4.version>4.1.1</cassandra4.version>
2020
</properties>
2121
<dependencies>
2222
<dependency>

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
</repository>
3030
</repositories>
3131
<properties>
32-
<dse.version>6.8.33</dse.version>
32+
<dse.version>6.8.35</dse.version>
3333
</properties>
3434
<dependencies>
3535
<dependency>

pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
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.14</cassandra3.version>
21-
<cassandra4.version>4.0.8</cassandra4.version>
20+
<cassandra3.version>3.11.15</cassandra3.version>
21+
<cassandra4.version>4.0.9</cassandra4.version>
2222
<docker.java.version>3.2.13</docker.java.version>
2323
<junit.version>4.13.2</junit.version>
2424
<bytebuddy.version>1.12.19</bytebuddy.version>

0 commit comments

Comments
 (0)