Skip to content

Commit d2eac9c

Browse files
Update Node.js Engine Inventory (#1471)
* Update Inventory for heroku/nodejs-engine ### Added - Node.js 24.7.0 (linux-amd64) - Node.js 22.19.0 (linux-amd64) * Make version match more resilient --------- Co-authored-by: heroku-linguist[bot] <136119646+heroku-linguist[bot]@users.noreply.github.com> Co-authored-by: Colin Casey <[email protected]>
1 parent c3ba7ef commit d2eac9c

File tree

3 files changed

+18
-2
lines changed

3 files changed

+18
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## [Unreleased]
44

5+
- Added Node.js 24.7.0 (linux-amd64)
6+
- Added Node.js 22.19.0 (linux-amd64)
57

68
## [v307] - 2025-08-26
79

@@ -1283,4 +1285,4 @@ Accepts `cacheDirectories` array in package.json to override default `node_modul
12831285
[v155]: https://github.com/heroku/heroku-buildpack-nodejs/compare/v154...v155
12841286
[v154]: https://github.com/heroku/heroku-buildpack-nodejs/compare/v153...v154
12851287
[v153]: https://github.com/heroku/heroku-buildpack-nodejs/compare/v152...v153
1286-
[v152]: https://github.com/heroku/heroku-buildpack-nodejs/compare/v151...v152
1288+
[v152]: https://github.com/heroku/heroku-buildpack-nodejs/compare/v151...v152

inventory/node.toml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
[[artifacts]]
2+
version = "24.7.0"
3+
os = "linux"
4+
arch = "amd64"
5+
url = "https://nodejs.org/download/release/v24.7.0/node-v24.7.0-linux-x64.tar.gz"
6+
checksum = "sha256:8cf85258402e056efa041168c9b162a4e3b229ebfad5000850b8941c974e9d5a"
7+
18
[[artifacts]]
29
version = "24.6.0"
310
os = "linux"
@@ -166,6 +173,13 @@ arch = "amd64"
166173
url = "https://nodejs.org/download/release/v23.0.0/node-v23.0.0-linux-x64.tar.gz"
167174
checksum = "sha256:702cbc710fcf1102cef1aced74443fee34eff8df4827de30ec970d377ce31d9e"
168175

176+
[[artifacts]]
177+
version = "22.19.0"
178+
os = "linux"
179+
arch = "amd64"
180+
url = "https://nodejs.org/download/release/v22.19.0/node-v22.19.0-linux-x64.tar.gz"
181+
checksum = "sha256:d36e56998220085782c0ca965f9d51b7726335aed2f5fc7321c6c0ad233aa96d"
182+
169183
[[artifacts]]
170184
version = "22.18.0"
171185
os = "linux"

test/run

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1506,7 +1506,7 @@ testYarnBuildMetaData() {
15061506
select(.install_node_binary_time | type == "number")
15071507
select(.install_yarn_binary_memory | type == "number")
15081508
select(.install_yarn_binary_time | type == "number")
1509-
select(.node_version == "v22.18.0")
1509+
select(.node_version | test("v22.\\d+\\.\\d+"))
15101510
select(.node_version_major == 22)
15111511
select(.package_manager == "yarn")
15121512
select(.package_manager_version == "1.22.22")

0 commit comments

Comments
 (0)