wrangler 4.20.3 → 4.20.4

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wrangler",
3
- "version": "4.20.3",
3
+ "version": "4.20.4",
4
4
  "description": "Command-line interface for all things Cloudflare Workers",
5
5
  "keywords": [
6
6
  "wrangler",
@@ -57,7 +57,7 @@
57
57
  "unenv": "2.0.0-rc.17",
58
58
  "workerd": "1.20250617.0",
59
59
  "@cloudflare/kv-asset-handler": "0.4.0",
60
- "miniflare": "4.20250617.1"
60
+ "miniflare": "4.20250617.2"
61
61
  },
62
62
  "devDependencies": {
63
63
  "@aws-sdk/client-s3": "^3.721.0",
@@ -136,10 +136,10 @@
136
136
  "xxhash-wasm": "^1.0.1",
137
137
  "yargs": "^17.7.2",
138
138
  "@cloudflare/cli": "1.1.1",
139
- "@cloudflare/containers-shared": "0.1.0",
139
+ "@cloudflare/containers-shared": "0.2.0",
140
140
  "@cloudflare/eslint-config-worker": "1.1.0",
141
- "@cloudflare/pages-shared": "^0.13.48",
142
- "@cloudflare/workers-shared": "0.17.6",
141
+ "@cloudflare/pages-shared": "^0.13.49",
142
+ "@cloudflare/workers-shared": "0.18.0",
143
143
  "@cloudflare/workers-tsconfig": "0.0.0"
144
144
  },
145
145
  "peerDependencies": {
@@ -1,4 +1,4 @@
1
- import { Json, Request, Response as Response$1, DispatchFetch, WorkerOptions, NodeJSCompatMode, Miniflare, MiniflareOptions, Mutex, ModuleRule, RemoteProxyConnectionString } from 'miniflare';
1
+ import { Json, Request, Response as Response$1, DispatchFetch, NodeJSCompatMode, Miniflare, MiniflareOptions, Mutex, WorkerOptions, ModuleRule, RemoteProxyConnectionString } from 'miniflare';
2
2
  import * as undici from 'undici';
3
3
  import { RequestInfo, RequestInit, Response, FormData } from 'undici';
4
4
  import { RouterConfig, AssetConfig } from '@cloudflare/workers-shared';
@@ -1666,14 +1666,14 @@ declare function deploy({ directory, accountId, projectName, branch, skipCaching
1666
1666
  type: string;
1667
1667
  };
1668
1668
  latest_stage: {
1669
- status: "canceled" | "active" | "idle" | "success" | "failure" | "skipped";
1670
1669
  name: "queued" | "build" | "deploy" | "initialize" | "clone_repo";
1670
+ status: "canceled" | "active" | "idle" | "success" | "failure" | "skipped";
1671
1671
  started_on: string | null;
1672
1672
  ended_on: string | null;
1673
1673
  };
1674
1674
  stages: {
1675
- status: "canceled" | "active" | "idle" | "success" | "failure" | "skipped";
1676
1675
  name: "queued" | "build" | "deploy" | "initialize" | "clone_repo";
1676
+ status: "canceled" | "active" | "idle" | "success" | "failure" | "skipped";
1677
1677
  started_on: string | null;
1678
1678
  ended_on: string | null;
1679
1679
  }[];
@@ -1862,7 +1862,7 @@ interface StartDevWorkerInput {
1862
1862
  /** The bindings available to the worker. The specified bindind type will be exposed to the worker on the `env` object under the same key. */
1863
1863
  bindings?: Record<string, Binding>;
1864
1864
  migrations?: DurableObjectMigration[];
1865
- containers?: WorkerOptions["containers"];
1865
+ containers?: ContainerApp[];
1866
1866
  /** The triggers which will cause the worker's exported default handlers to be called. */
1867
1867
  triggers?: Trigger[];
1868
1868
  tailConsumers?: CfTailConsumer[];
@@ -1953,6 +1953,7 @@ interface StartDevWorkerInput {
1953
1953
  multiworkerPrimary?: boolean;
1954
1954
  /** Whether the experimental remote bindings feature should be enabled */
1955
1955
  experimentalRemoteBindings?: boolean;
1956
+ containerBuildId?: string;
1956
1957
  /** Whether to build and connect to containers during local dev. Requires Docker daemon to be running. Defaults to true. */
1957
1958
  enableContainers?: boolean;
1958
1959
  /** Path to the docker executable. Defaults to 'docker' */