Skip to content

Commit 49adacd

Browse files
Prepare release v3.6.0 (#1073)
## heroku/nodejs ### Changed - Updated `heroku/nodejs-corepack` to `3.6.0`. - Updated `heroku/nodejs-engine` to `3.6.0`. - Updated `heroku/nodejs-npm-engine` to `3.6.0`. - Updated `heroku/nodejs-npm-install` to `3.6.0`. - Updated `heroku/nodejs-pnpm-engine` to `3.6.0`. - Updated `heroku/nodejs-pnpm-install` to `3.6.0`. - Updated `heroku/nodejs-yarn` to `3.6.0`. ## heroku/nodejs-corepack ### Changed - Updated error messages and formatting. ([#1071](#1071)) ## heroku/nodejs-engine ### Added - Set `HEROKU_AVAILABLE_PARALLELISM` environment variable at build and run time ## heroku/nodejs-function ### Changed - Updated `heroku/nodejs-engine` to `3.6.0`. - Updated `heroku/nodejs-function-invoker` to `3.6.0`. - Updated `heroku/nodejs-npm` to `3.6.0`. ## heroku/nodejs-function-invoker - No changes. ## heroku/nodejs-npm - No changes. ## heroku/nodejs-npm-engine - Added npm version 11.3.0. ## heroku/nodejs-npm-install - No changes. ## heroku/nodejs-pnpm-engine - No changes. ## heroku/nodejs-pnpm-install - No changes. ## heroku/nodejs-yarn - No changes. Co-authored-by: heroku-linguist[bot] <136119646+heroku-linguist[bot]@users.noreply.github.com>
1 parent a0d8145 commit 49adacd

File tree

22 files changed

+101
-39
lines changed

22 files changed

+101
-39
lines changed

Diff for: buildpacks/nodejs-corepack/CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [3.6.0] - 2025-04-09
11+
1012
### Changed
1113

1214
- Updated error messages and formatting. ([#1071](https://github.com/heroku/buildpacks-nodejs/pull/1071))
@@ -330,7 +332,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
330332

331333
- Initial implementation with libcnb.rs ([#418](https://github.com/heroku/buildpacks-nodejs/pull/418))
332334

333-
[unreleased]: https://github.com/heroku/buildpacks-nodejs/compare/v3.5.3...HEAD
335+
[unreleased]: https://github.com/heroku/buildpacks-nodejs/compare/v3.6.0...HEAD
336+
[3.6.0]: https://github.com/heroku/buildpacks-nodejs/compare/v3.5.3...v3.6.0
334337
[3.5.3]: https://github.com/heroku/buildpacks-nodejs/compare/v3.5.2...v3.5.3
335338
[3.5.2]: https://github.com/heroku/buildpacks-nodejs/compare/v3.5.1...v3.5.2
336339
[3.5.1]: https://github.com/heroku/buildpacks-nodejs/compare/v3.5.0...v3.5.1

Diff for: buildpacks/nodejs-corepack/buildpack.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ api = "0.10"
22

33
[buildpack]
44
id = "heroku/nodejs-corepack"
5-
version = "3.5.3"
5+
version = "3.6.0"
66
name = "Heroku Node.js Corepack"
77
homepage = "https://github.com/heroku/buildpacks-nodejs"
88
description = "Heroku's Node.js Corepack buildpack. A component of the 'heroku/nodejs' buildpack."

Diff for: buildpacks/nodejs-engine/CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [3.6.0] - 2025-04-09
11+
1012
### Added
1113

1214
- Set `HEROKU_AVAILABLE_PARALLELISM` environment variable at build and run time
@@ -823,7 +825,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
823825
- Parse engines and add them to nodejs.toml ([#25](https://github.com/heroku/nodejs-engine-buildpack/pull/25))
824826
- Add shellcheck to test suite ([#24](https://github.com/heroku/nodejs-engine-buildpack/pull/24))
825827

826-
[unreleased]: https://github.com/heroku/buildpacks-nodejs/compare/v3.5.3...HEAD
828+
[unreleased]: https://github.com/heroku/buildpacks-nodejs/compare/v3.6.0...HEAD
829+
[3.6.0]: https://github.com/heroku/buildpacks-nodejs/compare/v3.5.3...v3.6.0
827830
[3.5.3]: https://github.com/heroku/buildpacks-nodejs/compare/v3.5.2...v3.5.3
828831
[3.5.2]: https://github.com/heroku/buildpacks-nodejs/compare/v3.5.1...v3.5.2
829832
[3.5.1]: https://github.com/heroku/buildpacks-nodejs/compare/v3.5.0...v3.5.1

Diff for: buildpacks/nodejs-engine/buildpack.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ api = "0.10"
22

33
[buildpack]
44
id = "heroku/nodejs-engine"
5-
version = "3.5.3"
5+
version = "3.6.0"
66
name = "Heroku Node.js Engine"
77
homepage = "https://github.com/heroku/buildpacks-nodejs"
88
description = "Heroku's Node.js engine buildpack. A component of the 'heroku/nodejs' buildpack."

Diff for: buildpacks/nodejs-function-invoker/CHANGELOG.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [3.6.0] - 2025-04-09
11+
12+
- No changes.
13+
1014
## [3.5.3] - 2025-04-03
1115

1216
- No changes.
@@ -450,7 +454,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
450454
### Added
451455
- Initial implementation ([#47](https://github.com/heroku/buildpacks-node/pull/47))
452456

453-
[unreleased]: https://github.com/heroku/buildpacks-nodejs/compare/v3.5.3...HEAD
457+
[unreleased]: https://github.com/heroku/buildpacks-nodejs/compare/v3.6.0...HEAD
458+
[3.6.0]: https://github.com/heroku/buildpacks-nodejs/compare/v3.5.3...v3.6.0
454459
[3.5.3]: https://github.com/heroku/buildpacks-nodejs/compare/v3.5.2...v3.5.3
455460
[3.5.2]: https://github.com/heroku/buildpacks-nodejs/compare/v3.5.1...v3.5.2
456461
[3.5.1]: https://github.com/heroku/buildpacks-nodejs/compare/v3.5.0...v3.5.1

Diff for: buildpacks/nodejs-function-invoker/buildpack.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ api = "0.10"
22

33
[buildpack]
44
id = "heroku/nodejs-function-invoker"
5-
version = "3.5.3"
5+
version = "3.6.0"
66
name = "Salesforce Node.js Function Invoker"
77
homepage = "https://github.com/heroku/buildpacks-nodejs"
88
description = "Salesforce's Node.js function invoker buildpack. A component of the 'heroku/nodejs-function' buildpack."

Diff for: buildpacks/nodejs-npm-engine/CHANGELOG.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [3.6.0] - 2025-04-09
11+
1012
- Added npm version 11.3.0.
13+
1114
## [3.5.3] - 2025-04-03
1215

1316
### Changed
@@ -285,7 +288,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
285288

286289
- Initial release
287290

288-
[unreleased]: https://github.com/heroku/buildpacks-nodejs/compare/v3.5.3...HEAD
291+
[unreleased]: https://github.com/heroku/buildpacks-nodejs/compare/v3.6.0...HEAD
292+
[3.6.0]: https://github.com/heroku/buildpacks-nodejs/compare/v3.5.3...v3.6.0
289293
[3.5.3]: https://github.com/heroku/buildpacks-nodejs/compare/v3.5.2...v3.5.3
290294
[3.5.2]: https://github.com/heroku/buildpacks-nodejs/compare/v3.5.1...v3.5.2
291295
[3.5.1]: https://github.com/heroku/buildpacks-nodejs/compare/v3.5.0...v3.5.1

Diff for: buildpacks/nodejs-npm-engine/buildpack.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ api = "0.10"
22

33
[buildpack]
44
id = "heroku/nodejs-npm-engine"
5-
version = "3.5.3"
5+
version = "3.6.0"
66
name = "Heroku Node.js npm Engine"
77
homepage = "https://github.com/heroku/buildpacks-nodejs"
88
description = "Heroku's Node.js npm engine buildpack. A component of the 'heroku/nodejs' buildpack."

Diff for: buildpacks/nodejs-npm-install/CHANGELOG.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [3.6.0] - 2025-04-09
11+
12+
- No changes.
13+
1014
## [3.5.3] - 2025-04-03
1115

1216
### Changed
@@ -284,7 +288,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
284288

285289
- Initial release
286290

287-
[unreleased]: https://github.com/heroku/buildpacks-nodejs/compare/v3.5.3...HEAD
291+
[unreleased]: https://github.com/heroku/buildpacks-nodejs/compare/v3.6.0...HEAD
292+
[3.6.0]: https://github.com/heroku/buildpacks-nodejs/compare/v3.5.3...v3.6.0
288293
[3.5.3]: https://github.com/heroku/buildpacks-nodejs/compare/v3.5.2...v3.5.3
289294
[3.5.2]: https://github.com/heroku/buildpacks-nodejs/compare/v3.5.1...v3.5.2
290295
[3.5.1]: https://github.com/heroku/buildpacks-nodejs/compare/v3.5.0...v3.5.1

Diff for: buildpacks/nodejs-npm-install/buildpack.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ api = "0.10"
22

33
[buildpack]
44
id = "heroku/nodejs-npm-install"
5-
version = "3.5.3"
5+
version = "3.6.0"
66
name = "Heroku Node.js npm Install"
77
homepage = "https://github.com/heroku/buildpacks-nodejs"
88
description = "Heroku's Node.js npm install buildpack. A component of the 'heroku/nodejs' buildpack."

Diff for: buildpacks/nodejs-pnpm-engine/CHANGELOG.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [3.6.0] - 2025-04-09
11+
12+
- No changes.
13+
1014
## [3.5.3] - 2025-04-03
1115

1216
### Changed
@@ -242,7 +246,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
242246

243247
- Initial release
244248

245-
[unreleased]: https://github.com/heroku/buildpacks-nodejs/compare/v3.5.3...HEAD
249+
[unreleased]: https://github.com/heroku/buildpacks-nodejs/compare/v3.6.0...HEAD
250+
[3.6.0]: https://github.com/heroku/buildpacks-nodejs/compare/v3.5.3...v3.6.0
246251
[3.5.3]: https://github.com/heroku/buildpacks-nodejs/compare/v3.5.2...v3.5.3
247252
[3.5.2]: https://github.com/heroku/buildpacks-nodejs/compare/v3.5.1...v3.5.2
248253
[3.5.1]: https://github.com/heroku/buildpacks-nodejs/compare/v3.5.0...v3.5.1

Diff for: buildpacks/nodejs-pnpm-engine/buildpack.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ api = "0.10"
22

33
[buildpack]
44
id = "heroku/nodejs-pnpm-engine"
5-
version = "3.5.3"
5+
version = "3.6.0"
66
name = "Heroku Node.js pnpm Engine"
77
homepage = "https://github.com/heroku/buildpacks-nodejs"
88
description = "Heroku's Node.js pnpm Engine buildpack. A component of the 'heroku/nodejs' buildpack."

Diff for: buildpacks/nodejs-pnpm-install/CHANGELOG.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [3.6.0] - 2025-04-09
11+
12+
- No changes.
13+
1014
## [3.5.3] - 2025-04-03
1115

1216
### Changed
@@ -331,7 +335,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
331335

332336
- Initial release ([#488](https://github.com/heroku/buildpacks-nodejs/pull/488))
333337

334-
[unreleased]: https://github.com/heroku/buildpacks-nodejs/compare/v3.5.3...HEAD
338+
[unreleased]: https://github.com/heroku/buildpacks-nodejs/compare/v3.6.0...HEAD
339+
[3.6.0]: https://github.com/heroku/buildpacks-nodejs/compare/v3.5.3...v3.6.0
335340
[3.5.3]: https://github.com/heroku/buildpacks-nodejs/compare/v3.5.2...v3.5.3
336341
[3.5.2]: https://github.com/heroku/buildpacks-nodejs/compare/v3.5.1...v3.5.2
337342
[3.5.1]: https://github.com/heroku/buildpacks-nodejs/compare/v3.5.0...v3.5.1

Diff for: buildpacks/nodejs-pnpm-install/buildpack.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ api = "0.10"
22

33
[buildpack]
44
id = "heroku/nodejs-pnpm-install"
5-
version = "3.5.3"
5+
version = "3.6.0"
66
name = "Heroku Node.js pnpm install"
77
homepage = "https://github.com/heroku/buildpacks-nodejs"
88
description = "Heroku's Node.js pnpm install buildpack. A component of the 'heroku/nodejs' buildpack."

Diff for: buildpacks/nodejs-yarn/CHANGELOG.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [3.6.0] - 2025-04-09
11+
12+
- No changes.
13+
1014
## [3.5.3] - 2025-04-03
1115

1216
### Changed
@@ -446,7 +450,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
446450
### Added
447451
- Changelog entry for first release ([#1](https://github.com/heroku/nodejs-yarn-buildpack/pull/1))
448452

449-
[unreleased]: https://github.com/heroku/buildpacks-nodejs/compare/v3.5.3...HEAD
453+
[unreleased]: https://github.com/heroku/buildpacks-nodejs/compare/v3.6.0...HEAD
454+
[3.6.0]: https://github.com/heroku/buildpacks-nodejs/compare/v3.5.3...v3.6.0
450455
[3.5.3]: https://github.com/heroku/buildpacks-nodejs/compare/v3.5.2...v3.5.3
451456
[3.5.2]: https://github.com/heroku/buildpacks-nodejs/compare/v3.5.1...v3.5.2
452457
[3.5.1]: https://github.com/heroku/buildpacks-nodejs/compare/v3.5.0...v3.5.1

Diff for: buildpacks/nodejs-yarn/buildpack.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ api = "0.10"
22

33
[buildpack]
44
id = "heroku/nodejs-yarn"
5-
version = "3.5.3"
5+
version = "3.6.0"
66
name = "Heroku Node.js Yarn"
77
homepage = "https://github.com/heroku/buildpacks-nodejs"
88
description = "Heroku's Node.js Yarn buildpack. A component of the 'heroku/nodejs' buildpack."

Diff for: buildpacks/npm/CHANGELOG.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [3.6.0] - 2025-04-09
11+
12+
- No changes.
13+
1014
## [3.5.3] - 2025-04-03
1115

1216
- No changes.
@@ -401,7 +405,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
401405
### Fixed
402406
- Fix broken builds when a `package-lock.json` is missing ([#9](https://github.com/heroku/nodejs-npm-buildpack/pull/9))
403407

404-
[unreleased]: https://github.com/heroku/buildpacks-nodejs/compare/v3.5.3...HEAD
408+
[unreleased]: https://github.com/heroku/buildpacks-nodejs/compare/v3.6.0...HEAD
409+
[3.6.0]: https://github.com/heroku/buildpacks-nodejs/compare/v3.5.3...v3.6.0
405410
[3.5.3]: https://github.com/heroku/buildpacks-nodejs/compare/v3.5.2...v3.5.3
406411
[3.5.2]: https://github.com/heroku/buildpacks-nodejs/compare/v3.5.1...v3.5.2
407412
[3.5.1]: https://github.com/heroku/buildpacks-nodejs/compare/v3.5.0...v3.5.1

Diff for: buildpacks/npm/buildpack.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ api = "0.7"
22

33
[buildpack]
44
id = "heroku/nodejs-npm"
5-
version = "3.5.3"
5+
version = "3.6.0"
66
name = "Heroku Node.js npm (DEPRECATED)"
77
homepage = "https://github.com/heroku/buildpacks-nodejs"
88
description = "[DEPRECATED] Heroku's Node.js npm buildpack. Replaced by the 'heroku/nodejs-npm-engine' and 'heroku/nodejs-npm-install' buildpacks."

Diff for: meta-buildpacks/nodejs-function/CHANGELOG.md

+10-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [3.6.0] - 2025-04-09
11+
12+
### Changed
13+
14+
- Updated `heroku/nodejs-engine` to `3.6.0`.
15+
- Updated `heroku/nodejs-function-invoker` to `3.6.0`.
16+
- Updated `heroku/nodejs-npm` to `3.6.0`.
17+
1018
## [3.5.3] - 2025-04-03
1119

1220
### Changed
@@ -809,7 +817,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
809817
### Changed
810818
* Switch from the Riff based invoker buildpacks to `heroku/nodejs-function` ([#48](https://github.com/heroku/buildpacks-node/pull/48))
811819

812-
[unreleased]: https://github.com/heroku/buildpacks-nodejs/compare/v3.5.3...HEAD
820+
[unreleased]: https://github.com/heroku/buildpacks-nodejs/compare/v3.6.0...HEAD
821+
[3.6.0]: https://github.com/heroku/buildpacks-nodejs/compare/v3.5.3...v3.6.0
813822
[3.5.3]: https://github.com/heroku/buildpacks-nodejs/compare/v3.5.2...v3.5.3
814823
[3.5.2]: https://github.com/heroku/buildpacks-nodejs/compare/v3.5.1...v3.5.2
815824
[3.5.1]: https://github.com/heroku/buildpacks-nodejs/compare/v3.5.0...v3.5.1

Diff for: meta-buildpacks/nodejs-function/buildpack.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ api = "0.10"
22

33
[buildpack]
44
id = "heroku/nodejs-function"
5-
version = "3.5.3"
5+
version = "3.6.0"
66
name = "Salesforce Node.js Function"
77
homepage = "https://github.com/heroku/buildpacks-nodejs"
88
description = "Salesforce's buildpack for Node.js Functions."
@@ -14,15 +14,15 @@ type = "MIT"
1414

1515
[[order.group]]
1616
id = "heroku/nodejs-engine"
17-
version = "3.5.3"
17+
version = "3.6.0"
1818

1919
[[order.group]]
2020
id = "heroku/nodejs-npm"
21-
version = "3.5.3"
21+
version = "3.6.0"
2222

2323
[[order.group]]
2424
id = "heroku/nodejs-function-invoker"
25-
version = "3.5.3"
25+
version = "3.6.0"
2626

2727
[metadata.release]
2828
image = { repository = "docker.io/heroku/buildpack-nodejs-function" }

Diff for: meta-buildpacks/nodejs/CHANGELOG.md

+14-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [3.6.0] - 2025-04-09
11+
12+
### Changed
13+
14+
- Updated `heroku/nodejs-corepack` to `3.6.0`.
15+
- Updated `heroku/nodejs-engine` to `3.6.0`.
16+
- Updated `heroku/nodejs-npm-engine` to `3.6.0`.
17+
- Updated `heroku/nodejs-npm-install` to `3.6.0`.
18+
- Updated `heroku/nodejs-pnpm-engine` to `3.6.0`.
19+
- Updated `heroku/nodejs-pnpm-install` to `3.6.0`.
20+
- Updated `heroku/nodejs-yarn` to `3.6.0`.
21+
1022
## [3.5.3] - 2025-04-03
1123

1224
### Changed
@@ -1041,7 +1053,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
10411053
### Changed
10421054
* Package meta buildpack with latest releases of buildpacks while testing against unreleased.
10431055

1044-
[unreleased]: https://github.com/heroku/buildpacks-nodejs/compare/v3.5.3...HEAD
1056+
[unreleased]: https://github.com/heroku/buildpacks-nodejs/compare/v3.6.0...HEAD
1057+
[3.6.0]: https://github.com/heroku/buildpacks-nodejs/compare/v3.5.3...v3.6.0
10451058
[3.5.3]: https://github.com/heroku/buildpacks-nodejs/compare/v3.5.2...v3.5.3
10461059
[3.5.2]: https://github.com/heroku/buildpacks-nodejs/compare/v3.5.1...v3.5.2
10471060
[3.5.1]: https://github.com/heroku/buildpacks-nodejs/compare/v3.5.0...v3.5.1

0 commit comments

Comments
 (0)