diff --git a/CHANGELOG.md b/CHANGELOG.md index 130bb534..f64b05bf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file. ## [Unreleased] +## [25.11.0] - 2025-11-07 + ## [25.11.0-rc1] - 2025-11-06 ### Added diff --git a/Cargo.lock b/Cargo.lock index e93b3c43..8c8a4379 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2451,7 +2451,7 @@ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596" [[package]] name = "stackable-hive-operator" -version = "25.11.0-rc1" +version = "25.11.0" dependencies = [ "anyhow", "built", diff --git a/Cargo.nix b/Cargo.nix index 9370bd42..0dff25be 100644 --- a/Cargo.nix +++ b/Cargo.nix @@ -8005,7 +8005,7 @@ rec { }; "stackable-hive-operator" = rec { crateName = "stackable-hive-operator"; - version = "25.11.0-rc1"; + version = "25.11.0"; edition = "2021"; crateBin = [ { diff --git a/Cargo.toml b/Cargo.toml index 720ef26c..5d221284 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["rust/operator-binary"] resolver = "2" [workspace.package] -version = "25.11.0-rc1" +version = "25.11.0" authors = ["Stackable GmbH "] license = "OSL-3.0" edition = "2021" diff --git a/deploy/helm/hive-operator/Chart.yaml b/deploy/helm/hive-operator/Chart.yaml index 489dbeed..9d60ec7b 100644 --- a/deploy/helm/hive-operator/Chart.yaml +++ b/deploy/helm/hive-operator/Chart.yaml @@ -1,8 +1,8 @@ --- apiVersion: v2 name: hive-operator -version: "25.11.0-rc1" -appVersion: "25.11.0-rc1" +version: "25.11.0" +appVersion: "25.11.0" description: The Stackable Operator for Apache Hive home: https://github.com/stackabletech/hive-operator maintainers: diff --git a/docs/modules/hive/examples/getting_started/getting_started.sh b/docs/modules/hive/examples/getting_started/getting_started.sh index 68a61687..be004e4e 100755 --- a/docs/modules/hive/examples/getting_started/getting_started.sh +++ b/docs/modules/hive/examples/getting_started/getting_started.sh @@ -26,10 +26,10 @@ 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.11.0-rc1 -helm install --wait secret-operator oci://oci.stackable.tech/sdp-charts/secret-operator --version 25.11.0-rc1 -helm install --wait listener-operator oci://oci.stackable.tech/sdp-charts/listener-operator --version 25.11.0-rc1 -helm install --wait hive-operator oci://oci.stackable.tech/sdp-charts/hive-operator --version 25.11.0-rc1 +helm install --wait commons-operator oci://oci.stackable.tech/sdp-charts/commons-operator --version 25.11.0 +helm install --wait secret-operator oci://oci.stackable.tech/sdp-charts/secret-operator --version 25.11.0 +helm install --wait listener-operator oci://oci.stackable.tech/sdp-charts/listener-operator --version 25.11.0 +helm install --wait hive-operator oci://oci.stackable.tech/sdp-charts/hive-operator --version 25.11.0 # end::helm-install-operators[] echo "Install minio for S3" @@ -72,10 +72,10 @@ if false; then echo "Installing Operators with stackablectl" # tag::stackablectl-install-operators[] stackablectl operator install \ - commons=25.11.0-rc1 \ - secret=25.11.0-rc1 \ - listener=25.11.0-rc1 \ - hive=25.11.0-rc1 + commons=25.11.0 \ + secret=25.11.0 \ + listener=25.11.0 \ + hive=25.11.0 # end::stackablectl-install-operators[] fi diff --git a/docs/modules/hive/examples/getting_started/install-operator-output.txt b/docs/modules/hive/examples/getting_started/install-operator-output.txt index b38dbec7..5db5ba86 100644 --- a/docs/modules/hive/examples/getting_started/install-operator-output.txt +++ b/docs/modules/hive/examples/getting_started/install-operator-output.txt @@ -1,4 +1,4 @@ -Installed commons=25.11.0-rc1 operator -Installed secret=25.11.0-rc1 operator -Installed listener=25.11.0-rc1 operator -Installed hive=25.11.0-rc1 operator +Installed commons=25.11.0 operator +Installed secret=25.11.0 operator +Installed listener=25.11.0 operator +Installed hive=25.11.0 operator diff --git a/docs/modules/hive/examples/getting_started/release.yaml b/docs/modules/hive/examples/getting_started/release.yaml index 2d5b7205..aac4315f 100644 --- a/docs/modules/hive/examples/getting_started/release.yaml +++ b/docs/modules/hive/examples/getting_started/release.yaml @@ -5,10 +5,10 @@ releases: description: Demo / Test release for Hive getting started guide products: commons: - operatorVersion: 25.11.0-rc1 + operatorVersion: 25.11.0 hive: - operatorVersion: 25.11.0-rc1 + operatorVersion: 25.11.0 listener: - operatorVersion: 25.11.0-rc1 + operatorVersion: 25.11.0 secret: - operatorVersion: 25.11.0-rc1 + operatorVersion: 25.11.0 diff --git a/docs/templating_vars.yaml b/docs/templating_vars.yaml index 1aa48538..8a07c5bb 100644 --- a/docs/templating_vars.yaml +++ b/docs/templating_vars.yaml @@ -3,9 +3,9 @@ helm: repo_name: sdp-charts repo_url: oci.stackable.tech versions: - commons: 25.11.0-rc1 - secret: 25.11.0-rc1 - listener: 25.11.0-rc1 - hive: 25.11.0-rc1 + commons: 25.11.0 + secret: 25.11.0 + listener: 25.11.0 + hive: 25.11.0 minio: 5.4.0 postgresql: 16.5.0 diff --git a/tests/release.yaml b/tests/release.yaml index 9e831dae..ad2659d4 100644 --- a/tests/release.yaml +++ b/tests/release.yaml @@ -7,14 +7,14 @@ releases: description: Integration test products: commons: - operatorVersion: 25.11.0-rc1 + operatorVersion: 25.11.0 secret: - operatorVersion: 25.11.0-rc1 + operatorVersion: 25.11.0 listener: - operatorVersion: 25.11.0-rc1 + operatorVersion: 25.11.0 zookeeper: - operatorVersion: 25.11.0-rc1 + operatorVersion: 25.11.0 hdfs: - operatorVersion: 25.11.0-rc1 + operatorVersion: 25.11.0 hive: - operatorVersion: 25.11.0-rc1 + operatorVersion: 25.11.0 diff --git a/tests/templates/kuttl/upgrade/30-assert.yaml.j2 b/tests/templates/kuttl/upgrade/30-assert.yaml.j2 index f696ff8f..af03f7a9 100644 --- a/tests/templates/kuttl/upgrade/30-assert.yaml.j2 +++ b/tests/templates/kuttl/upgrade/30-assert.yaml.j2 @@ -10,9 +10,9 @@ metadata: labels: {% if test_scenario['values']['hive-old'].find(",") > 0 %} # Yes, this *might* not work with custom images, I'm sorry! - app.kubernetes.io/version: "{{ test_scenario['values']['hive-old'].split(',')[0] }}-stackable25.11.0-rc1" + app.kubernetes.io/version: "{{ test_scenario['values']['hive-old'].split(',')[0] }}-stackable25.11.0" {% else %} - app.kubernetes.io/version: "{{ test_scenario['values']['hive-old'] }}-stackable25.11.0-rc1" + app.kubernetes.io/version: "{{ test_scenario['values']['hive-old'] }}-stackable25.11.0" {% endif %} status: readyReplicas: 1 diff --git a/tests/templates/kuttl/upgrade/31-assert.yaml.j2 b/tests/templates/kuttl/upgrade/31-assert.yaml.j2 index 4e261396..58b8aaf6 100644 --- a/tests/templates/kuttl/upgrade/31-assert.yaml.j2 +++ b/tests/templates/kuttl/upgrade/31-assert.yaml.j2 @@ -10,9 +10,9 @@ metadata: labels: {% if test_scenario['values']['hive-old'].find(",") > 0 %} # Yes, this *might* not work with custom images, I'm sorry! - app.kubernetes.io/version: "{{ test_scenario['values']['hive-new'].split(',')[0] }}-stackable25.11.0-rc1" + app.kubernetes.io/version: "{{ test_scenario['values']['hive-new'].split(',')[0] }}-stackable25.11.0" {% else %} - app.kubernetes.io/version: "{{ test_scenario['values']['hive-new'] }}-stackable25.11.0-rc1" + app.kubernetes.io/version: "{{ test_scenario['values']['hive-new'] }}-stackable25.11.0" {% endif %} status: readyReplicas: 1