Skip to content

Commit

Permalink
Add DSE 6.8.39
Browse files Browse the repository at this point in the history
  • Loading branch information
emerkle826 committed Oct 13, 2023
1 parent 176b243 commit cf70a9a
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/docker-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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:
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion dse-68/Dockerfile.jdk11
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down
2 changes: 1 addition & 1 deletion dse-68/Dockerfile.jdk8
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down
2 changes: 1 addition & 1 deletion dse-68/Dockerfile.ubi8
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG DSE_VERSION=6.8.38
ARG DSE_VERSION=6.8.39
ARG UBI_MAJOR=8
ARG UBI_BASETAG=latest

Expand Down
2 changes: 1 addition & 1 deletion management-api-agent-dse-6.8/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
</repository>
</repositories>
<properties>
<dse.version>6.8.38</dse.version>
<dse.version>6.8.39</dse.version>
</properties>
<dependencies>
<dependency>
Expand Down

0 comments on commit cf70a9a

Please sign in to comment.