From 3715ebfbb56c1ec2f8e3a56430dee322eaa9cc56 Mon Sep 17 00:00:00 2001 From: Florent Tapponnier <160007691+Flotapponnier@users.noreply.github.com> Date: Wed, 9 Sep 2026 16:52:39 +0200 Subject: [PATCH] chore(cache): bump bench-unfiltered and all-benchmarks for contested-chain scope #2281 changes the provider values on wallet-labels-coverage, but the cached v62 entries still carry the old cross-chain aggregate, so staging kept serving StellarExpert first. Both keys bumped in lockstep as usual. Co-Authored-By: Claude Opus 5 (1M context) --- src/lib/spec.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/lib/spec.ts b/src/lib/spec.ts index dfb04e7d..13aa0bb2 100644 --- a/src/lib/spec.ts +++ b/src/lib/spec.ts @@ -391,7 +391,8 @@ const loadBenchmarkUnfilteredCached = unstable_cache( // v55: add ws-head-latency-robinhood (244) + keyed-rpc-robinhood (243). Bench SET grew. // v56: drop 6 keyed-rpc benches (arbitrum/base/bnb/eth/polygon/solana), US-only robinhood. // v57: drop rpc-keyed-latency bench. - ["bench-unfiltered-v62", process.env.VERCEL_ENV === "production" ? "prod" : "all"], + // v63: score_scope contested_chains on bench 008 changes its provider values. + ["bench-unfiltered-v63", process.env.VERCEL_ENV === "production" ? "prod" : "all"], { revalidate: 300, tags: ["benchmarks"] }, ); @@ -604,7 +605,7 @@ const loadAllBenchmarksCached = unstable_cache( // v52: token-quote-coverage flipped draft→live (see bench-unfiltered-v49). // v53: lockstep with bench-unfiltered-v53 (Flashbots prune). // v57: lockstep with bench-unfiltered-v54 (add 6 new chain benches 216-221). - ["all-benchmarks-v57", process.env.VERCEL_ENV === "production" ? "prod" : "all"], + ["all-benchmarks-v58", process.env.VERCEL_ENV === "production" ? "prod" : "all"], { revalidate: 300, tags: ["benchmarks"] }, ); export const loadAllBenchmarks = cache(loadAllBenchmarksCached);