From d8d5e010667200b956a0c9dee9b5af4ab4685a22 Mon Sep 17 00:00:00 2001 From: Sebastian Bernauer Date: Mon, 9 Mar 2026 11:53:23 +0100 Subject: [PATCH 1/3] chore: Release stackable-operator 0.107.0, stackable-telemetry 0.6.2 --- Cargo.lock | 4 ++-- crates/stackable-operator/CHANGELOG.md | 4 +++- crates/stackable-operator/Cargo.toml | 2 +- crates/stackable-telemetry/CHANGELOG.md | 2 ++ crates/stackable-telemetry/Cargo.toml | 2 +- 5 files changed, 9 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 945ff5cfe..251d52d23 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2935,7 +2935,7 @@ dependencies = [ [[package]] name = "stackable-operator" -version = "0.106.2" +version = "0.107.0" dependencies = [ "clap", "const_format", @@ -3005,7 +3005,7 @@ dependencies = [ [[package]] name = "stackable-telemetry" -version = "0.6.1" +version = "0.6.2" dependencies = [ "axum", "clap", diff --git a/crates/stackable-operator/CHANGELOG.md b/crates/stackable-operator/CHANGELOG.md index 8c3a6ee63..586e1a34d 100644 --- a/crates/stackable-operator/CHANGELOG.md +++ b/crates/stackable-operator/CHANGELOG.md @@ -2,10 +2,11 @@ All notable changes to this project will be documented in this file. -## [Unreleased] +## [0.107.0] - 2026-03-09 ### Added +- Add support for specifying a `clientAuthenticationMethod` for OIDC ([#1158]). - Added two new crate features: `crds` and `kube-ws` ([#1162]). ### Fixed @@ -14,6 +15,7 @@ All notable changes to this project will be documented in this file. This is achieved by removing the `clap`, `telemetry` and `versioned` features, which were previously enabled by default. They have been removed as the stackable-operator code actually always requires them. +[#1158]: https://github.com/stackabletech/operator-rs/pull/1158 [#1162]: https://github.com/stackabletech/operator-rs/pull/1162 ## [0.106.2] - 2026-02-26 diff --git a/crates/stackable-operator/Cargo.toml b/crates/stackable-operator/Cargo.toml index b26c78f7f..4cbf3075e 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.106.2" +version = "0.107.0" authors.workspace = true license.workspace = true edition.workspace = true diff --git a/crates/stackable-telemetry/CHANGELOG.md b/crates/stackable-telemetry/CHANGELOG.md index c61d81b33..2afc32ae7 100644 --- a/crates/stackable-telemetry/CHANGELOG.md +++ b/crates/stackable-telemetry/CHANGELOG.md @@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file. ## [Unreleased] +## [0.6.2] - 2026-03-09 + ### Fixed - BREAKING: Fix compilation failures when not enabling default features ([#1162]). diff --git a/crates/stackable-telemetry/Cargo.toml b/crates/stackable-telemetry/Cargo.toml index 562ff4e2c..ae314eff1 100644 --- a/crates/stackable-telemetry/Cargo.toml +++ b/crates/stackable-telemetry/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stackable-telemetry" -version = "0.6.1" +version = "0.6.2" authors.workspace = true license.workspace = true edition.workspace = true From 0b1714b45c571e335237204a5a0e4ee4ad7b8a67 Mon Sep 17 00:00:00 2001 From: Sebastian Bernauer Date: Mon, 9 Mar 2026 11:55:10 +0100 Subject: [PATCH 2/3] changelog --- crates/stackable-telemetry/CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/stackable-telemetry/CHANGELOG.md b/crates/stackable-telemetry/CHANGELOG.md index 2afc32ae7..448cae9ac 100644 --- a/crates/stackable-telemetry/CHANGELOG.md +++ b/crates/stackable-telemetry/CHANGELOG.md @@ -8,7 +8,7 @@ All notable changes to this project will be documented in this file. ### Fixed -- BREAKING: Fix compilation failures when not enabling default features ([#1162]). +- Fix compilation failures when not enabling default features ([#1162]). [#1162]: https://github.com/stackabletech/operator-rs/pull/1162 From f722ba417561d2831dea31fc2a2083d81e922029 Mon Sep 17 00:00:00 2001 From: Sebastian Bernauer Date: Mon, 9 Mar 2026 12:39:10 +0100 Subject: [PATCH 3/3] Add unreleased section --- crates/stackable-operator/CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crates/stackable-operator/CHANGELOG.md b/crates/stackable-operator/CHANGELOG.md index 586e1a34d..7d7346a6b 100644 --- a/crates/stackable-operator/CHANGELOG.md +++ b/crates/stackable-operator/CHANGELOG.md @@ -2,6 +2,8 @@ All notable changes to this project will be documented in this file. +## [Unreleased] + ## [0.107.0] - 2026-03-09 ### Added