{member.avatar && (
)}
diff --git a/worker-configuration.d.ts b/worker-configuration.d.ts
index d8c9386e..bbf1614d 100644
--- a/worker-configuration.d.ts
+++ b/worker-configuration.d.ts
@@ -1,6 +1,6 @@
/* eslint-disable */
// Generated by Wrangler by running `wrangler types` (hash: ad94e3d4f0b09e36a00ce199c5a61442)
-// Runtime types generated with workerd@1.20260611.1 2025-10-17 nodejs_compat
+// Runtime types generated with workerd@1.20260611.1 2026-02-19 disable_nodejs_process_v2,nodejs_compat
interface __BaseEnv_Env {
WEBSITE_CACHE: KVNamespace;
ASSETS: Fetcher;
@@ -433,6 +433,7 @@ interface TestController {
interface ExecutionContext
{
waitUntil(promise: Promise): void;
passThroughOnException(): void;
+ readonly exports: Cloudflare.Exports;
readonly props: Props;
cache?: CacheContext;
tracing?: Tracing;
@@ -534,6 +535,7 @@ interface DurableObjectClass<_T extends Rpc.DurableObjectBranded | undefined = u
}
interface DurableObjectState {
waitUntil(promise: Promise): void;
+ readonly exports: Cloudflare.Exports;
readonly props: Props;
readonly id: DurableObjectId;
readonly storage: DurableObjectStorage;
@@ -1650,7 +1652,7 @@ declare class Headers {
value: string
]>;
}
-type BodyInit = ReadableStream | string | ArrayBuffer | ArrayBufferView | Blob | URLSearchParams | FormData;
+type BodyInit = ReadableStream | string | ArrayBuffer | ArrayBufferView | Blob | URLSearchParams | FormData | Iterable | AsyncIterable;
declare abstract class Body {
/* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/body) */
get body(): ReadableStream | null;
diff --git a/wrangler.jsonc b/wrangler.jsonc
index 92c0c819..a8a8780f 100644
--- a/wrangler.jsonc
+++ b/wrangler.jsonc
@@ -2,8 +2,8 @@
"$schema": "node_modules/wrangler/config-schema.json",
"name": "papermc-website",
"main": "./src/worker.ts",
- "compatibility_date": "2025-10-17",
- "compatibility_flags": ["nodejs_compat"],
+ "compatibility_date": "2026-02-19",
+ "compatibility_flags": ["nodejs_compat", "disable_nodejs_process_v2"],
"assets": {
"binding": "ASSETS",
"directory": "./dist",