chore(deps): upgrade Bundler to 4.0.13#737
Open
wdower wants to merge 1 commit into
Open
Conversation
Bump Gemfile.lock BUNDLED WITH from 2.7.2 to 4.0.13 and remove the Dockerfile's bundler management. RubyGems and Bundler now release in lockstep, so the `gem update --system` already in the build stage provides Bundler 4.0.13 as the RubyGems default -- the ARG BUNDLER_VERSION pin and gem install bundler steps are redundant. bundle install uses the default directly in every stage.
|
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates the project’s Bundler version to align with the Bundler/RubyGems “lockstep” release model, and simplifies the container build by removing explicit Bundler pinning/installation in the Dockerfile.
Changes:
- Bumped
Gemfile.lockBUNDLED WITHfrom2.7.2to4.0.13. - Removed
ARG BUNDLER_VERSIONand the explicitgem install bundler:...step from the Docker build. - Documented the change in
CHANGELOG.md.
Reviewed changes
Copilot reviewed 2 out of 3 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| Gemfile.lock | Updates the lockfile’s Bundler version to 4.0.13. |
| Dockerfile | Removes Bundler version pin/install and relies on gem update --system for Bundler provisioning. |
| CHANGELOG.md | Notes the Bundler upgrade and Dockerfile simplification in Unreleased. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



Bump Gemfile.lock BUNDLED WITH from 2.7.2 to 4.0.13 and remove the Dockerfile's bundler management. RubyGems and Bundler now release in lockstep, so the
gem update --systemalready in the build stage provides Bundler 4.0.13 as the RubyGems default -- the ARG BUNDLER_VERSION pin and gem install bundler steps are redundant. bundle install uses the default directly in every stage.Going forward, we should be able to just inherit the base image's bundler and we can stop having to do so much manual fiddling with it in both the GH and IB builds.