Skip to content

Commit 6a1a3ba

Browse files
deps: update corepack to 0.34.5
PR-URL: #60842 Reviewed-By: Antoine du Hamel <[email protected]> Reviewed-By: Trivikram Kamat <[email protected]> Reviewed-By: Michaël Zasso <[email protected]>
1 parent 6a80d05 commit 6a1a3ba

File tree

3 files changed

+30
-5
lines changed

3 files changed

+30
-5
lines changed

deps/corepack/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## [0.34.5](https://github.com/nodejs/corepack/compare/v0.34.4...v0.34.5) (2025-11-24)
4+
5+
6+
### Bug Fixes
7+
8+
* **pnpm:** fix bin path for v11 ([#776](https://github.com/nodejs/corepack/issues/776)) ([0c8048a](https://github.com/nodejs/corepack/commit/0c8048adc61651f6eb798448675d3ecc4a7e26a9))
9+
* update package manager versions ([#773](https://github.com/nodejs/corepack/issues/773)) ([06c286b](https://github.com/nodejs/corepack/commit/06c286b5fc171e43090b5eed5cd501bc9580927f))
10+
311
## [0.34.4](https://github.com/nodejs/corepack/compare/v0.34.3...v0.34.4) (2025-11-14)
412

513

deps/corepack/dist/lib/corepack.cjs

Lines changed: 21 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21677,7 +21677,7 @@ function String2(descriptor, ...args) {
2167721677
}
2167821678

2167921679
// package.json
21680-
var version = "0.34.4";
21680+
var version = "0.34.5";
2168121681

2168221682
// sources/Engine.ts
2168321683
var import_fs6 = __toESM(require("fs"));
@@ -21691,7 +21691,7 @@ var import_valid4 = __toESM(require_valid2());
2169121691
var config_default = {
2169221692
definitions: {
2169321693
npm: {
21694-
default: "11.6.2+sha1.2af8ff1f23b279df1e5289db7c70cfedd0fe18c5",
21694+
default: "11.6.3+sha1.3f581bca37cbdadf2be04346c0e5b0be96cdd54b",
2169521695
fetchLatestFrom: {
2169621696
type: "npm",
2169721697
package: "npm"
@@ -21728,7 +21728,7 @@ var config_default = {
2172821728
}
2172921729
},
2173021730
pnpm: {
21731-
default: "10.22.0+sha1.3e9e4d522d30f3cf4cabb7506f5d15b89feffd04",
21731+
default: "10.23.0+sha1.b4a44ab0dc2adf2e36371d11d8eb0dc78ffc976c",
2173221732
fetchLatestFrom: {
2173321733
type: "npm",
2173421734
package: "pnpm"
@@ -21766,7 +21766,7 @@ var config_default = {
2176621766
]
2176721767
}
2176821768
},
21769-
">=6.0.0": {
21769+
"6.x || 7.x || 8.x || 9.x || 10.x": {
2177021770
url: "https://registry.npmjs.org/pnpm/-/pnpm-{}.tgz",
2177121771
bin: {
2177221772
pnpm: "./bin/pnpm.cjs",
@@ -21782,6 +21782,23 @@ var config_default = {
2178221782
"install"
2178321783
]
2178421784
}
21785+
},
21786+
">=11.0.0": {
21787+
url: "https://registry.npmjs.org/pnpm/-/pnpm-{}.tgz",
21788+
bin: {
21789+
pnpm: "./bin/pnpm.mjs",
21790+
pnpx: "./bin/pnpx.mjs"
21791+
},
21792+
registry: {
21793+
type: "npm",
21794+
package: "pnpm"
21795+
},
21796+
commands: {
21797+
use: [
21798+
"pnpm",
21799+
"install"
21800+
]
21801+
}
2178521802
}
2178621803
}
2178721804
},

deps/corepack/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "corepack",
3-
"version": "0.34.4",
3+
"version": "0.34.5",
44
"homepage": "https://github.com/nodejs/corepack#readme",
55
"bugs": {
66
"url": "https://github.com/nodejs/corepack/issues"

0 commit comments

Comments
 (0)