wrangler 4.9.0 → 4.10.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 +6 -6
- package/wrangler-dist/cli.d.ts +1 -1
- package/wrangler-dist/cli.js +13 -13
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "wrangler",
|
3
|
-
"version": "4.
|
3
|
+
"version": "4.10.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.24.2",
|
56
56
|
"path-to-regexp": "6.3.0",
|
57
57
|
"unenv": "2.0.0-rc.15",
|
58
|
-
"workerd": "1.
|
58
|
+
"workerd": "1.20250409.0",
|
59
59
|
"@cloudflare/kv-asset-handler": "0.4.0",
|
60
|
-
"miniflare": "4.
|
60
|
+
"miniflare": "4.20250409.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.20250409.0",
|
66
66
|
"@cspotcode/source-map-support": "0.8.1",
|
67
67
|
"@iarna/toml": "^3.0.0",
|
68
68
|
"@microsoft/api-extractor": "^7.47.0",
|
@@ -137,12 +137,12 @@
|
|
137
137
|
"yargs": "^17.7.2",
|
138
138
|
"@cloudflare/cli": "1.1.1",
|
139
139
|
"@cloudflare/eslint-config-worker": "1.1.0",
|
140
|
-
"@cloudflare/pages-shared": "^0.13.
|
140
|
+
"@cloudflare/pages-shared": "^0.13.26",
|
141
141
|
"@cloudflare/workers-shared": "0.17.1",
|
142
142
|
"@cloudflare/workers-tsconfig": "0.0.0"
|
143
143
|
},
|
144
144
|
"peerDependencies": {
|
145
|
-
"@cloudflare/workers-types": "^4.
|
145
|
+
"@cloudflare/workers-types": "^4.20250409.0"
|
146
146
|
},
|
147
147
|
"peerDependenciesMeta": {
|
148
148
|
"@cloudflare/workers-types": {
|
package/wrangler-dist/cli.d.ts
CHANGED
@@ -2724,7 +2724,7 @@ export declare type GetPlatformProxyOptions = {
|
|
2724
2724
|
configPath?: string;
|
2725
2725
|
/**
|
2726
2726
|
* Indicates if and where to persist the bindings data, if not present or `true` it defaults to the same location
|
2727
|
-
* used by wrangler
|
2727
|
+
* used by wrangler: `.wrangler/state/v3` (so that the same data can be easily used by the caller and wrangler).
|
2728
2728
|
* If `false` is specified no data is persisted on the filesystem.
|
2729
2729
|
*/
|
2730
2730
|
persist?: boolean | {
|
package/wrangler-dist/cli.js
CHANGED
@@ -81185,7 +81185,7 @@ var import_undici3 = __toESM(require_undici());
|
|
81185
81185
|
|
81186
81186
|
// package.json
|
81187
81187
|
var name = "wrangler";
|
81188
|
-
var version = "4.
|
81188
|
+
var version = "4.10.0";
|
81189
81189
|
|
81190
81190
|
// src/environment-variables/misc-variables.ts
|
81191
81191
|
init_import_meta_url();
|
@@ -148264,14 +148264,14 @@ var workflowsNamespace = createNamespace({
|
|
148264
148264
|
metadata: {
|
148265
148265
|
description: "\u{1F501} Manage Workflows",
|
148266
148266
|
owner: "Product: Workflows",
|
148267
|
-
status: "
|
148267
|
+
status: "stable"
|
148268
148268
|
}
|
148269
148269
|
});
|
148270
148270
|
var workflowsInstanceNamespace = createNamespace({
|
148271
148271
|
metadata: {
|
148272
148272
|
description: "Manage Workflow instances",
|
148273
148273
|
owner: "Product: Workflows",
|
148274
|
-
status: "
|
148274
|
+
status: "stable"
|
148275
148275
|
}
|
148276
148276
|
});
|
148277
148277
|
|
@@ -148281,7 +148281,7 @@ var workflowsDeleteCommand = createCommand({
|
|
148281
148281
|
metadata: {
|
148282
148282
|
description: "Delete workflow - when deleting a workflow, it will also delete it's own instances",
|
148283
148283
|
owner: "Product: Workflows",
|
148284
|
-
status: "
|
148284
|
+
status: "stable",
|
148285
148285
|
hidden: true
|
148286
148286
|
},
|
148287
148287
|
args: {
|
@@ -148310,7 +148310,7 @@ var workflowsDescribeCommand = createCommand({
|
|
148310
148310
|
metadata: {
|
148311
148311
|
description: "Describe Workflow resource",
|
148312
148312
|
owner: "Product: Workflows",
|
148313
|
-
status: "
|
148313
|
+
status: "stable"
|
148314
148314
|
},
|
148315
148315
|
args: {
|
148316
148316
|
name: {
|
@@ -149156,7 +149156,7 @@ var workflowsInstancesDescribeCommand = createCommand({
|
|
149156
149156
|
metadata: {
|
149157
149157
|
description: "Describe a workflow instance - see its logs, retries and errors",
|
149158
149158
|
owner: "Product: Workflows",
|
149159
|
-
status: "
|
149159
|
+
status: "stable"
|
149160
149160
|
},
|
149161
149161
|
positionalArgs: ["name", "id"],
|
149162
149162
|
args: {
|
@@ -149351,7 +149351,7 @@ var workflowsInstancesListCommand = createCommand({
|
|
149351
149351
|
metadata: {
|
149352
149352
|
description: "Instance related commands (list, describe, terminate, pause, resume)",
|
149353
149353
|
owner: "Product: Workflows",
|
149354
|
-
status: "
|
149354
|
+
status: "stable"
|
149355
149355
|
},
|
149356
149356
|
positionalArgs: ["name"],
|
149357
149357
|
args: {
|
@@ -149423,7 +149423,7 @@ var workflowsInstancesPauseCommand = createCommand({
|
|
149423
149423
|
metadata: {
|
149424
149424
|
description: "Pause a workflow instance",
|
149425
149425
|
owner: "Product: Workflows",
|
149426
|
-
status: "
|
149426
|
+
status: "stable"
|
149427
149427
|
},
|
149428
149428
|
positionalArgs: ["name", "id"],
|
149429
149429
|
args: {
|
@@ -149475,7 +149475,7 @@ var workflowsInstancesResumeCommand = createCommand({
|
|
149475
149475
|
metadata: {
|
149476
149476
|
description: "Resume a workflow instance",
|
149477
149477
|
owner: "Product: Workflows",
|
149478
|
-
status: "
|
149478
|
+
status: "stable"
|
149479
149479
|
},
|
149480
149480
|
positionalArgs: ["name", "id"],
|
149481
149481
|
args: {
|
@@ -149527,7 +149527,7 @@ var workflowsInstancesTerminateCommand = createCommand({
|
|
149527
149527
|
metadata: {
|
149528
149528
|
description: "Terminate a workflow instance",
|
149529
149529
|
owner: "Product: Workflows",
|
149530
|
-
status: "
|
149530
|
+
status: "stable"
|
149531
149531
|
},
|
149532
149532
|
positionalArgs: ["name", "id"],
|
149533
149533
|
args: {
|
@@ -149579,7 +149579,7 @@ var workflowsInstancesTerminateAllCommand = createCommand({
|
|
149579
149579
|
metadata: {
|
149580
149580
|
description: "Terminate all workflow instances",
|
149581
149581
|
owner: "Product: Workflows",
|
149582
|
-
status: "
|
149582
|
+
status: "stable",
|
149583
149583
|
hidden: true
|
149584
149584
|
},
|
149585
149585
|
positionalArgs: ["name"],
|
@@ -149638,7 +149638,7 @@ var workflowsListCommand = createCommand({
|
|
149638
149638
|
metadata: {
|
149639
149639
|
description: "List Workflows associated to account",
|
149640
149640
|
owner: "Product: Workflows",
|
149641
|
-
status: "
|
149641
|
+
status: "stable"
|
149642
149642
|
},
|
149643
149643
|
args: {
|
149644
149644
|
page: {
|
@@ -149687,7 +149687,7 @@ var workflowsTriggerCommand = createCommand({
|
|
149687
149687
|
metadata: {
|
149688
149688
|
description: "Trigger a workflow, creating a new instance. Can optionally take a JSON string to pass a parameter into the workflow instance",
|
149689
149689
|
owner: "Product: Workflows",
|
149690
|
-
status: "
|
149690
|
+
status: "stable"
|
149691
149691
|
},
|
149692
149692
|
args: {
|
149693
149693
|
name: {
|