-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update bundler to 2.5.6 #1426
Update bundler to 2.5.6 #1426
Conversation
ff649b4
to
f5366f9
Compare
f5366f9
to
e6beb69
Compare
@@ -0,0 +1,3 @@ | |||
## Ruby apps with Bundler 2.x now receive version 2.5.6 | |||
|
|||
The [Ruby Buildpack](https://devcenter.heroku.com/articles/ruby-support#libraries) now includes Bundler 2.5.6. Applications specifying Bundler 2.x in their `Gemfile.lock` will now receive this version of bundler. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Leaving a note for anyone interested in when this is going to roll out. It is EOD for me today. I want to be around when this ships. I'll likely aim for around noon CST tomorrow. (Feb 22).
The CI isn't publically viewable. Weird error here:
It's because the behavior changed:
Previously this would return 3.0.0 as that's what's in the Gemfile. This is a breaking change released as a minor change in 2.5.x Notably bundler 2.5.x does not support Ruby 2.6 and 2.7 which also has customers on the platform. https://devcenter.heroku.com/articles/ruby-support#unsupported-ruby-versions heroku-20 has Ruby back to 2.5.x and while it's technically an unsupported version, I'm mindful that we've never done anything to break a previously working Ruby version on a Heroku stack. So this puts me in uncharted territory. The long term fix would be a BYO bundler policy that uses the exact version from the Gemfile.lock but that's going to require a lot of work. In the very short term I would likely target 2.4.x as that's the feature being requested #1408. |
Close #1408