Bumps 2026-05-26#285
Merged
Merged
Conversation
- Update gems via `bundle update`: rack 3.1.19 → 3.2.6, rake 13.2.1 → 13.4.2, rspec 3.13.0 → 3.13.2, rspec-core/-mocks/-support, simplecov-html, timecop 0.9.10 → 0.9.11, diff-lcs 1.5.1 → 1.6.2. - Bump Ruby to 3.4.9 (security: zlib CVE-2026-27820). - Bump Node.js to 24.16.0 in `.tool-versions`. Verified locally: `bundle exec rspec` (428 examples, 0 failures) and `bundle exec rubocop` (no offenses).
afterdesign
approved these changes
May 26, 2026
`@prettier/plugin-ruby` 4.x spawns a Ruby server that requires
`syntax_tree`, which was never added to the Gemfile, so `yarn format:check`
has been failing with `LoadError: cannot load such file -- syntax_tree`.
- Add `syntax_tree` to the dev group of the Gemfile.
- Run `yarn prettier --write .` against the 11 spec files that had drifted.
- Disable two rubocop cops that conflict with prettier-ruby's output so CI
stays green:
- `Layout/SpaceInsideHashLiteralBraces` (prettier breaks empty hashes
onto two lines, which rubocop reads as space inside empty braces)
- `Style/EmptyMethod` (prettier expands `def foo; end` to `def foo\nend`)
Verified: `bundle exec rubocop`, `yarn format:check`, `bundle exec rspec`
(428 examples, 0 failures) all pass.
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.
What and why
Routine dependency refresh. Pulls in the latest bug-fix releases of our test/runtime stack, picks up Rack 3.2 (security and minor fixes), brings Ruby to 3.4.9 for the patched
zlib(CVE-2026-27820), and unbreaksyarn format:checkalong the way.Changes
Gemfile.lockviabundle updaterack3.1.19 → 3.2.6rake13.2.1 → 13.4.2rspec3.13.0 → 3.13.2 (+rspec-core/-mocks/-support)simplecov-html0.13.1 → 0.13.2timecop0.9.10 → 0.9.11diff-lcs1.5.1 → 1.6.2.ruby-version/.tool-versions: Ruby 3.4.6 → 3.4.9.tool-versions: Node.js 24.14.1 → 24.16.0 (latest LTS)yarn format:check:@prettier/plugin-ruby4.x requiressyntax_treeat runtime but it was never in the Gemfile, so the format check has been silently failing withLoadError: cannot load such file -- syntax_tree. Addedsyntax_treeto the dev group, ranprettier --writeagainst the 11 spec files that had drifted, and disabled two rubocop cops that conflict with prettier-ruby's output (Layout/SpaceInsideHashLiteralBracesandStyle/EmptyMethod) so prettier and rubocop stay aligned.CHANGELOG.md: entry under## masterThe CI matrix in
.github/workflows/specs.ymlpins to loose minors ('3.4', etc.), so it picks up the new patch version automatically — no workflow change needed.