netlify-cli 17.16.0 → 17.16.2
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/dist/lib/functions/form-submissions-handler.d.ts +4 -0
- package/dist/lib/functions/form-submissions-handler.d.ts.map +1 -1
- package/dist/lib/functions/form-submissions-handler.js +5 -5
- package/dist/lib/functions/server.js +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/utils/proxy.d.ts.map +1 -1
- package/dist/utils/proxy.js +4 -1
- package/npm-shrinkwrap.json +101 -91
- package/package.json +8 -8
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"proxy.d.ts","sourceRoot":"","sources":["../../src/utils/proxy.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"proxy.d.ts","sourceRoot":"","sources":["../../src/utils/proxy.ts"],"names":[],"mappings":"AA0xBA;;;GAGG;AAEH,eAAO,MAAM,WAAW,2BAGvB,CAAA;AAED,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;qBAgItB,CAAA"}
|
package/dist/utils/proxy.js
CHANGED
|
@@ -23,6 +23,7 @@ import pFilter from 'p-filter';
|
|
|
23
23
|
import toReadableStream from 'to-readable-stream';
|
|
24
24
|
import { handleProxyRequest, initializeProxy as initializeEdgeFunctionsProxy, isEdgeFunctionsRequest, } from '../lib/edge-functions/proxy.js';
|
|
25
25
|
import { fileExistsAsync, isFileAsync } from '../lib/fs.js';
|
|
26
|
+
import { getFormHandler } from '../lib/functions/form-submissions-handler.js';
|
|
26
27
|
import { DEFAULT_FUNCTION_URL_EXPRESSION } from '../lib/functions/registry.js';
|
|
27
28
|
import { initializeProxy as initializeImageProxy, isImageRequest } from '../lib/images/proxy.js';
|
|
28
29
|
import renderErrorTemplate from '../lib/render-error-template.js';
|
|
@@ -641,8 +642,10 @@ res) => {
|
|
|
641
642
|
// us to know that is by looking at the status code
|
|
642
643
|
// @ts-expect-error TS(7031) FIXME: Binding element 'statusCode' implicitly has an 'an... Remove this comment to see the full error message
|
|
643
644
|
req[shouldGenerateETag] = ({ statusCode }) => statusCode >= 200 && statusCode < 300;
|
|
645
|
+
const hasFormSubmissionHandler = functionsRegistry && getFormHandler({ functionsRegistry, logWarning: false });
|
|
644
646
|
const ct = req.headers['content-type'] ? contentType.parse(req).type : '';
|
|
645
|
-
if (
|
|
647
|
+
if (hasFormSubmissionHandler &&
|
|
648
|
+
functionsServer &&
|
|
646
649
|
req.method === 'POST' &&
|
|
647
650
|
!isInternal(req.url) &&
|
|
648
651
|
(ct.endsWith('/x-www-form-urlencoded') || ct === 'multipart/form-data')) {
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,24 +1,24 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "netlify-cli",
|
|
3
|
-
"version": "17.16.
|
|
3
|
+
"version": "17.16.2",
|
|
4
4
|
"lockfileVersion": 2,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "netlify-cli",
|
|
9
|
-
"version": "17.16.
|
|
9
|
+
"version": "17.16.2",
|
|
10
10
|
"hasInstallScript": true,
|
|
11
11
|
"license": "MIT",
|
|
12
12
|
"dependencies": {
|
|
13
13
|
"@bugsnag/js": "7.20.2",
|
|
14
14
|
"@fastify/static": "6.10.2",
|
|
15
|
-
"@netlify/blobs": "6.
|
|
16
|
-
"@netlify/build": "29.33.
|
|
17
|
-
"@netlify/build-info": "7.12.
|
|
18
|
-
"@netlify/config": "20.11.
|
|
15
|
+
"@netlify/blobs": "6.5.0",
|
|
16
|
+
"@netlify/build": "29.33.7",
|
|
17
|
+
"@netlify/build-info": "7.12.1",
|
|
18
|
+
"@netlify/config": "20.11.1",
|
|
19
19
|
"@netlify/edge-bundler": "11.2.2",
|
|
20
20
|
"@netlify/local-functions-proxy": "1.1.1",
|
|
21
|
-
"@netlify/zip-it-and-ship-it": "9.29.
|
|
21
|
+
"@netlify/zip-it-and-ship-it": "9.29.1",
|
|
22
22
|
"@octokit/rest": "19.0.13",
|
|
23
23
|
"ansi-escapes": "6.2.0",
|
|
24
24
|
"ansi-styles": "6.2.1",
|
|
@@ -84,8 +84,8 @@
|
|
|
84
84
|
"log-update": "5.0.1",
|
|
85
85
|
"multiparty": "4.2.3",
|
|
86
86
|
"netlify": "13.1.14",
|
|
87
|
-
"netlify-headers-parser": "7.1.
|
|
88
|
-
"netlify-redirect-parser": "14.2.
|
|
87
|
+
"netlify-headers-parser": "7.1.4",
|
|
88
|
+
"netlify-redirect-parser": "14.2.2",
|
|
89
89
|
"netlify-redirector": "0.5.0",
|
|
90
90
|
"node-fetch": "2.6.12",
|
|
91
91
|
"node-version-alias": "3.4.1",
|
|
@@ -960,6 +960,11 @@
|
|
|
960
960
|
"node": ">=10.10.0"
|
|
961
961
|
}
|
|
962
962
|
},
|
|
963
|
+
"node_modules/@iarna/toml": {
|
|
964
|
+
"version": "2.2.5",
|
|
965
|
+
"resolved": "https://registry.npmjs.org/@iarna/toml/-/toml-2.2.5.tgz",
|
|
966
|
+
"integrity": "sha512-trnsAYxU3xnS1gPHPyU961coFyLkh4gAD/0zQ5mymY4yOZ+CYvsPqUbOFSw0aDM4y0tV7tiFxL/1XfXPNC6IPg=="
|
|
967
|
+
},
|
|
963
968
|
"node_modules/@import-maps/resolve": {
|
|
964
969
|
"version": "1.0.1",
|
|
965
970
|
"resolved": "https://registry.npmjs.org/@import-maps/resolve/-/resolve-1.0.1.tgz",
|
|
@@ -1104,30 +1109,30 @@
|
|
|
1104
1109
|
"integrity": "sha512-4wMPu9iN3/HL97QblBsBay3E1etIciR84izI3U+4iALY+JHCrI+a2jO0qbAZ/nxKoegypYEaiiqWXylm+/zfrw=="
|
|
1105
1110
|
},
|
|
1106
1111
|
"node_modules/@netlify/blobs": {
|
|
1107
|
-
"version": "6.
|
|
1108
|
-
"resolved": "https://registry.npmjs.org/@netlify/blobs/-/blobs-6.
|
|
1109
|
-
"integrity": "sha512-
|
|
1112
|
+
"version": "6.5.0",
|
|
1113
|
+
"resolved": "https://registry.npmjs.org/@netlify/blobs/-/blobs-6.5.0.tgz",
|
|
1114
|
+
"integrity": "sha512-wRFlNnL/Qv3WNLZd3OT/YYqF1zb6iPSo8T31sl9ccL1ahBxW1fBqKgF4b1XL7Z+6mRIkatvcsVPkWBcO+oJMNA==",
|
|
1110
1115
|
"engines": {
|
|
1111
1116
|
"node": "^14.16.0 || >=16.0.0"
|
|
1112
1117
|
}
|
|
1113
1118
|
},
|
|
1114
1119
|
"node_modules/@netlify/build": {
|
|
1115
|
-
"version": "29.33.
|
|
1116
|
-
"resolved": "https://registry.npmjs.org/@netlify/build/-/build-29.33.
|
|
1117
|
-
"integrity": "sha512-
|
|
1120
|
+
"version": "29.33.7",
|
|
1121
|
+
"resolved": "https://registry.npmjs.org/@netlify/build/-/build-29.33.7.tgz",
|
|
1122
|
+
"integrity": "sha512-eq3sMthu7jPJPpd656EX/T9Siu+2lBAWJUdkMdoaa3fl0iZo4KmBZyvZcN+u4GH+hSo+WCEMDyWz1N0o2LfC9w==",
|
|
1118
1123
|
"dependencies": {
|
|
1119
1124
|
"@bugsnag/js": "^7.0.0",
|
|
1120
|
-
"@netlify/blobs": "^6.
|
|
1125
|
+
"@netlify/blobs": "^6.5.0",
|
|
1121
1126
|
"@netlify/cache-utils": "^5.1.5",
|
|
1122
|
-
"@netlify/config": "^20.11.
|
|
1127
|
+
"@netlify/config": "^20.11.1",
|
|
1123
1128
|
"@netlify/edge-bundler": "11.2.2",
|
|
1124
1129
|
"@netlify/framework-info": "^9.8.10",
|
|
1125
|
-
"@netlify/functions-utils": "^5.2.
|
|
1130
|
+
"@netlify/functions-utils": "^5.2.50",
|
|
1126
1131
|
"@netlify/git-utils": "^5.1.1",
|
|
1127
1132
|
"@netlify/opentelemetry-utils": "^1.0.1",
|
|
1128
1133
|
"@netlify/plugins-list": "^6.73.0",
|
|
1129
1134
|
"@netlify/run-utils": "^5.1.1",
|
|
1130
|
-
"@netlify/zip-it-and-ship-it": "9.29.
|
|
1135
|
+
"@netlify/zip-it-and-ship-it": "9.29.1",
|
|
1131
1136
|
"@opentelemetry/api": "~1.6.0",
|
|
1132
1137
|
"@sindresorhus/slugify": "^2.0.0",
|
|
1133
1138
|
"ansi-escapes": "^6.0.0",
|
|
@@ -1191,17 +1196,17 @@
|
|
|
1191
1196
|
}
|
|
1192
1197
|
},
|
|
1193
1198
|
"node_modules/@netlify/build-info": {
|
|
1194
|
-
"version": "7.12.
|
|
1195
|
-
"resolved": "https://registry.npmjs.org/@netlify/build-info/-/build-info-7.12.
|
|
1196
|
-
"integrity": "sha512-
|
|
1199
|
+
"version": "7.12.1",
|
|
1200
|
+
"resolved": "https://registry.npmjs.org/@netlify/build-info/-/build-info-7.12.1.tgz",
|
|
1201
|
+
"integrity": "sha512-l4Vf9kPueqHI9Kv9jlMVO/jytZSZDkhdn5Re9UlWG7lFi5NZHkf7srzYowxWl6EBnraYERQ7xTovagfvt04F+w==",
|
|
1197
1202
|
"dependencies": {
|
|
1198
1203
|
"@bugsnag/js": "^7.20.0",
|
|
1204
|
+
"@iarna/toml": "^2.2.5",
|
|
1199
1205
|
"dot-prop": "^7.2.0",
|
|
1200
1206
|
"find-up": "^6.3.0",
|
|
1201
1207
|
"minimatch": "^9.0.0",
|
|
1202
1208
|
"read-pkg": "^7.1.0",
|
|
1203
1209
|
"semver": "^7.3.8",
|
|
1204
|
-
"toml": "^3.0.0",
|
|
1205
1210
|
"yaml": "^2.1.3",
|
|
1206
1211
|
"yargs": "^17.6.0"
|
|
1207
1212
|
},
|
|
@@ -1702,10 +1707,11 @@
|
|
|
1702
1707
|
}
|
|
1703
1708
|
},
|
|
1704
1709
|
"node_modules/@netlify/config": {
|
|
1705
|
-
"version": "20.11.
|
|
1706
|
-
"resolved": "https://registry.npmjs.org/@netlify/config/-/config-20.11.
|
|
1707
|
-
"integrity": "sha512-
|
|
1710
|
+
"version": "20.11.1",
|
|
1711
|
+
"resolved": "https://registry.npmjs.org/@netlify/config/-/config-20.11.1.tgz",
|
|
1712
|
+
"integrity": "sha512-Lm5x/3f2/QRRpDqb88HDNKU/OfAlboZ0saAq46oIrVMsqRY3IfC7BgYObjYOZKN4XxzdbyuCa5wjA68fZrzRow==",
|
|
1708
1713
|
"dependencies": {
|
|
1714
|
+
"@iarna/toml": "^2.2.5",
|
|
1709
1715
|
"chalk": "^5.0.0",
|
|
1710
1716
|
"cron-parser": "^4.1.0",
|
|
1711
1717
|
"deepmerge": "^4.2.2",
|
|
@@ -1720,13 +1726,12 @@
|
|
|
1720
1726
|
"js-yaml": "^4.0.0",
|
|
1721
1727
|
"map-obj": "^5.0.0",
|
|
1722
1728
|
"netlify": "^13.1.14",
|
|
1723
|
-
"netlify-headers-parser": "^7.1.
|
|
1724
|
-
"netlify-redirect-parser": "^14.2.
|
|
1729
|
+
"netlify-headers-parser": "^7.1.4",
|
|
1730
|
+
"netlify-redirect-parser": "^14.2.2",
|
|
1725
1731
|
"node-fetch": "^3.3.1",
|
|
1726
1732
|
"omit.js": "^2.0.2",
|
|
1727
1733
|
"p-locate": "^6.0.0",
|
|
1728
1734
|
"path-type": "^5.0.0",
|
|
1729
|
-
"toml": "^3.0.0",
|
|
1730
1735
|
"tomlify-j0.4": "^3.0.0",
|
|
1731
1736
|
"validate-npm-package-name": "^4.0.0",
|
|
1732
1737
|
"yargs": "^17.6.0"
|
|
@@ -2222,11 +2227,11 @@
|
|
|
2222
2227
|
}
|
|
2223
2228
|
},
|
|
2224
2229
|
"node_modules/@netlify/functions-utils": {
|
|
2225
|
-
"version": "5.2.
|
|
2226
|
-
"resolved": "https://registry.npmjs.org/@netlify/functions-utils/-/functions-utils-5.2.
|
|
2227
|
-
"integrity": "sha512-
|
|
2230
|
+
"version": "5.2.50",
|
|
2231
|
+
"resolved": "https://registry.npmjs.org/@netlify/functions-utils/-/functions-utils-5.2.50.tgz",
|
|
2232
|
+
"integrity": "sha512-XbJPdptmINULEL9YBbKMvee1/qsnjWvH4tnTpSo9yLsOx2O6/YDqU/uUNI/iJTwZp2fu7RaLI/MU6nkpCceW1g==",
|
|
2228
2233
|
"dependencies": {
|
|
2229
|
-
"@netlify/zip-it-and-ship-it": "9.29.
|
|
2234
|
+
"@netlify/zip-it-and-ship-it": "9.29.1",
|
|
2230
2235
|
"cpy": "^9.0.0",
|
|
2231
2236
|
"path-exists": "^5.0.0"
|
|
2232
2237
|
},
|
|
@@ -2660,9 +2665,9 @@
|
|
|
2660
2665
|
}
|
|
2661
2666
|
},
|
|
2662
2667
|
"node_modules/@netlify/serverless-functions-api": {
|
|
2663
|
-
"version": "1.
|
|
2664
|
-
"resolved": "https://registry.npmjs.org/@netlify/serverless-functions-api/-/serverless-functions-api-1.
|
|
2665
|
-
"integrity": "sha512-
|
|
2668
|
+
"version": "1.14.0",
|
|
2669
|
+
"resolved": "https://registry.npmjs.org/@netlify/serverless-functions-api/-/serverless-functions-api-1.14.0.tgz",
|
|
2670
|
+
"integrity": "sha512-HUNETLNvNiC2J+SB/YuRwJA9+agPrc0azSoWVk8H85GC+YE114hcS5JW+dstpKwVerp2xILE3vNWN7IMXP5Q5Q==",
|
|
2666
2671
|
"dependencies": {
|
|
2667
2672
|
"@netlify/node-cookies": "^0.1.0",
|
|
2668
2673
|
"urlpattern-polyfill": "8.0.2"
|
|
@@ -2672,14 +2677,14 @@
|
|
|
2672
2677
|
}
|
|
2673
2678
|
},
|
|
2674
2679
|
"node_modules/@netlify/zip-it-and-ship-it": {
|
|
2675
|
-
"version": "9.29.
|
|
2676
|
-
"resolved": "https://registry.npmjs.org/@netlify/zip-it-and-ship-it/-/zip-it-and-ship-it-9.29.
|
|
2677
|
-
"integrity": "sha512-
|
|
2680
|
+
"version": "9.29.1",
|
|
2681
|
+
"resolved": "https://registry.npmjs.org/@netlify/zip-it-and-ship-it/-/zip-it-and-ship-it-9.29.1.tgz",
|
|
2682
|
+
"integrity": "sha512-Dli45ALeBTvoedU5BGNX1yvvOw7FUm6SHzkxoUPs/4ekQTwPz9IZI35fBRRY28eNJANuZw51PRhtglIyUbYKIg==",
|
|
2678
2683
|
"dependencies": {
|
|
2679
2684
|
"@babel/parser": "^7.22.5",
|
|
2680
2685
|
"@babel/types": "7.23.6",
|
|
2681
2686
|
"@netlify/binary-info": "^1.0.0",
|
|
2682
|
-
"@netlify/serverless-functions-api": "^1.
|
|
2687
|
+
"@netlify/serverless-functions-api": "^1.14.0",
|
|
2683
2688
|
"@vercel/nft": "^0.23.0",
|
|
2684
2689
|
"archiver": "^6.0.0",
|
|
2685
2690
|
"common-path-prefix": "^3.0.0",
|
|
@@ -10559,16 +10564,16 @@
|
|
|
10559
10564
|
}
|
|
10560
10565
|
},
|
|
10561
10566
|
"node_modules/netlify-headers-parser": {
|
|
10562
|
-
"version": "7.1.
|
|
10563
|
-
"resolved": "https://registry.npmjs.org/netlify-headers-parser/-/netlify-headers-parser-7.1.
|
|
10564
|
-
"integrity": "sha512-
|
|
10567
|
+
"version": "7.1.4",
|
|
10568
|
+
"resolved": "https://registry.npmjs.org/netlify-headers-parser/-/netlify-headers-parser-7.1.4.tgz",
|
|
10569
|
+
"integrity": "sha512-fTVQf8u65vS4YTP2Qt1K6Np01q3yecRKXf6VMONMlWbfl5n3M/on7pZlZISNAXHNOtnVt+6Kpwfl+RIeALC8Kg==",
|
|
10565
10570
|
"dependencies": {
|
|
10571
|
+
"@iarna/toml": "^2.2.5",
|
|
10566
10572
|
"escape-string-regexp": "^5.0.0",
|
|
10567
10573
|
"fast-safe-stringify": "^2.0.7",
|
|
10568
10574
|
"is-plain-obj": "^4.0.0",
|
|
10569
10575
|
"map-obj": "^5.0.0",
|
|
10570
|
-
"path-exists": "^5.0.0"
|
|
10571
|
-
"toml": "^3.0.0"
|
|
10576
|
+
"path-exists": "^5.0.0"
|
|
10572
10577
|
},
|
|
10573
10578
|
"engines": {
|
|
10574
10579
|
"node": "^14.16.0 || >=16.0.0"
|
|
@@ -10605,15 +10610,15 @@
|
|
|
10605
10610
|
}
|
|
10606
10611
|
},
|
|
10607
10612
|
"node_modules/netlify-redirect-parser": {
|
|
10608
|
-
"version": "14.2.
|
|
10609
|
-
"resolved": "https://registry.npmjs.org/netlify-redirect-parser/-/netlify-redirect-parser-14.2.
|
|
10610
|
-
"integrity": "sha512-
|
|
10613
|
+
"version": "14.2.2",
|
|
10614
|
+
"resolved": "https://registry.npmjs.org/netlify-redirect-parser/-/netlify-redirect-parser-14.2.2.tgz",
|
|
10615
|
+
"integrity": "sha512-LS3cbHZfATtfZFeJr8RLBREAjCE1rEG1CybKnA6dTLgXez0lGJE/QTPzjn6GqfNmiMowo15YQe4+UjRhbzQ04w==",
|
|
10611
10616
|
"dependencies": {
|
|
10617
|
+
"@iarna/toml": "^2.2.5",
|
|
10612
10618
|
"fast-safe-stringify": "^2.1.1",
|
|
10613
10619
|
"filter-obj": "^5.0.0",
|
|
10614
10620
|
"is-plain-obj": "^4.0.0",
|
|
10615
|
-
"path-exists": "^5.0.0"
|
|
10616
|
-
"toml": "^3.0.0"
|
|
10621
|
+
"path-exists": "^5.0.0"
|
|
10617
10622
|
},
|
|
10618
10623
|
"engines": {
|
|
10619
10624
|
"node": "^14.16.0 || >=16.0.0"
|
|
@@ -15277,6 +15282,11 @@
|
|
|
15277
15282
|
"resolved": "https://registry.npmjs.org/@humanwhocodes/momoa/-/momoa-2.0.4.tgz",
|
|
15278
15283
|
"integrity": "sha512-RE815I4arJFtt+FVeU1Tgp9/Xvecacji8w/V6XtXsWWH/wz/eNkNbhb+ny/+PlVZjV0rxQpRSQKNKE3lcktHEA=="
|
|
15279
15284
|
},
|
|
15285
|
+
"@iarna/toml": {
|
|
15286
|
+
"version": "2.2.5",
|
|
15287
|
+
"resolved": "https://registry.npmjs.org/@iarna/toml/-/toml-2.2.5.tgz",
|
|
15288
|
+
"integrity": "sha512-trnsAYxU3xnS1gPHPyU961coFyLkh4gAD/0zQ5mymY4yOZ+CYvsPqUbOFSw0aDM4y0tV7tiFxL/1XfXPNC6IPg=="
|
|
15289
|
+
},
|
|
15280
15290
|
"@import-maps/resolve": {
|
|
15281
15291
|
"version": "1.0.1",
|
|
15282
15292
|
"resolved": "https://registry.npmjs.org/@import-maps/resolve/-/resolve-1.0.1.tgz",
|
|
@@ -15393,27 +15403,27 @@
|
|
|
15393
15403
|
"integrity": "sha512-4wMPu9iN3/HL97QblBsBay3E1etIciR84izI3U+4iALY+JHCrI+a2jO0qbAZ/nxKoegypYEaiiqWXylm+/zfrw=="
|
|
15394
15404
|
},
|
|
15395
15405
|
"@netlify/blobs": {
|
|
15396
|
-
"version": "6.
|
|
15397
|
-
"resolved": "https://registry.npmjs.org/@netlify/blobs/-/blobs-6.
|
|
15398
|
-
"integrity": "sha512-
|
|
15406
|
+
"version": "6.5.0",
|
|
15407
|
+
"resolved": "https://registry.npmjs.org/@netlify/blobs/-/blobs-6.5.0.tgz",
|
|
15408
|
+
"integrity": "sha512-wRFlNnL/Qv3WNLZd3OT/YYqF1zb6iPSo8T31sl9ccL1ahBxW1fBqKgF4b1XL7Z+6mRIkatvcsVPkWBcO+oJMNA=="
|
|
15399
15409
|
},
|
|
15400
15410
|
"@netlify/build": {
|
|
15401
|
-
"version": "29.33.
|
|
15402
|
-
"resolved": "https://registry.npmjs.org/@netlify/build/-/build-29.33.
|
|
15403
|
-
"integrity": "sha512-
|
|
15411
|
+
"version": "29.33.7",
|
|
15412
|
+
"resolved": "https://registry.npmjs.org/@netlify/build/-/build-29.33.7.tgz",
|
|
15413
|
+
"integrity": "sha512-eq3sMthu7jPJPpd656EX/T9Siu+2lBAWJUdkMdoaa3fl0iZo4KmBZyvZcN+u4GH+hSo+WCEMDyWz1N0o2LfC9w==",
|
|
15404
15414
|
"requires": {
|
|
15405
15415
|
"@bugsnag/js": "^7.0.0",
|
|
15406
|
-
"@netlify/blobs": "^6.
|
|
15416
|
+
"@netlify/blobs": "^6.5.0",
|
|
15407
15417
|
"@netlify/cache-utils": "^5.1.5",
|
|
15408
|
-
"@netlify/config": "^20.11.
|
|
15418
|
+
"@netlify/config": "^20.11.1",
|
|
15409
15419
|
"@netlify/edge-bundler": "11.2.2",
|
|
15410
15420
|
"@netlify/framework-info": "^9.8.10",
|
|
15411
|
-
"@netlify/functions-utils": "^5.2.
|
|
15421
|
+
"@netlify/functions-utils": "^5.2.50",
|
|
15412
15422
|
"@netlify/git-utils": "^5.1.1",
|
|
15413
15423
|
"@netlify/opentelemetry-utils": "^1.0.1",
|
|
15414
15424
|
"@netlify/plugins-list": "^6.73.0",
|
|
15415
15425
|
"@netlify/run-utils": "^5.1.1",
|
|
15416
|
-
"@netlify/zip-it-and-ship-it": "9.29.
|
|
15426
|
+
"@netlify/zip-it-and-ship-it": "9.29.1",
|
|
15417
15427
|
"@opentelemetry/api": "~1.6.0",
|
|
15418
15428
|
"@sindresorhus/slugify": "^2.0.0",
|
|
15419
15429
|
"ansi-escapes": "^6.0.0",
|
|
@@ -15687,17 +15697,17 @@
|
|
|
15687
15697
|
}
|
|
15688
15698
|
},
|
|
15689
15699
|
"@netlify/build-info": {
|
|
15690
|
-
"version": "7.12.
|
|
15691
|
-
"resolved": "https://registry.npmjs.org/@netlify/build-info/-/build-info-7.12.
|
|
15692
|
-
"integrity": "sha512-
|
|
15700
|
+
"version": "7.12.1",
|
|
15701
|
+
"resolved": "https://registry.npmjs.org/@netlify/build-info/-/build-info-7.12.1.tgz",
|
|
15702
|
+
"integrity": "sha512-l4Vf9kPueqHI9Kv9jlMVO/jytZSZDkhdn5Re9UlWG7lFi5NZHkf7srzYowxWl6EBnraYERQ7xTovagfvt04F+w==",
|
|
15693
15703
|
"requires": {
|
|
15694
15704
|
"@bugsnag/js": "^7.20.0",
|
|
15705
|
+
"@iarna/toml": "^2.2.5",
|
|
15695
15706
|
"dot-prop": "^7.2.0",
|
|
15696
15707
|
"find-up": "^6.3.0",
|
|
15697
15708
|
"minimatch": "^9.0.0",
|
|
15698
15709
|
"read-pkg": "^7.1.0",
|
|
15699
15710
|
"semver": "^7.3.8",
|
|
15700
|
-
"toml": "^3.0.0",
|
|
15701
15711
|
"yaml": "^2.1.3",
|
|
15702
15712
|
"yargs": "^17.6.0"
|
|
15703
15713
|
},
|
|
@@ -15781,10 +15791,11 @@
|
|
|
15781
15791
|
}
|
|
15782
15792
|
},
|
|
15783
15793
|
"@netlify/config": {
|
|
15784
|
-
"version": "20.11.
|
|
15785
|
-
"resolved": "https://registry.npmjs.org/@netlify/config/-/config-20.11.
|
|
15786
|
-
"integrity": "sha512-
|
|
15794
|
+
"version": "20.11.1",
|
|
15795
|
+
"resolved": "https://registry.npmjs.org/@netlify/config/-/config-20.11.1.tgz",
|
|
15796
|
+
"integrity": "sha512-Lm5x/3f2/QRRpDqb88HDNKU/OfAlboZ0saAq46oIrVMsqRY3IfC7BgYObjYOZKN4XxzdbyuCa5wjA68fZrzRow==",
|
|
15787
15797
|
"requires": {
|
|
15798
|
+
"@iarna/toml": "^2.2.5",
|
|
15788
15799
|
"chalk": "^5.0.0",
|
|
15789
15800
|
"cron-parser": "^4.1.0",
|
|
15790
15801
|
"deepmerge": "^4.2.2",
|
|
@@ -15799,13 +15810,12 @@
|
|
|
15799
15810
|
"js-yaml": "^4.0.0",
|
|
15800
15811
|
"map-obj": "^5.0.0",
|
|
15801
15812
|
"netlify": "^13.1.14",
|
|
15802
|
-
"netlify-headers-parser": "^7.1.
|
|
15803
|
-
"netlify-redirect-parser": "^14.2.
|
|
15813
|
+
"netlify-headers-parser": "^7.1.4",
|
|
15814
|
+
"netlify-redirect-parser": "^14.2.2",
|
|
15804
15815
|
"node-fetch": "^3.3.1",
|
|
15805
15816
|
"omit.js": "^2.0.2",
|
|
15806
15817
|
"p-locate": "^6.0.0",
|
|
15807
15818
|
"path-type": "^5.0.0",
|
|
15808
|
-
"toml": "^3.0.0",
|
|
15809
15819
|
"tomlify-j0.4": "^3.0.0",
|
|
15810
15820
|
"validate-npm-package-name": "^4.0.0",
|
|
15811
15821
|
"yargs": "^17.6.0"
|
|
@@ -16121,11 +16131,11 @@
|
|
|
16121
16131
|
}
|
|
16122
16132
|
},
|
|
16123
16133
|
"@netlify/functions-utils": {
|
|
16124
|
-
"version": "5.2.
|
|
16125
|
-
"resolved": "https://registry.npmjs.org/@netlify/functions-utils/-/functions-utils-5.2.
|
|
16126
|
-
"integrity": "sha512-
|
|
16134
|
+
"version": "5.2.50",
|
|
16135
|
+
"resolved": "https://registry.npmjs.org/@netlify/functions-utils/-/functions-utils-5.2.50.tgz",
|
|
16136
|
+
"integrity": "sha512-XbJPdptmINULEL9YBbKMvee1/qsnjWvH4tnTpSo9yLsOx2O6/YDqU/uUNI/iJTwZp2fu7RaLI/MU6nkpCceW1g==",
|
|
16127
16137
|
"requires": {
|
|
16128
|
-
"@netlify/zip-it-and-ship-it": "9.29.
|
|
16138
|
+
"@netlify/zip-it-and-ship-it": "9.29.1",
|
|
16129
16139
|
"cpy": "^9.0.0",
|
|
16130
16140
|
"path-exists": "^5.0.0"
|
|
16131
16141
|
},
|
|
@@ -16370,23 +16380,23 @@
|
|
|
16370
16380
|
}
|
|
16371
16381
|
},
|
|
16372
16382
|
"@netlify/serverless-functions-api": {
|
|
16373
|
-
"version": "1.
|
|
16374
|
-
"resolved": "https://registry.npmjs.org/@netlify/serverless-functions-api/-/serverless-functions-api-1.
|
|
16375
|
-
"integrity": "sha512-
|
|
16383
|
+
"version": "1.14.0",
|
|
16384
|
+
"resolved": "https://registry.npmjs.org/@netlify/serverless-functions-api/-/serverless-functions-api-1.14.0.tgz",
|
|
16385
|
+
"integrity": "sha512-HUNETLNvNiC2J+SB/YuRwJA9+agPrc0azSoWVk8H85GC+YE114hcS5JW+dstpKwVerp2xILE3vNWN7IMXP5Q5Q==",
|
|
16376
16386
|
"requires": {
|
|
16377
16387
|
"@netlify/node-cookies": "^0.1.0",
|
|
16378
16388
|
"urlpattern-polyfill": "8.0.2"
|
|
16379
16389
|
}
|
|
16380
16390
|
},
|
|
16381
16391
|
"@netlify/zip-it-and-ship-it": {
|
|
16382
|
-
"version": "9.29.
|
|
16383
|
-
"resolved": "https://registry.npmjs.org/@netlify/zip-it-and-ship-it/-/zip-it-and-ship-it-9.29.
|
|
16384
|
-
"integrity": "sha512-
|
|
16392
|
+
"version": "9.29.1",
|
|
16393
|
+
"resolved": "https://registry.npmjs.org/@netlify/zip-it-and-ship-it/-/zip-it-and-ship-it-9.29.1.tgz",
|
|
16394
|
+
"integrity": "sha512-Dli45ALeBTvoedU5BGNX1yvvOw7FUm6SHzkxoUPs/4ekQTwPz9IZI35fBRRY28eNJANuZw51PRhtglIyUbYKIg==",
|
|
16385
16395
|
"requires": {
|
|
16386
16396
|
"@babel/parser": "^7.22.5",
|
|
16387
16397
|
"@babel/types": "7.23.6",
|
|
16388
16398
|
"@netlify/binary-info": "^1.0.0",
|
|
16389
|
-
"@netlify/serverless-functions-api": "^1.
|
|
16399
|
+
"@netlify/serverless-functions-api": "^1.14.0",
|
|
16390
16400
|
"@vercel/nft": "^0.23.0",
|
|
16391
16401
|
"archiver": "^6.0.0",
|
|
16392
16402
|
"common-path-prefix": "^3.0.0",
|
|
@@ -22110,16 +22120,16 @@
|
|
|
22110
22120
|
}
|
|
22111
22121
|
},
|
|
22112
22122
|
"netlify-headers-parser": {
|
|
22113
|
-
"version": "7.1.
|
|
22114
|
-
"resolved": "https://registry.npmjs.org/netlify-headers-parser/-/netlify-headers-parser-7.1.
|
|
22115
|
-
"integrity": "sha512-
|
|
22123
|
+
"version": "7.1.4",
|
|
22124
|
+
"resolved": "https://registry.npmjs.org/netlify-headers-parser/-/netlify-headers-parser-7.1.4.tgz",
|
|
22125
|
+
"integrity": "sha512-fTVQf8u65vS4YTP2Qt1K6Np01q3yecRKXf6VMONMlWbfl5n3M/on7pZlZISNAXHNOtnVt+6Kpwfl+RIeALC8Kg==",
|
|
22116
22126
|
"requires": {
|
|
22127
|
+
"@iarna/toml": "^2.2.5",
|
|
22117
22128
|
"escape-string-regexp": "^5.0.0",
|
|
22118
22129
|
"fast-safe-stringify": "^2.0.7",
|
|
22119
22130
|
"is-plain-obj": "^4.0.0",
|
|
22120
22131
|
"map-obj": "^5.0.0",
|
|
22121
|
-
"path-exists": "^5.0.0"
|
|
22122
|
-
"toml": "^3.0.0"
|
|
22132
|
+
"path-exists": "^5.0.0"
|
|
22123
22133
|
},
|
|
22124
22134
|
"dependencies": {
|
|
22125
22135
|
"escape-string-regexp": {
|
|
@@ -22140,15 +22150,15 @@
|
|
|
22140
22150
|
}
|
|
22141
22151
|
},
|
|
22142
22152
|
"netlify-redirect-parser": {
|
|
22143
|
-
"version": "14.2.
|
|
22144
|
-
"resolved": "https://registry.npmjs.org/netlify-redirect-parser/-/netlify-redirect-parser-14.2.
|
|
22145
|
-
"integrity": "sha512-
|
|
22153
|
+
"version": "14.2.2",
|
|
22154
|
+
"resolved": "https://registry.npmjs.org/netlify-redirect-parser/-/netlify-redirect-parser-14.2.2.tgz",
|
|
22155
|
+
"integrity": "sha512-LS3cbHZfATtfZFeJr8RLBREAjCE1rEG1CybKnA6dTLgXez0lGJE/QTPzjn6GqfNmiMowo15YQe4+UjRhbzQ04w==",
|
|
22146
22156
|
"requires": {
|
|
22157
|
+
"@iarna/toml": "^2.2.5",
|
|
22147
22158
|
"fast-safe-stringify": "^2.1.1",
|
|
22148
22159
|
"filter-obj": "^5.0.0",
|
|
22149
22160
|
"is-plain-obj": "^4.0.0",
|
|
22150
|
-
"path-exists": "^5.0.0"
|
|
22151
|
-
"toml": "^3.0.0"
|
|
22161
|
+
"path-exists": "^5.0.0"
|
|
22152
22162
|
},
|
|
22153
22163
|
"dependencies": {
|
|
22154
22164
|
"path-exists": {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "netlify-cli",
|
|
3
3
|
"description": "Netlify command line tool",
|
|
4
|
-
"version": "17.16.
|
|
4
|
+
"version": "17.16.2",
|
|
5
5
|
"author": "Netlify Inc.",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"engines": {
|
|
@@ -37,13 +37,13 @@
|
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"@bugsnag/js": "7.20.2",
|
|
39
39
|
"@fastify/static": "6.10.2",
|
|
40
|
-
"@netlify/blobs": "6.
|
|
41
|
-
"@netlify/build": "29.33.
|
|
42
|
-
"@netlify/build-info": "7.12.
|
|
43
|
-
"@netlify/config": "20.11.
|
|
40
|
+
"@netlify/blobs": "6.5.0",
|
|
41
|
+
"@netlify/build": "29.33.7",
|
|
42
|
+
"@netlify/build-info": "7.12.1",
|
|
43
|
+
"@netlify/config": "20.11.1",
|
|
44
44
|
"@netlify/edge-bundler": "11.2.2",
|
|
45
45
|
"@netlify/local-functions-proxy": "1.1.1",
|
|
46
|
-
"@netlify/zip-it-and-ship-it": "9.29.
|
|
46
|
+
"@netlify/zip-it-and-ship-it": "9.29.1",
|
|
47
47
|
"@octokit/rest": "19.0.13",
|
|
48
48
|
"ansi-escapes": "6.2.0",
|
|
49
49
|
"ansi-styles": "6.2.1",
|
|
@@ -109,8 +109,8 @@
|
|
|
109
109
|
"log-update": "5.0.1",
|
|
110
110
|
"multiparty": "4.2.3",
|
|
111
111
|
"netlify": "13.1.14",
|
|
112
|
-
"netlify-headers-parser": "7.1.
|
|
113
|
-
"netlify-redirect-parser": "14.2.
|
|
112
|
+
"netlify-headers-parser": "7.1.4",
|
|
113
|
+
"netlify-redirect-parser": "14.2.2",
|
|
114
114
|
"netlify-redirector": "0.5.0",
|
|
115
115
|
"node-fetch": "2.6.12",
|
|
116
116
|
"node-version-alias": "3.4.1",
|