Skip to content

Commit fa5e5ba

Browse files
committed
Add DSE 6.8.39
1 parent 176b243 commit fa5e5ba

File tree

7 files changed

+12
-8
lines changed

7 files changed

+12
-8
lines changed

.github/workflows/docker-release.yaml

+4-4
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, 6.8.38]
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, 6.8.39]
1414
image-base: [jdk8, jdk11]
1515
include:
16-
- dse-version: 6.8.38
16+
- dse-version: 6.8.39
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, 6.8.38]
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, 6.8.39]
110110
image-base: [ubi8]
111111
include:
112-
- dse-version: 6.8.38
112+
- dse-version: 6.8.39
113113
latest: true
114114
runs-on: ubuntu-latest
115115
steps:

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ Changelog for Management API, new PRs should update the `main / unreleased` sect
1010
```
1111

1212
## unreleased
13+
14+
## v0.1.69 (2023-10-13)
1315
* [CHANGE] [#400](https://github.com/k8ssandra/management-api-for-apache-cassandra/issues/400) Ensure curl and wget are installed in images
1416
* [FEATURE] [#326](https://github.com/k8ssandra/management-api-for-apache-cassandra/issues/326) Provide topology endpoints in OpenAPI client
1517
* [FEATURE] [#345](https://github.com/k8ssandra/management-api-for-apache-cassandra/issues/345) Implement host related methods
@@ -19,6 +21,7 @@ Changelog for Management API, new PRs should update the `main / unreleased` sect
1921
* [FEATURE] [#374](https://github.com/k8ssandra/management-api-for-apache-cassandra/issues/374) New endpoint to provide a token range to endpoint mapping.
2022
* [FEATURE] [#372](https://github.com/k8ssandra/management-api-for-apache-cassandra/issues/372) Add IS_LOCAL field to /metadata/endpoints response.
2123
* [FEATURE] [#403](https://github.com/k8ssandra/management-api-for-apache-cassandra/issues/403) Add async versions of /flush and /garbagecollect endpoints under /api/v1
24+
* [FEATURE] [#401](https://github.com/k8ssandra/management-api-for-apache-cassandra/issues/401) Add DSE 6.8.39
2225

2326
## v0.1.68 (2023-10-09)
2427
* [FEATURE] [#293](https://github.com/k8ssandra/management-api-for-apache-cassandra/issues/293) Expose running tasks as metrics

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ The following versions of Cassandra and DSE are published to Docker and supporte
6969
| | | | 6.8.36 |
7070
| | | | 6.8.37 |
7171
| | | | 6.8.38 |
72+
| | | | 6.8.39 |
7273

7374
- All supported images are available in `linux/amd64` or `linux/arm64` formats.
7475
- 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

+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.38
13+
ARG DSE_VERSION=6.8.39
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.38
13+
ARG DSE_VERSION=6.8.39
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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG DSE_VERSION=6.8.38
1+
ARG DSE_VERSION=6.8.39
22
ARG UBI_MAJOR=8
33
ARG UBI_BASETAG=latest
44

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
</repository>
3131
</repositories>
3232
<properties>
33-
<dse.version>6.8.38</dse.version>
33+
<dse.version>6.8.39</dse.version>
3434
</properties>
3535
<dependencies>
3636
<dependency>

0 commit comments

Comments
 (0)