diff --git a/.github/workflows/docker-release.yaml b/.github/workflows/docker-release.yaml index 1d6a15f3..90a141d8 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] + 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] image-base: [jdk8, jdk11] include: - - dse-version: 6.8.37 + - dse-version: 6.8.38 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] + 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] image-base: [ubi8] include: - - dse-version: 6.8.37 + - dse-version: 6.8.38 latest: true runs-on: ubuntu-latest steps: @@ -174,9 +174,9 @@ jobs: strategy: fail-fast: false matrix: - cassandra-version: [3.11.7, 3.11.8, 3.11.11, 3.11.12, 3.11.13, 3.11.14, 3.11.15] + 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] include: - - cassandra-version: 3.11.15 + - cassandra-version: 3.11.16 latest: true runs-on: ubuntu-latest steps: diff --git a/CHANGELOG.md b/CHANGELOG.md index b2bf656a..88a6a2a1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,8 @@ Changelog for Management API, new PRs should update the `main / unreleased` sect [FEATURE] [#323](https://github.com/k8ssandra/management-api-for-apache-cassandra/issues/323) Add OpenAPI Java client generation [FEATURE] [#337](https://github.com/k8ssandra/management-api-for-apache-cassandra/issues/337) Publish Maven artifacts to Cloudsmith.io [BUGFIX] [#339](https://github.com/k8ssandra/management-api-for-apache-cassandra/issues/339) OpenAPI client publish does not also publish other artifacts +[FEATURE] [#395](https://github.com/k8ssandra/management-api-for-apache-cassandra/issues/395) Add Cassandra version 3.11.16 +[FEATURE] [#380](https://github.com/k8ssandra/management-api-for-apache-cassandra/issues/380) Add DSE 6.8.38 ## 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. diff --git a/Dockerfile-oss b/Dockerfile-oss index d2ef9549..4d5e4585 100644 --- a/Dockerfile-oss +++ b/Dockerfile-oss @@ -1,4 +1,4 @@ -ARG CASSANDRA_VERSION=3.11.15 +ARG CASSANDRA_VERSION=3.11.16 FROM --platform=$BUILDPLATFORM maven:3.8.7-eclipse-temurin-11 as builder diff --git a/README.md b/README.md index 3bca8abd..791b3386 100644 --- a/README.md +++ b/README.md @@ -63,11 +63,12 @@ The following versions of Cassandra and DSE are published to Docker and supporte | 3.11.13 | 4.0.5 | | 6.8.30 | | 3.11.14 | 4.0.6 | | 6.8.31 | | 3.11.15 | 4.0.7 | | 6.8.32 | -| | 4.0.8 | | 6.8.33 | +| 3.11.16 | 4.0.8 | | 6.8.33 | | | 4.0.9 | | 6.8.34 | | | 4.0.10 | | 6.8.35 | | | | | 6.8.36 | | | | | 6.8.37 | +| | | | 6.8.38 | - 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 8826b762..45f62b9e 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.37 +ARG DSE_VERSION=6.8.38 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 8c267c19..ea934320 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.37 +ARG DSE_VERSION=6.8.38 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 40aa39f9..092e11a5 100644 --- a/dse-68/Dockerfile.ubi8 +++ b/dse-68/Dockerfile.ubi8 @@ -1,4 +1,4 @@ -ARG DSE_VERSION=6.8.37 +ARG DSE_VERSION=6.8.38 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 5b1a6f16..6dcd8d93 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.37 + 6.8.38 diff --git a/pom.xml b/pom.xml index 63a400d1..b9b2c93d 100644 --- a/pom.xml +++ b/pom.xml @@ -17,7 +17,7 @@ build_version.sh 0.1.0-SNAPSHOT 4.15.0 - 3.11.15 + 3.11.16 4.0.10 3.2.13 4.13.2