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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

## [Unreleased]

- Default Node.js version now 24.13.0 (https://github.com/heroku/heroku-buildpack-ruby/pull/1704)

## [v343] - 2026-01-13

Expand Down
7 changes: 7 additions & 0 deletions changelogs/unreleased/node-lts-24.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
## Ruby apps now default to Node version 24.13.0

Applications using the `heroku/ruby` buildpack that do not have a version of Node installed by another buildpack (such as the `heroku/nodejs` buildpack) will now receive:

- Node version 24.13.0

These versions and instructions on how to specify a specific version of these binaries can be found on the [installed binaries section of the Heroku Ruby Support page](https://devcenter.heroku.com/articles/ruby-support#installed-binaries).
2 changes: 1 addition & 1 deletion lib/language_pack/helpers/nodebin.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
require 'json'

class LanguagePack::Helpers::Nodebin
NODE_VERSION = "22.11.0"
NODE_VERSION = "24.13.0"
YARN_VERSION = "1.22.22"

def self.hardcoded_node_lts(arch: )
Expand Down