Update all bundled dependencies; require Ruby >= 4.0 - #76
Merged
Conversation
Run `bundle update` to refresh Gemfile.lock to the latest versions compatible with the existing Gemfile/gemspec constraints. Notable bumps: - rails 8.1.1 -> 8.1.3 (and all Action*/Active* components) - brakeman 7.1.1 -> 8.0.5 - standard 1.49.0 -> 1.56.0 (rubocop 1.75.5 -> 1.88.2) - simplecov 0.22.0 -> 1.0.2 - plus transitive updates (bigdecimal, connection_pool, erb, json, etc.) Full test suite (360 runs), standardrb, and brakeman:vendor_scan all pass. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01LghT8pm3EmG7rFaJ4hkhKc
The dependency update pulls in gems that no longer support older Rubies (e.g. parallel 2.x requires Ruby >= 3.3), which broke CI on Ruby 3.2. Raise the minimum supported Ruby to 4.0 and stop back-testing 3.2/3.3/3.4. - bunko.gemspec: required_ruby_version ">= 3.2" -> ">= 4.0" - .github/workflows/ci.yml: test matrix -> Ruby 4.0, plus Ruby 4.1 as a non-blocking (continue-on-error) forward/experimental entry; bump the lint and security jobs to Ruby 4.0 - .standard.yml: target ruby_version 3.1 -> 4.0 - README/ROADMAP/CLAUDE docs: reflect the new Ruby 4.0 minimum Full suite (360 runs), standardrb (targeting 4.0), and brakeman:vendor_scan all pass. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01LghT8pm3EmG7rFaJ4hkhKc
Ruby 4.1 has no early/preview release yet, so ruby/setup-ruby cannot provision it. Remove the forward/experimental 4.1 entry and test on Ruby 4.0 only; re-add 4.1 once it ships. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01LghT8pm3EmG7rFaJ4hkhKc
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
Two related changes:
bundle updateto refreshGemfile.lockto the latest versions.parallel 2.xrequires Ruby ≥ 3.3), which broke CI on Ruby 3.2. Per maintainer direction, the minimum supported Ruby is now 4.0 and CI no longer back-tests 3.2/3.3/3.4.Notable dependency bumps
...plus a range of transitive updates (concurrent-ruby, rack, zeitwerk, thor, timeout, net-imap, mail, and more).
BUNDLED WITHis unchanged (2.6.6).Ruby version changes
bunko.gemspec:required_ruby_version">= 3.2"→">= 4.0".github/workflows/ci.yml: test matrix reduced to Ruby 4.0; lint and security jobs bumped to Ruby 4.0.standard.yml: targetruby_version3.1→4.0CI results
All checks pass on Ruby 4.0:
🤖 Generated with Claude Code