Skip to content
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

Fix bundle update not working on an out of sync lockfile #7607

Merged

Commits on Apr 25, 2024

  1. Configuration menu
    Copy the full SHA
    a9917d8 View commit details
    Browse the repository at this point in the history
  2. Fix issue with bundle update with an out of sync lockfile

    An old platform related bug fix made some existing lockfiles no longer
    work because they included invalid platforms. So to make it backwards
    compatible, code was added to remove invalid platforms from the lockfile
    before resolution. This is skipped though when Gemfile has changed
    dependencies because in that case we will be re-resolving anyways.
    However, in the `bundle update` case, the detection of "dependencies
    have changed" was not actually working making Bundler remove all
    platforms and not be able to resolve.
    deivid-rodriguez committed Apr 25, 2024
    Configuration menu
    Copy the full SHA
    6452adf View commit details
    Browse the repository at this point in the history