Skip to content

Commit d43f350

Browse files
committed
1 parent 4d0918a commit d43f350

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

DEPENDENCIES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -383,6 +383,7 @@ graph LR;
383383
libnpmversion-->semver;
384384
libnpmversion-->tap;
385385
make-fetch-happen-->cacache;
386+
make-fetch-happen-->gar-promise-retry["@gar/promise-retry"];
386387
make-fetch-happen-->http-cache-semantics;
387388
make-fetch-happen-->minipass-fetch;
388389
make-fetch-happen-->minipass-flush;
@@ -391,7 +392,6 @@ graph LR;
391392
make-fetch-happen-->negotiator;
392393
make-fetch-happen-->npmcli-agent["@npmcli/agent"];
393394
make-fetch-happen-->proc-log;
394-
make-fetch-happen-->promise-retry;
395395
make-fetch-happen-->ssri;
396396
minimatch-->brace-expansion;
397397
minipass-->yallist;

node_modules/make-fetch-happen/lib/remote.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
const { Minipass } = require('minipass')
22
const fetch = require('minipass-fetch')
3-
const promiseRetry = require('promise-retry')
3+
const { promiseRetry } = require('@gar/promise-retry')
44
const ssri = require('ssri')
55
const { log } = require('proc-log')
66

node_modules/make-fetch-happen/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "make-fetch-happen",
3-
"version": "15.0.3",
3+
"version": "15.0.4",
44
"description": "Opinionated, caching, retrying fetch client",
55
"main": "lib/index.js",
66
"files": [
@@ -33,6 +33,7 @@
3333
"author": "GitHub Inc.",
3434
"license": "ISC",
3535
"dependencies": {
36+
"@gar/promise-retry": "^1.0.0",
3637
"@npmcli/agent": "^4.0.0",
3738
"cacache": "^20.0.1",
3839
"http-cache-semantics": "^4.1.1",
@@ -42,7 +43,6 @@
4243
"minipass-pipeline": "^1.2.4",
4344
"negotiator": "^1.0.0",
4445
"proc-log": "^6.0.0",
45-
"promise-retry": "^2.0.1",
4646
"ssri": "^13.0.0"
4747
},
4848
"devDependencies": {

package-lock.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@
118118
"libnpmsearch": "^9.0.1",
119119
"libnpmteam": "^8.0.2",
120120
"libnpmversion": "^8.0.3",
121-
"make-fetch-happen": "^15.0.3",
121+
"make-fetch-happen": "^15.0.4",
122122
"minimatch": "^10.2.2",
123123
"minipass": "^7.1.3",
124124
"minipass-pipeline": "^1.2.4",
@@ -7258,12 +7258,13 @@
72587258
}
72597259
},
72607260
"node_modules/make-fetch-happen": {
7261-
"version": "15.0.3",
7262-
"resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-15.0.3.tgz",
7263-
"integrity": "sha512-iyyEpDty1mwW3dGlYXAJqC/azFn5PPvgKVwXayOGBSmKLxhKZ9fg4qIan2ePpp1vJIwfFiO34LAPZgq9SZW9Aw==",
7261+
"version": "15.0.4",
7262+
"resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-15.0.4.tgz",
7263+
"integrity": "sha512-vM2sG+wbVeVGYcCm16mM3d5fuem9oC28n436HjsGO3LcxoTI8LNVa4rwZDn3f76+cWyT4GGJDxjTYU1I2nr6zw==",
72647264
"inBundle": true,
72657265
"license": "ISC",
72667266
"dependencies": {
7267+
"@gar/promise-retry": "^1.0.0",
72677268
"@npmcli/agent": "^4.0.0",
72687269
"cacache": "^20.0.1",
72697270
"http-cache-semantics": "^4.1.1",
@@ -7273,7 +7274,6 @@
72737274
"minipass-pipeline": "^1.2.4",
72747275
"negotiator": "^1.0.0",
72757276
"proc-log": "^6.0.0",
7276-
"promise-retry": "^2.0.1",
72777277
"ssri": "^13.0.0"
72787278
},
72797279
"engines": {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@
8686
"libnpmsearch": "^9.0.1",
8787
"libnpmteam": "^8.0.2",
8888
"libnpmversion": "^8.0.3",
89-
"make-fetch-happen": "^15.0.3",
89+
"make-fetch-happen": "^15.0.4",
9090
"minimatch": "^10.2.2",
9191
"minipass": "^7.1.3",
9292
"minipass-pipeline": "^1.2.4",

0 commit comments

Comments
 (0)