Skip to content

Commit 93413f4

Browse files
Prepare release v3.2.14 (#927)
## heroku/nodejs ### Changed - Updated `heroku/nodejs-corepack` to `3.2.14`. - Updated `heroku/nodejs-engine` to `3.2.14`. - Updated `heroku/nodejs-npm-engine` to `3.2.14`. - Updated `heroku/nodejs-npm-install` to `3.2.14`. - Updated `heroku/nodejs-pnpm-engine` to `3.2.14`. - Updated `heroku/nodejs-pnpm-install` to `3.2.14`. - Updated `heroku/nodejs-yarn` to `3.2.14`. ## heroku/nodejs-corepack - No changes. ## heroku/nodejs-engine ### Added - 22.9.0 (linux-amd64, linux-arm64) ### Fixed - Fix `heroku/nodejs-engine` layer misconfiguration for `web_env` and `node_runtime_metrics`. ([#924](#924)) ## heroku/nodejs-function ### Changed - Updated `heroku/nodejs-engine` to `3.2.14`. - Updated `heroku/nodejs-function-invoker` to `3.2.14`. - Updated `heroku/nodejs-npm` to `3.2.14`. ## heroku/nodejs-function-invoker - No changes. ## heroku/nodejs-npm - No changes. ## heroku/nodejs-npm-engine - No changes. ## heroku/nodejs-npm-install - No changes. ## heroku/nodejs-pnpm-engine - No changes. ## heroku/nodejs-pnpm-install - No changes. ## heroku/nodejs-yarn - Added Yarn version 4.5.0. Co-authored-by: heroku-linguist[bot] <136119646+heroku-linguist[bot]@users.noreply.github.com>
1 parent 54771ad commit 93413f4

File tree

22 files changed

+103
-40
lines changed

22 files changed

+103
-40
lines changed

buildpacks/nodejs-corepack/CHANGELOG.md

Lines changed: 6 additions & 1 deletion
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.2.14] - 2024-09-24
11+
12+
- No changes.
13+
1014
## [3.2.13] - 2024-09-04
1115

1216
- No changes.
@@ -210,7 +214,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
210214

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

213-
[unreleased]: https://github.com/heroku/buildpacks-nodejs/compare/v3.2.13...HEAD
217+
[unreleased]: https://github.com/heroku/buildpacks-nodejs/compare/v3.2.14...HEAD
218+
[3.2.14]: https://github.com/heroku/buildpacks-nodejs/compare/v3.2.13...v3.2.14
214219
[3.2.13]: https://github.com/heroku/buildpacks-nodejs/compare/v3.2.12...v3.2.13
215220
[3.2.12]: https://github.com/heroku/buildpacks-nodejs/compare/v3.2.11...v3.2.12
216221
[3.2.11]: https://github.com/heroku/buildpacks-nodejs/compare/v3.2.10...v3.2.11

buildpacks/nodejs-corepack/buildpack.toml

Lines changed: 1 addition & 1 deletion
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.2.13"
5+
version = "3.2.14"
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."

buildpacks/nodejs-engine/CHANGELOG.md

Lines changed: 4 additions & 2 deletions
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.2.14] - 2024-09-24
11+
1012
### Added
1113

