From 0379c10761698643ce027cca805b957b81c69c2a Mon Sep 17 00:00:00 2001 From: Florent Tapponnier <160007691+Flotapponnier@users.noreply.github.com> Date: Sun, 23 Aug 2026 00:33:51 +0200 Subject: [PATCH] fix: bump aggregate-blob cache key to v2 (flush stale ISR) --- src/lib/aggregate-blob.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/aggregate-blob.ts b/src/lib/aggregate-blob.ts index 13eb46fe..ace33ba6 100644 --- a/src/lib/aggregate-blob.ts +++ b/src/lib/aggregate-blob.ts @@ -107,6 +107,6 @@ async function fetchAndProject(): Promise { */ export const loadAggregateFromBlob = unstable_cache( fetchAndProject, - ["aggregate-blob-v1"], + ["aggregate-blob-v2"], { revalidate: 60, tags: ["bench-aggregate", "benchmarks"] }, );