wrangler 3.82.0 → 3.83.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wrangler",
3
- "version": "3.82.0",
3
+ "version": "3.83.0",
4
4
  "description": "Command-line interface for all things Cloudflare Workers",
5
5
  "keywords": [
6
6
  "wrangler",
@@ -64,15 +64,15 @@
64
64
  "selfsigned": "^2.0.1",
65
65
  "source-map": "^0.6.1",
66
66
  "unenv": "npm:unenv-nightly@2.0.0-20241018-011344-e666fcf",
67
- "workerd": "1.20241018.1",
67
+ "workerd": "1.20241022.0",
68
68
  "xxhash-wasm": "^1.0.1",
69
69
  "@cloudflare/kv-asset-handler": "0.3.4",
70
- "miniflare": "3.20241018.0",
71
- "@cloudflare/workers-shared": "0.6.0"
70
+ "@cloudflare/workers-shared": "0.7.0",
71
+ "miniflare": "3.20241022.0"
72
72
  },
73
73
  "devDependencies": {
74
74
  "@cloudflare/types": "6.18.4",
75
- "@cloudflare/workers-types": "^4.20241018.0",
75
+ "@cloudflare/workers-types": "^4.20241022.0",
76
76
  "@cspotcode/source-map-support": "0.8.1",
77
77
  "@iarna/toml": "^3.0.0",
78
78
  "@microsoft/api-extractor": "^7.47.0",
@@ -154,12 +154,12 @@
154
154
  "yargs": "^17.7.2",
155
155
  "yoga-layout": "file:../../vendor/yoga-layout-2.0.0-beta.1.tgz",
156
156
  "@cloudflare/cli": "1.1.1",
157
+ "@cloudflare/pages-shared": "^0.11.67",
157
158
  "@cloudflare/eslint-config-worker": "1.1.0",
158
- "@cloudflare/pages-shared": "^0.11.66",
159
159
  "@cloudflare/workers-tsconfig": "0.0.0"
160
160
  },
161
161
  "peerDependencies": {
162
- "@cloudflare/workers-types": "^4.20241018.0"
162
+ "@cloudflare/workers-types": "^4.20241022.0"
163
163
  },
164
164
  "peerDependenciesMeta": {
165
165
  "@cloudflare/workers-types": {
@@ -137,7 +137,7 @@ declare type Binding = {
137
137
  type: "kv_namespace";
138
138
  } & BindingOmit<CfKvNamespace>) | ({
139
139
  type: "send_email";
140
- } & BindingOmit<CfSendEmailBindings>) | {
140
+ } & NameOmit<CfSendEmailBindings>) | {
141
141
  type: "wasm_module";
142
142
  source: BinaryFile;
143
143
  } | {
@@ -154,7 +154,7 @@ declare type Binding = {
154
154
  source: BinaryFile;
155
155
  } | ({
156
156
  type: "durable_object_namespace";
157
- } & BindingOmit<CfDurableObject>) | ({
157
+ } & NameOmit<CfDurableObject>) | ({
158
158
  type: "workflow";
159
159
  } & BindingOmit<CfWorkflow>) | ({
160
160
  type: "queue";
@@ -181,13 +181,13 @@ declare type Binding = {
181
181
  type: "pipeline";
182
182
  } & Omit<CfPipeline, "binding">) | ({
183
183
  type: "logfwdr";
184
- } & Omit<CfLogfwdrBinding, "name">) | {
184
+ } & NameOmit<CfLogfwdrBinding>) | {
185
185
  type: `unsafe_${string}`;
186
186
  } | {
187
187
  type: "assets";
188
188
  };
189
189
 
190
- declare type BindingOmit<T> = Omit<T, "binding" | "name">;
190
+ declare type BindingOmit<T> = Omit<T, "binding">;
191
191
 
192
192
  /**
193
193
  * Result of the `getBindingsProxy` utility
@@ -2689,6 +2689,8 @@ declare class Logger {
2689
2689
  error: (...args: unknown[]) => void;
2690
2690
  table<Keys extends string>(data: TableRow<Keys>[]): void;
2691
2691
  console<M extends Exclude<keyof Console, "Console">>(method: M, ...args: Parameters<Console[M]>): void;
2692
+ static warnOnceHistory: Set<unknown>;
2693
+ warnOnce(message: string): void;
2692
2694
  private doLog;
2693
2695
  static registerBeforeLogHook(callback: (() => void) | undefined): void;
2694
2696
  static registerAfterLogHook(callback: (() => void) | undefined): void;
@@ -2905,6 +2907,8 @@ declare interface MultiCacheQueryOptions extends CacheQueryOptions {
2905
2907
  cacheName?: string
2906
2908
  }
2907
2909
 
2910
+ declare type NameOmit<T> = Omit<T, "name">;
2911
+
2908
2912
  declare interface Observability {
2909
2913
  /** If observability is enabled for this Worker */
2910
2914
  enabled: boolean;