Update json to 2.21.2 for CVE-2026-71847 - #110
Open
ultimatecoder wants to merge 1 commit into
Open
Conversation
The ruby-advisory-db entry landed on 2026-08-14 and turned every CI run in
the repo red, including the Monday SEO audit. bundler-audit runs before the
build, so nothing after it gets a chance to execute.
json is transitive here, pulled in by jekyll (~> 2.6) and json-minify (> 0).
Both constraints already allow 2.21.2, so this is a lockfile bump with no
Gemfile change.
Title: Ruby JSON - JSON::ResumableParser#partial_value dereferences a freed
input buffer and crashes on truncated duplicate-key streams
Solution: update to '>= 2.21.2'
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
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
One-line
Gemfile.lockbump:json2.21.1 -> 2.21.2.Why
The
ruby-advisory-dbentry for CVE-2026-71847 landed on 2026-08-14 and turned CI red across the repo.bundler-auditis the first step inbuild-and-test, so the build and link-check never get a chance to run behind it — every open PR reports a failure that has nothing to do with its own changes, and the scheduled Monday SEO audit is affected too.jsonis a transitive dependency, pulled in byjekyll(~> 2.6) andjson-minify(> 0). Both constraints already permit 2.21.2, so noGemfilechange is needed — only the lockfile moves.Verification
Run locally against this branch:
Found while rebasing #25, which is blocked on this and will be rebased on top once this merges.
🤖 Generated with Claude Code