Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## [0.34.5](https://github.com/nodejs/corepack/compare/v0.34.4...v0.34.5) (2025-11-24)


### Bug Fixes

* **pnpm:** fix bin path for v11 ([#776](https://github.com/nodejs/corepack/issues/776)) ([0c8048a](https://github.com/nodejs/corepack/commit/0c8048adc61651f6eb798448675d3ecc4a7e26a9))
* update package manager versions ([#773](https://github.com/nodejs/corepack/issues/773)) ([06c286b](https://github.com/nodejs/corepack/commit/06c286b5fc171e43090b5eed5cd501bc9580927f))

## [0.34.4](https://github.com/nodejs/corepack/compare/v0.34.3...v0.34.4) (2025-11-14)


Expand Down
23 changes: 20 additions & 3 deletions config.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"definitions": {
"npm": {
"default": "11.6.2+sha1.2af8ff1f23b279df1e5289db7c70cfedd0fe18c5",
"default": "11.6.3+sha1.3f581bca37cbdadf2be04346c0e5b0be96cdd54b",
"fetchLatestFrom": {
"type": "npm",
"package": "npm"
Expand Down Expand Up @@ -38,7 +38,7 @@
}
},
"pnpm": {
"default": "10.22.0+sha1.3e9e4d522d30f3cf4cabb7506f5d15b89feffd04",
"default": "10.23.0+sha1.b4a44ab0dc2adf2e36371d11d8eb0dc78ffc976c",
"fetchLatestFrom": {
"type": "npm",
"package": "pnpm"
Expand Down Expand Up @@ -76,7 +76,7 @@
]
}
},
">=6.0.0": {
"6.x || 7.x || 8.x || 9.x || 10.x": {
"url": "https://registry.npmjs.org/pnpm/-/pnpm-{}.tgz",
"bin": {
"pnpm": "./bin/pnpm.cjs",
Expand All @@ -92,6 +92,23 @@
"install"
]
}
},
">=11.0.0": {
"url": "https://registry.npmjs.org/pnpm/-/pnpm-{}.tgz",
"bin": {
"pnpm": "./bin/pnpm.mjs",
"pnpx": "./bin/pnpx.mjs"
},
"registry": {
"type": "npm",
"package": "pnpm"
},
"commands": {
"use": [
"pnpm",
"install"
]
}
}
}
},
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "corepack",
"version": "0.34.4",
"version": "0.34.5",
"homepage": "https://github.com/nodejs/corepack#readme",
"bugs": {
"url": "https://github.com/nodejs/corepack/issues"
Expand Down
2 changes: 2 additions & 0 deletions tests/main.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import {runCli} from './_runCli';


beforeEach(async () => {

Check failure on line 13 in tests/main.test.ts

View workflow job for this annotation

GitHub Actions / windows-latest w/ Node.js 22.x

tests/main.test.ts > should support hydrating multiple package managers from cached archives

Error: Hook timed out in 10000ms. If this is a long-running hook, pass a timeout value as the last argument or configure it globally with "hookTimeout". ❯ tests/main.test.ts:13:1

Check failure on line 13 in tests/main.test.ts

View workflow job for this annotation

GitHub Actions / windows-latest w/ Node.js 22.x

tests/main.test.ts > should support hydrating multiple package managers from cached archives

Error: Hook timed out in 10000ms. If this is a long-running hook, pass a timeout value as the last argument or configure it globally with "hookTimeout". ❯ tests/main.test.ts:13:1
const home = await xfs.mktempPromise();

// `process.env` is reset after each tests in setupTests.js.
Expand Down Expand Up @@ -149,6 +149,8 @@
[`pnpm`, `6.6.2`],
[`pnpm`, `6.6.2+sha1.7b4d6b176c1b93b5670ed94c24babb7d80c13854`],
[`pnpm`, `6.6.2+sha224.eb5c0acad3b0f40ecdaa2db9aa5a73134ad256e17e22d1419a2ab073`],
[`pnpm`, `11.0.0-dev.1005`],
[`pnpm`, `11.0.0-dev.1005+sha1.17cdd7ae1baf19f24440422f946130fccbb4257a`],
[`npm`, `6.14.2`],
[`npm`, `6.14.2+sha1.f057d35cd4792c4c511bb1fa332edb43143d07b0`],
[`npm`, `6.14.2+sha224.50512c1eb404900ee78586faa6d756b8d867ff46a328e6fb4cdf3a87`],
Expand Down Expand Up @@ -1005,7 +1007,7 @@
});
});

it(`should support hydrating multiple package managers from cached archives`, async () => {

Check failure on line 1010 in tests/main.test.ts

View workflow job for this annotation

GitHub Actions / windows-latest w/ Node.js 22.x

tests/main.test.ts > should support hydrating multiple package managers from cached archives

Error: Test timed out in 180000ms. If this is a long-running test, pass a timeout value as the last argument or configure it globally with "testTimeout". ❯ tests/main.test.ts:1010:1

Check failure on line 1010 in tests/main.test.ts

View workflow job for this annotation

GitHub Actions / windows-latest w/ Node.js 22.x

tests/main.test.ts > should support hydrating multiple package managers from cached archives

Error: Test timed out in 180000ms. If this is a long-running test, pass a timeout value as the last argument or configure it globally with "testTimeout". ❯ tests/main.test.ts:1010:1

Check failure on line 1010 in tests/main.test.ts

View workflow job for this annotation

GitHub Actions / windows-latest w/ Node.js 22.x

tests/main.test.ts > should support hydrating multiple package managers from cached archives

Error: Test timed out in 180000ms. If this is a long-running test, pass a timeout value as the last argument or configure it globally with "testTimeout". ❯ tests/main.test.ts:1010:1

Check failure on line 1010 in tests/main.test.ts

View workflow job for this annotation

GitHub Actions / windows-latest w/ Node.js 22.x

tests/main.test.ts > should support hydrating multiple package managers from cached archives

Error: Test timed out in 180000ms. If this is a long-running test, pass a timeout value as the last argument or configure it globally with "testTimeout". ❯ tests/main.test.ts:1010:1

Check failure on line 1010 in tests/main.test.ts

View workflow job for this annotation

GitHub Actions / windows-latest w/ Node.js 22.x

tests/main.test.ts > should support hydrating multiple package managers from cached archives

Error: Test timed out in 180000ms. If this is a long-running test, pass a timeout value as the last argument or configure it globally with "testTimeout". ❯ tests/main.test.ts:1010:1

Check failure on line 1010 in tests/main.test.ts

View workflow job for this annotation

GitHub Actions / windows-latest w/ Node.js 22.x

tests/main.test.ts > should support hydrating multiple package managers from cached archives

Error: Test timed out in 180000ms. If this is a long-running test, pass a timeout value as the last argument or configure it globally with "testTimeout". ❯ tests/main.test.ts:1010:1
await xfs.mktempPromise(async cwd => {
await expect(runCli(cwd, [`pack`, `[email protected]`, `[email protected]`])).resolves.toMatchObject({
exitCode: 0,
Expand Down
Binary file modified tests/nocks.db
Binary file not shown.
10 changes: 5 additions & 5 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2298,18 +2298,18 @@ __metadata:
linkType: hard

"glob@npm:^11.0.3":
version: 11.0.3
resolution: "glob@npm:11.0.3"
version: 11.1.0
resolution: "glob@npm:11.1.0"
dependencies:
foreground-child: "npm:^3.3.1"
jackspeak: "npm:^4.1.1"
minimatch: "npm:^10.0.3"
minimatch: "npm:^10.1.1"
minipass: "npm:^7.1.2"
package-json-from-dist: "npm:^1.0.0"
path-scurry: "npm:^2.0.0"
bin:
glob: dist/esm/bin.mjs
checksum: 10c0/7d24457549ec2903920dfa3d8e76850e7c02aa709122f0164b240c712f5455c0b457e6f2a1eee39344c6148e39895be8094ae8cfef7ccc3296ed30bce250c661
checksum: 10c0/1ceae07f23e316a6fa74581d9a74be6e8c2e590d2f7205034dd5c0435c53f5f7b712c2be00c3b65bf0a49294a1c6f4b98cd84c7637e29453b5aa13b79f1763a2
languageName: node
linkType: hard

Expand Down Expand Up @@ -2989,7 +2989,7 @@ __metadata:
languageName: node
linkType: hard

"minimatch@npm:^10.0.3":
"minimatch@npm:^10.1.1":
version: 10.1.1
resolution: "minimatch@npm:10.1.1"
dependencies:
Expand Down
Loading