From 1f1a6e99767ea53c63e053261104033a00e66f40 Mon Sep 17 00:00:00 2001 From: Fuwn Date: Sat, 18 Apr 2026 09:14:44 +0000 Subject: build(workers): bump wrangler compatibility_date to 2025-01-01 Both the CDN (2023-10-30) and proxy (2023-12-18) workers were pinned to 2023 compatibility dates, missing ~2 years of Cloudflare Workers runtime fixes and API behaviour corrections. Bump both to 2025-01-01. Verified: both workers boot cleanly under local wrangler dev on the new date, and the CDN worker still returns correct cache/CORS/content -type headers on a sample PNG request. --- apps/cdn/wrangler.toml | 2 +- apps/proxy/wrangler.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/cdn/wrangler.toml b/apps/cdn/wrangler.toml index adb3e071..fcb5cdff 100644 --- a/apps/cdn/wrangler.toml +++ b/apps/cdn/wrangler.toml @@ -1,4 +1,4 @@ name = "cdn" main = "./index.ts" -compatibility_date = "2023-10-30" +compatibility_date = "2025-01-01" diff --git a/apps/proxy/wrangler.toml b/apps/proxy/wrangler.toml index 1115beeb..b86f92d6 100644 --- a/apps/proxy/wrangler.toml +++ b/apps/proxy/wrangler.toml @@ -1,6 +1,6 @@ name = "due-proxy" main = "src/index.js" -compatibility_date = "2023-12-18" +compatibility_date = "2025-01-01" [triggers] crons = ["* * * * *"] -- cgit v1.2.3