Skip to content

Commit

Permalink
Prepare release v2.5.0 (#750)
Browse files Browse the repository at this point in the history
## heroku/nodejs

### Changed

- Updated `heroku/nodejs-corepack` to `2.5.0`.
- Updated `heroku/nodejs-engine` to `2.5.0`.
- Updated `heroku/nodejs-npm-engine` to `2.5.0`.
- Updated `heroku/nodejs-npm-install` to `2.5.0`.
- Updated `heroku/nodejs-pnpm-install` to `2.5.0`.
- Updated `heroku/nodejs-yarn` to `2.5.0`.

## heroku/nodejs-corepack

### Added

- Enabled libcnb `trace` feature, so that OpenTelemetry file exports with
  buildpack detect and build traces are emitted to the file system.
  ([#749](#749))

## heroku/nodejs-engine

### Added

- Added Node.js version 21.4.0.
- Enabled libcnb `trace` feature, so that OpenTelemetry file exports with
  buildpack detect and build traces are emitted to the file system.
  ([#749](#749))

## heroku/nodejs-function

### Changed

- Updated `heroku/nodejs-engine` to `2.5.0`.
- Updated `heroku/nodejs-function-invoker` to `2.5.0`.
- Updated `heroku/nodejs-npm` to `2.5.0`.

## heroku/nodejs-function-invoker

- No changes.

## heroku/nodejs-npm

- No changes.

## heroku/nodejs-npm-engine

### Added

- Added npm version 10.2.5.
- Enabled libcnb `trace` feature, so that OpenTelemetry file exports with
  buildpack detect and build traces are emitted to the file system.
  ([#749](#749))

## heroku/nodejs-npm-install

### Added

- Enabled libcnb `trace` feature, so that OpenTelemetry file exports with
  buildpack detect and build traces are emitted to the file system.
  ([#749](#749))

## heroku/nodejs-pnpm-install

### Added

- Enabled libcnb `trace` feature, so that OpenTelemetry file exports with
  buildpack detect and build traces are emitted to the file system.
  ([#749](#749))

## heroku/nodejs-yarn

### Added

- Enabled libcnb `trace` feature, so that OpenTelemetry file exports with
  buildpack detect and build traces are emitted to the file system.
  ([#749](#749))

Co-authored-by: heroku-linguist[bot] <136119646+heroku-linguist[bot]@users.noreply.github.com>
  • Loading branch information
heroku-linguist[bot] authored Dec 7, 2023
1 parent 3bb2a42 commit aa9768e
Show file tree
Hide file tree
Showing 20 changed files with 83 additions and 34 deletions.
5 changes: 4 additions & 1 deletion buildpacks/nodejs-corepack/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [2.5.0] - 2023-12-07

### Added

- Enabled libcnb `trace` feature, so that OpenTelemetry file exports with
Expand Down Expand Up @@ -89,7 +91,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

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

[unreleased]: https://github.com/heroku/buildpacks-nodejs/compare/v2.4.1...HEAD
[unreleased]: https://github.com/heroku/buildpacks-nodejs/compare/v2.5.0...HEAD
[2.5.0]: https://github.com/heroku/buildpacks-nodejs/compare/v2.4.1...v2.5.0
[2.4.1]: https://github.com/heroku/buildpacks-nodejs/compare/v2.4.0...v2.4.1
[2.4.0]: https://github.com/heroku/buildpacks-nodejs/compare/v2.3.0...v2.4.0
[2.3.0]: https://github.com/heroku/buildpacks-nodejs/compare/v2.2.0...v2.3.0
Expand Down
2 changes: 1 addition & 1 deletion buildpacks/nodejs-corepack/buildpack.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ api = "0.9"

[buildpack]
id = "heroku/nodejs-corepack"
version = "2.4.1"
version = "2.5.0"
name = "Heroku Node.js Corepack"
homepage = "https://github.com/heroku/buildpacks-nodejs"
description = "Heroku's Node.js Corepack buildpack. A component of the 'heroku/nodejs' buildpack."
Expand Down
5 changes: 4 additions & 1 deletion buildpacks/nodejs-engine/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [2.5.0] - 2023-12-07

### Added

- Added Node.js version 21.4.0.
Expand Down Expand Up @@ -311,7 +313,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Parse engines and add them to nodejs.toml ([#25](https://github.com/heroku/nodejs-engine-buildpack/pull/25))
- Add shellcheck to test suite ([#24](https://github.com/heroku/nodejs-engine-buildpack/pull/24))

[unreleased]: https://github.com/heroku/buildpacks-nodejs/compare/v2.4.1...HEAD
[unreleased]: https://github.com/heroku/buildpacks-nodejs/compare/v2.5.0...HEAD
[2.5.0]: https://github.com/heroku/buildpacks-nodejs/compare/v2.4.1...v2.5.0
[2.4.1]: https://github.com/heroku/buildpacks-nodejs/compare/v2.4.0...v2.4.1
[2.4.0]: https://github.com/heroku/buildpacks-nodejs/compare/v2.3.0...v2.4.0
[2.3.0]: https://github.com/heroku/buildpacks-nodejs/compare/v2.2.0...v2.3.0
Expand Down
2 changes: 1 addition & 1 deletion buildpacks/nodejs-engine/buildpack.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ api = "0.9"

[buildpack]
id = "heroku/nodejs-engine"
version = "2.4.1"
version = "2.5.0"
name = "Heroku Node.js Engine"
homepage = "https://github.com/heroku/buildpacks-nodejs"
description = "Heroku's Node.js engine buildpack. A component of the 'heroku/nodejs' buildpack."
Expand Down
7 changes: 6 additions & 1 deletion buildpacks/nodejs-function-invoker/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [2.5.0] - 2023-12-07

- No changes.

## [2.4.1] - 2023-12-04

### Changed
Expand Down Expand Up @@ -215,7 +219,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Initial implementation ([#47](https://github.com/heroku/buildpacks-node/pull/47))

[unreleased]: https://github.com/heroku/buildpacks-nodejs/compare/v2.4.1...HEAD
[unreleased]: https://github.com/heroku/buildpacks-nodejs/compare/v2.5.0...HEAD
[2.5.0]: https://github.com/heroku/buildpacks-nodejs/compare/v2.4.1...v2.5.0
[2.4.1]: https://github.com/heroku/buildpacks-nodejs/compare/v2.4.0...v2.4.1
[2.4.0]: https://github.com/heroku/buildpacks-nodejs/compare/v2.3.0...v2.4.0
[2.3.0]: https://github.com/heroku/buildpacks-nodejs/compare/v2.2.0...v2.3.0
Expand Down
2 changes: 1 addition & 1 deletion buildpacks/nodejs-function-invoker/buildpack.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ api = "0.9"

[buildpack]
id = "heroku/nodejs-function-invoker"
version = "2.4.1"
version = "2.5.0"
name = "Salesforce Node.js Function Invoker"
homepage = "https://github.com/heroku/buildpacks-nodejs"
description = "Salesforce's Node.js function invoker buildpack. A component of the 'heroku/nodejs-function' buildpack."
Expand Down
5 changes: 4 additions & 1 deletion buildpacks/nodejs-npm-engine/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [2.5.0] - 2023-12-07

### Added

- Added npm version 10.2.5.
Expand Down Expand Up @@ -45,7 +47,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Initial release

[unreleased]: https://github.com/heroku/buildpacks-nodejs/compare/v2.4.1...HEAD
[unreleased]: https://github.com/heroku/buildpacks-nodejs/compare/v2.5.0...HEAD
[2.5.0]: https://github.com/heroku/buildpacks-nodejs/compare/v2.4.1...v2.5.0
[2.4.1]: https://github.com/heroku/buildpacks-nodejs/compare/v2.4.0...v2.4.1
[2.4.0]: https://github.com/heroku/buildpacks-nodejs/compare/v2.3.0...v2.4.0
[2.3.0]: https://github.com/heroku/buildpacks-nodejs/compare/v2.2.0...v2.3.0
Expand Down
2 changes: 1 addition & 1 deletion buildpacks/nodejs-npm-engine/buildpack.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ api = "0.9"

[buildpack]
id = "heroku/nodejs-npm-engine"
version = "2.4.1"
version = "2.5.0"
name = "Heroku Node.js npm Engine"
homepage = "https://github.com/heroku/buildpacks-nodejs"
description = "Heroku's Node.js npm engine buildpack. A component of the 'heroku/nodejs' buildpack."
Expand Down
5 changes: 4 additions & 1 deletion buildpacks/nodejs-npm-install/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [2.5.0] - 2023-12-07

### Added

- Enabled libcnb `trace` feature, so that OpenTelemetry file exports with
Expand Down Expand Up @@ -41,7 +43,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Initial release

[unreleased]: https://github.com/heroku/buildpacks-nodejs/compare/v2.4.1...HEAD
[unreleased]: https://github.com/heroku/buildpacks-nodejs/compare/v2.5.0...HEAD
[2.5.0]: https://github.com/heroku/buildpacks-nodejs/compare/v2.4.1...v2.5.0
[2.4.1]: https://github.com/heroku/buildpacks-nodejs/compare/v2.4.0...v2.4.1
[2.4.0]: https://github.com/heroku/buildpacks-nodejs/compare/v2.3.0...v2.4.0
[2.3.0]: https://github.com/heroku/buildpacks-nodejs/compare/v2.2.0...v2.3.0
Expand Down
2 changes: 1 addition & 1 deletion buildpacks/nodejs-npm-install/buildpack.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ api = "0.9"

[buildpack]
id = "heroku/nodejs-npm-install"
version = "2.4.1"
version = "2.5.0"
name = "Heroku Node.js npm Install"
homepage = "https://github.com/heroku/buildpacks-nodejs"
description = "Heroku's Node.js npm install buildpack. A component of the 'heroku/nodejs' buildpack."
Expand Down
5 changes: 4 additions & 1 deletion buildpacks/nodejs-pnpm-install/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [2.5.0] - 2023-12-07

### Added

- Enabled libcnb `trace` feature, so that OpenTelemetry file exports with
Expand Down Expand Up @@ -94,7 +96,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

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

[unreleased]: https://github.com/heroku/buildpacks-nodejs/compare/v2.4.1...HEAD
[unreleased]: https://github.com/heroku/buildpacks-nodejs/compare/v2.5.0...HEAD
[2.5.0]: https://github.com/heroku/buildpacks-nodejs/compare/v2.4.1...v2.5.0
[2.4.1]: https://github.com/heroku/buildpacks-nodejs/compare/v2.4.0...v2.4.1
[2.4.0]: https://github.com/heroku/buildpacks-nodejs/compare/v2.3.0...v2.4.0
[2.3.0]: https://github.com/heroku/buildpacks-nodejs/compare/v2.2.0...v2.3.0
Expand Down
2 changes: 1 addition & 1 deletion buildpacks/nodejs-pnpm-install/buildpack.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ api = "0.9"

[buildpack]
id = "heroku/nodejs-pnpm-install"
version = "2.4.1"
version = "2.5.0"
name = "Heroku Node.js pnpm install"
homepage = "https://github.com/heroku/buildpacks-nodejs"
description = "Heroku's Node.js pnpm install buildpack. A component of the 'heroku/nodejs' buildpack."
Expand Down
5 changes: 4 additions & 1 deletion buildpacks/nodejs-yarn/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [2.5.0] - 2023-12-07

### Added

- Enabled libcnb `trace` feature, so that OpenTelemetry file exports with
Expand Down Expand Up @@ -194,7 +196,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Changelog entry for first release ([#1](https://github.com/heroku/nodejs-yarn-buildpack/pull/1))

[unreleased]: https://github.com/heroku/buildpacks-nodejs/compare/v2.4.1...HEAD
[unreleased]: https://github.com/heroku/buildpacks-nodejs/compare/v2.5.0...HEAD
[2.5.0]: https://github.com/heroku/buildpacks-nodejs/compare/v2.4.1...v2.5.0
[2.4.1]: https://github.com/heroku/buildpacks-nodejs/compare/v2.4.0...v2.4.1
[2.4.0]: https://github.com/heroku/buildpacks-nodejs/compare/v2.3.0...v2.4.0
[2.3.0]: https://github.com/heroku/buildpacks-nodejs/compare/v2.2.0...v2.3.0
Expand Down
2 changes: 1 addition & 1 deletion buildpacks/nodejs-yarn/buildpack.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ api = "0.9"

[buildpack]
id = "heroku/nodejs-yarn"
version = "2.4.1"
version = "2.5.0"
name = "Heroku Node.js Yarn"
homepage = "https://github.com/heroku/buildpacks-nodejs"
description = "Heroku's Node.js Yarn buildpack. A component of the 'heroku/nodejs' buildpack."
Expand Down
7 changes: 6 additions & 1 deletion buildpacks/npm/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [2.5.0] - 2023-12-07

- No changes.

## [2.4.1] - 2023-12-04

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

[unreleased]: https://github.com/heroku/buildpacks-nodejs/compare/v2.4.1...HEAD
[unreleased]: https://github.com/heroku/buildpacks-nodejs/compare/v2.5.0...HEAD
[2.5.0]: https://github.com/heroku/buildpacks-nodejs/compare/v2.4.1...v2.5.0
[2.4.1]: https://github.com/heroku/buildpacks-nodejs/compare/v2.4.0...v2.4.1
[2.4.0]: https://github.com/heroku/buildpacks-nodejs/compare/v2.3.0...v2.4.0
[2.3.0]: https://github.com/heroku/buildpacks-nodejs/compare/v2.2.0...v2.3.0
Expand Down
2 changes: 1 addition & 1 deletion buildpacks/npm/buildpack.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ api = "0.7"

[buildpack]
id = "heroku/nodejs-npm"
version = "2.4.1"
version = "2.5.0"
name = "Heroku Node.js npm (DEPRECATED)"
homepage = "https://github.com/heroku/buildpacks-nodejs"
description = "[DEPRECATED] Heroku's Node.js npm buildpack. Replaced by the 'heroku/nodejs-npm-engine' and 'heroku/nodejs-npm-install' buildpacks."
Expand Down
11 changes: 10 additions & 1 deletion meta-buildpacks/nodejs-function/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [2.5.0] - 2023-12-07

### Changed

- Updated `heroku/nodejs-engine` to `2.5.0`.
- Updated `heroku/nodejs-function-invoker` to `2.5.0`.
- Updated `heroku/nodejs-npm` to `2.5.0`.

## [2.4.1] - 2023-12-04

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

[unreleased]: https://github.com/heroku/buildpacks-nodejs/compare/v2.4.1...HEAD
[unreleased]: https://github.com/heroku/buildpacks-nodejs/compare/v2.5.0...HEAD
[2.5.0]: https://github.com/heroku/buildpacks-nodejs/compare/v2.4.1...v2.5.0
[2.4.1]: https://github.com/heroku/buildpacks-nodejs/compare/v2.4.0...v2.4.1
[2.4.0]: https://github.com/heroku/buildpacks-nodejs/compare/v2.3.0...v2.4.0
[2.3.0]: https://github.com/heroku/buildpacks-nodejs/compare/v2.2.0...v2.3.0
Expand Down
8 changes: 4 additions & 4 deletions meta-buildpacks/nodejs-function/buildpack.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ api = "0.9"

[buildpack]
id = "heroku/nodejs-function"
version = "2.4.1"
version = "2.5.0"
name = "Salesforce Node.js Function"
homepage = "https://github.com/heroku/buildpacks-nodejs"
description = "Salesforce's buildpack for Node.js Functions."
Expand All @@ -14,15 +14,15 @@ type = "MIT"

[[order.group]]
id = "heroku/nodejs-engine"
version = "2.4.1"
version = "2.5.0"

[[order.group]]
id = "heroku/nodejs-npm"
version = "2.4.1"
version = "2.5.0"

[[order.group]]
id = "heroku/nodejs-function-invoker"
version = "2.4.1"
version = "2.5.0"

[metadata.release]
image = { repository = "docker.io/heroku/buildpack-nodejs-function" }
14 changes: 13 additions & 1 deletion meta-buildpacks/nodejs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [2.5.0] - 2023-12-07

### Changed

- Updated `heroku/nodejs-corepack` to `2.5.0`.
- Updated `heroku/nodejs-engine` to `2.5.0`.
- Updated `heroku/nodejs-npm-engine` to `2.5.0`.
- Updated `heroku/nodejs-npm-install` to `2.5.0`.
- Updated `heroku/nodejs-pnpm-install` to `2.5.0`.
- Updated `heroku/nodejs-yarn` to `2.5.0`.

## [2.4.1] - 2023-12-04

### Changed
Expand Down Expand Up @@ -349,7 +360,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
* Package meta buildpack with latest releases of buildpacks while testing against unreleased.

[unreleased]: https://github.com/heroku/buildpacks-nodejs/compare/v2.4.1...HEAD
[unreleased]: https://github.com/heroku/buildpacks-nodejs/compare/v2.5.0...HEAD
[2.5.0]: https://github.com/heroku/buildpacks-nodejs/compare/v2.4.1...v2.5.0
[2.4.1]: https://github.com/heroku/buildpacks-nodejs/compare/v2.4.0...v2.4.1
[2.4.0]: https://github.com/heroku/buildpacks-nodejs/compare/v2.3.0...v2.4.0
[2.3.0]: https://github.com/heroku/buildpacks-nodejs/compare/v2.2.0...v2.3.0
Expand Down
24 changes: 12 additions & 12 deletions meta-buildpacks/nodejs/buildpack.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ api = "0.9"

[buildpack]
id = "heroku/nodejs"
version = "2.4.1"
version = "2.5.0"
name = "Heroku Node.js"
homepage = "https://github.com/heroku/buildpacks-nodejs"
description = "Heroku's buildpack for Node.js applications."
Expand All @@ -15,56 +15,56 @@ type = "MIT"

[[order.group]]
id = "heroku/nodejs-engine"
version = "2.4.1"
version = "2.5.0"

[[order.group]]
id = "heroku/nodejs-corepack"
version = "2.4.1"
version = "2.5.0"

[[order.group]]
id = "heroku/nodejs-pnpm-install"
version = "2.4.1"
version = "2.5.0"

[[order]]

[[order.group]]
id = "heroku/nodejs-engine"
version = "2.4.1"
version = "2.5.0"

[[order.group]]
id = "heroku/nodejs-corepack"
version = "2.4.1"
version = "2.5.0"
optional = true

[[order.group]]
id = "heroku/nodejs-yarn"
version = "2.4.1"
version = "2.5.0"

[[order]]

[[order.group]]
id = "heroku/nodejs-engine"
version = "2.4.1"
version = "2.5.0"

[[order.group]]
id = "heroku/nodejs-corepack"
version = "2.4.1"
version = "2.5.0"
optional = true

[[order.group]]
id = "heroku/nodejs-npm-engine"
version = "2.4.1"
version = "2.5.0"
optional = true

[[order.group]]
id = "heroku/nodejs-npm-install"
version = "2.4.1"
version = "2.5.0"

[[order]]

[[order.group]]
id = "heroku/nodejs-engine"
version = "2.4.1"
version = "2.5.0"

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

0 comments on commit aa9768e

Please sign in to comment.