Conversation
This was referenced Aug 4, 2022
Member
Author
|
Seems like there are some regressions in this version? The latest version that seemed to work was 2.3.14 so going to try that |
The latest versions of bundler has an issue where incomplete lockfiles that are locked to "ruby" but not including exclusively gems NOT platform specific. This causes an issue with existing lockfiles, generating a missing gem error. This is explained in more detail in: ruby/rubygems#5807 Since this is currently preventing Dependabot updates for our users, especially around sorbet dependencies, and since we have no good way to signal these failures to them with an explanation on how to resolve it, I think it's best that we downgrade bundler to a version that does not include this, until ruby/rubygems#5807 is merged and we can bump to the latest version again.
8c913b5 to
2099ac1
Compare
Contributor
|
Yeah, I recall some issues around Ruby requirements, that's probably why we went from 2.3.13 to 2.3.18 directly last time. |
landongrindheim
approved these changes
Aug 4, 2022
Merged
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.
The latest versions of bundler has an issue where incomplete lockfiles that are
locked to "ruby" but not including exclusively gems NOT platform specific.
This causes an issue with existing lockfiles, generating a missing gem
error.
This is explained in more detail in: ruby/rubygems#5807
Since this is currently preventing Dependabot updates for our users,
especially around sorbet dependencies, and since we have no good way to
signal these failures to them with an explanation on how to resolve it,
I think it's best that we downgrade bundler to a version that does not
include this, until ruby/rubygems#5807 is
merged and we can bump to the latest version again.