From c9996229dbf6530e76d855733e171308b0098815 Mon Sep 17 00:00:00 2001 From: Devin Zuczek Date: Mon, 13 Jul 2026 18:24:00 -0400 Subject: [PATCH] update wrangler/workers version --- apps/accounts/vitest.config.ts | 2 +- apps/accounts/wrangler.jsonc | 2 +- apps/api/wrangler.jsonc | 2 +- apps/auth/wrangler.jsonc | 2 +- apps/cdn/wrangler.jsonc | 2 +- apps/chat/wrangler.jsonc | 2 +- apps/clubs/wrangler.jsonc | 2 +- apps/commerce/wrangler.jsonc | 2 +- apps/econ/wrangler.jsonc | 2 +- apps/img/wrangler.jsonc | 2 +- apps/match/wrangler.jsonc | 2 +- apps/notify/wrangler.jsonc | 2 +- apps/ns/wrangler.jsonc | 2 +- apps/playersettings/wrangler.jsonc | 2 +- apps/rooms/vitest.config.ts | 2 +- apps/rooms/wrangler.jsonc | 2 +- apps/storage/wrangler.jsonc | 2 +- apps/www/wrangler.jsonc | 2 +- .../templates/fetch-worker-minimal/wrangler.jsonc.hbs | 2 +- turbo/generators/templates/fetch-worker-vite/wrangler.jsonc.hbs | 2 +- turbo/generators/templates/fetch-worker/wrangler.jsonc.hbs | 2 +- 21 files changed, 21 insertions(+), 21 deletions(-) diff --git a/apps/accounts/vitest.config.ts b/apps/accounts/vitest.config.ts index b549955..0ae0c7f 100644 --- a/apps/accounts/vitest.config.ts +++ b/apps/accounts/vitest.config.ts @@ -18,7 +18,7 @@ export default defineConfig({ { name: 'notify', modules: true, - compatibilityDate: '2025-09-20', + compatibilityDate: '2026-06-16', compatibilityFlags: ['nodejs_compat'], durableObjects: { RECFLARE_NOTIFICATIONS_HUB: 'NotificationsHub' }, script: ` diff --git a/apps/accounts/wrangler.jsonc b/apps/accounts/wrangler.jsonc index ad3a0c7..ed91970 100644 --- a/apps/accounts/wrangler.jsonc +++ b/apps/accounts/wrangler.jsonc @@ -2,7 +2,7 @@ "$schema": "node_modules/wrangler/config-schema.json", "name": "accounts", "main": "src/accounts.app.ts", - "compatibility_date": "2025-09-20", + "compatibility_date": "2026-06-16", "compatibility_flags": ["nodejs_compat"], // Shared `recflare` D1 database. The `accounts` table schema/migrations are owned // by the `auth` worker; this worker binds it read/write to look up and create diff --git a/apps/api/wrangler.jsonc b/apps/api/wrangler.jsonc index b8b38fd..ed9e80e 100644 --- a/apps/api/wrangler.jsonc +++ b/apps/api/wrangler.jsonc @@ -2,7 +2,7 @@ "$schema": "node_modules/wrangler/config-schema.json", "name": "api", "main": "src/api.app.ts", - "compatibility_date": "2025-09-20", + "compatibility_date": "2026-06-16", "compatibility_flags": ["nodejs_compat"], // Shared `recflare` DB. Created manually with `wrangler d1 create recflare`; its // id lives in RECFLARE_D1 (see .env) and the "local" placeholder below is diff --git a/apps/auth/wrangler.jsonc b/apps/auth/wrangler.jsonc index 6e0e8bb..2390bb0 100644 --- a/apps/auth/wrangler.jsonc +++ b/apps/auth/wrangler.jsonc @@ -2,7 +2,7 @@ "$schema": "node_modules/wrangler/config-schema.json", "name": "auth", "main": "src/auth.app.ts", - "compatibility_date": "2025-09-20", + "compatibility_date": "2026-06-16", "compatibility_flags": ["nodejs_compat"], // Shared `recflare` D1 database (also used by the rooms worker). The `auth` worker // owns the `accounts` table; a dedicated migrations_table keeps its migration diff --git a/apps/cdn/wrangler.jsonc b/apps/cdn/wrangler.jsonc index 12b2ba2..7a28e5d 100644 --- a/apps/cdn/wrangler.jsonc +++ b/apps/cdn/wrangler.jsonc @@ -2,7 +2,7 @@ "$schema": "node_modules/wrangler/config-schema.json", "name": "cdn", "main": "src/cdn.app.ts", - "compatibility_date": "2025-09-20", + "compatibility_date": "2026-06-16", "compatibility_flags": ["nodejs_compat"], "cache": { "enabled": true diff --git a/apps/chat/wrangler.jsonc b/apps/chat/wrangler.jsonc index 73792ab..d5a8af2 100644 --- a/apps/chat/wrangler.jsonc +++ b/apps/chat/wrangler.jsonc @@ -2,7 +2,7 @@ "$schema": "node_modules/wrangler/config-schema.json", "name": "chat", "main": "src/chat.app.ts", - "compatibility_date": "2025-09-20", + "compatibility_date": "2026-06-16", "compatibility_flags": ["nodejs_compat"], "upload_source_maps": true, "observability": { diff --git a/apps/clubs/wrangler.jsonc b/apps/clubs/wrangler.jsonc index 6ae675e..4b4c497 100644 --- a/apps/clubs/wrangler.jsonc +++ b/apps/clubs/wrangler.jsonc @@ -2,7 +2,7 @@ "$schema": "node_modules/wrangler/config-schema.json", "name": "clubs", "main": "src/clubs.app.ts", - "compatibility_date": "2025-09-20", + "compatibility_date": "2026-06-16", "compatibility_flags": ["nodejs_compat"], // Shared `recflare` DB (created manually with `wrangler d1 create recflare`; the // "local" placeholder is spliced out at deploy time). The `clubs` worker owns the diff --git a/apps/commerce/wrangler.jsonc b/apps/commerce/wrangler.jsonc index 387a149..f832937 100644 --- a/apps/commerce/wrangler.jsonc +++ b/apps/commerce/wrangler.jsonc @@ -2,7 +2,7 @@ "$schema": "node_modules/wrangler/config-schema.json", "name": "commerce", "main": "src/commerce.app.ts", - "compatibility_date": "2025-09-20", + "compatibility_date": "2026-06-16", "compatibility_flags": ["nodejs_compat"], "upload_source_maps": true, "observability": { diff --git a/apps/econ/wrangler.jsonc b/apps/econ/wrangler.jsonc index 1898313..cfa2f77 100644 --- a/apps/econ/wrangler.jsonc +++ b/apps/econ/wrangler.jsonc @@ -2,7 +2,7 @@ "$schema": "node_modules/wrangler/config-schema.json", "name": "econ", "main": "src/econ.app.ts", - "compatibility_date": "2025-09-20", + "compatibility_date": "2026-06-16", "compatibility_flags": ["nodejs_compat"], // Storefront catalogs served dynamically by id: `/api/storefronts/v3/giftdropstore/:id` // fetches `sf{id}.json` from this directory via the ASSETS binding. Drop a new diff --git a/apps/img/wrangler.jsonc b/apps/img/wrangler.jsonc index fb139e4..e18291f 100644 --- a/apps/img/wrangler.jsonc +++ b/apps/img/wrangler.jsonc @@ -2,7 +2,7 @@ "$schema": "node_modules/wrangler/config-schema.json", "name": "img", "main": "src/img.app.ts", - "compatibility_date": "2025-09-20", + "compatibility_date": "2026-06-16", "compatibility_flags": ["nodejs_compat"], // Static fallback assets (e.g. DefaultProfileImage.jpg served when a key is // missing from R2). `run_worker_first` keeps the Worker in control of routing diff --git a/apps/match/wrangler.jsonc b/apps/match/wrangler.jsonc index c7e865a..f72fd5c 100644 --- a/apps/match/wrangler.jsonc +++ b/apps/match/wrangler.jsonc @@ -2,7 +2,7 @@ "$schema": "node_modules/wrangler/config-schema.json", "name": "match", "main": "src/match.app.ts", - "compatibility_date": "2025-09-20", + "compatibility_date": "2026-06-16", "compatibility_flags": ["nodejs_compat"], // Shared `recflare` DB. Reads room scenes for matchmaking, writes a player's // personal dorm room on first dorm entry (see getOrCreateDormRoom), and holds diff --git a/apps/notify/wrangler.jsonc b/apps/notify/wrangler.jsonc index 385b3e6..84a559c 100644 --- a/apps/notify/wrangler.jsonc +++ b/apps/notify/wrangler.jsonc @@ -2,7 +2,7 @@ "$schema": "node_modules/wrangler/config-schema.json", "name": "notify", "main": "src/notify.app.ts", - "compatibility_date": "2025-09-20", + "compatibility_date": "2026-06-16", "compatibility_flags": ["nodejs_compat"], "durable_objects": { "bindings": [{ "name": "RECFLARE_NOTIFICATIONS_HUB", "class_name": "NotificationsHub" }] diff --git a/apps/ns/wrangler.jsonc b/apps/ns/wrangler.jsonc index 644c281..92605e6 100644 --- a/apps/ns/wrangler.jsonc +++ b/apps/ns/wrangler.jsonc @@ -2,7 +2,7 @@ "$schema": "node_modules/wrangler/config-schema.json", "name": "ns", "main": "src/ns.app.ts", - "compatibility_date": "2025-09-20", + "compatibility_date": "2026-06-16", "compatibility_flags": ["nodejs_compat"], "logpush": false, "upload_source_maps": true, diff --git a/apps/playersettings/wrangler.jsonc b/apps/playersettings/wrangler.jsonc index fcd6db6..b5838fe 100644 --- a/apps/playersettings/wrangler.jsonc +++ b/apps/playersettings/wrangler.jsonc @@ -2,7 +2,7 @@ "$schema": "node_modules/wrangler/config-schema.json", "name": "playersettings", "main": "src/playersettings.app.ts", - "compatibility_date": "2025-09-20", + "compatibility_date": "2026-06-16", "compatibility_flags": ["nodejs_compat"], // Per-player settings persistence. "kv_namespaces": [ diff --git a/apps/rooms/vitest.config.ts b/apps/rooms/vitest.config.ts index b549955..0ae0c7f 100644 --- a/apps/rooms/vitest.config.ts +++ b/apps/rooms/vitest.config.ts @@ -18,7 +18,7 @@ export default defineConfig({ { name: 'notify', modules: true, - compatibilityDate: '2025-09-20', + compatibilityDate: '2026-06-16', compatibilityFlags: ['nodejs_compat'], durableObjects: { RECFLARE_NOTIFICATIONS_HUB: 'NotificationsHub' }, script: ` diff --git a/apps/rooms/wrangler.jsonc b/apps/rooms/wrangler.jsonc index 9b948e0..27e9f62 100644 --- a/apps/rooms/wrangler.jsonc +++ b/apps/rooms/wrangler.jsonc @@ -2,7 +2,7 @@ "$schema": "node_modules/wrangler/config-schema.json", "name": "rooms", "main": "src/rooms.app.ts", - "compatibility_date": "2025-09-20", + "compatibility_date": "2026-06-16", "compatibility_flags": ["nodejs_compat"], // Shared `recflare` DB (room storage lives here). Create it manually with // `wrangler d1 create recflare`, then put the real id in the gitignored root diff --git a/apps/storage/wrangler.jsonc b/apps/storage/wrangler.jsonc index c23f744..2f796e7 100644 --- a/apps/storage/wrangler.jsonc +++ b/apps/storage/wrangler.jsonc @@ -2,7 +2,7 @@ "$schema": "node_modules/wrangler/config-schema.json", "name": "storage", "main": "src/storage.app.ts", - "compatibility_date": "2025-09-20", + "compatibility_date": "2026-06-16", "compatibility_flags": ["nodejs_compat"], "routes": [], // Shared CDN R2 bucket (owned by the `cdn` worker). Uploads land here under a diff --git a/apps/www/wrangler.jsonc b/apps/www/wrangler.jsonc index 4ad74fd..4add233 100644 --- a/apps/www/wrangler.jsonc +++ b/apps/www/wrangler.jsonc @@ -2,7 +2,7 @@ "$schema": "node_modules/wrangler/config-schema.json", "name": "www", "main": "src/www.app.ts", - "compatibility_date": "2025-09-20", + "compatibility_date": "2026-06-16", "compatibility_flags": ["nodejs_compat"], "routes": [], // React SPA client build (Vite emits it to dist/www/client). Static assets are diff --git a/turbo/generators/templates/fetch-worker-minimal/wrangler.jsonc.hbs b/turbo/generators/templates/fetch-worker-minimal/wrangler.jsonc.hbs index 8dfed18..2ded460 100644 --- a/turbo/generators/templates/fetch-worker-minimal/wrangler.jsonc.hbs +++ b/turbo/generators/templates/fetch-worker-minimal/wrangler.jsonc.hbs @@ -2,7 +2,7 @@ "$schema": "node_modules/wrangler/config-schema.json", "name": "{{ slug name }}", "main": "src/{{ slug name }}.app.ts", - "compatibility_date": "2025-09-20", + "compatibility_date": "2026-06-16", "compatibility_flags": ["nodejs_compat"], "routes": [], "upload_source_maps": true, diff --git a/turbo/generators/templates/fetch-worker-vite/wrangler.jsonc.hbs b/turbo/generators/templates/fetch-worker-vite/wrangler.jsonc.hbs index d53c66d..963951c 100644 --- a/turbo/generators/templates/fetch-worker-vite/wrangler.jsonc.hbs +++ b/turbo/generators/templates/fetch-worker-vite/wrangler.jsonc.hbs @@ -2,7 +2,7 @@ "$schema": "node_modules/wrangler/config-schema.json", "name": "{{ slug name }}", "main": "src/{{ slug name }}.app.ts", - "compatibility_date": "2025-09-20", + "compatibility_date": "2026-06-16", "compatibility_flags": ["nodejs_compat"], "routes": [], "upload_source_maps": true, diff --git a/turbo/generators/templates/fetch-worker/wrangler.jsonc.hbs b/turbo/generators/templates/fetch-worker/wrangler.jsonc.hbs index d53c66d..963951c 100644 --- a/turbo/generators/templates/fetch-worker/wrangler.jsonc.hbs +++ b/turbo/generators/templates/fetch-worker/wrangler.jsonc.hbs @@ -2,7 +2,7 @@ "$schema": "node_modules/wrangler/config-schema.json", "name": "{{ slug name }}", "main": "src/{{ slug name }}.app.ts", - "compatibility_date": "2025-09-20", + "compatibility_date": "2026-06-16", "compatibility_flags": ["nodejs_compat"], "routes": [], "upload_source_maps": true,