Bump tapioca to 0.19.1 & remove support for EOL Ruby 3.2#595
Merged
Conversation
Fixes `NoMethodError: undefined method 'has_rest'` in `Tapioca::Gem::Listeners::SorbetSignatures#compile_signature` caused by a `sorbet-runtime` API change. The failure surfaced in CI during `bin/export-rbi --check-sync` (which runs `tapioca gem rbi`). Also regenerates gem RBIs via `bin/tapioca gem --all` to pick up the updated `tapioca`, `sorbet`, `spoom`, and other transitive dep versions.
Ruby 3.2 reached end-of-life on 2026-03-31. Bumps `required_ruby_version` in the gemspec from `>= 3.2` to `>= 3.3`. This is also what unblocks the transitive `parallel` 2.x bump pulled in alongside `tapioca` 0.19.1 — `parallel` 2.0 requires Ruby >= 3.3. Adds `4.0` to the CI matrix so we validate against the Ruby version already used locally (`.ruby-version` is 4.0.1).
tapioca to 0.19.1tapioca to 0.19.1 & remove support for EOL Ruby 3.2
KaanOzkan
commented
Apr 23, 2026
| fail-fast: false | ||
| matrix: | ||
| ruby: [ "3.2", "3.3", "3.4" ] | ||
| ruby: [ "3.3", "3.4", "4.0" ] |
Contributor
Author
There was a problem hiding this comment.
Updated main protection rules to require 4.0 and removed 3.2
vinistock
approved these changes
Apr 23, 2026
amomchilov
added a commit
to Shopify/spoom
that referenced
this pull request
Jun 6, 2026
In order to be compatible with the latest RBI release. Motivation: Shopify/rbi#595
amomchilov
added a commit
to Shopify/spoom
that referenced
this pull request
Jun 6, 2026
In order to be compatible with the latest RBI release. Motivation: Shopify/rbi#595
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.
Bump
tapiocato 0.19.1Fixes a CI failure in
bin/export-rbi --check-sync:Caused by a
sorbet-runtimeAPI change that 0.19.1 accounts for.Also regenerates gem RBIs via
bin/tapioca gem --allto pick up updatedtapioca,sorbet,spoom, and other transitive deps.Drop Ruby 3.2, add 4.0
Ruby 3.2 reached end-of-life on 2026-03-31. Bumps
required_ruby_versionin the gemspec from>= 3.2to>= 3.3.This also unblocks the transitive
parallel2.x update pulled in alongsidetapioca0.19.1 —parallel2.0 requires Ruby>= 3.3, which broke the old 3.2 matrix job.Adds
4.0to the CI matrix so we validate against the Ruby version already used locally (.ruby-versionis4.0.1).