diff options
| author | Fuwn <[email protected]> | 2026-04-18 09:14:44 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2026-04-18 09:14:44 +0000 |
| commit | 1f1a6e99767ea53c63e053261104033a00e66f40 (patch) | |
| tree | 24b0633da27500da2ecd6d2b9b0a9992565034e2 | |
| parent | fix(tooltip): remove body-appended tooltip node on destroy (diff) | |
| download | due.moe-1f1a6e99767ea53c63e053261104033a00e66f40.tar.xz due.moe-1f1a6e99767ea53c63e053261104033a00e66f40.zip | |
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.
| -rw-r--r-- | apps/cdn/wrangler.toml | 2 | ||||
| -rw-r--r-- | 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 = ["* * * * *"] |