Skip to content

Commit b1129fc

Browse files
fix(deps): update dependency node-fetch to v3
1 parent 760e3ab commit b1129fc

File tree

2 files changed

+37
-23
lines changed

2 files changed

+37
-23
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"dependencies": {
3131
"async": "^3.2.0",
3232
"eslint": "8.x",
33-
"node-fetch": "^2",
33+
"node-fetch": "^3.0.0",
3434
"passport-oauth": "~1.0.0"
3535
},
3636
"nbbpm": {

yarn.lock

Lines changed: 36 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -329,6 +329,11 @@ cross-spawn@^7.0.2, cross-spawn@^7.0.3:
329329
shebang-command "^2.0.0"
330330
which "^2.0.1"
331331

332+
data-uri-to-buffer@^4.0.0:
333+
version "4.0.1"
334+
resolved "https://registry.yarnpkg.com/data-uri-to-buffer/-/data-uri-to-buffer-4.0.1.tgz#d8feb2b2881e6a4f58c2e08acfd0e2834e26222e"
335+
integrity sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==
336+
332337
debug@4.3.4, debug@^4.1.1, debug@^4.3.2:
333338
version "4.3.4"
334339
resolved "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz"
@@ -642,6 +647,14 @@ fastq@^1.6.0:
642647
dependencies:
643648
reusify "^1.0.4"
644649

650+
fetch-blob@^3.1.2, fetch-blob@^3.1.4:
651+
version "3.2.0"
652+
resolved "https://registry.yarnpkg.com/fetch-blob/-/fetch-blob-3.2.0.tgz#f09b8d4bbd45adc6f0c20b7e787e793e309dcce9"
653+
integrity sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==
654+
dependencies:
655+
node-domexception "^1.0.0"
656+
web-streams-polyfill "^3.0.3"
657+
645658
file-entry-cache@^6.0.1:
646659
version "6.0.1"
647660
resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027"
@@ -685,6 +698,13 @@ for-each@^0.3.3:
685698
dependencies:
686699
is-callable "^1.1.3"
687700

701+
formdata-polyfill@^4.0.10:
702+
version "4.0.10"
703+
resolved "https://registry.yarnpkg.com/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz#24807c31c9d402e002ab3d8c720144ceb8848423"
704+
integrity sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==
705+
dependencies:
706+
fetch-blob "^3.1.2"
707+
688708
fs.realpath@^1.0.0:
689709
version "1.0.0"
690710
resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
@@ -1154,12 +1174,19 @@ natural-compare@^1.4.0:
11541174
resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
11551175
integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==
11561176

1157-
node-fetch@^2:
1158-
version "2.6.12"
1159-
resolved "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.12.tgz"
1160-
integrity sha512-C/fGU2E8ToujUivIO0H+tpQ6HWo4eEmchoPIoXtxCrVghxdKq+QOHqEZW7tuP3KlV3bC8FRMO5nMCC7Zm1VP6g==
1177+
node-domexception@^1.0.0:
1178+
version "1.0.0"
1179+
resolved "https://registry.yarnpkg.com/node-domexception/-/node-domexception-1.0.0.tgz#6888db46a1f71c0b76b3f7555016b63fe64766e5"
1180+
integrity sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==
1181+
1182+
node-fetch@^3.0.0:
1183+
version "3.3.2"
1184+
resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-3.3.2.tgz#d1e889bacdf733b4ff3b2b243eb7a12866a0b78b"
1185+
integrity sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==
11611186
dependencies:
1162-
whatwg-url "^5.0.0"
1187+
data-uri-to-buffer "^4.0.0"
1188+
fetch-blob "^3.1.4"
1189+
formdata-polyfill "^4.0.10"
11631190

11641191
npm-run-path@^5.1.0:
11651192
version "5.1.0"
@@ -1574,11 +1601,6 @@ to-regex-range@^5.0.1:
15741601
dependencies:
15751602
is-number "^7.0.0"
15761603

1577-
tr46@~0.0.3:
1578-
version "0.0.3"
1579-
resolved "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz"
1580-
integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==
1581-
15821604
tsconfig-paths@^3.14.2:
15831605
version "3.14.2"
15841606
resolved "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz"
@@ -1672,18 +1694,10 @@ utils-merge@1.x.x:
16721694
resolved "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz"
16731695
integrity sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==
16741696

1675-
webidl-conversions@^3.0.0:
1676-
version "3.0.1"
1677-
resolved "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz"
1678-
integrity sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==
1679-
1680-
whatwg-url@^5.0.0:
1681-
version "5.0.0"
1682-
resolved "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz"
1683-
integrity sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==
1684-
dependencies:
1685-
tr46 "~0.0.3"
1686-
webidl-conversions "^3.0.0"
1697+
web-streams-polyfill@^3.0.3:
1698+
version "3.2.1"
1699+
resolved "https://registry.yarnpkg.com/web-streams-polyfill/-/web-streams-polyfill-3.2.1.tgz#71c2718c52b45fd49dbeee88634b3a60ceab42a6"
1700+
integrity sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q==
16871701

16881702
which-boxed-primitive@^1.0.2:
16891703
version "1.0.2"

0 commit comments

Comments
 (0)