From e5bfee596cc918b05f3e1d7e667c25951317cf31 Mon Sep 17 00:00:00 2001 From: Siegfried Weber Date: Thu, 30 Jan 2025 10:53:48 +0100 Subject: [PATCH] chore: Release stackable-operator 0.86.0 (#954) * chore: Release stackable-operator 0.86.0 * chore(stackable-operator): Update the release date in the changelog --- Cargo.lock | 4 ++-- crates/stackable-operator/CHANGELOG.md | 2 ++ crates/stackable-operator/Cargo.toml | 2 +- crates/stackable-operator/src/commons/cache.rs | 3 +-- 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 65b84f3c2..f36d81de8 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,