diff --git a/src/lib/removed-benches.ts b/src/lib/removed-benches.ts index 5c4690f2..16e3e1b8 100644 --- a/src/lib/removed-benches.ts +++ b/src/lib/removed-benches.ts @@ -52,5 +52,4 @@ export const REMOVED_BENCH_SLUGS = new Set([ // follows suit and is not gated. "oracle-freshness", "rpc-reliability", - "evm-block-builders", ]); diff --git a/src/lib/spec.ts b/src/lib/spec.ts index 009f2a80..86cce92b 100644 --- a/src/lib/spec.ts +++ b/src/lib/spec.ts @@ -292,7 +292,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-v31", process.env.VERCEL_ENV === "production" ? "prod" : "all"], + ["bench-unfiltered-v32", process.env.VERCEL_ENV === "production" ? "prod" : "all"], { revalidate: 300, tags: ["benchmarks"] }, ); @@ -451,7 +451,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-v34", process.env.VERCEL_ENV === "production" ? "prod" : "all"], + ["all-benchmarks-v35", process.env.VERCEL_ENV === "production" ? "prod" : "all"], { revalidate: 300, tags: ["benchmarks"] }, ); export const loadAllBenchmarks = cache(loadAllBenchmarksCached);