Skip to content

Commit b04e3c2

Browse files
dependabot[bot]nlf
andauthored
deps: bump minipass from 4.2.7 to 5.0.0 (#220)
* deps: bump minipass from 4.2.7 to 5.0.0 Bumps [minipass](https://github.com/isaacs/minipass) from 4.2.7 to 5.0.0. - [Release notes](https://github.com/isaacs/minipass/releases) - [Changelog](https://github.com/isaacs/minipass/blob/main/CHANGELOG.md) - [Commits](isaacs/minipass@v4.2.7...v5.0.0) --- updated-dependencies: - dependency-name: minipass dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * chore: fixup usage for minipass@5 --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: nlf <[email protected]>
1 parent 23f5c73 commit b04e3c2

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

lib/cache/entry.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
const { Request, Response } = require('minipass-fetch')
2-
const Minipass = require('minipass')
2+
const { Minipass } = require('minipass')
33
const MinipassFlush = require('minipass-flush')
44
const cacache = require('cacache')
55
const url = require('url')

lib/remote.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const Minipass = require('minipass')
1+
const { Minipass } = require('minipass')
22
const fetch = require('minipass-fetch')
33
const promiseRetry = require('promise-retry')
44
const ssri = require('ssri')

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
"https-proxy-agent": "^5.0.0",
4141
"is-lambda": "^1.0.1",
4242
"lru-cache": "^7.7.1",
43-
"minipass": "^4.0.0",
43+
"minipass": "^5.0.0",
4444
"minipass-fetch": "^3.0.0",
4545
"minipass-flush": "^1.0.5",
4646
"minipass-pipeline": "^1.2.4",

test/fetch.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
'use strict'
22

3-
const Minipass = require('minipass')
3+
const { Minipass } = require('minipass')
44
const t = require('tap')
55
const nock = require('nock')
66
const fetch = require('../lib/index.js')

0 commit comments

Comments
 (0)