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
16 changes: 16 additions & 0 deletions deps/corepack/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Changelog

## [0.34.0](https://github.com/nodejs/corepack/compare/v0.33.0...v0.34.0) (2025-07-19)


### ⚠ BREAKING CHANGES

* drop Node.js 18.x and 23.x support

### Features

* update package manager versions ([#719](https://github.com/nodejs/corepack/issues/719)) ([7707ea7](https://github.com/nodejs/corepack/commit/7707ea7350c129ad3aae8ca08e9e80fcf164dcb6))


### Miscellaneous Chores

* 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))

## [0.33.0](https://github.com/nodejs/corepack/compare/v0.32.0...v0.33.0) (2025-06-02)


Expand Down
2 changes: 1 addition & 1 deletion deps/corepack/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ and pnpm without having to install them**.

### Default Installs

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

### Manual Installs
Expand Down
8 changes: 4 additions & 4 deletions deps/corepack/dist/lib/corepack.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -21683,7 +21683,7 @@ function String2(descriptor, ...args) {
}

// package.json
var version = "0.33.0";
var version = "0.34.0";

// sources/Engine.ts
var import_fs9 = __toESM(require("fs"));
Expand All @@ -21697,7 +21697,7 @@ var import_valid4 = __toESM(require_valid2());
var config_default = {
definitions: {
npm: {
default: "11.4.1+sha1.80350af543069991de20657ebcd07d9624cfad06",
default: "11.4.2+sha1.6f1519a03f7e04023a957a22b812832d0c4a4b33",
fetchLatestFrom: {
type: "npm",
package: "npm"
Expand Down Expand Up @@ -21734,7 +21734,7 @@ var config_default = {
}
},
pnpm: {
default: "10.11.0+sha1.4048eeefd564ff1ab248fac3e2854d38245fe2f1",
default: "10.13.1+sha1.aa8c167c4509c97519542ef77a09e4b8ab59fb6a",
fetchLatestFrom: {
type: "npm",
package: "pnpm"
Expand Down Expand Up @@ -21798,7 +21798,7 @@ var config_default = {
package: "yarn"
},
transparent: {
default: "4.9.1+sha224.4285002185abb91fe2b781f27fd1e078086c37a7b095f6ea4ee25971",
default: "4.9.2+sha224.b8e0b161ae590950fbda696e6f3ca071362768e5280c5fbfdadf064b",
commands: [
[
"yarn",
Expand Down
4 changes: 2 additions & 2 deletions deps/corepack/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "corepack",
"version": "0.33.0",
"version": "0.34.0",
"homepage": "https://github.com/nodejs/corepack#readme",
"bugs": {
"url": "https://github.com/nodejs/corepack/issues"
Expand All @@ -10,7 +10,7 @@
"url": "https://github.com/nodejs/corepack.git"
},
"engines": {
"node": "^18.17.1 || ^20.10.0 || >=22.11.0"
"node": "^20.10.0 || ^22.11.0 || >=24.0.0"
},
"exports": {
"./package.json": "./package.json"
Expand Down
Loading