From b9df3f48a41c5f1405f6c6a197ae0f5394f2e7f0 Mon Sep 17 00:00:00 2001 From: Siegfried Weber Date: Wed, 29 Jan 2025 17:03:06 +0100 Subject: [PATCH 1/2] chore: Release stackable-operator 0.86.0 --- 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 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..364178c97 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-29 + ### 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, From bcf76bdc6a7d0241190f363b53a7ab3b25370b4d Mon Sep 17 00:00:00 2001 From: Siegfried Weber Date: Thu, 30 Jan 2025 09:26:46 +0100 Subject: [PATCH 2/2] chore(stackable-operator): Update the release date in the changelog --- crates/stackable-operator/CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/stackable-operator/CHANGELOG.md b/crates/stackable-operator/CHANGELOG.md index 364178c97..e882a2862 100644 --- a/crates/stackable-operator/CHANGELOG.md +++ b/crates/stackable-operator/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. ## [Unreleased] -## [0.86.0] - 2025-01-29 +## [0.86.0] - 2025-01-30 ### Added