chore: batch dependency updates and fix bundler-audit failures - #85
Merged
Conversation
Resolves rails/activestorage CVE-2026-66066 and websocket-driver CVEs that were failing scan_ruby on every Dependabot PR, since bundler-audit checks the full Gemfile.lock rather than just each PR's diff. Also adds the missing ruby-vips runtime dependency exposed by the Rails 8.1.3.1 security patch (ImageProcessing::Vips requires it, but it was never declared in the Gemfile). Bumps: rails 8.1.3 -> 8.1.3.1, solid_queue 1.4.0 -> 1.6.0, solid_cable 4.0.0 -> 4.0.2, rails-html-sanitizer 1.7.0 -> 1.7.1, loofah 2.25.1 -> 2.25.2, websocket-driver 0.8.0 -> 0.8.2, thruster 0.1.21 -> 0.1.23, selenium-webdriver 4.45.0 -> 4.46.0, actions/cache 5 -> 6. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
The importmap audit boots the full app (Bundler.require), which now loads ruby-vips; that job was the only one missing the libvips system package, causing a LoadError. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This was referenced Aug 8, 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.
Summary
bundler-auditchecks the wholeGemfile.lockand was failing on nearly every individual PR (and onmainitself) until both therails/activestorageandwebsocket-driverCVEs were fixed together.ruby-vipsruntime dependency — the Rails 8.1.3.1 security patch to Active Storage variant processing requires it, but it was never declared in the Gemfile, sotest/system-testwere failing with aLoadError.actions/cache5 → 6 in the CI workflow (from the last remaining dependabot PR, Build(deps): bump actions/cache from 5 to 6 #58).Versions bumped: rails 8.1.3 → 8.1.3.1, solid_queue 1.4.0 → 1.6.0, solid_cable 4.0.0 → 4.0.2, rails-html-sanitizer 1.7.0 → 1.7.1, loofah 2.25.1 → 2.25.2, websocket-driver 0.8.0 → 0.8.2, thruster 0.1.21 → 0.1.23, selenium-webdriver 4.45.0 → 4.46.0.
Test plan
bin/cilocally: rubocop,bin/bundler-audit("No vulnerabilities found"),bin/importmap audit, brakeman,bin/rails test— all passbin/rails db:test:prepare test:system— passes