Skip to content

Commit

Permalink
Rollback bundler change (#1281)
Browse files Browse the repository at this point in the history
Bundler 2.3.7 caused issues:

- rubygems/rubygems#5351
- #1280 


Internal (private) tickets:

- https://heroku.support/1083230
- https://heroku.support/1081495
- https://heroku.support/1082829


I've already rolled back the build pack deploy via the buildpack CLI. This commit is intended to represent the currently deployed software accurately in the codebase.
  • Loading branch information
schneems authored Mar 3, 2022
1 parent 7dc078c commit d42226c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Main (unreleased)

## v239 (2022/03/02)

* Rollback bundler 2.x change. Bundler 2.x is now back at 2.2.33 (https://github.com/heroku/heroku-buildpack-ruby/pull/1281)

## v238 (2022/03/02)

* Bundler 2.x is now 2.3.7 (https://github.com/heroku/heroku-buildpack-ruby/pull/1276)
Expand Down
2 changes: 1 addition & 1 deletion lib/language_pack/helpers/bundler_wrapper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class LanguagePack::Helpers::BundlerWrapper

BLESSED_BUNDLER_VERSIONS = {}
BLESSED_BUNDLER_VERSIONS["1"] = "1.17.3"
BLESSED_BUNDLER_VERSIONS["2"] = "2.3.7"
BLESSED_BUNDLER_VERSIONS["2"] = "2.2.33"
BUNDLED_WITH_REGEX = /^BUNDLED WITH$(\r?\n) (?<major>\d+)\.\d+\.\d+/m

class GemfileParseError < BuildpackError
Expand Down
2 changes: 1 addition & 1 deletion lib/language_pack/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

module LanguagePack
class LanguagePack::Base
BUILDPACK_VERSION = "v238"
BUILDPACK_VERSION = "v239"
end
end

0 comments on commit d42226c

Please sign in to comment.