wrangler 3.78.8 → 3.78.10

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.
@@ -2,6 +2,39 @@
2
2
  "$ref": "#/definitions/RawConfig",
3
3
  "$schema": "http://json-schema.org/draft-07/schema#",
4
4
  "definitions": {
5
+ "Assets": {
6
+ "additionalProperties": false,
7
+ "properties": {
8
+ "binding": {
9
+ "type": "string"
10
+ },
11
+ "directory": {
12
+ "description": "Absolute path to assets directory",
13
+ "type": "string"
14
+ },
15
+ "html_handling": {
16
+ "enum": [
17
+ "auto-trailing-slash",
18
+ "force-trailing-slash",
19
+ "drop-trailing-slash",
20
+ "none"
21
+ ],
22
+ "type": "string"
23
+ },
24
+ "not_found_handling": {
25
+ "enum": [
26
+ "single-page-application",
27
+ "404-page",
28
+ "none"
29
+ ],
30
+ "type": "string"
31
+ }
32
+ },
33
+ "required": [
34
+ "directory"
35
+ ],
36
+ "type": "object"
37
+ },
5
38
  "CloudchamberConfig": {
6
39
  "additionalProperties": false,
7
40
  "description": "Configuration in wrangler for Cloudchamber",
@@ -239,6 +272,10 @@
239
272
  },
240
273
  "type": "array"
241
274
  },
275
+ "assets": {
276
+ "$ref": "#/definitions/Assets",
277
+ "description": "Specify the directory of static assets to deploy/serve\n\nMore details at https://developers.cloudflare.com/workers/frameworks/"
278
+ },
242
279
  "base_dir": {
243
280
  "description": "The directory in which module rules should be evaluated when including additional files into a Worker deployment. This defaults to the directory containing the `main` entry point of the Worker if not specified.",
244
281
  "type": "string"
@@ -404,10 +441,6 @@
404
441
  ],
405
442
  "type": "object"
406
443
  },
407
- "experimental_assets": {
408
- "$ref": "#/definitions/ExperimentalAssets",
409
- "description": "Specify the directory of static assets to deploy/serve"
410
- },
411
444
  "find_additional_modules": {
412
445
  "description": "If true then Wrangler will traverse the file tree below `base_dir`; Any files that match `rules` will be included in the deployed Worker. Defaults to true if `no_bundle` is true, otherwise false.",
413
446
  "type": "boolean"
@@ -1016,39 +1049,6 @@
1016
1049
  ],
1017
1050
  "type": "object"
1018
1051
  },
