From e1ba68a6f50cd7668ba7c5620024ec101b45747f Mon Sep 17 00:00:00 2001 From: Techassi Date: Thu, 3 Sep 2026 12:22:25 +0200 Subject: [PATCH] chore(operator): Release 0.117.0 --- .scripts/verify_crate_versions.sh | 1 + CHANGELOG.md | 2 ++ Cargo.lock | 2 +- crates/stackable-operator/CHANGELOG.md | 5 ++++- crates/stackable-operator/Cargo.toml | 2 +- 5 files changed, 9 insertions(+), 3 deletions(-) diff --git a/.scripts/verify_crate_versions.sh b/.scripts/verify_crate_versions.sh index 5b8198b36..c3f1b31f7 100755 --- a/.scripts/verify_crate_versions.sh +++ b/.scripts/verify_crate_versions.sh @@ -3,6 +3,7 @@ set -euo pipefail # Eg: makes a list like this based on the latest release in the CHANGELOG.md files: +# config-utils-0.5.0 # containerdebug-0.4.1 # k8s-version-0.1.1 # stackable-certs-0.3.1 diff --git a/CHANGELOG.md b/CHANGELOG.md index 96c05352b..1061b4f07 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ Please see the relevant crate changelogs: +- [config-utils](./crates/config-utils/CHANGELOG.md) +- [containerdebug](./crates/containerdebug/CHANGELOG.md) - [k8s-version](./crates/k8s-version/CHANGELOG.md) - [stackable-certs](./crates/stackable-certs/CHANGELOG.md) - [stackable-operator](./crates/stackable-operator/CHANGELOG.md) diff --git a/Cargo.lock b/Cargo.lock index a4cc94218..beebbb721 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3806,7 +3806,7 @@ dependencies = [ [[package]] name = "stackable-operator" -version = "0.116.0" +version = "0.117.0" dependencies = [ "base64 0.23.0", "clap", diff --git a/crates/stackable-operator/CHANGELOG.md b/crates/stackable-operator/CHANGELOG.md index 3b9f970f0..46755f368 100644 --- a/crates/stackable-operator/CHANGELOG.md +++ b/crates/stackable-operator/CHANGELOG.md @@ -4,13 +4,16 @@ All notable changes to this project will be documented in this file. ## [Unreleased] +## [0.117.0] - 2026-09-03 + ### Added - Add the Cargo features `kube-http-proxy` and `kube-socks5` that enable the `http-proxy` and `socks5` features on the `kube` crate ([#1269]). ### Changed -- BREAKING: `ClusterResources` now warns about `objectOverrides` entries that did not match any of the objects it created. To enable this, the signatures of `apply_deep_merge` and `ObjectOverrides::apply_to` needed to be adjusted ([#1264]). +- BREAKING: `ClusterResources` now warns about `objectOverrides` entries that did not match any of the objects it created. + To enable this, the signatures of `apply_deep_merge` and `ObjectOverrides::apply_to` needed to be adjusted ([#1264]). [#1264]: https://github.com/stackabletech/operator-rs/pull/1264 [#1269]: https://github.com/stackabletech/operator-rs/pull/1269 diff --git a/crates/stackable-operator/Cargo.toml b/crates/stackable-operator/Cargo.toml index dd2f4380b..dcf9276f5 100644 --- a/crates/stackable-operator/Cargo.toml +++ b/crates/stackable-operator/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "stackable-operator" description = "Stackable Operator Framework" -version = "0.116.0" +version = "0.117.0" authors.workspace = true license.workspace = true edition.workspace = true