-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add bundler 2.6.2 and update bundler 2.5.23 (#1535)
* Add Download support for Bundler 2.6.x Bundler 2.6.2 is the latest release of Bundler 2.6.x. This commit adds download support for that version. * Add Bundler 2.5.23 support This commit adds support for downloading bundler 2.5.23 for applications with Bundler 2.5.x in their `Gemfile.lock`. * Changelog links * Test bundler version greater than behavior Add test to assert versions greater than 2.6 will receive 2.6
- Loading branch information
Showing
5 changed files
with
42 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
## Bundler version 2.5.23 is now available for Ruby Applications | ||
|
||
The [Ruby Buildpack](https://devcenter.heroku.com/articles/ruby-support#libraries) installs a version of bundler based on the major and minor version listed in the `Gemfile.lock` under the `BUNDLED WITH` key: | ||
|
||
- `BUNDLED WITH` 2.5.x will receive bundler `2.5.23` | ||
|
||
It is strongly recommended that you have both a `RUBY VERSION` and `BUNDLED WITH` version listed in your `Gemfile.lock`. If you do not have those values, you can generate them and commit them to git: | ||
|
||
``` | ||
$ bundle update --ruby | ||
$ git add Gemfile.lock | ||
$ git commit -m "Update Gemfile.lock" | ||
``` | ||
|
||
Applications without these values specified in the `Gemfile.lock` may break unexpectedly when the defaults change. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
## Bundler version 2.6.2 is now available for Ruby Applications | ||
|
||
The [Ruby Buildpack](https://devcenter.heroku.com/articles/ruby-support#libraries) installs a version of bundler based on the major and minor version listed in the `Gemfile.lock` under the `BUNDLED WITH` key: | ||
|
||
- `BUNDLED WITH` 2.6.x and above will receive bundler `2.6.2` | ||
|
||
It is strongly recommended that you have both a `RUBY VERSION` and `BUNDLED WITH` version listed in your `Gemfile.lock`. If you do not have those values, you can generate them and commit them to git: | ||
|
||
``` | ||
$ bundle update --ruby | ||
$ git add Gemfile.lock | ||
$ git commit -m "Update Gemfile.lock" | ||
``` | ||
|
||
Applications without these values specified in the `Gemfile.lock` may break unexpectedly when the defaults change. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters