[codex] Update Ruby and dependency lockfile#261
Merged
Conversation
Updates Ruby from 4.0.2 to 4.0.5 and upgrades all outdated gems, including puma 7→8, rubocop-capybara 2→3, and rails-erd 1→2. Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
3e11116 to
9606e41
Compare
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.
Summary
ruby-graphvizbinstubs that no longer have a bundled backing gem afterrails-erd2.0.2ruby-graphvizbinstubs cannot be committed while the gem is absent fromGemfile.lockRoot cause
rails-erd2.0.2 no longer depends onruby-graphviz, so the dependency refresh removedruby-graphvizfromGemfile.lock. The generatedbin/*gvexecutables were still committed and calledGem.bin_path("ruby-graphviz", ...), which made those commands fail under Bundler.Verification
bundle exec rails test test/binstubs_test.rbbundle exec ruby -e 'Bundler.setup; offenders = Dir["bin/*"].select { |path| File.read(path).include?(%q{Gem.bin_path("ruby-graphviz"}) }; abort offenders.join("\n") if offenders.any?; puts "no ruby-graphviz binstubs"'bundle exec rubocop --parallel --format simplebundle exec rails testbundle exec brakeman --no-pager --ignore-config config/brakeman.ignorebundle exec bundle-audit checkbundle exec rails test:systemwas not run to completion locally because Selenium cannot find a Chrome binary in this workspace environment.