Update dependencies and fix Rails 8.1 root setup - #744
Merged
Merged
Conversation
Commit 0f0cc56 (Test against Rails 8.1) pointed the rails_81 CI job at the root Gemfile but never bumped it from rails ~> 8.0.0, so the job silently tested Rails 8.0. Bump the root Gemfile to rails ~> 8.1.0 and refresh the lock. Rails 8.1's activesupport depends on the json gem and passes a positional options hash to JSON.parse from ActiveSupport::JSON.decode, which json 3.0 rejects (fixed by rails/rails#58601, merged on 8-1-stable but unreleased). Pin json to 2.x and ignore json major updates in dependabot until a release includes the fix.
tagliala
force-pushed
the
chore/update-dependencies
branch
from
September 22, 2026 09:07
787e170 to
c1a026d
Compare
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #744 +/- ##
=======================================
Coverage 94.33% 94.33%
=======================================
Files 17 17
Lines 459 459
=======================================
Hits 433 433
Misses 26 26 ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
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.
This update was produced automatically by AI.
Also fixes the Rails 8.1 root setup: #710 pointed the
rails_81CI job at the rootGemfilebut never bumped it from~> 8.0.0, so that job silently tested Rails 8.0. The rootGemfileis now~> 8.1.0and the lock is refreshed. (gemfiles/rails_80still covers 8.0.)Finally, Rails 8.1's activesupport depends on the
jsongem and passes a positional options hash toJSON.parsefromActiveSupport::JSON.decode, whichjson3.0 rejects (fixed by rails/rails#58601, merged on8-1-stablebut unreleased). This pinsjsonto< 3.0and adds a dependabot ignore rule.