Skip to content

Commit f122602

Browse files
nodejs-github-bottargos
authored andcommitted
deps: update corepack to 0.34.0
PR-URL: #59133 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
1 parent d89390f commit f122602

File tree

4 files changed

+23
-7
lines changed

4 files changed

+23
-7
lines changed

deps/corepack/CHANGELOG.md

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

3+
## [0.34.0](https://github.com/nodejs/corepack/compare/v0.33.0...v0.34.0) (2025-07-19)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* drop Node.js 18.x and 23.x support
9+
10+
### Features
11+
12+
* update package manager versions ([#719](https://github.com/nodejs/corepack/issues/719)) ([7707ea7](https://github.com/nodejs/corepack/commit/7707ea7350c129ad3aae8ca08e9e80fcf164dcb6))
13+
14+
15+
### Miscellaneous Chores
16+
17+
* remove Node.js 18.x and 23.x usage, add 24.x ([#718](https://github.com/nodejs/corepack/issues/718)) ([783a42f](https://github.com/nodejs/corepack/commit/783a42fbe35371964e9dde75e2263b179f53bc0c))
18+
319
## [0.33.0](https://github.com/nodejs/corepack/compare/v0.32.0...v0.33.0) (2025-06-02)
420

521

deps/corepack/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ and pnpm without having to install them**.
1111

1212
### Default Installs
1313

14-
Corepack is [distributed by default with all recent Node.js versions](https://nodejs.org/api/corepack.html).
14+
Corepack is distributed with Node.js from version 14.19.0 up to (but not including) 25.0.0.
1515
Run `corepack enable` to install the required Yarn and pnpm binaries on your path.
1616

1717
### Manual Installs

deps/corepack/dist/lib/corepack.cjs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21683,7 +21683,7 @@ function String2(descriptor, ...args) {
2168321683
}
2168421684

2168521685
// package.json
21686-
var version = "0.33.0";
21686+
var version = "0.34.0";
2168721687

2168821688
// sources/Engine.ts
2168921689
var import_fs9 = __toESM(require("fs"));
@@ -21697,7 +21697,7 @@ var import_valid4 = __toESM(require_valid2());
2169721697
var config_default = {
2169821698
definitions: {
2169921699
npm: {
21700-
default: "11.4.1+sha1.80350af543069991de20657ebcd07d9624cfad06",
21700+
default: "11.4.2+sha1.6f1519a03f7e04023a957a22b812832d0c4a4b33",
2170121701
fetchLatestFrom: {
2170221702
type: "npm",
2170321703
package: "npm"
@@ -21734,7 +21734,7 @@ var config_default = {
2173421734
}
2173521735
},
2173621736
pnpm: {
21737-
default: "10.11.0+sha1.4048eeefd564ff1ab248fac3e2854d38245fe2f1",
21737+
default: "10.13.1+sha1.aa8c167c4509c97519542ef77a09e4b8ab59fb6a",
2173821738
fetchLatestFrom: {
2173921739
type: "npm",
2174021740
package: "pnpm"
@@ -21798,7 +21798,7 @@ var config_default = {
2179821798
package: "yarn"
2179921799
},
2180021800
transparent: {
21801-
default: "4.9.1+sha224.4285002185abb91fe2b781f27fd1e078086c37a7b095f6ea4ee25971",
21801+
default: "4.9.2+sha224.b8e0b161ae590950fbda696e6f3ca071362768e5280c5fbfdadf064b",
2180221802
commands: [
2180321803
[
2180421804
"yarn",

deps/corepack/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "corepack",
3-
"version": "0.33.0",
3+
"version": "0.34.0",
44
"homepage": "https://github.com/nodejs/corepack#readme",
55
"bugs": {
66
"url": "https://github.com/nodejs/corepack/issues"
@@ -10,7 +10,7 @@
1010
"url": "https://github.com/nodejs/corepack.git"
1111
},
1212
"engines": {
13-
"node": "^18.17.1 || ^20.10.0 || >=22.11.0"
13+
"node": "^20.10.0 || ^22.11.0 || >=24.0.0"
1414
},
1515
"exports": {
1616
"./package.json": "./package.json"

0 commit comments

Comments
 (0)