Upgrade Rails to ~> 8.1, Grape to ~> 3.3, update all dependencies - #114
Merged
Merged
Conversation
- Bump Rails constraint from ~> 8.0.3 to ~> 8.1.3 (now 8.1.3.1) - Bump Grape constraint from ~> 2.4 to ~> 3.3 (now 3.3.5), except in the rails-6-1 appraisal where grape ~> 2.4 is pinned since grape >= 3.2 requires activesupport >= 7.2, incompatible with Rails 6.1 - Run bundle update to pick up all other outdated patch/minor gems (rubocop, rspec-rails, puma, pg, selenium-webdriver, etc.) - Regenerate all Appraisal gemfiles/lockfiles - Auto-fix new RuboCop offenses (Capybara/RSpec/HaveContent: use have_text over have_content; quote style differences from a newer Appraisal gem version regenerating gemfiles/rails_edge.gemfile with double quotes) Verified: full test suite passes (15 examples, 0 failures) against the default Gemfile and against all three CI matrix appraisal gemfiles (rails_6_1, rails_7, rails_8). RuboCop clean. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
dblock
force-pushed
the
upgrade-rails-grape-and-deps
branch
from
September 3, 2026 23:03
719acca to
998a25f
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.
Description
~> 8.0.3to~> 8.1.3(now resolves to 8.1.3.1).~> 2.4to~> 3.3(now resolves to 3.3.5), except in therails-6-1Appraisal, wheregrape ~> 2.4is pinned sincegrape >= 3.2requiresactivesupport >= 7.2, which is incompatible with Rails 6.1.bundle updateto pick up all other outdated patch/minor gems (rubocop, rspec-rails, puma, pg, selenium-webdriver, bootsnap, jbuilder, importmap-rails, turbo-rails, web-console, etc.)bundle exec appraisal update).Capybara/RSpec/HaveContent: preferhave_textoverhave_content) and a quote-style difference from a newer Appraisal gem version regeneratinggemfiles/rails_edge.gemfilewith double quotes.Testing
bundle exec rubocop- clean, no offenses.bundle exec rspec- 15 examples, 0 failures, run against:Gemfile(Rails 8.1 / Grape 3.3.5)gemfiles/rails_6_1.gemfile(Rails 6.1 / Grape 2.4)gemfiles/rails_7.gemfile(Rails 7.0 / Grape 3.3.5)gemfiles/rails_8.gemfile(Rails 8.1 / Grape 3.3.5)