wrangler 4.13.2 → 4.14.1

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.13.2",
3
+ "version": "4.14.1",
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.25.2",
56
56
  "path-to-regexp": "6.3.0",
57
57
  "unenv": "2.0.0-rc.15",
58
- "workerd": "1.20250424.0",
58
+ "workerd": "1.20250428.0",
59
59
  "@cloudflare/kv-asset-handler": "0.4.0",
60
- "miniflare": "4.20250424.1"
60
+ "miniflare": "4.20250428.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.20250424.0",
65
+ "@cloudflare/workers-types": "^4.20250428.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",
@@ -136,13 +136,13 @@
136
136
  "xxhash-wasm": "^1.0.1",
137
137
  "yargs": "^17.7.2",
138
138
  "@cloudflare/cli": "1.1.1",
139
- "@cloudflare/eslint-config-worker": "1.1.0",
140
- "@cloudflare/pages-shared": "^0.13.33",
141
- "@cloudflare/workers-shared": "0.17.4",
142
- "@cloudflare/workers-tsconfig": "0.0.0"
139
+ "@cloudflare/pages-shared": "^0.13.35",
140
+ "@cloudflare/workers-shared": "0.17.5",
141
+ "@cloudflare/workers-tsconfig": "0.0.0",
142
+ "@cloudflare/eslint-config-worker": "1.1.0"
143
143
  },
144
144
  "peerDependencies": {
145
- "@cloudflare/workers-types": "^4.20250424.0"
145
+ "@cloudflare/workers-types": "^4.20250428.0"
146
146
  },
147
147
  "peerDependenciesMeta": {
148
148
  "@cloudflare/workers-types": {
@@ -727,6 +727,11 @@ declare interface CfService {
727
727
  props?: Record<string, unknown>;
728
728
  }
729
729
 
730
+ declare interface CfTailConsumer {
731
+ service: string;
732
+ environment?: string;
733
+ }
734
+
730
735
  declare interface CfUnsafe {
731
736
  bindings: CfUnsafeBinding[] | undefined;
732
737
  metadata: CfUnsafeMetadata | undefined;
@@ -1584,6 +1589,8 @@ declare type Entry = {
1584
1589
  file: string;
1585
1590
  /** A worker's directory. Usually where the Wrangler configuration file is located */
1586
1591
  projectRoot: string;
1592
+ /** The path to the config file, if it exists. */
1593
+ configPath: string | undefined;
1587
1594
  /** Is this a module worker or a service worker? */
1588
1595
  format: CfScriptFormat;
1589
1596
  /** The directory that contains all of a `--no-bundle` worker's modules. Usually `${directory}/src`. Defaults to path.dirname(file) */
@@ -26129,6 +26136,7 @@ declare interface StartDevWorkerInput {
26129
26136
  migrations?: DurableObjectMigration[];
26130
26137
  /** The triggers which will cause the worker's exported default handlers to be called. */
26131
26138
  triggers?: Trigger[];
26139
+ tailConsumers?: CfTailConsumer[];
26132
26140
  /**
26133
26141
  * Whether Wrangler should send usage metrics to Cloudflare for this project.
26134
26142
  *