Skip to content

Commit

Permalink
Roll back node & yarn updates (#1518)
Browse files Browse the repository at this point in the history
There's an issue with the way that yarn is packaged that caused #1516 due to behavior introduced in #1503. This commit reverts to the old node/yarn versions until we can fix the underlying bug.
  • Loading branch information
schneems authored Nov 11, 2024
1 parent e791d73 commit adc4484
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@

## [v282] - 2024-11-08

- Default Node.js version now 22.11.0 (https://github.com/heroku/heroku-buildpack-ruby/pull/1503)
- Default Yarn version now 1.22.22 (https://github.com/heroku/heroku-buildpack-ruby/pull/1503)
- [Rolled back] Default Node.js version now 22.11.0 (https://github.com/heroku/heroku-buildpack-ruby/pull/1503)
- [Rolled back] Default Yarn version now 1.22.22 (https://github.com/heroku/heroku-buildpack-ruby/pull/1503)

## [v281] - 2024-11-07

Expand Down
4 changes: 2 additions & 2 deletions lib/language_pack/helpers/nodebin.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
require 'json'

class LanguagePack::Helpers::Nodebin
NODE_VERSION = "22.11.0"
YARN_VERSION = "1.22.22"
NODE_VERSION = "20.9.0"
YARN_VERSION = "1.22.19"

def self.hardcoded_node_lts(arch: )
arch = "x64" if arch == "amd64"
Expand Down

0 comments on commit adc4484

Please sign in to comment.