From 8a6cdb1b1c2b4f99905cfdce1211a464f02f40dd Mon Sep 17 00:00:00 2001 From: ildyria Date: Mon, 21 Apr 2025 18:04:27 +0200 Subject: [PATCH 1/2] version 6.5.1 --- docs/releases.md | 13 +++++++++++++ src/components/widgets/Announcement.astro | 4 ++-- 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/docs/releases.md b/docs/releases.md index df7dc576..4bb4f136 100644 --- a/docs/releases.md +++ b/docs/releases.md @@ -30,6 +30,19 @@ ## Version 6 +### v6.5.1 + +Released on Apr 21, 2025 + +#### Hot-fix : force cache clear on version update. + +We noticed that for use of caching, when doing an update there is a de synchornization between +the expected response from the front-end and the cached response from the backend. +This leaves Lychee in a temporary broken state depending of the ttl parameter of the cache (by default 1 day). +In order to avoid complaints, we force the cache to be cleared on patch/minor/major version changes. + +* `fixes` #3258 : version 6.5.1 + force cache clear by @ildyria. + ### v6.5.0 Released on Apr 21, 2025 diff --git a/src/components/widgets/Announcement.astro b/src/components/widgets/Announcement.astro index 0f6b7b40..c9cb6b99 100644 --- a/src/components/widgets/Announcement.astro +++ b/src/components/widgets/Announcement.astro @@ -10,8 +10,8 @@ >NEW Lychee 6.5.0 is now available! »Lychee 6.5.1 is now available! » Date: Mon, 21 Apr 2025 18:05:45 +0200 Subject: [PATCH 2/2] Apply suggestions from code review Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- docs/releases.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/releases.md b/docs/releases.md index 4bb4f136..6ab6010d 100644 --- a/docs/releases.md +++ b/docs/releases.md @@ -36,9 +36,9 @@ Released on Apr 21, 2025 #### Hot-fix : force cache clear on version update. -We noticed that for use of caching, when doing an update there is a de synchornization between +We noticed that for use of caching, when doing an update there is a desynchronization between the expected response from the front-end and the cached response from the backend. -This leaves Lychee in a temporary broken state depending of the ttl parameter of the cache (by default 1 day). +This leaves Lychee in a temporary broken state depending on the ttl parameter of the cache (by default 1 day). In order to avoid complaints, we force the cache to be cleared on patch/minor/major version changes. * `fixes` #3258 : version 6.5.1 + force cache clear by @ildyria.