From 80b5093e65ef72f8f0172c87766983af8d024d42 Mon Sep 17 00:00:00 2001 From: Florent Tapponnier Date: Sat, 18 Jul 2026 19:02:17 +0200 Subject: [PATCH] =?UTF-8?q?hotfix:=20bump=20cache=20keys=20v37/v40=20?= =?UTF-8?q?=E2=80=94=20purge=20poisoned=2015-bench=20draft=20set=20(SRH=20?= =?UTF-8?q?burst=20pattern)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/lib/spec.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/spec.ts b/src/lib/spec.ts index c528b49d..1f2dd88f 100644 --- a/src/lib/spec.ts +++ b/src/lib/spec.ts @@ -297,7 +297,7 @@ const loadBenchmarkUnfilteredCached = unstable_cache( // v31: 084 indexer-latency dropped entirely (spec + harness deleted; // HyperSync + The Graph required paid credentials for sustained // cadence). Bench SET shrank. - ["bench-unfiltered-v36", process.env.VERCEL_ENV === "production" ? "prod" : "all"], + ["bench-unfiltered-v37", process.env.VERCEL_ENV === "production" ? "prod" : "all"], { revalidate: 300, tags: ["benchmarks"] }, ); @@ -501,7 +501,7 @@ const loadAllBenchmarksCached = unstable_cache( // v32: bumped with bench-unfiltered-v30 (081 slug rename ws-head-latency // -> ws-head-latency-ethereum + ungate on prod). // v34: bumped with bench-unfiltered-v31 (084 indexer-latency dropped). - ["all-benchmarks-v39", process.env.VERCEL_ENV === "production" ? "prod" : "all"], + ["all-benchmarks-v40", process.env.VERCEL_ENV === "production" ? "prod" : "all"], { revalidate: 300, tags: ["benchmarks"] }, ); export const loadAllBenchmarks = cache(loadAllBenchmarksCached);