wrangler 3.6.0 → 3.7.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.
|
|
3
|
+
"version": "3.7.0",
|
|
4
4
|
"description": "Command-line interface for all things Cloudflare Workers",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"wrangler",
|
|
@@ -98,12 +98,12 @@
|
|
|
98
98
|
},
|
|
99
99
|
"dependencies": {
|
|
100
100
|
"@cloudflare/kv-asset-handler": "^0.2.0",
|
|
101
|
-
"@esbuild-plugins/node-globals-polyfill": "^0.
|
|
102
|
-
"@esbuild-plugins/node-modules-polyfill": "^0.
|
|
101
|
+
"@esbuild-plugins/node-globals-polyfill": "^0.2.3",
|
|
102
|
+
"@esbuild-plugins/node-modules-polyfill": "^0.2.2",
|
|
103
103
|
"blake3-wasm": "^2.1.5",
|
|
104
104
|
"chokidar": "^3.5.3",
|
|
105
|
-
"esbuild": "0.
|
|
106
|
-
"miniflare": "3.
|
|
105
|
+
"esbuild": "0.17.19",
|
|
106
|
+
"miniflare": "3.20230904.0",
|
|
107
107
|
"nanoid": "^3.3.3",
|
|
108
108
|
"path-to-regexp": "^6.2.0",
|
|
109
109
|
"selfsigned": "^2.0.1",
|
package/wrangler-dist/cli.d.ts
CHANGED
|
@@ -10,7 +10,7 @@ import { Readable } from 'stream';
|
|
|
10
10
|
import { ReadableStream as ReadableStream_2 } from 'stream/web';
|
|
11
11
|
import { Socket as Socket_2 } from 'net';
|
|
12
12
|
import { TcpNetConnectOpts } from 'net';
|
|
13
|
-
import { TlsOptions } from 'tls';
|
|
13
|
+
import { TlsOptions as TlsOptions_2 } from 'tls';
|
|
14
14
|
import { TLSSocket } from 'tls';
|
|
15
15
|
import { URL as URL_2 } from 'url';
|
|
16
16
|
import { URLSearchParams as URLSearchParams_2 } from 'url';
|
|
@@ -205,7 +205,7 @@ declare namespace Client {
|
|
|
205
205
|
/** If `true`, an error is thrown when the request content-length header doesn't match the length of the request body. Default: `true`. */
|
|
206
206
|
strictContentLength?: boolean;
|
|
207
207
|
/** @deprecated use the connect option instead */
|
|
208
|
-
tls?:
|
|
208
|
+
tls?: TlsOptions_2 | null;
|
|
209
209
|
/** */
|
|
210
210
|
maxRequestsPerClient?: number;
|
|
211
211
|
/** Max response body size in bytes, -1 is disabled */
|