From adc448458d8dcd334893f05db4d939873382637f Mon Sep 17 00:00:00 2001 From: Richard Schneeman Date: Mon, 11 Nov 2024 17:21:21 -0600 Subject: [PATCH] Roll back node & yarn updates (#1518) 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. --- CHANGELOG.md | 4 ++-- lib/language_pack/helpers/nodebin.rb | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d90f3dec3..eb4119a51 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/lib/language_pack/helpers/nodebin.rb b/lib/language_pack/helpers/nodebin.rb index c71398658..7632e8366 100644 --- a/lib/language_pack/helpers/nodebin.rb +++ b/lib/language_pack/helpers/nodebin.rb @@ -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"