1019
- "ExperimentalAssets": {
1020
- "additionalProperties": false,
1021
- "properties": {
1022
- "binding": {
1023
- "type": "string"
1024
- },
1025
- "directory": {
1026
- "description": "Absolute path to assets directory",
1027
- "type": "string"
1028
- },
1029
- "html_handling": {
1030
- "enum": [
1031
- "auto-trailing-slash",
1032
- "force-trailing-slash",
1033
- "drop-trailing-slash",
1034
- "none"
1035
- ],
1036
- "type": "string"
1037
- },
1038
- "not_found_handling": {
1039
- "enum": [
1040
- "single-page-application",
1041
- "404-page",
1042
- "none"
1043
- ],
1044
- "type": "string"
1045
- }
1046
- },
1047
- "required": [
1048
- "directory"
1049
- ],
1050
- "type": "object"
1051
- },
1052
1052
  "Json": {
1053
1053
  "anyOf": [
1054
1054
  {
@@ -1145,45 +1145,8 @@
1145
1145
  "type": "array"
1146
1146
  },
1147
1147
  "assets": {
1148
- "anyOf": [
1149
- {
1150
- "additionalProperties": false,
1151
- "properties": {
1152
- "browser_TTL": {
1153
- "type": "number"
1154
- },
1155
- "bucket": {
1156
- "type": "string"
1157
- },
1158
- "exclude": {
1159
- "items": {
1160
- "type": "string"
1161
- },
1162
- "type": "array"
1163
- },
1164
- "include": {
1165
- "items": {
1166
- "type": "string"
1167
- },
1168
- "type": "array"
1169
- },
1170
- "serve_single_page_app": {
1171
- "type": "boolean"
1172
- }
1173
- },
1174
- "required": [
1175
- "bucket",
1176
- "include",
1177
- "exclude",
1178
- "serve_single_page_app"
1179
- ],
1180
- "type": "object"
1181
- },
1182
- {
1183
- "type": "string"
1184
- }
1185
- ],
1186
- "description": "Serve a folder of static assets with your Worker, without any additional code. This can either be a string, or an object with additional config fields. Only one of assets and legacy_assets can be used."
1148
+ "$ref": "#/definitions/Assets",
1149
+ "description": "Specify the directory of static assets to deploy/serve\n\nMore details at https://developers.cloudflare.com/workers/frameworks/"
1187
1150
  },
1188
1151
  "base_dir": {
1189
1152
  "description": "The directory in which module rules should be evaluated when including additional files into a Worker deployment. This defaults to the directory containing the `main` entry point of the Worker if not specified.",
@@ -1372,10 +1335,6 @@
1372
1335
  "description": "The `env` section defines overrides for the configuration for different environments.\n\nAll environment fields can be specified at the top level of the config indicating the default environment settings.\n\n- Some fields are inherited and overridable in each environment.\n- But some are not inherited and must be explicitly specified in every environment, if they are specified at the top level.\n\nFor more information, see the documentation at https://developers.cloudflare.com/workers/cli-wrangler/configuration#environments",
1373
1336
  "type": "object"
1374
1337
  },
1375
- "experimental_assets": {
1376
- "$ref": "#/definitions/ExperimentalAssets",
1377
- "description": "Specify the directory of static assets to deploy/serve"
1378
- },
1379
1338
  "experimental_services": {
1380
1339
  "default": "`[]`",
1381
1340
  "deprecated": "DO NOT USE. We'd added this to test the new service binding system, but the proper way to test experimental features is to use `unsafe.bindings` configuration.",
@@ -1526,7 +1485,7 @@
1526
1485
  "type": "string"
1527
1486
  }
1528
1487
  ],
1529
- "description": "Serve a folder of static assets with your Worker, without any additional code. This can either be a string, or an object with additional config fields. Only one of assets and legacy_assets can be used."
1488
+ "description": "Old behaviour of serving a folder of static assets with your Worker, without any additional code. This can either be a string, or an object with additional config fields. Will be deprecated in the near future in favor of `assets`."
1530
1489
  },
1531
1490
  "legacy_env": {
1532
1491
  "description": "A boolean to enable \"legacy\" style wrangler environments (from Wrangler v1). These have been superseded by Services, but there may be projects that won't (or can't) use them. If you're using a legacy environment, you can set this to `true` to enable it.",
@@ -2208,6 +2167,10 @@
2208
2167
  },
2209
2168
  "type": "array"
2210
2169
  },
2170
+ "assets": {
2171
+ "$ref": "#/definitions/Assets",
2172
+ "description": "Specify the directory of static assets to deploy/serve\n\nMore details at https://developers.cloudflare.com/workers/frameworks/"
2173
+ },
2211
2174
  "base_dir": {
2212
2175
  "description": "The directory in which module rules should be evaluated when including additional files into a Worker deployment. This defaults to the directory containing the `main` entry point of the Worker if not specified.",
2213
2176
  "type": "string"
@@ -2373,10 +2336,6 @@
2373
2336
  ],
2374
2337
  "type": "object"
2375
2338
  },
