@zuplo/cli 6.71.0 → 6.71.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/node_modules/@fastify/reply-from/node_modules/undici/docs/docs/api/Client.md +3 -0
- package/node_modules/@fastify/reply-from/node_modules/undici/docs/docs/api/Cookies.md +27 -0
- package/node_modules/@fastify/reply-from/node_modules/undici/docs/docs/api/Socks5ProxyAgent.md +1 -0
- package/node_modules/@fastify/reply-from/node_modules/undici/lib/core/socks5-client.js +14 -4
- package/node_modules/@fastify/reply-from/node_modules/undici/lib/core/socks5-utils.js +18 -4
- package/node_modules/@fastify/reply-from/node_modules/undici/lib/dispatcher/agent.js +1 -1
- package/node_modules/@fastify/reply-from/node_modules/undici/lib/dispatcher/balanced-pool.js +1 -1
- package/node_modules/@fastify/reply-from/node_modules/undici/lib/dispatcher/client-h1.js +69 -1
- package/node_modules/@fastify/reply-from/node_modules/undici/lib/dispatcher/client.js +3 -2
- package/node_modules/@fastify/reply-from/node_modules/undici/lib/dispatcher/dispatcher-base.js +19 -0
- package/node_modules/@fastify/reply-from/node_modules/undici/lib/dispatcher/pool.js +1 -1
- package/node_modules/@fastify/reply-from/node_modules/undici/lib/dispatcher/proxy-agent.js +2 -1
- package/node_modules/@fastify/reply-from/node_modules/undici/lib/dispatcher/socks5-proxy-agent.js +45 -34
- package/node_modules/@fastify/reply-from/node_modules/undici/lib/util/cache.js +8 -2
- package/node_modules/@fastify/reply-from/node_modules/undici/lib/web/cookies/parse.js +17 -25
- package/node_modules/@fastify/reply-from/node_modules/undici/lib/web/websocket/permessage-deflate.js +13 -31
- package/node_modules/@fastify/reply-from/node_modules/undici/lib/web/websocket/receiver.js +80 -23
- package/node_modules/@fastify/reply-from/node_modules/undici/lib/web/websocket/stream/websocketstream.js +8 -1
- package/node_modules/@fastify/reply-from/node_modules/undici/lib/web/websocket/websocket.js +8 -1
- package/node_modules/@fastify/reply-from/node_modules/undici/package.json +1 -1
- package/node_modules/@fastify/reply-from/node_modules/undici/types/client.d.ts +16 -0
- package/node_modules/@zuplo/core/package.json +1 -1
- package/node_modules/@zuplo/graphql/package.json +1 -1
- package/node_modules/@zuplo/openapi-tools/package.json +1 -1
- package/node_modules/@zuplo/otel/package.json +1 -1
- package/node_modules/@zuplo/runtime/package.json +1 -1
- package/node_modules/body-parser/README.md +16 -1
- package/node_modules/body-parser/index.js +4 -20
- package/node_modules/body-parser/lib/read.js +17 -17
- package/node_modules/body-parser/lib/types/json.js +60 -32
- package/node_modules/body-parser/lib/types/raw.js +3 -3
- package/node_modules/body-parser/lib/types/text.js +3 -3
- package/node_modules/body-parser/lib/types/urlencoded.js +16 -20
- package/node_modules/body-parser/lib/utils.js +18 -16
- package/node_modules/body-parser/node_modules/content-type/LICENSE +22 -0
- package/node_modules/body-parser/node_modules/content-type/README.md +69 -0
- package/node_modules/body-parser/node_modules/content-type/dist/index.d.ts +26 -0
- package/node_modules/body-parser/node_modules/content-type/dist/index.js +170 -0
- package/node_modules/body-parser/node_modules/content-type/dist/index.js.map +1 -0
- package/node_modules/body-parser/node_modules/content-type/package.json +52 -0
- package/node_modules/body-parser/node_modules/http-errors/HISTORY.md +186 -0
- package/node_modules/body-parser/node_modules/http-errors/LICENSE +23 -0
- package/node_modules/body-parser/node_modules/http-errors/README.md +169 -0
- package/node_modules/body-parser/node_modules/http-errors/index.js +290 -0
- package/node_modules/body-parser/node_modules/http-errors/package.json +54 -0
- package/node_modules/body-parser/package.json +23 -10
- package/package.json +6 -6
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "http-errors",
|
|
3
|
+
"description": "Create HTTP error objects",
|
|
4
|
+
"version": "2.0.1",
|
|
5
|
+
"author": "Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)",
|
|
6
|
+
"contributors": [
|
|
7
|
+
"Alan Plum <me@pluma.io>",
|
|
8
|
+
"Douglas Christopher Wilson <doug@somethingdoug.com>"
|
|
9
|
+
],
|
|
10
|
+
"license": "MIT",
|
|
11
|
+
"repository": "jshttp/http-errors",
|
|
12
|
+
"funding": {
|
|
13
|
+
"type": "opencollective",
|
|
14
|
+
"url": "https://opencollective.com/express"
|
|
15
|
+
},
|
|
16
|
+
"dependencies": {
|
|
17
|
+
"depd": "~2.0.0",
|
|
18
|
+
"inherits": "~2.0.4",
|
|
19
|
+
"setprototypeof": "~1.2.0",
|
|
20
|
+
"statuses": "~2.0.2",
|
|
21
|
+
"toidentifier": "~1.0.1"
|
|
22
|
+
},
|
|
23
|
+
"devDependencies": {
|
|
24
|
+
"eslint": "7.32.0",
|
|
25
|
+
"eslint-config-standard": "14.1.1",
|
|
26
|
+
"eslint-plugin-import": "2.32.0",
|
|
27
|
+
"eslint-plugin-markdown": "2.2.1",
|
|
28
|
+
"eslint-plugin-node": "11.1.0",
|
|
29
|
+
"eslint-plugin-promise": "5.2.0",
|
|
30
|
+
"eslint-plugin-standard": "4.1.0",
|
|
31
|
+
"mocha": "9.1.3",
|
|
32
|
+
"nyc": "15.1.0"
|
|
33
|
+
},
|
|
34
|
+
"engines": {
|
|
35
|
+
"node": ">= 0.8"
|
|
36
|
+
},
|
|
37
|
+
"scripts": {
|
|
38
|
+
"lint": "eslint . && node ./scripts/lint-readme-list.js",
|
|
39
|
+
"test": "mocha --reporter spec",
|
|
40
|
+
"test-ci": "nyc --reporter=lcov --reporter=text npm test",
|
|
41
|
+
"test-cov": "nyc --reporter=html --reporter=text npm test",
|
|
42
|
+
"version": "node scripts/version-history.js && git add HISTORY.md"
|
|
43
|
+
},
|
|
44
|
+
"keywords": [
|
|
45
|
+
"http",
|
|
46
|
+
"error"
|
|
47
|
+
],
|
|
48
|
+
"files": [
|
|
49
|
+
"index.js",
|
|
50
|
+
"HISTORY.md",
|
|
51
|
+
"LICENSE",
|
|
52
|
+
"README.md"
|
|
53
|
+
]
|
|
54
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "body-parser",
|
|
3
3
|
"description": "Node.js body parsing middleware",
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.3.0",
|
|
5
5
|
"contributors": [
|
|
6
6
|
"Douglas Christopher Wilson <doug@somethingdoug.com>",
|
|
7
7
|
"Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)"
|
|
@@ -12,28 +12,41 @@
|
|
|
12
12
|
"type": "opencollective",
|
|
13
13
|
"url": "https://opencollective.com/express"
|
|
14
14
|
},
|
|
15
|
+
"type": "commonjs",
|
|
16
|
+
"exports": {
|
|
17
|
+
".": "./index.js",
|
|
18
|
+
"./package.json": "./package.json",
|
|
19
|
+
"./json": "./lib/types/json.js",
|
|
20
|
+
"./raw": "./lib/types/raw.js",
|
|
21
|
+
"./text": "./lib/types/text.js",
|
|
22
|
+
"./urlencoded": "./lib/types/urlencoded.js",
|
|
23
|
+
"./lib/*": "./lib/*.js",
|
|
24
|
+
"./lib/*.js": "./lib/*.js",
|
|
25
|
+
"./lib/types/*": "./lib/types/*.js",
|
|
26
|
+
"./lib/types/*.js": "./lib/types/*.js"
|
|
27
|
+
},
|
|
15
28
|
"dependencies": {
|
|
16
29
|
"bytes": "^3.1.2",
|
|
17
|
-
"content-type": "^
|
|
30
|
+
"content-type": "^2.0.0",
|
|
18
31
|
"debug": "^4.4.3",
|
|
19
|
-
"http-errors": "^2.0.
|
|
20
|
-
"iconv-lite": "^0.7.
|
|
32
|
+
"http-errors": "^2.0.1",
|
|
33
|
+
"iconv-lite": "^0.7.2",
|
|
21
34
|
"on-finished": "^2.4.1",
|
|
22
|
-
"qs": "^6.
|
|
23
|
-
"raw-body": "^3.0.
|
|
24
|
-
"type-is": "^2.0
|
|
35
|
+
"qs": "^6.15.2",
|
|
36
|
+
"raw-body": "^3.0.2",
|
|
37
|
+
"type-is": "^2.1.0"
|
|
25
38
|
},
|
|
26
39
|
"devDependencies": {
|
|
27
40
|
"eslint": "^8.57.1",
|
|
28
41
|
"eslint-config-standard": "^14.1.1",
|
|
29
|
-
"eslint-plugin-import": "^2.
|
|
42
|
+
"eslint-plugin-import": "^2.32.0",
|
|
30
43
|
"eslint-plugin-markdown": "^3.0.1",
|
|
31
44
|
"eslint-plugin-node": "^11.1.0",
|
|
32
45
|
"eslint-plugin-promise": "^6.6.0",
|
|
33
46
|
"eslint-plugin-standard": "^4.1.0",
|
|
34
|
-
"mocha": "^11.
|
|
47
|
+
"mocha": "^11.7.6",
|
|
35
48
|
"nyc": "^17.1.0",
|
|
36
|
-
"supertest": "^7.
|
|
49
|
+
"supertest": "^7.2.2"
|
|
37
50
|
},
|
|
38
51
|
"files": [
|
|
39
52
|
"lib/",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zuplo/cli",
|
|
3
|
-
"version": "6.71.
|
|
3
|
+
"version": "6.71.1",
|
|
4
4
|
"repository": "https://github.com/zuplo/zuplo",
|
|
5
5
|
"author": "Zuplo, Inc.",
|
|
6
6
|
"type": "module",
|
|
@@ -29,10 +29,10 @@
|
|
|
29
29
|
"@opentelemetry/api": "1.9.0",
|
|
30
30
|
"@sentry/node": "9.22.0",
|
|
31
31
|
"@swc/core": "1.10.18",
|
|
32
|
-
"@zuplo/core": "6.71.
|
|
32
|
+
"@zuplo/core": "6.71.1",
|
|
33
33
|
"@zuplo/editor": "1.0.20821740935",
|
|
34
|
-
"@zuplo/openapi-tools": "6.71.
|
|
35
|
-
"@zuplo/runtime": "6.71.
|
|
34
|
+
"@zuplo/openapi-tools": "6.71.1",
|
|
35
|
+
"@zuplo/runtime": "6.71.1",
|
|
36
36
|
"chalk": "5.4.1",
|
|
37
37
|
"chokidar": "3.5.3",
|
|
38
38
|
"cookie": "1.0.2",
|
|
@@ -66,8 +66,8 @@
|
|
|
66
66
|
"workerd": "1.20241230.0",
|
|
67
67
|
"yargs": "17.7.2",
|
|
68
68
|
"zod": "3.25.76",
|
|
69
|
-
"@zuplo/graphql": "6.71.
|
|
70
|
-
"@zuplo/otel": "6.71.
|
|
69
|
+
"@zuplo/graphql": "6.71.1",
|
|
70
|
+
"@zuplo/otel": "6.71.1"
|
|
71
71
|
},
|
|
72
72
|
"bundleDependencies": [
|
|
73
73
|
"@fastify/cors",
|