1214
- 22.9.0 (linux-amd64, linux-arm64)
@@ -663,7 +665,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
663665
- Parse engines and add them to nodejs.toml ([#25](https://github.com/heroku/nodejs-engine-buildpack/pull/25))
664666
- Add shellcheck to test suite ([#24](https://github.com/heroku/nodejs-engine-buildpack/pull/24))
665667

666-
[unreleased]: https://github.com/heroku/buildpacks-nodejs/compare/v3.2.13...HEAD
668+
[unreleased]: https://github.com/heroku/buildpacks-nodejs/compare/v3.2.14...HEAD
669+
[3.2.14]: https://github.com/heroku/buildpacks-nodejs/compare/v3.2.13...v3.2.14
667670
[3.2.13]: https://github.com/heroku/buildpacks-nodejs/compare/v3.2.12...v3.2.13
668671
[3.2.12]: https://github.com/heroku/buildpacks-nodejs/compare/v3.2.11...v3.2.12
669672
[3.2.11]: https://github.com/heroku/buildpacks-nodejs/compare/v3.2.10...v3.2.11
@@ -708,4 +711,3 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
708711
[1.1.2]: https://github.com/heroku/buildpacks-nodejs/compare/v1.1.1...v1.1.2
709712
[1.1.1]: https://github.com/heroku/buildpacks-nodejs/compare/v1.1.0...v1.1.1
710713
[1.1.0]: https://github.com/heroku/buildpacks-nodejs/releases/tag/v1.1.0
711-

buildpacks/nodejs-engine/buildpack.toml

Lines changed: 1 addition & 1 deletion
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.2.13"
5+
version = "3.2.14"
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."

buildpacks/nodejs-function-invoker/CHANGELOG.md

Lines changed: 6 additions & 1 deletion
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.2.14] - 2024-09-24
11+
12+
- No changes.
13+
1014
## [3.2.13] - 2024-09-04
1115

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

343-
[unreleased]: https://github.com/heroku/buildpacks-nodejs/compare/v3.2.13...HEAD
347+
[unreleased]: https://github.com/heroku/buildpacks-nodejs/compare/v3.2.14...HEAD
348+
[3.2.14]: https://github.com/heroku/buildpacks-nodejs/compare/v3.2.13...v3.2.14
344349
[3.2.13]: https://github.com/heroku/buildpacks-nodejs/compare/v3.2.12...v3.2.13
345350
[3.2.12]: https://github.com/heroku/buildpacks-nodejs/compare/v3.2.11...v3.2.12
346351
[3.2.11]: https://github.com/heroku/buildpacks-nodejs/compare/v3.2.10...v3.2.11

buildpacks/nodejs-function-invoker/buildpack.toml

Lines changed: 1 addition & 1 deletion
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.2.13"
5+
version = "3.2.14"
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."

buildpacks/nodejs-npm-engine/CHANGELOG.md

Lines changed: 6 additions & 1 deletion
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.2.14] - 2024-09-24
11+
12+
- No changes.
13+
1014
## [3.2.13] - 2024-09-04
1115

1216
- Added npm version 10.8.3.
@@ -169,7 +173,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
169173

170174
- Initial release
171175

172-
[unreleased]: https://github.com/heroku/buildpacks-nodejs/compare/v3.2.13...HEAD
176+
[unreleased]: https://github.com/heroku/buildpacks-nodejs/compare/v3.2.14...HEAD
177+
[3.2.14]: https://github.com/heroku/buildpacks-nodejs/compare/v3.2.13...v3.2.14
173178
[3.2.13]: https://github.com/heroku/buildpacks-nodejs/compare/v3.2.12...v3.2.13
174179
[3.2.12]: https://github.com/heroku/buildpacks-nodejs/compare/v3.2.11...v3.2.12
175180
[3.2.11]: https://github.com/heroku/buildpacks-nodejs/compare/v3.2.10...v3.2.11

buildpacks/nodejs-npm-engine/buildpack.toml

Lines changed: 1 addition & 1 deletion
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.2.13"
5+
version = "3.2.14"
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."

buildpacks/nodejs-npm-install/CHANGELOG.md

Lines changed: 6 additions & 1 deletion
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.2.14] - 2024-09-24
11+
12+
- No changes.
13+
1014
## [3.2.13] - 2024-09-04
1115

1216
- No changes.
@@ -163,7 +167,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
163167

164168
- Initial release
165169

166-
[unreleased]: https://github.com/heroku/buildpacks-nodejs/compare/v3.2.13...HEAD
170+
[unreleased]: https://github.com/heroku/buildpacks-nodejs/compare/v3.2.14...HEAD
171+
[3.2.14]: https://github.com/heroku/buildpacks-nodejs/compare/v3.2.13...v3.2.14
167172
[3.2.13]: https://github.com/heroku/buildpacks-nodejs/compare/v3.2.12...v3.2.13
168173
[3.2.12]: https://github.com/heroku/buildpacks-nodejs/compare/v3.2.11...v3.2.12
169174
[3.2.11]: https://github.com/heroku/buildpacks-nodejs/compare/v3.2.10...v3.2.11

buildpacks/nodejs-npm-install/buildpack.toml

Lines changed: 1 addition & 1 deletion
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.2.13"
5+
version = "3.2.14"
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."

0 commit comments

Comments
 (0)