wrangler 4.29.1 → 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.
@@ -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.29.1",
3
+ "version": "4.30.0",
4
4
  "description": "Command-line interface for all things Cloudflare Workers",
5
5
  "keywords": [
6
6
  "wrangler",
@@ -57,7 +57,7 @@
57
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.20250813.0"
60
+ "miniflare": "4.20250813.1"
61
61
  },
62
62
  "devDependencies": {
63
63
  "@aws-sdk/client-s3": "^3.721.0",
@@ -136,12 +136,12 @@
136
136
  "xdg-app-paths": "^8.3.0",
137
137
  "xxhash-wasm": "^1.0.1",
138
138
  "yargs": "^17.7.2",
139
- "@cloudflare/containers-shared": "0.2.9",
140
- "@cloudflare/eslint-config-worker": "1.1.0",
141
- "@cloudflare/pages-shared": "^0.13.62",
139
+ "@cloudflare/cli": "1.1.1",
140
+ "@cloudflare/containers-shared": "0.2.10",
141
+ "@cloudflare/pages-shared": "^0.13.63",
142
142
  "@cloudflare/workers-shared": "0.18.5",
143
143
  "@cloudflare/workers-tsconfig": "0.0.0",
144
- "@cloudflare/cli": "1.1.1"
144
+ "@cloudflare/eslint-config-worker": "1.1.0"
145
145
  },
146
146
  "peerDependencies": {
147
147
  "@cloudflare/workers-types": "^4.20250813.0"
@@ -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