From efaa615115e1434b9642343d31f2285af3a9a2f2 Mon Sep 17 00:00:00 2001 From: Nick Larsen Date: Wed, 23 Jul 2025 11:19:36 +0200 Subject: [PATCH] chore: Release 25.7.0 Signed-off-by: Nick Larsen --- CHANGELOG.md | 2 ++ Cargo.lock | 2 +- Cargo.nix | 2 +- Cargo.toml | 2 +- deploy/helm/superset-operator/Chart.yaml | 4 ++-- .../examples/getting_started/getting_started.sh | 16 ++++++++-------- .../examples/getting_started/install_output.txt | 8 ++++---- .../superset-load-examples-job.yaml | 2 +- docs/templating_vars.yaml | 8 ++++---- tests/release.yaml | 12 ++++++------ 10 files changed, 30 insertions(+), 28 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 238aa31e..1a1c6edb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## [Unreleased] +## [25.7.0] - 2025-07-23 + ## [25.7.0-rc1] - 2025-07-18 ### Added diff --git a/Cargo.lock b/Cargo.lock index fa19148e..27609a3b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2650,7 +2650,7 @@ dependencies = [ [[package]] name = "stackable-superset-operator" -version = "25.7.0-rc1" +version = "25.7.0" dependencies = [ "anyhow", "built", diff --git a/Cargo.nix b/Cargo.nix index 1c3c803a..a7153438 100644 --- a/Cargo.nix +++ b/Cargo.nix @@ -8631,7 +8631,7 @@ rec { }; "stackable-superset-operator" = rec { crateName = "stackable-superset-operator"; - version = "25.7.0-rc1"; + version = "25.7.0"; edition = "2021"; crateBin = [ { diff --git a/Cargo.toml b/Cargo.toml index d2f4ae75..99e2111c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["rust/operator-binary"] resolver = "2" [workspace.package] -version = "25.7.0-rc1" +version = "25.7.0" authors = ["Stackable GmbH "] license = "OSL-3.0" edition = "2021" diff --git a/deploy/helm/superset-operator/Chart.yaml b/deploy/helm/superset-operator/Chart.yaml index 78b9a5c6..9e6d24db 100644 --- a/deploy/helm/superset-operator/Chart.yaml +++ b/deploy/helm/superset-operator/Chart.yaml @@ -1,8 +1,8 @@ --- apiVersion: v2 name: superset-operator -version: "25.7.0-rc1" -appVersion: "25.7.0-rc1" +version: "25.7.0" +appVersion: "25.7.0" description: The Stackable Operator for Apache Superset home: https://github.com/stackabletech/superset-operator maintainers: diff --git a/docs/modules/superset/examples/getting_started/getting_started.sh b/docs/modules/superset/examples/getting_started/getting_started.sh index 0ac3b217..562c4f17 100755 --- a/docs/modules/superset/examples/getting_started/getting_started.sh +++ b/docs/modules/superset/examples/getting_started/getting_started.sh @@ -26,20 +26,20 @@ case "$1" in "helm") echo "Installing Operators with Helm" # tag::helm-install-operators[] -helm install --wait commons-operator oci://oci.stackable.tech/sdp-charts/commons-operator --version 25.7.0-rc1 -helm install --wait secret-operator oci://oci.stackable.tech/sdp-charts/secret-operator --version 25.7.0-rc1 -helm install --wait listener-operator oci://oci.stackable.tech/sdp-charts/listener-operator --version 25.7.0-rc1 -helm install --wait superset-operator oci://oci.stackable.tech/sdp-charts/superset-operator --version 25.7.0-rc1 +helm install --wait commons-operator oci://oci.stackable.tech/sdp-charts/commons-operator --version 25.7.0 +helm install --wait secret-operator oci://oci.stackable.tech/sdp-charts/secret-operator --version 25.7.0 +helm install --wait listener-operator oci://oci.stackable.tech/sdp-charts/listener-operator --version 25.7.0 +helm install --wait superset-operator oci://oci.stackable.tech/sdp-charts/superset-operator --version 25.7.0 # end::helm-install-operators[] ;; "stackablectl") echo "installing Operators with stackablectl" # tag::stackablectl-install-operators[] stackablectl operator install \ - commons=25.7.0-rc1 \ - secret=25.7.0-rc1 \ - listener=25.7.0-rc1 \ - superset=25.7.0-rc1 + commons=25.7.0 \ + secret=25.7.0 \ + listener=25.7.0 \ + superset=25.7.0 # end::stackablectl-install-operators[] ;; *) diff --git a/docs/modules/superset/examples/getting_started/install_output.txt b/docs/modules/superset/examples/getting_started/install_output.txt index c7be6996..94024635 100644 --- a/docs/modules/superset/examples/getting_started/install_output.txt +++ b/docs/modules/superset/examples/getting_started/install_output.txt @@ -1,4 +1,4 @@ -Installed commons=25.7.0-rc1 operator -Installed secret=25.7.0-rc1 operator -Installed listener=25.7.0-rc1 operator -Installed superset=25.7.0-rc1 operator +Installed commons=25.7.0 operator +Installed secret=25.7.0 operator +Installed listener=25.7.0 operator +Installed superset=25.7.0 operator diff --git a/docs/modules/superset/examples/getting_started/superset-load-examples-job.yaml b/docs/modules/superset/examples/getting_started/superset-load-examples-job.yaml index 033f1deb..26bb6ff7 100644 --- a/docs/modules/superset/examples/getting_started/superset-load-examples-job.yaml +++ b/docs/modules/superset/examples/getting_started/superset-load-examples-job.yaml @@ -13,7 +13,7 @@ spec: name: config containers: - name: superset - image: oci.stackable.tech/sdp/superset:4.1.2-stackable25.7.0-rc1 + image: oci.stackable.tech/sdp/superset:4.1.2-stackable25.7.0 command: [ "/bin/sh", "-c", diff --git a/docs/templating_vars.yaml b/docs/templating_vars.yaml index 41080d62..0a05779f 100644 --- a/docs/templating_vars.yaml +++ b/docs/templating_vars.yaml @@ -3,7 +3,7 @@ helm: repo_name: sdp-charts repo_url: oci.stackable.tech versions: - commons: 25.7.0-rc1 - secret: 25.7.0-rc1 - listener: 25.7.0-rc1 - superset: 25.7.0-rc1 + commons: 25.7.0 + secret: 25.7.0 + listener: 25.7.0 + superset: 25.7.0 diff --git a/tests/release.yaml b/tests/release.yaml index 41d9b9ae..a1ccbadd 100644 --- a/tests/release.yaml +++ b/tests/release.yaml @@ -7,14 +7,14 @@ releases: description: Integration test products: commons: - operatorVersion: 25.7.0-rc1 + operatorVersion: 25.7.0 secret: - operatorVersion: 25.7.0-rc1 + operatorVersion: 25.7.0 listener: - operatorVersion: 25.7.0-rc1 + operatorVersion: 25.7.0 druid: - operatorVersion: 25.7.0-rc1 + operatorVersion: 25.7.0 superset: - operatorVersion: 25.7.0-rc1 + operatorVersion: 25.7.0 opa: - operatorVersion: 25.7.0-rc1 + operatorVersion: 25.7.0