wrangler 4.107.1 → 4.109.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 +10 -10
- package/wrangler-dist/cli.d.ts +7 -2
- package/wrangler-dist/cli.js +1120 -151
- 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.109.0",
|
|
4
4
|
"description": "Command-line interface for all things Cloudflare Workers",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"assembly",
|
|
@@ -66,16 +66,16 @@
|
|
|
66
66
|
"esbuild": "0.28.1",
|
|
67
67
|
"path-to-regexp": "6.3.0",
|
|
68
68
|
"unenv": "2.0.0-rc.24",
|
|
69
|
-
"workerd": "1.
|
|
70
|
-
"
|
|
69
|
+
"workerd": "1.20260708.1",
|
|
70
|
+
"@cloudflare/kv-asset-handler": "0.5.0",
|
|
71
71
|
"@cloudflare/unenv-preset": "2.16.1",
|
|
72
|
-
"
|
|
72
|
+
"miniflare": "4.20260708.0"
|
|
73
73
|
},
|
|
74
74
|
"devDependencies": {
|
|
75
75
|
"@aws-sdk/client-s3": "^3.721.0",
|
|
76
76
|
"@bomb.sh/tab": "^0.0.12",
|
|
77
77
|
"@cloudflare/types": "6.18.4",
|
|
78
|
-
"@cloudflare/workers-types": "^
|
|
78
|
+
"@cloudflare/workers-types": "^5.20260708.1",
|
|
79
79
|
"@cspotcode/source-map-support": "0.8.1",
|
|
80
80
|
"@netlify/build-info": "^10.5.1",
|
|
81
81
|
"@sentry/node": "^7.86.0",
|
|
@@ -160,16 +160,16 @@
|
|
|
160
160
|
"@cloudflare/codemod": "1.1.0",
|
|
161
161
|
"@cloudflare/config": "0.0.0",
|
|
162
162
|
"@cloudflare/containers-shared": "0.16.0",
|
|
163
|
-
"@cloudflare/deploy-helpers": "0.3.
|
|
164
|
-
"@cloudflare/pages-shared": "^0.13.
|
|
165
|
-
"@cloudflare/workers-auth": "0.4.1",
|
|
163
|
+
"@cloudflare/deploy-helpers": "0.3.3",
|
|
164
|
+
"@cloudflare/pages-shared": "^0.13.155",
|
|
166
165
|
"@cloudflare/workers-shared": "0.19.7",
|
|
167
166
|
"@cloudflare/workers-tsconfig": "0.0.0",
|
|
167
|
+
"@cloudflare/workers-auth": "0.4.1",
|
|
168
168
|
"@cloudflare/workers-utils": "0.25.1",
|
|
169
|
-
"@cloudflare/workflows-shared": "0.
|
|
169
|
+
"@cloudflare/workflows-shared": "0.12.0"
|
|
170
170
|
},
|
|
171
171
|
"peerDependencies": {
|
|
172
|
-
"@cloudflare/workers-types": "^
|
|
172
|
+
"@cloudflare/workers-types": "^5.20260708.1"
|
|
173
173
|
},
|
|
174
174
|
"peerDependenciesMeta": {
|
|
175
175
|
"@cloudflare/workers-types": {
|
package/wrangler-dist/cli.d.ts
CHANGED
|
@@ -7,8 +7,8 @@ import { Metafile } from 'esbuild';
|
|
|
7
7
|
import Protocol from 'devtools-protocol/types/protocol-mapping';
|
|
8
8
|
import { EventEmitter } from 'node:events';
|
|
9
9
|
import { ContainerNormalizedConfig } from '@cloudflare/containers-shared';
|
|
10
|
+
import { Rpc, ExportedHandler, DurableObjectNamespace, D1Database, Workflow, Service } from '@cloudflare/workers-types';
|
|
10
11
|
import { FetcherScheduledOptions, FetcherScheduledResult, IncomingRequestCfProperties } from '@cloudflare/workers-types/experimental';
|
|
11
|
-
import { Rpc, ExportedHandler, D1Database, Workflow, Service } from '@cloudflare/workers-types/latest';
|
|
12
12
|
import { RouterConfig, AssetConfig } from '@cloudflare/workers-shared';
|
|
13
13
|
export { printBindings as unstable_printBindings } from '@cloudflare/deploy-helpers';
|
|
14
14
|
import { URLSearchParams } from 'node:url';
|
|
@@ -828,6 +828,10 @@ type WorkerHandle<Env = AnyEnv, Module extends WorkerModule = {
|
|
|
828
828
|
* ```
|
|
829
829
|
*/
|
|
830
830
|
getEnv(): Promise<Env>;
|
|
831
|
+
/**
|
|
832
|
+
* Lists the string IDs of Durable Object instances with persisted storage for a binding.
|
|
833
|
+
*/
|
|
834
|
+
listDurableObjectIds(bindingName: BindingName<Env, DurableObjectNamespace>): Promise<string[]>;
|
|
831
835
|
/**
|
|
832
836
|
* Applies D1 migration files that have not already run to a D1 binding on this Worker.
|
|
833
837
|
*
|
|
@@ -3342,7 +3346,8 @@ type Teams =
|
|
|
3342
3346
|
| "Product: Email Service"
|
|
3343
3347
|
| "Product: Browser Run"
|
|
3344
3348
|
| "Product: Artifacts"
|
|
3345
|
-
| "Product: Flagship"
|
|
3349
|
+
| "Product: Flagship"
|
|
3350
|
+
| "Product: Turnstile";
|
|
3346
3351
|
|
|
3347
3352
|
/** Convert literal string types like 'foo-bar' to 'FooBar' */
|
|
3348
3353
|
type PascalCase<S extends string> = string extends S ? string : S extends `${infer T}-${infer U}` ? `${Capitalize<T>}${PascalCase<U>}` : Capitalize<S>;
|