wrangler 4.31.0 → 4.33.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/config-schema.json +17 -22
- package/package.json +11 -11
- package/wrangler-dist/cli.d.ts +365 -272
- package/wrangler-dist/cli.js +12444 -12855
- package/wrangler-dist/metafile-cjs.json +1 -1
package/config-schema.json
CHANGED
@@ -605,11 +605,7 @@
|
|
605
605
|
},
|
606
606
|
"service": {
|
607
607
|
"type": "string",
|
608
|
-
"description": "The name of the service."
|
609
|
-
},
|
610
|
-
"environment": {
|
611
|
-
"type": "string",
|
612
|
-
"description": "The environment of the service (e.g. production, staging, etc)."
|
608
|
+
"description": "The name of the service. To bind to a worker in a specific environment, you should use the format `<worker_name>-<environment_name>`."
|
613
609
|
},
|
614
610
|
"entrypoint": {
|
615
611
|
"type": "string",
|
@@ -1611,11 +1607,7 @@
|
|
1611
1607
|
},
|
1612
1608
|
"service": {
|
1613
1609
|
"type": "string",
|
1614
|
-
"description": "The name of the service."
|
1615
|
-
},
|
1616
|
-
"environment": {
|
1617
|
-
"type": "string",
|
1618
|
-
"description": "The environment of the service (e.g. production, staging, etc)."
|
1610
|
+
"description": "The name of the service. To bind to a worker in a specific environment, you should use the format `<worker_name>-<environment_name>`."
|
1619
1611
|
},
|
1620
1612
|
"entrypoint": {
|
1621
1613
|
"type": "string",
|
@@ -2390,19 +2382,22 @@
|
|
2390
2382
|
"default": "dev"
|
2391
2383
|
},
|
2392
2384
|
"rollout_step_percentage": {
|
2393
|
-
"
|
2394
|
-
|
2395
|
-
|
2396
|
-
|
2397
|
-
|
2398
|
-
|
2399
|
-
|
2400
|
-
|
2401
|
-
|
2402
|
-
|
2385
|
+
"anyOf": [
|
2386
|
+
{
|
2387
|
+
"type": "number"
|
2388
|
+
},
|
2389
|
+
{
|
2390
|
+
"type": "array",
|
2391
|
+
"items": {
|
2392
|
+
"type": "number"
|
2393
|
+
}
|
2394
|
+
}
|
2403
2395
|
],
|
2404
|
-
"description": "
|
2405
|
-
"default":
|
2396
|
+
"description": "Configures what percentage of instances should be updated at each step of a rollout. You can specify this as a single number, or an array of numbers.\n\nIf this is a single number, each step will progress by that percentage. The options are 5, 10, 20, 25, 50 or 100.\n\nIf this is an array, each step specifies the cumulative rollout progress. The final step must be 100.\n\nThis can be overridden adhoc by deploying with the `--containers-rollout=immediate` flag, which will roll out to 100% of instances in one step.",
|
2397
|
+
"default": [
|
2398
|
+
10,
|
2399
|
+
100
|
2400
|
+
]
|
2406
2401
|
},
|
2407
2402
|
"rollout_active_grace_period": {
|
2408
2403
|
"type": "number",
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "wrangler",
|
3
|
-
"version": "4.
|
3
|
+
"version": "4.33.0",
|
4
4
|
"description": "Command-line interface for all things Cloudflare Workers",
|
5
5
|
"keywords": [
|
6
6
|
"wrangler",
|
@@ -54,16 +54,16 @@
|
|
54
54
|
"esbuild": "0.25.4",
|
55
55
|
"path-to-regexp": "6.3.0",
|
56
56
|
"unenv": "2.0.0-rc.19",
|
57
|
-
"workerd": "1.
|
58
|
-
"
|
59
|
-
"@cloudflare/unenv-preset": "2.6.
|
60
|
-
"
|
57
|
+
"workerd": "1.20250823.0",
|
58
|
+
"@cloudflare/kv-asset-handler": "0.4.0",
|
59
|
+
"@cloudflare/unenv-preset": "2.6.3",
|
60
|
+
"miniflare": "4.20250823.0"
|
61
61
|
},
|
62
62
|
"devDependencies": {
|
63
63
|
"@aws-sdk/client-s3": "^3.721.0",
|
64
64
|
"@cloudflare/jsrpc": "link:../../vendor/jsrpc",
|
65
65
|
"@cloudflare/types": "6.18.4",
|
66
|
-
"@cloudflare/workers-types": "^4.
|
66
|
+
"@cloudflare/workers-types": "^4.20250823.0",
|
67
67
|
"@cspotcode/source-map-support": "0.8.1",
|
68
68
|
"@iarna/toml": "^3.0.0",
|
69
69
|
"@sentry/node": "^7.86.0",
|
@@ -137,15 +137,15 @@
|
|
137
137
|
"xdg-app-paths": "^8.3.0",
|
138
138
|
"xxhash-wasm": "^1.0.1",
|
139
139
|
"yargs": "^17.7.2",
|
140
|
+
"@cloudflare/cli": "1.1.1",
|
140
141
|
"@cloudflare/containers-shared": "0.2.10",
|
141
142
|
"@cloudflare/eslint-config-worker": "1.1.0",
|
142
|
-
"@cloudflare/
|
143
|
-
"@cloudflare/
|
144
|
-
"@cloudflare/workers-tsconfig": "0.0.0"
|
145
|
-
"@cloudflare/workers-shared": "0.18.5"
|
143
|
+
"@cloudflare/pages-shared": "^0.13.65",
|
144
|
+
"@cloudflare/workers-shared": "0.18.6",
|
145
|
+
"@cloudflare/workers-tsconfig": "0.0.0"
|
146
146
|
},
|
147
147
|
"peerDependencies": {
|
148
|
-
"@cloudflare/workers-types": "^4.
|
148
|
+
"@cloudflare/workers-types": "^4.20250823.0"
|
149
149
|
},
|
150
150
|
"peerDependenciesMeta": {
|
151
151
|
"@cloudflare/workers-types": {
|