From 93cff0f2cee7c3ee935549fbaefd5c710c40c609 Mon Sep 17 00:00:00 2001 From: Radin Hamidi Rad Date: Wed, 29 Apr 2026 23:44:08 -0400 Subject: [PATCH] Bump wrangler compatibility_date to 2026-04-15 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Both Pages projects were pinned at 2025-09-01 — fine, but stale. 2026-04-15 picks up several months of Workers runtime fixes and default-flag changes without crossing any documented breaking change for static-asset projects. The "Workers + Static Assets" mode we use isn't sensitive to most of the dated flags; this is largely housekeeping. Updated the comment in reproducibility/site/wrangler.jsonc to clarify the bump cadence (roughly twice a year, or when picking up a new feature) instead of "intentionally old-ish." Verified both sites build cleanly under the new value. Co-Authored-By: Claude Opus 4.7 (1M context) --- reproducibility/site/wrangler.jsonc | 8 +++++--- web/site/wrangler.jsonc | 2 +- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/reproducibility/site/wrangler.jsonc b/reproducibility/site/wrangler.jsonc index 08d5977..84497b3 100644 --- a/reproducibility/site/wrangler.jsonc +++ b/reproducibility/site/wrangler.jsonc @@ -8,13 +8,15 @@ * protocol used by the @qg/shared dep. Pre-providing this config + the * wrangler devDep skips the auto-config and deploys dist/ as static assets. * - * compatibility_date is intentionally kept old-ish (well-tested) — bump only - * when adopting a new Workers runtime feature. + * compatibility_date pins the Workers runtime behavior. Cloudflare ships + * fixes and feature changes under dated flags so old deployments keep + * working when the runtime evolves. Bump when picking up a new feature or + * roughly twice a year as housekeeping. */ { "$schema": "node_modules/wrangler/config-schema.json", "name": "querygym-leaderboard", - "compatibility_date": "2025-09-01", + "compatibility_date": "2026-04-15", "assets": { "directory": "./dist" } diff --git a/web/site/wrangler.jsonc b/web/site/wrangler.jsonc index 62936be..214295c 100644 --- a/web/site/wrangler.jsonc +++ b/web/site/wrangler.jsonc @@ -8,7 +8,7 @@ { "$schema": "node_modules/wrangler/config-schema.json", "name": "querygym-site", - "compatibility_date": "2025-09-01", + "compatibility_date": "2026-04-15", "assets": { "directory": "./dist" }