Skip to content

Commit 8dc375c

Browse files
fix(deps): update dependency node-fetch to v3
1 parent d662fc0 commit 8dc375c

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": "9.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
@@ -343,6 +343,11 @@ cross-spawn@^7.0.2, cross-spawn@^7.0.3:
343343
shebang-command "^2.0.0"
344344
which "^2.0.1"
345345

346+
data-uri-to-buffer@^4.0.0:
347+
version "4.0.1"
348+
resolved "https://registry.yarnpkg.com/data-uri-to-buffer/-/data-uri-to-buffer-4.0.1.tgz#d8feb2b2881e6a4f58c2e08acfd0e2834e26222e"
349+
integrity sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==
350+
346351
debug@4.3.4, debug@^4.3.1, debug@^4.3.2:
347352
version "4.3.4"
348353
resolved "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz"
@@ -701,6 +706,14 @@ fastq@^1.6.0:
701706
dependencies:
702707
reusify "^1.0.4"
703708

709+
fetch-blob@^3.1.2, fetch-blob@^3.1.4:
710+
version "3.2.0"
711+
resolved "https://registry.yarnpkg.com/fetch-blob/-/fetch-blob-3.2.0.tgz#f09b8d4bbd45adc6f0c20b7e787e793e309dcce9"
712+
integrity sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==
713+
dependencies:
714+
node-domexception "^1.0.0"
715+
web-streams-polyfill "^3.0.3"
716+
704717
file-entry-cache@^8.0.0:
705718
version "8.0.0"
706719
resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-8.0.0.tgz#7787bddcf1131bffb92636c69457bbc0edd6d81f"
@@ -743,6 +756,13 @@ for-each@^0.3.3:
743756
dependencies:
744757
is-callable "^1.1.3"
745758

759+
formdata-polyfill@^4.0.10:
760+
version "4.0.10"
761+
resolved "https://registry.yarnpkg.com/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz#24807c31c9d402e002ab3d8c720144ceb8848423"
762+
integrity sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==
763+
dependencies:
764+
fetch-blob "^3.1.2"
765+
746766
function-bind@^1.1.2:
747767
version "1.1.2"
748768
resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.2.tgz#2c02d864d97f3ea6c8830c464cbd11ab6eab7a1c"
@@ -1212,12 +1232,19 @@ natural-compare@^1.4.0:
12121232
resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
12131233
integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==
12141234

1215-
node-fetch@^2:
1216-
version "2.6.12"
1217-
resolved "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.12.tgz"
1218-
integrity sha512-C/fGU2E8ToujUivIO0H+tpQ6HWo4eEmchoPIoXtxCrVghxdKq+QOHqEZW7tuP3KlV3bC8FRMO5nMCC7Zm1VP6g==
1235+
node-domexception@^1.0.0:
1236+
version "1.0.0"
1237+
resolved "https://registry.yarnpkg.com/node-domexception/-/node-domexception-1.0.0.tgz#6888db46a1f71c0b76b3f7555016b63fe64766e5"
1238+
integrity sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==
1239+
1240+
node-fetch@^3.0.0:
1241+
version "3.3.2"
1242+
resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-3.3.2.tgz#d1e889bacdf733b4ff3b2b243eb7a12866a0b78b"
1243+
integrity sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==
12191244
dependencies:
1220-
whatwg-url "^5.0.0"
1245+
data-uri-to-buffer "^4.0.0"
1246+
fetch-blob "^3.1.4"
1247+
formdata-polyfill "^4.0.10"
12211248

12221249
npm-run-path@^5.1.0:
12231250
version "5.1.0"
@@ -1706,11 +1733,6 @@ to-regex-range@^5.0.1:
17061733
dependencies:
17071734
is-number "^7.0.0"
17081735

1709-
tr46@~0.0.3:
1710-
version "0.0.3"
1711-
resolved "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz"
1712-
integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==
1713-
17141736
tsconfig-paths@^3.15.0:
17151737
version "3.15.0"
17161738
resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz#5299ec605e55b1abb23ec939ef15edaf483070d4"
@@ -1799,18 +1821,10 @@ utils-merge@1.x.x:
17991821
resolved "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz"
18001822
integrity sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==
18011823

1802-
webidl-conversions@^3.0.0:
1803-
version "3.0.1"
1804-
resolved "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz"
1805-
integrity sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==
1806-
1807-
whatwg-url@^5.0.0:
1808-
version "5.0.0"
1809-
resolved "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz"
1810-
integrity sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==
1811-
dependencies:
1812-
tr46 "~0.0.3"
1813-
webidl-conversions "^3.0.0"
1824+
web-streams-polyfill@^3.0.3:
1825+
version "3.3.3"
1826+
resolved "https://registry.yarnpkg.com/web-streams-polyfill/-/web-streams-polyfill-3.3.3.tgz#2073b91a2fdb1fbfbd401e7de0ac9f8214cecb4b"
1827+
integrity sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==
18141828

18151829
which-boxed-primitive@^1.0.2:
18161830
version "1.0.2"

0 commit comments

Comments
 (0)