wrangler 3.4.0 → 3.5.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 +2 -2
- package/wrangler-dist/cli.d.ts +3 -3
- package/wrangler-dist/cli.js +1040 -890
- package/templates/middleware/middleware-d1-beta.ts +0 -244
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wrangler",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.5.0",
|
|
4
4
|
"description": "Command-line interface for all things Cloudflare Workers",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"wrangler",
|
|
@@ -103,7 +103,7 @@
|
|
|
103
103
|
"blake3-wasm": "^2.1.5",
|
|
104
104
|
"chokidar": "^3.5.3",
|
|
105
105
|
"esbuild": "0.16.3",
|
|
106
|
-
"miniflare": "3.
|
|
106
|
+
"miniflare": "3.20230801.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 */
|
|
@@ -266,12 +266,12 @@ declare function deploy({ directory, accountId, projectName, branch, skipCaching
|
|
|
266
266
|
created_on: string;
|
|
267
267
|
production_branch: string;
|
|
268
268
|
deployment_trigger: {
|
|
269
|
+
type: string;
|
|
269
270
|
metadata: {
|
|
270
271
|
branch: string;
|
|
271
272
|
commit_hash: string;
|
|
272
273
|
commit_message: string;
|
|
273
274
|
};
|
|
274
|
-
type: string;
|
|
275
275
|
};
|
|
276
276
|
latest_stage: {
|
|
277
277
|
name: "build" | "deploy" | "queued" | "initialize" | "clone_repo";
|