Skip to content

Commit

Permalink
deps: minipass-fetch@3.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
lukekarrys committed May 7, 2024
1 parent 419f9b9 commit ff6c5d1
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions DEPENDENCIES.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,6 @@ graph LR;
normalize-package-data-->semver;
npm-->abbrev;
npm-->cacache;
npm-->cmd-shim;
npm-->fs-minipass;
npm-->hosted-git-info;
npm-->ini;
Expand All @@ -106,6 +105,7 @@ graph LR;
npm-->libnpmteam;
npm-->libnpmversion;
npm-->make-fetch-happen;
npm-->minipass-fetch;
npm-->nopt;
npm-->normalize-package-data;
npm-->npm-audit-report;
Expand Down Expand Up @@ -470,7 +470,6 @@ graph LR;
npm-->ci-info;
npm-->cli-columns;
npm-->cli-table3;
npm-->cmd-shim;
npm-->diff;
npm-->fastest-levenshtein;
npm-->fs-minipass;
Expand All @@ -495,6 +494,7 @@ graph LR;
npm-->libnpmversion;
npm-->make-fetch-happen;
npm-->minimatch;
npm-->minipass-fetch;
npm-->minipass-pipeline;
npm-->minipass;
npm-->ms;
Expand Down
2 changes: 1 addition & 1 deletion node_modules/minipass-fetch/lib/body.js
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ class Body {

// do the pipe in the promise, because the pipe() can send too much
// data through right away and upset the MP Sized object
return new Promise((resolve, reject) => {
return new Promise((resolve) => {
// if the stream is some other kind of stream, then pipe through a MP
// so we can collect it more easily.
if (stream !== upstream) {
Expand Down
2 changes: 1 addition & 1 deletion node_modules/minipass-fetch/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ const fetch = async (url, opts) => {

let reqTimeout = null
if (request.timeout) {
req.once('socket', socket => {
req.once('socket', () => {
reqTimeout = setTimeout(() => {
reject(new FetchError(`network timeout at: ${
request.url}`, 'request-timeout'))
Expand Down
10 changes: 5 additions & 5 deletions node_modules/minipass-fetch/package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "minipass-fetch",
"version": "3.0.4",
"version": "3.0.5",
"description": "An implementation of window.fetch in Node.js using Minipass streams",
"license": "MIT",
"main": "lib/index.js",
"scripts": {
"test:tls-fixtures": "./test/fixtures/tls/setup.sh",
"test": "tap",
"snap": "tap",
"lint": "eslint \"**/*.js\"",
"lint": "eslint \"**/*.{js,cjs,ts,mjs,jsx,tsx}\"",
"postlint": "template-oss-check",
"lintfix": "npm run lint -- --fix",
"posttest": "npm run lint",
Expand All @@ -24,7 +24,7 @@
},
"devDependencies": {
"@npmcli/eslint-config": "^4.0.0",
"@npmcli/template-oss": "4.18.0",
"@npmcli/template-oss": "4.22.0",
"@ungap/url-search-params": "^0.2.2",
"abort-controller": "^3.0.0",
"abortcontroller-polyfill": "~1.7.3",
Expand All @@ -45,7 +45,7 @@
},
"repository": {
"type": "git",
"url": "https://github.com/npm/minipass-fetch.git"
"url": "git+https://github.com/npm/minipass-fetch.git"
},
"keywords": [
"fetch",
Expand All @@ -63,7 +63,7 @@
"author": "GitHub Inc.",
"templateOSS": {
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
"version": "4.18.0",
"version": "4.22.0",
"publish": "true"
}
}
6 changes: 3 additions & 3 deletions package-lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -8413,9 +8413,9 @@
}
},
"node_modules/minipass-fetch": {
"version": "3.0.4",
"resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-3.0.4.tgz",
"integrity": "sha512-jHAqnA728uUpIaFm7NWsCnqKT6UqZz7GcI/bDpPATuwYyKwJwW0remxSCxUlKiEty+eopHGa3oc8WxgQ1FFJqg==",
"version": "3.0.5",
"resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-3.0.5.tgz",
"integrity": "sha512-2N8elDQAtSnFV0Dk7gt15KHsS0Fyz6CbYZ360h0WTYV1Ty46li3rAXVOQj1THMNLdmrD9Vt5pBPtWtVkpwGBqg==",
"inBundle": true,
"dependencies": {
"minipass": "^7.0.3",
Expand Down

0 comments on commit ff6c5d1

Please sign in to comment.