wrangler 4.29.0 → 4.30.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 +5 -0
- package/package.json +9 -9
- package/wrangler-dist/cli.d.ts +7 -1
- package/wrangler-dist/cli.js +535 -378
- package/wrangler-dist/metafile-cjs.json +1 -1
package/config-schema.json
CHANGED
@@ -2403,6 +2403,11 @@
|
|
2403
2403
|
],
|
2404
2404
|
"description": "How a rollout should be created. It supports the following modes: - full_auto: The container application will be rolled out fully automatically. - none: The container application won't have a roll out or update. - manual: The container application will be rollout fully by manually actioning progress steps.",
|
2405
2405
|
"default": "full_auto"
|
2406
|
+
},
|
2407
|
+
"rollout_active_grace_period": {
|
2408
|
+
"type": "number",
|
2409
|
+
"description": "Configures the grace period (in seconds) for active instances before being shutdown during a rollout.",
|
2410
|
+
"default": 0
|
2406
2411
|
}
|
2407
2412
|
},
|
2408
2413
|
"required": [
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "wrangler",
|
3
|
-
"version": "4.
|
3
|
+
"version": "4.30.0",
|
4
4
|
"description": "Command-line interface for all things Cloudflare Workers",
|
5
5
|
"keywords": [
|
6
6
|
"wrangler",
|
@@ -54,15 +54,15 @@
|
|
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.
|
57
|
+
"workerd": "1.20250813.0",
|
58
58
|
"@cloudflare/kv-asset-handler": "0.4.0",
|
59
59
|
"@cloudflare/unenv-preset": "2.6.1",
|
60
|
-
"miniflare": "4.
|
60
|
+
"miniflare": "4.20250813.1"
|
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.20250813.0",
|
66
66
|
"@cspotcode/source-map-support": "0.8.1",
|
67
67
|
"@iarna/toml": "^3.0.0",
|
68
68
|
"@sentry/node": "^7.86.0",
|
@@ -137,14 +137,14 @@
|
|
137
137
|
"xxhash-wasm": "^1.0.1",
|
138
138
|
"yargs": "^17.7.2",
|
139
139
|
"@cloudflare/cli": "1.1.1",
|
140
|
-
"@cloudflare/containers-shared": "0.2.
|
141
|
-
"@cloudflare/
|
142
|
-
"@cloudflare/pages-shared": "^0.13.61",
|
140
|
+
"@cloudflare/containers-shared": "0.2.10",
|
141
|
+
"@cloudflare/pages-shared": "^0.13.63",
|
143
142
|
"@cloudflare/workers-shared": "0.18.5",
|
144
|
-
"@cloudflare/workers-tsconfig": "0.0.0"
|
143
|
+
"@cloudflare/workers-tsconfig": "0.0.0",
|
144
|
+
"@cloudflare/eslint-config-worker": "1.1.0"
|
145
145
|
},
|
146
146
|
"peerDependencies": {
|
147
|
-
"@cloudflare/workers-types": "^4.
|
147
|
+
"@cloudflare/workers-types": "^4.20250813.0"
|
148
148
|
},
|
149
149
|
"peerDependenciesMeta": {
|
150
150
|
"@cloudflare/workers-types": {
|
package/wrangler-dist/cli.d.ts
CHANGED
@@ -164,6 +164,12 @@ type ContainerApp = {
|
|
164
164
|
* @default "full_auto"
|
165
165
|
*/
|
166
166
|
rollout_kind?: "full_auto" | "none" | "full_manual";
|
167
|
+
/**
|
168
|
+
* Configures the grace period (in seconds) for active instances before being shutdown during a rollout.
|
169
|
+
* @optional
|
170
|
+
* @default 0
|
171
|
+
*/
|
172
|
+
rollout_active_grace_period?: number;
|
167
173
|
};
|
168
174
|
/**
|
169
175
|
* Configuration in wrangler for Durable Object Migrations
|
@@ -1730,8 +1736,8 @@ interface PagesDeployOptions {
|
|
1730
1736
|
*/
|
1731
1737
|
declare function deploy({ directory, accountId, projectName, branch, skipCaching, commitMessage, commitHash, commitDirty, functionsDirectory: customFunctionsDirectory, bundle, sourceMaps, args, }: PagesDeployOptions): Promise<{
|
1732
1738
|
deploymentResponse: {
|
1733
|
-
url: string;
|
1734
1739
|
id: string;
|
1740
|
+
url: string;
|
1735
1741
|
environment: "production" | "preview";
|
1736
1742
|
build_config: {
|
1737
1743
|
build_command: string;
|