Drop support for Ruby 3.2 and Rails 7.1 and 7.2#764
Open
rosa wants to merge 1 commit into
Open
Conversation
All of them have reached end-of-life: Ruby 3.2 in March 2026, Rails 7.1 in October 2025, and Rails 7.2 in August 2026. Raise the minimum required versions to Ruby 3.3 and Rails 8.0, trim the CI matrix and appraisals accordingly, and remove the Rails 7.1 compatibility superclass in the Active Job adapter, which can now always inherit from AbstractAdapter. Apps on older versions will continue to resolve solid_queue 1.5.x, as the resolver honors the gem's version requirements. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This was referenced Jul 24, 2026
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.
First step towards Solid Queue 2.0: raise the minimum supported versions to Ruby 3.3 and Rails 8.0. Everything dropped has reached end-of-life:
This PR:
required_ruby_versionto>= 3.3and the Rails dependencies to>= 8.0(which also moves the developmentGemfile.lockfrom Rails 7.1 to 8.1)AbstractAdapterUPGRADING.mdNo behavior changes for supported versions. Apps on older Rubies/Rails are unaffected: Bundler honors the gem's version requirements, so they'll keep resolving solid_queue 1.5.x.
One deliberate non-change: the install template still declares
ActiveRecord::Schema[7.1]. Bumping that changes what DDL defaults new installs get, so it deserves its own consideration separately from dropping support.🤖 Generated with Claude Code