wrangler 4.24.3 → 4.25.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +11 -11
- package/wrangler-dist/cli.d.ts +3 -0
- package/wrangler-dist/cli.js +16066 -11320
- package/wrangler-dist/metafile-cjs.json +1 -1
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "wrangler",
|
3
|
-
"version": "4.
|
3
|
+
"version": "4.25.0",
|
4
4
|
"description": "Command-line interface for all things Cloudflare Workers",
|
5
5
|
"keywords": [
|
6
6
|
"wrangler",
|
@@ -55,14 +55,14 @@
|
|
55
55
|
"esbuild": "0.25.4",
|
56
56
|
"path-to-regexp": "6.3.0",
|
57
57
|
"unenv": "2.0.0-rc.17",
|
58
|
-
"workerd": "1.
|
58
|
+
"workerd": "1.20250712.0",
|
59
59
|
"@cloudflare/kv-asset-handler": "0.4.0",
|
60
|
-
"miniflare": "4.
|
60
|
+
"miniflare": "4.20250712.0"
|
61
61
|
},
|
62
62
|
"devDependencies": {
|
63
63
|
"@aws-sdk/client-s3": "^3.721.0",
|
64
64
|
"@cloudflare/types": "6.18.4",
|
65
|
-
"@cloudflare/workers-types": "^4.
|
65
|
+
"@cloudflare/workers-types": "^4.20250712.0",
|
66
66
|
"@cspotcode/source-map-support": "0.8.1",
|
67
67
|
"@iarna/toml": "^3.0.0",
|
68
68
|
"@sentry/node": "^7.86.0",
|
@@ -126,8 +126,8 @@
|
|
126
126
|
"ts-dedent": "^2.2.0",
|
127
127
|
"ts-json-schema-generator": "^1.5.0",
|
128
128
|
"tsup": "8.3.0",
|
129
|
-
"typescript": "^5.
|
130
|
-
"undici": "^
|
129
|
+
"typescript": "^5.8.3",
|
130
|
+
"undici": "^7.10.0",
|
131
131
|
"update-check": "^1.5.4",
|
132
132
|
"vitest": "~3.2.0",
|
133
133
|
"vitest-websocket-mock": "^0.4.0",
|
@@ -135,15 +135,15 @@
|
|
135
135
|
"xdg-app-paths": "^8.3.0",
|
136
136
|
"xxhash-wasm": "^1.0.1",
|
137
137
|
"yargs": "^17.7.2",
|
138
|
-
"@cloudflare/
|
139
|
-
"@cloudflare/containers-shared": "0.2.5",
|
138
|
+
"@cloudflare/containers-shared": "0.2.6",
|
140
139
|
"@cloudflare/eslint-config-worker": "1.1.0",
|
141
|
-
"@cloudflare/pages-shared": "^0.13.
|
142
|
-
"@cloudflare/
|
140
|
+
"@cloudflare/pages-shared": "^0.13.55",
|
141
|
+
"@cloudflare/cli": "1.1.1",
|
142
|
+
"@cloudflare/workers-shared": "0.18.4",
|
143
143
|
"@cloudflare/workers-tsconfig": "0.0.0"
|
144
144
|
},
|
145
145
|
"peerDependencies": {
|
146
|
-
"@cloudflare/workers-types": "^4.
|
146
|
+
"@cloudflare/workers-types": "^4.20250712.0"
|
147
147
|
},
|
148
148
|
"peerDependenciesMeta": {
|
149
149
|
"@cloudflare/workers-types": {
|
package/wrangler-dist/cli.d.ts
CHANGED
@@ -2508,6 +2508,8 @@ declare function pickRemoteBindings(bindings: Record<string, Binding>): Record<s
|
|
2508
2508
|
*/
|
2509
2509
|
declare function maybeStartOrUpdateRemoteProxySession(configPathOrWorkerConfig: string | {
|
2510
2510
|
name?: string;
|
2511
|
+
/** If running in a non-public compliance region, set this here. */
|
2512
|
+
complianceRegion?: Config["compliance_region"];
|
2511
2513
|
bindings: NonNullable<StartDevWorkerInput["bindings"]>;
|
2512
2514
|
}, preExistingRemoteProxySessionData?: {
|
2513
2515
|
session: RemoteProxySession;
|
@@ -2536,6 +2538,7 @@ declare class Logger {
|
|
2536
2538
|
set loggerLevel(val: "error" | "none" | "log" | "debug" | "info" | "warn");
|
2537
2539
|
resetLoggerLevel(): void;
|
2538
2540
|
columns: number;
|
2541
|
+
json: (data: unknown) => void;
|
2539
2542
|
debug: (...args: unknown[]) => void;
|
2540
2543
|
debugWithSanitization: (label: string, ...args: unknown[]) => void;
|
2541
2544
|
info: (...args: unknown[]) => void;
|