diff --git a/Cargo.lock b/Cargo.lock index 01b01c1c7..a486f7a7d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3012,7 +3012,7 @@ dependencies = [ [[package]] name = "stackable-operator" -version = "0.94.0" +version = "0.95.0" dependencies = [ "chrono", "clap", @@ -3064,7 +3064,7 @@ dependencies = [ [[package]] name = "stackable-shared" -version = "0.0.1" +version = "0.0.2" dependencies = [ "k8s-openapi", "kube", @@ -3105,7 +3105,7 @@ dependencies = [ [[package]] name = "stackable-versioned" -version = "0.8.0" +version = "0.8.1" dependencies = [ "insta", "k8s-openapi", @@ -3120,7 +3120,7 @@ dependencies = [ [[package]] name = "stackable-versioned-macros" -version = "0.8.0" +version = "0.8.1" dependencies = [ "convert_case", "darling 0.21.2", @@ -3148,7 +3148,7 @@ dependencies = [ [[package]] name = "stackable-webhook" -version = "0.4.0" +version = "0.5.0" dependencies = [ "arc-swap", "axum", diff --git a/crates/stackable-operator/CHANGELOG.md b/crates/stackable-operator/CHANGELOG.md index 3135f7d17..a9ba07d55 100644 --- a/crates/stackable-operator/CHANGELOG.md +++ b/crates/stackable-operator/CHANGELOG.md @@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file. ## [Unreleased] +## [0.95.0] - 2025-08-21 + ### Added - Add `ProbeBuilder` to build Kubernetes container probes ([#1078]). diff --git a/crates/stackable-operator/Cargo.toml b/crates/stackable-operator/Cargo.toml index 70c753a68..e90854b91 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.94.0" +version = "0.95.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 8890b44be..922b8a77f 100644 --- a/crates/stackable-shared/CHANGELOG.md +++ b/crates/stackable-shared/CHANGELOG.md @@ -2,6 +2,17 @@ All notable changes to this project will be documented in this file. +## [0.0.2] - 2025-08-21 + +### Added + +- Some modules have been moved into the `stackable-shared` crate, so that they can also be + used in `stackable-certs` and `stackable-webhook` ([#1074]): + - The module `stackable_operator::time` has moved to `stackable_operator::shared::time` + - The module `stackable_operator::commons::secret` has moved to `stackable_operator::shared::secret` + +[#1074]: https://github.com/stackabletech/operator-rs/pull/1074 + ## [0.0.1] ### Added diff --git a/crates/stackable-shared/Cargo.toml b/crates/stackable-shared/Cargo.toml index df6ee6ad4..e139cb7b7 100644 --- a/crates/stackable-shared/Cargo.toml +++ b/crates/stackable-shared/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stackable-shared" -version = "0.0.1" +version = "0.0.2" authors.workspace = true license.workspace = true edition.workspace = true diff --git a/crates/stackable-versioned-macros/Cargo.toml b/crates/stackable-versioned-macros/Cargo.toml index 430c08c0f..3b6980bb1 100644 --- a/crates/stackable-versioned-macros/Cargo.toml +++ b/crates/stackable-versioned-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stackable-versioned-macros" -version = "0.8.0" +version = "0.8.1" authors.workspace = true license.workspace = true edition.workspace = true diff --git a/crates/stackable-versioned/CHANGELOG.md b/crates/stackable-versioned/CHANGELOG.md index 596e296f8..9d4411702 100644 --- a/crates/stackable-versioned/CHANGELOG.md +++ b/crates/stackable-versioned/CHANGELOG.md @@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file. ## [Unreleased] +## [0.8.1] - 2025-08-21 + ### Fixed - Replace the hardcoded `::stackable_versioned` path in the `tracking_from` function with the configurable crate override ([#1079]). diff --git a/crates/stackable-versioned/Cargo.toml b/crates/stackable-versioned/Cargo.toml index 67ade0008..50ebfda35 100644 --- a/crates/stackable-versioned/Cargo.toml +++ b/crates/stackable-versioned/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stackable-versioned" -version = "0.8.0" +version = "0.8.1" authors.workspace = true license.workspace = true edition.workspace = true diff --git a/crates/stackable-webhook/CHANGELOG.md b/crates/stackable-webhook/CHANGELOG.md index 1871f9102..c0571e4a7 100644 --- a/crates/stackable-webhook/CHANGELOG.md +++ b/crates/stackable-webhook/CHANGELOG.md @@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file. ## [Unreleased] +## [0.5.0] - 2025-08-21 + ### Changed - BREAKING: Re-write the `ConversionWebhookServer`. diff --git a/crates/stackable-webhook/Cargo.toml b/crates/stackable-webhook/Cargo.toml index 21b876d47..ed8cecc58 100644 --- a/crates/stackable-webhook/Cargo.toml +++ b/crates/stackable-webhook/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stackable-webhook" -version = "0.4.0" +version = "0.5.0" authors.workspace = true license.workspace = true edition.workspace = true