From 8cfbe32f9f9da5d74ed2ff6ede86dc91533cb2de Mon Sep 17 00:00:00 2001 From: Sebastian Bernauer Date: Fri, 13 Feb 2026 08:16:14 +0100 Subject: [PATCH 1/3] chore: Release stackable-operator 0.106.0, stackable-shared 0.0.4 --- Cargo.lock | 4 ++-- crates/stackable-operator/CHANGELOG.md | 9 +++++++++ crates/stackable-operator/Cargo.toml | 2 +- crates/stackable-shared/CHANGELOG.md | 8 ++++++++ crates/stackable-shared/Cargo.toml | 2 +- 5 files changed, 21 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 166bc5616..e0c41048e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2928,7 +2928,7 @@ dependencies = [ [[package]] name = "stackable-operator" -version = "0.105.0" +version = "0.106.0" dependencies = [ "clap", "const_format", @@ -2981,7 +2981,7 @@ dependencies = [ [[package]] name = "stackable-shared" -version = "0.0.3" +version = "0.0.4" dependencies = [ "jiff", "k8s-openapi", diff --git a/crates/stackable-operator/CHANGELOG.md b/crates/stackable-operator/CHANGELOG.md index 38c097b49..d7d9ee13f 100644 --- a/crates/stackable-operator/CHANGELOG.md +++ b/crates/stackable-operator/CHANGELOG.md @@ -4,11 +4,20 @@ All notable changes to this project will be documented in this file. ## [Unreleased] +## [0.106.0] - 2026-02-13 + +### Changed + +- BREAKING: Upgrade to kube `3.0.1` and k8s-openapi `0.27.0` ([#1138]). +- Bump stackable-shared to `0.0.4`, refer to its [changelog](../stackable-shared/CHANGELOG.md) ([#XXXX]). + ### Fixed - Store the Vector state in the log directory to ensure it persists across container restarts ([#1149]). +[#1138]: https://github.com/stackabletech/operator-rs/pull/1138 [#1149]: https://github.com/stackabletech/operator-rs/pull/1149 +[#XXXX]: https://github.com/stackabletech/operator-rs/pull/XXXX ## [0.105.0] - 2026-02-03 diff --git a/crates/stackable-operator/Cargo.toml b/crates/stackable-operator/Cargo.toml index 9e33001b0..46b0eb82c 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.105.0" +version = "0.106.0" authors.workspace = true license.workspace = true edition.workspace = true diff --git a/crates/stackable-shared/CHANGELOG.md b/crates/stackable-shared/CHANGELOG.md index c1fd6f63f..2ba1b3281 100644 --- a/crates/stackable-shared/CHANGELOG.md +++ b/crates/stackable-shared/CHANGELOG.md @@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file. ## [Unreleased] +## [0.0.4] - 2025-10-06 + +### Changed + +- BREAKING: Switch from `chrono` to `jiff` crate. This was done to follow the `kube` crate ([#1138]). + +[#1138]: https://github.com/stackabletech/operator-rs/pull/1138 + ## [0.0.3] - 2025-10-06 ### Added diff --git a/crates/stackable-shared/Cargo.toml b/crates/stackable-shared/Cargo.toml index 50dfe9edb..a99c5df24 100644 --- a/crates/stackable-shared/Cargo.toml +++ b/crates/stackable-shared/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stackable-shared" -version = "0.0.3" +version = "0.0.4" authors.workspace = true license.workspace = true edition.workspace = true From e07d0f3e80dc1086700b6b192ec8bdb62d604951 Mon Sep 17 00:00:00 2001 From: Sebastian Bernauer Date: Fri, 13 Feb 2026 08:31:45 +0100 Subject: [PATCH 2/3] changelog --- crates/stackable-operator/CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/stackable-operator/CHANGELOG.md b/crates/stackable-operator/CHANGELOG.md index d7d9ee13f..297148523 100644 --- a/crates/stackable-operator/CHANGELOG.md +++ b/crates/stackable-operator/CHANGELOG.md @@ -9,7 +9,7 @@ All notable changes to this project will be documented in this file. ### Changed - BREAKING: Upgrade to kube `3.0.1` and k8s-openapi `0.27.0` ([#1138]). -- Bump stackable-shared to `0.0.4`, refer to its [changelog](../stackable-shared/CHANGELOG.md) ([#XXXX]). +- Bump stackable-shared to `0.0.4`, refer to its [changelog](../stackable-shared/CHANGELOG.md) ([#1151]). ### Fixed @@ -17,7 +17,7 @@ All notable changes to this project will be documented in this file. [#1138]: https://github.com/stackabletech/operator-rs/pull/1138 [#1149]: https://github.com/stackabletech/operator-rs/pull/1149 -[#XXXX]: https://github.com/stackabletech/operator-rs/pull/XXXX +[#1151]: https://github.com/stackabletech/operator-rs/pull/1151 ## [0.105.0] - 2026-02-03 From 6ad69c7fc8db8ff28c29cdd5de4f26560ac7cb7e Mon Sep 17 00:00:00 2001 From: Sebastian Bernauer Date: Fri, 13 Feb 2026 09:12:21 +0100 Subject: [PATCH 3/3] Bump stackable-shared to 0.1.0 --- Cargo.lock | 2 +- crates/stackable-operator/CHANGELOG.md | 2 +- crates/stackable-shared/CHANGELOG.md | 2 +- crates/stackable-shared/Cargo.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e0c41048e..7eaabc99b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2981,7 +2981,7 @@ dependencies = [ [[package]] name = "stackable-shared" -version = "0.0.4" +version = "0.1.0" dependencies = [ "jiff", "k8s-openapi", diff --git a/crates/stackable-operator/CHANGELOG.md b/crates/stackable-operator/CHANGELOG.md index 297148523..32528ed44 100644 --- a/crates/stackable-operator/CHANGELOG.md +++ b/crates/stackable-operator/CHANGELOG.md @@ -9,7 +9,7 @@ All notable changes to this project will be documented in this file. ### Changed - BREAKING: Upgrade to kube `3.0.1` and k8s-openapi `0.27.0` ([#1138]). -- Bump stackable-shared to `0.0.4`, refer to its [changelog](../stackable-shared/CHANGELOG.md) ([#1151]). +- Bump stackable-shared to `0.1.0`, refer to its [changelog](../stackable-shared/CHANGELOG.md) ([#1151]). ### Fixed diff --git a/crates/stackable-shared/CHANGELOG.md b/crates/stackable-shared/CHANGELOG.md index 2ba1b3281..2c226bff0 100644 --- a/crates/stackable-shared/CHANGELOG.md +++ b/crates/stackable-shared/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. ## [Unreleased] -## [0.0.4] - 2025-10-06 +## [0.1.0] - 2025-10-06 ### Changed diff --git a/crates/stackable-shared/Cargo.toml b/crates/stackable-shared/Cargo.toml index a99c5df24..d6bcb4857 100644 --- a/crates/stackable-shared/Cargo.toml +++ b/crates/stackable-shared/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stackable-shared" -version = "0.0.4" +version = "0.1.0" authors.workspace = true license.workspace = true edition.workspace = true