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..7d7346a6b 100644 --- a/crates/stackable-operator/CHANGELOG.md +++ b/crates/stackable-operator/CHANGELOG.md @@ -4,8 +4,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 +17,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..448cae9ac 100644 --- a/crates/stackable-telemetry/CHANGELOG.md +++ b/crates/stackable-telemetry/CHANGELOG.md @@ -4,9 +4,11 @@ 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]). +- Fix compilation failures when not enabling default features ([#1162]). [#1162]: https://github.com/stackabletech/operator-rs/pull/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