2376
- "experimental_assets": {
2377
- "$ref": "#/definitions/ExperimentalAssets",
2378
- "description": "Specify the directory of static assets to deploy/serve"
2379
- },
2380
2339
  "experimental_services": {
2381
2340
  "default": "`[]`",
2382
2341
  "deprecated": "DO NOT USE. We'd added this to test the new service binding system, but the proper way to test experimental features is to use `unsafe.bindings` configuration.",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wrangler",
3
- "version": "3.78.8",
3
+ "version": "3.78.10",
4
4
  "description": "Command-line interface for all things Cloudflare Workers",
5
5
  "keywords": [
6
6
  "wrangler",
@@ -54,7 +54,6 @@
54
54
  "@esbuild-plugins/node-modules-polyfill": "^0.2.2",
55
55
  "blake3-wasm": "^2.1.5",
56
56
  "chokidar": "^3.5.3",
57
- "date-fns": "^3.6.0",
58
57
  "esbuild": "0.17.19",
59
58
  "nanoid": "^3.3.3",
60
59
  "path-to-regexp": "^6.3.0",
@@ -63,15 +62,15 @@
63
62
  "selfsigned": "^2.0.1",
64
63
  "source-map": "^0.6.1",
65
64
  "unenv": "npm:unenv-nightly@2.0.0-20240919-125358-9a64854",
66
- "workerd": "1.20240909.0",
65
+ "workerd": "1.20240925.0",
67
66
  "xxhash-wasm": "^1.0.1",
68
67
  "@cloudflare/kv-asset-handler": "0.3.4",
69
68
  "@cloudflare/workers-shared": "0.5.4",
70
- "miniflare": "3.20240909.5"
69
+ "miniflare": "3.20240925.0"
71
70
  },
72
71
  "devDependencies": {
73
72
  "@cloudflare/types": "^6.18.4",
74
- "@cloudflare/workers-types": "^4.20240909.0",
73
+ "@cloudflare/workers-types": "^4.20240925.0",
75
74
  "@cspotcode/source-map-support": "0.8.1",
76
75
  "@iarna/toml": "^3.0.0",
77
76
  "@microsoft/api-extractor": "^7.47.0",
@@ -153,12 +152,12 @@
153
152
  "yargs": "^17.7.2",
154
153
  "yoga-layout": "file:../../vendor/yoga-layout-2.0.0-beta.1.tgz",
155
154
  "@cloudflare/cli": "1.1.1",
156
- "@cloudflare/pages-shared": "^0.11.61",
157
155
  "@cloudflare/eslint-config-worker": "1.1.0",
156
+ "@cloudflare/pages-shared": "^0.11.62",
158
157
  "@cloudflare/workers-tsconfig": "0.0.0"
159
158
  },
160
159
  "peerDependencies": {
161
- "@cloudflare/workers-types": "^4.20240909.0"
160
+ "@cloudflare/workers-types": "^4.20240925.0"
162
161
  },
163
162
  "peerDependenciesMeta": {
164
163
  "@cloudflare/workers-types": {
@@ -16,6 +16,7 @@ import { Miniflare } from 'miniflare';
16
16
  import type { MiniflareOptions } from 'miniflare';
17
17
  import type { ModuleRule } from 'miniflare';
18
18
  import { Mutex } from 'miniflare';
19
+ import type { NodeJSCompatMode } from 'miniflare';
19
20
  import { Readable } from 'stream';
20
21
  import { ReadableStream } from 'stream/web';
21
22
  import type { Request as Request_2 } from 'miniflare';
@@ -86,6 +87,19 @@ declare const AssetConfigSchema: z.ZodObject<{
86
87
  not_found_handling?: "none" | "single-page-application" | "404-page";
87
88
  }>;
88
89
 
90
+ declare type Assets = {
91
+ /** Absolute path to assets directory */
92
+ directory: string;
93
+ binding?: string;
94
+ html_handling?: "auto-trailing-slash" | "force-trailing-slash" | "drop-trailing-slash" | "none";
95
+ not_found_handling?: "single-page-application" | "404-page" | "none";
96
+ };
97
+
98
+ declare type AssetsOptions = Pick<Assets, "directory" | "binding"> & {
99
+ routingConfig: RoutingConfig;
100
+ assetConfig: AssetConfig;
101
+ };
102
+
89
103
  declare type AsyncHook<T extends HookValues, Args extends unknown[] = []> = Hook<T, Args> | Hook<Promise<T>, Args>;
90
104
 
91
105
  declare class BalancedPool extends Dispatcher {
@@ -836,9 +850,11 @@ declare interface ConfigFields<Dev extends RawDevConfig> {
836
850
  exclude?: string[];
837
851
  } | undefined;
838
852
  /**
839
- * Serve a folder of static assets with your Worker, without any additional code.
840
- * This can either be a string, or an object with additional config fields.
841
- * Only one of assets and legacy_assets can be used.
853
+ * Old behaviour of serving a folder of static assets with your Worker,
854
+ * without any additional code.
855
+ * This can either be a string, or an object with additional config
856
+ * fields.
857
+ * Will be deprecated in the near future in favor of `assets`.
842
858
  */
843
859
  legacy_assets: {
844
860
  bucket: string;
@@ -981,13 +997,13 @@ declare function deploy({ directory, accountId, projectName, branch, skipCaching
981
997
  type: string;
982
998
  };
983
999
  latest_stage: {
984
- name: "build" | "deploy" | "queued" | "initialize" | "clone_repo";
1000
+ name: "queued" | "build" | "deploy" | "initialize" | "clone_repo";
985
1001
  status: "active" | "idle" | "canceled" | "success" | "failure" | "skipped";
986
1002
  started_on: string | null;
987
1003
  ended_on: string | null;
988
1004
  };
989
1005
  stages: {
990
- name: "build" | "deploy" | "queued" | "initialize" | "clone_repo";
1006
+ name: "queued" | "build" | "deploy" | "initialize" | "clone_repo";
991
1007
  status: "active" | "idle" | "canceled" | "success" | "failure" | "skipped";
992
1008
  started_on: string | null;
993
1009
  ended_on: string | null;
@@ -1729,9 +1745,11 @@ declare interface EnvironmentInheritable {
1729
1745
  /**
1730
1746
  * Specify the directory of static assets to deploy/serve
1731
1747
  *
1748
+ * More details at https://developers.cloudflare.com/workers/frameworks/
1749
+ *
1732
1750
  * @inheritable
1733
1751
  */
1734
- experimental_assets: ExperimentalAssets | undefined;
1752
+ assets: Assets | undefined;
1735
1753
  /**
1736
1754
  * Specify the observability behavior of the Worker.
1737
1755
  *
@@ -2321,19 +2339,6 @@ declare class ExecutionContext {
2321
2339
  passThroughOnException(): void;
2322
2340
  }
2323
2341
 
2324
- declare type ExperimentalAssets = {
2325
- /** Absolute path to assets directory */
2326
- directory: string;
2327
- binding?: string;
2328
- html_handling?: "auto-trailing-slash" | "force-trailing-slash" | "drop-trailing-slash" | "none";
2329
- not_found_handling?: "single-page-application" | "404-page" | "none";
2330
- };
2331
-
2332
- declare type ExperimentalAssetsOptions = Pick<ExperimentalAssets, "directory" | "binding"> & {
2333
- routingConfig: RoutingConfig;
2334
- assetConfig: AssetConfig;
2335
- };
2336
-
2337
2342
  declare function fetch (
2338
2343
  input: RequestInfo,
2339
2344
  init?: RequestInit
@@ -2879,16 +2884,6 @@ declare interface MultiCacheQueryOptions extends CacheQueryOptions {
2879
2884
  cacheName?: string
2880
2885
  }
2881
2886
 
2882
- /**
2883
- * Wrangler can provide Node.js compatibility in a number of different modes:
2884
- * - "legacy" - this mode adds compile-time polyfills that are not well maintained and cannot work with workerd runtime builtins.
2885
- * - "als": this mode tells the workerd runtime to enable only the Async Local Storage builtin library (accessible via `node:async_hooks`).
2886
- * - "v1" - this mode tells the workerd runtime to enable some Node.js builtin libraries (accessible only via `node:...` imports) but no globals.
2887
- * - "v2" - this mode tells the workerd runtime to enable more Node.js builtin libraries (accessible both with and without the `node:` prefix)
2888
- * and also some Node.js globals such as `Buffer`; it also turns on additional compile-time polyfills for those that are not provided by the runtime.
2889
- */
2890
- declare type NodeJSCompatMode = "legacy" | "als" | "v1" | "v2" | null;
2891
-
2892
2887
  declare interface Observability {
2893
2888
  /** If observability is enabled for this Worker */
2894
2889
  enabled: boolean;
@@ -26006,9 +26001,7 @@ declare interface StartDevWorkerInput {
26006
26001
  enableServiceEnvironments?: boolean;
26007
26002
  };
26008
26003
  unsafe?: Omit<CfUnsafe, "bindings">;
26009
- experimental?: {
26010
- assets?: Omit<ExperimentalAssetsOptions, "bindings">;
26011
- };
26004
+ assets?: Omit<AssetsOptions, "bindings">;
26012
26005
  }
26013
26006
 
26014
26007
  declare type StartDevWorkerOptions = StartDevWorkerInput & {
@@ -26263,7 +26256,7 @@ export declare interface UnstableDevOptions {
26263
26256
  localProtocol?: "http" | "https";
26264
26257
  httpsKeyPath?: string;
26265
26258
  httpsCertPath?: string;
26266
- experimentalAssets?: string;
26259
+ assets?: string;
26267
26260
  legacyAssets?: string;
26268
26261
  site?: string;
26269
26262
  siteInclude?: string[];