From 88e249c2d74446d1853bcbdbd724436bc31105f4 Mon Sep 17 00:00:00 2001 From: Florent Tapponnier <160007691+Flotapponnier@users.noreply.github.com> Date: Wed, 19 Aug 2026 00:31:53 +0200 Subject: [PATCH] fix(cache): bump keys to include 6 new chain benches 216-221 --- src/lib/spec.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/lib/spec.ts b/src/lib/spec.ts index 9deaf4b4..3d14c119 100644 --- a/src/lib/spec.ts +++ b/src/lib/spec.ts @@ -324,7 +324,8 @@ const loadBenchmarkUnfilteredCached = unstable_cache( // bump is purely to invalidate the stale editorialStatus. // v53: overlayEditorial now prunes providers absent from spec.providers. // Bump to flush v52 cached entries that still carry stale Flashbots row. - ["bench-unfiltered-v53", process.env.VERCEL_ENV === "production" ? "prod" : "all"], + // v54: add 6 new chain benches 216-221 (NEAR, Flow, Hedera, CKB, MultiversX, NEO). + ["bench-unfiltered-v54", process.env.VERCEL_ENV === "production" ? "prod" : "all"], { revalidate: 300, tags: ["benchmarks"] }, ); @@ -536,7 +537,8 @@ const loadAllBenchmarksCached = unstable_cache( // v51: add bench 102 token-quote-coverage (draft, see bench-unfiltered-v48). // v52: token-quote-coverage flipped draft→live (see bench-unfiltered-v49). // v53: lockstep with bench-unfiltered-v53 (Flashbots prune). - ["all-benchmarks-v56", process.env.VERCEL_ENV === "production" ? "prod" : "all"], + // v57: lockstep with bench-unfiltered-v54 (add 6 new chain benches 216-221). + ["all-benchmarks-v57", process.env.VERCEL_ENV === "production" ? "prod" : "all"], { revalidate: 300, tags: ["benchmarks"] }, ); export const loadAllBenchmarks = cache(loadAllBenchmarksCached);