diff --git a/.github/workflows/docker-release.yaml b/.github/workflows/docker-release.yaml
index 90a141d8..dca73030 100644
--- a/.github/workflows/docker-release.yaml
+++ b/.github/workflows/docker-release.yaml
@@ -10,10 +10,10 @@ jobs:
strategy:
fail-fast: false
matrix:
- 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]
+ 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]
image-base: [jdk8, jdk11]
include:
- - dse-version: 6.8.38
+ - dse-version: 6.8.39
latest: true
runs-on: ubuntu-latest
steps:
@@ -106,10 +106,10 @@ jobs:
strategy:
fail-fast: false
matrix:
- 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]
+ 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]
image-base: [ubi8]
include:
- - dse-version: 6.8.38
+ - dse-version: 6.8.39
latest: true
runs-on: ubuntu-latest
steps:
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 4d520ef9..e86243ef 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -10,6 +10,8 @@ Changelog for Management API, new PRs should update the `main / unreleased` sect
```
## unreleased
+
+## v0.1.69 (2023-10-13)
* [CHANGE] [#400](https://github.com/k8ssandra/management-api-for-apache-cassandra/issues/400) Ensure curl and wget are installed in images
* [FEATURE] [#326](https://github.com/k8ssandra/management-api-for-apache-cassandra/issues/326) Provide topology endpoints in OpenAPI client
* [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
* [FEATURE] [#374](https://github.com/k8ssandra/management-api-for-apache-cassandra/issues/374) New endpoint to provide a token range to endpoint mapping.
* [FEATURE] [#372](https://github.com/k8ssandra/management-api-for-apache-cassandra/issues/372) Add IS_LOCAL field to /metadata/endpoints response.
* [FEATURE] [#403](https://github.com/k8ssandra/management-api-for-apache-cassandra/issues/403) Add async versions of /flush and /garbagecollect endpoints under /api/v1
+* [FEATURE] [#401](https://github.com/k8ssandra/management-api-for-apache-cassandra/issues/401) Add DSE 6.8.39
## v0.1.68 (2023-10-09)
* [FEATURE] [#293](https://github.com/k8ssandra/management-api-for-apache-cassandra/issues/293) Expose running tasks as metrics
diff --git a/README.md b/README.md
index 791b3386..ede760d2 100644
--- a/README.md
+++ b/README.md
@@ -69,6 +69,7 @@ The following versions of Cassandra and DSE are published to Docker and supporte
| | | | 6.8.36 |
| | | | 6.8.37 |
| | | | 6.8.38 |
+| | | | 6.8.39 |
- All supported images are available in `linux/amd64` or `linux/arm64` formats.
- All images (with the exception of Cassandra trunk) are available as an Ubuntu based image or a RedHat UBI 8 based image.
diff --git a/dse-68/Dockerfile.jdk11 b/dse-68/Dockerfile.jdk11
index 45f62b9e..03213475 100644
--- a/dse-68/Dockerfile.jdk11
+++ b/dse-68/Dockerfile.jdk11
@@ -10,7 +10,7 @@ ENV DSE_HOME /opt/dse
ENV DSE_AGENT_HOME /opt/agent
# Get commandline parameters
-ARG DSE_VERSION=6.8.38
+ARG DSE_VERSION=6.8.39
ARG URL_PREFIX=https://downloads.datastax.com/enterprise
ARG TARBALL=dse-${DSE_VERSION}-bin.tar.gz
ARG DOWNLOAD_URL=${URL_PREFIX}/${TARBALL}
diff --git a/dse-68/Dockerfile.jdk8 b/dse-68/Dockerfile.jdk8
index ea934320..dbbf341c 100644
--- a/dse-68/Dockerfile.jdk8
+++ b/dse-68/Dockerfile.jdk8
@@ -10,7 +10,7 @@ ENV DSE_HOME /opt/dse
ENV DSE_AGENT_HOME /opt/agent
# Get commandline parameters
-ARG DSE_VERSION=6.8.38
+ARG DSE_VERSION=6.8.39
ARG URL_PREFIX=https://downloads.datastax.com/enterprise
ARG TARBALL=dse-${DSE_VERSION}-bin.tar.gz
ARG DOWNLOAD_URL=${URL_PREFIX}/${TARBALL}
diff --git a/dse-68/Dockerfile.ubi8 b/dse-68/Dockerfile.ubi8
index 03162061..c74fb6f2 100644
--- a/dse-68/Dockerfile.ubi8
+++ b/dse-68/Dockerfile.ubi8
@@ -1,4 +1,4 @@
-ARG DSE_VERSION=6.8.38
+ARG DSE_VERSION=6.8.39
ARG UBI_MAJOR=8
ARG UBI_BASETAG=latest
diff --git a/management-api-agent-dse-6.8/pom.xml b/management-api-agent-dse-6.8/pom.xml
index bd8b899f..2dfc60c8 100644
--- a/management-api-agent-dse-6.8/pom.xml
+++ b/management-api-agent-dse-6.8/pom.xml
@@ -30,7 +30,7 @@
- 6.8.38
+ 6.8.39