Patch 14 security advisories with conservative lockfile bumps - #13
Merged
minerva-sky merged 1 commit intoAug 18, 2026
Merged
Conversation
bundler-audit flags five gems in the lockfile: faraday 2.11.0 (SSRF via protocol-relative URLs CVE-2026-25765/CVE-2026-33637, nested-params DoS CVE-2026-54297), uri 0.13.1 (credential leakage CVE-2025-27221 and its bypass CVE-2025-61594), concurrent-ruby 1.3.4 (three lock/atomics bugs incl. CVE-2026-54904), addressable 2.8.7 (template ReDoS CVE-2026-35611), and rexml 3.3.1 (five DoS advisories incl. CVE-2024-49761). Bump those five plus faraday-multipart, all in place, via bundle lock --update addressable rexml concurrent-ruby uri faraday faraday-multipart --conservative: faraday 2.14.3, uri 1.1.1, concurrent-ruby 1.3.8, addressable 2.9.0, rexml 3.4.4, faraday-multipart 1.2.0. faraday-multipart is the one bump with no advisory behind it: 1.0.4 declares required_ruby_version < 4, so the lock cannot even install on current stable Ruby (4.x) dev machines; 1.2.0 lifts that ceiling and keeps the Faraday::UploadIO alias that ruby-openai 7.1.0's multipart path calls (verified present in 1.2.0's source). ruby-openai stays at 7.1.0; no gemspec changes, so nothing changes for gem consumers. bundler-audit is clean and the full suite (610 examples) plus standardrb pass on the new lock. Local verification ran on Ruby 4.0.6; the CI run on 3.2.4 is the adjudicating evidence for the uri 0.x->1.x default-parser transition on that Ruby. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
codenamev
approved these changes
Aug 17, 2026
This was referenced Aug 19, 2026
minerva-sky
added a commit
that referenced
this pull request
Aug 19, 2026
MAINTAINING.md's release checklist has prescribed a bundler-audit run since before this commit, but bundler-audit appears nowhere in the Gemfile, the lockfile, or any workflow. The step only ever worked for a maintainer who happened to have the gem installed globally, which is how 14 advisories reached #13 without anything reporting them. Adds a separate Advisories workflow: PRs and pushes that move Gemfile, Gemfile.lock or the gemspec, plus a Monday sweep for advisories published against a lockfile nobody touched. The scanner installs outside the bundle so its resolution stays independent of the gem's, and .bundler-audit.yml gives a deliberate exception somewhere reviewable.
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
Lockfile-only security bump.
bundler-auditflags 14 advisories across five gems inGemfile.lock:faraday matters most: it's ruby-openai's transport, i.e. the path every LLM call takes. uri and concurrent-ruby are runtime-transitive; addressable and rexml are dev-only (webmock/rubocop).
A sixth gem moves with no advisory behind it: faraday-multipart 1.0.4 → 1.2.0. Its 1.0.4 gemspec declares
required_ruby_version < 4, so a lock holding it cannotbundle installon current stable Ruby (4.x) at all — the panel caught it riding along undisclosed, and the root cause turned out to be exactly that ceiling. 1.2.0 lifts it and keeps theFaraday::UploadIOalias that ruby-openai 7.1.0's multipart path calls (verified present in 1.2.0's source). WORLD.md: "Track the latest stable Ruby."How
bundle lock --update addressable rexml concurrent-ruby uri faraday faraday-multipart --conservative— all six bumped in place. ruby-openai stays at 7.1.0; the gemspec is untouched andGemfile.lockis excluded from the packaged gem, so consumers see nothing. This patches only the gem's own dev/CI resolution.Verification
bundler-audit check: No vulnerabilities found (was 14)bundle exec rake(610 examples + standardrb): exit 0Ruby 3.2.4check, not the local run, as the merge evidence.One review finding didn't block but is tracked: faraday ≥ 2.12 embeds the full request URL in error messages, which agentic's logger and execution journal persist verbatim — a query-string-auth exposure for custom
api_base_urlgateways. Filed as item 3 on #12 with a proposed sanitize-at-boundary fix.Panel
< 4ruby ceiling forces the move, and ranFaraday::UploadIOresolution live under 1.2.0 to close the seam VCR can't see. "Refusing to peg a shared host's CPU building a second interpreter for evidence CI produces for free is the right performance call."Gemfile.lockis excluded from the packaged gem, gemspec constraints untouched, version.rb untouched: "the diff moves the single tested point, it doesn't change the contract surface."