Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions src/lib/spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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"] },
);

Expand Down Expand Up @@ -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);
Expand Down
Loading