From 09420d37976940c325122b65634c1715d35b26ef Mon Sep 17 00:00:00 2001 From: Techassi Date: Tue, 21 Jul 2026 13:00:01 +0200 Subject: [PATCH] chore: Release 26.7.0 Signed-off-by: Techassi --- CHANGELOG.md | 2 ++ Cargo.lock | 2 +- Cargo.nix | 2 +- Cargo.toml | 2 +- deploy/helm/airflow-operator/Chart.yaml | 4 ++-- .../getting_started/code/getting_started.sh | 16 ++++++++-------- .../getting_started/code/install_output.txt | 8 ++++---- docs/templating_vars.yaml | 8 ++++---- tests/release.yaml | 12 ++++++------ 9 files changed, 29 insertions(+), 27 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9f486955..457873a1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## [Unreleased] +## [26.7.0] - 2026-07-21 + ## [26.7.0-rc1] - 2026-07-16 ### Added diff --git a/Cargo.lock b/Cargo.lock index 2d13ee62..da8a7a1e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3015,7 +3015,7 @@ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596" [[package]] name = "stackable-airflow-operator" -version = "26.7.0-rc1" +version = "26.7.0" dependencies = [ "anyhow", "built", diff --git a/Cargo.nix b/Cargo.nix index 2fa8e515..d78c354b 100644 --- a/Cargo.nix +++ b/Cargo.nix @@ -9893,7 +9893,7 @@ rec { }; "stackable-airflow-operator" = rec { crateName = "stackable-airflow-operator"; - version = "26.7.0-rc1"; + version = "26.7.0"; edition = "2024"; crateBin = [ { diff --git a/Cargo.toml b/Cargo.toml index a9619717..eb99d5a1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["rust/operator-binary"] resolver = "2" [workspace.package] -version = "26.7.0-rc1" +version = "26.7.0" authors = ["Stackable GmbH "] license = "OSL-3.0" edition = "2024" diff --git a/deploy/helm/airflow-operator/Chart.yaml b/deploy/helm/airflow-operator/Chart.yaml index 0877df89..2e2b4bec 100644 --- a/deploy/helm/airflow-operator/Chart.yaml +++ b/deploy/helm/airflow-operator/Chart.yaml @@ -1,8 +1,8 @@ --- apiVersion: v2 name: airflow-operator -version: "26.7.0-rc1" -appVersion: "26.7.0-rc1" +version: "26.7.0" +appVersion: "26.7.0" description: The Stackable Operator for Apache Airflow home: https://github.com/stackabletech/airflow-operator maintainers: diff --git a/docs/modules/airflow/examples/getting_started/code/getting_started.sh b/docs/modules/airflow/examples/getting_started/code/getting_started.sh index f2974643..40418ae7 100755 --- a/docs/modules/airflow/examples/getting_started/code/getting_started.sh +++ b/docs/modules/airflow/examples/getting_started/code/getting_started.sh @@ -52,20 +52,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 26.7.0-rc1 -helm install --wait secret-operator oci://oci.stackable.tech/sdp-charts/secret-operator --version 26.7.0-rc1 -helm install --wait listener-operator oci://oci.stackable.tech/sdp-charts/listener-operator --version 26.7.0-rc1 -helm install --wait airflow-operator oci://oci.stackable.tech/sdp-charts/airflow-operator --version 26.7.0-rc1 +helm install --wait commons-operator oci://oci.stackable.tech/sdp-charts/commons-operator --version 26.7.0 +helm install --wait secret-operator oci://oci.stackable.tech/sdp-charts/secret-operator --version 26.7.0 +helm install --wait listener-operator oci://oci.stackable.tech/sdp-charts/listener-operator --version 26.7.0 +helm install --wait airflow-operator oci://oci.stackable.tech/sdp-charts/airflow-operator --version 26.7.0 # end::helm-install-operators[] ;; "stackablectl") echo "installing Operators with stackablectl" # tag::stackablectl-install-operators[] stackablectl operator install \ - commons=26.7.0-rc1 \ - secret=26.7.0-rc1 \ - listener=26.7.0-rc1 \ - airflow=26.7.0-rc1 + commons=26.7.0 \ + secret=26.7.0 \ + listener=26.7.0 \ + airflow=26.7.0 # end::stackablectl-install-operators[] ;; *) diff --git a/docs/modules/airflow/examples/getting_started/code/install_output.txt b/docs/modules/airflow/examples/getting_started/code/install_output.txt index 2ce8efcc..98bcceca 100644 --- a/docs/modules/airflow/examples/getting_started/code/install_output.txt +++ b/docs/modules/airflow/examples/getting_started/code/install_output.txt @@ -1,4 +1,4 @@ -Installed commons=26.7.0-rc1 operator -Installed secret=26.7.0-rc1 operator -Installed listener=26.7.0-rc1 operator -Installed airflow=26.7.0-rc1 operator +Installed commons=26.7.0 operator +Installed secret=26.7.0 operator +Installed listener=26.7.0 operator +Installed airflow=26.7.0 operator diff --git a/docs/templating_vars.yaml b/docs/templating_vars.yaml index 8159d50c..ad062f0b 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: 26.7.0-rc1 - secret: 26.7.0-rc1 - listener: 26.7.0-rc1 - airflow: 26.7.0-rc1 + commons: 26.7.0 + secret: 26.7.0 + listener: 26.7.0 + airflow: 26.7.0 postgresql: 16.5.0 redis: 20.11.3 diff --git a/tests/release.yaml b/tests/release.yaml index 292a6fb8..f4a426ce 100644 --- a/tests/release.yaml +++ b/tests/release.yaml @@ -7,14 +7,14 @@ releases: description: Integration test products: commons: - operatorVersion: 26.7.0-rc1 + operatorVersion: 26.7.0 secret: - operatorVersion: 26.7.0-rc1 + operatorVersion: 26.7.0 listener: - operatorVersion: 26.7.0-rc1 + operatorVersion: 26.7.0 airflow: - operatorVersion: 26.7.0-rc1 + operatorVersion: 26.7.0 opa: - operatorVersion: 26.7.0-rc1 + operatorVersion: 26.7.0 spark-k8s: - operatorVersion: 26.7.0-rc1 + operatorVersion: 26.7.0