diff --git a/Cargo.lock b/Cargo.lock index 4b9e101bf..dfe796c1a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,6 +1,6 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. -version = 3 +version = 4 [[package]] name = "addr2line" @@ -3199,7 +3199,7 @@ dependencies = [ [[package]] name = "stackable-operator" -version = "0.85.0" +version = "0.86.0" dependencies = [ "chrono", "clap", diff --git a/crates/stackable-operator/CHANGELOG.md b/crates/stackable-operator/CHANGELOG.md index a2acf084b..e882a2862 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.86.0] - 2025-01-30 + ### Added - Add generic `TtlCache` structure as well as a `UserInformationCache` type ([#943]). diff --git a/crates/stackable-operator/Cargo.toml b/crates/stackable-operator/Cargo.toml index 05e3fd2c2..8da473ce0 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.85.0" +version = "0.86.0" authors.workspace = true license.workspace = true edition.workspace = true diff --git a/crates/stackable-operator/src/commons/cache.rs b/crates/stackable-operator/src/commons/cache.rs index f6623417e..72ec8bf23 100644 --- a/crates/stackable-operator/src/commons/cache.rs +++ b/crates/stackable-operator/src/commons/cache.rs @@ -41,8 +41,7 @@ impl TtlCacheDefaults for UserInformationCacheDefaults { Eq )] pub struct TtlCache { - /// Time to live per entry; Entries which were not queried within the given duration, are - /// removed. + /// Time to live per entry #[serde(default = "D::entry_time_to_live")] pub entry_time_to_live: Duration,