chore(deps): bump all dependencies (gems + bun) across the gem and docs site - #73
Merged
Conversation
…cs site ## Summary - Root bundle: rails 8.1.3.1, mcp 0.22→1.3, simplecov 0.22→1.1, rubocop 1.90, rouge 5.1, commonmarker 2.9, zeitwerk 2.8.3 (lock is gitignored — the bump lands as the new-version code fixes below) - docs/ bundle: same core bumps + rubocop-rails 2.37, brakeman 8.0.6, thruster 0.1.25, playwright-ruby-client 1.62 - docs/ bun: daisyui 5.6.13→5.7.22, tailwindcss/cli 4.3.3, playwright 1.62.1; CSS rebuilt against daisyUI 5.7 - SimpleCov 1.x renames: add_filter→skip, add_group→group in spec_helper - RuboCop 1.90's new Style/DirectiveScope cop: 4 disable/enable pairs autocorrected to disable-next ## Verification - [x] bundle exec rake green at root (945 examples, 0 failures, 94.70% line coverage) - [x] MCP specs (33) pass against the mcp 1.3 major - [x] docs/ suite green (15 examples, incl. Playwright system specs) - [x] all bumped gems support Ruby 3.2 (CI matrix floor)
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
Bumps every dependency surface to the latest resolvable versions before further feature work.
Code changes required by the bumps:
spec/spec_helper.rb— SimpleCov 1.x renamedadd_filter→skipandadd_group→group(same behavior; old names deprecation-warn).Style/DirectiveScopecop autocorrected single-statementdisable/enablepairs todisable-next.Test plan
bundle exec rakegreen at root: 945 examples, 0 failures, 94.70% line coverage, rubocop cleanDeviations & judgment calls
Gemfile.lockis gitignored (standard for a gem), so the root bundle bump ships only as the deprecation/cop fixes — CI resolves fresh and already picks these versions.bundle exec rubocoprun fromdocs/crashes (cannot load such file -- rubocop-rake) because RuboCop walks up and loads the parent gem's.rubocop.yml, whose plugins aren't in the docs bundle. Verified pre-existing — identical failure on the old lockfile — so left out of scope.Summary by cubic
Bumps all gem and
bundependencies for the gem and docs site to current versions to pick up security and compatibility updates. No runtime behavior change; only build/lint config and docs CSS are affected.Updates (highlights): gem resolves to
rails8.1.3.1;mcp0.22 → 1.3 (no code changes required);simplecov0.22 → 1.1;rubocop1.90;rouge5.1;commonmarker2.9;zeitwerk2.8.3. Docs:rubocop-rails2.37,brakeman8.0.6,thruster0.1.25,playwright-ruby-client1.62. Frontend:daisyui5.7.22 (from 5.6.13),tailwindcss/@tailwindcss/cli4.3.3,playwright1.62.1.Required code tweaks:
simplecov1.x rename inspec_helper.rb(add_filter→skip,add_group→group), andrubocop1.90’sStyle/DirectiveScopeautocorrect todisable-next; docs CSS rebuilt againstdaisyui5.7.Review notes: root
Gemfile.lockis gitignored (gem conventions), so CI/local will re-resolve to these versions;playwrightnpm 1.62.1 andplaywright-ruby-client1.62.0 are compatible;rubocoprun fromdocs/still fails due to parent config plugin resolution (pre-existing).Written for commit 3f2bbc6. Summary will update on new commits.