fix(deps): resolve Dependabot security alerts#6
Open
bobbyg603 wants to merge 1 commit into
Open
Conversation
Ruby (Gemfile.lock, github-pages meta-gem retained at v232): - concurrent-ruby 1.3.6 -> 1.3.7 - faraday 2.14.1 -> 2.14.3 (faraday-net_http 3.4.2 -> 3.4.4) - nokogiri 1.19.3 -> 1.19.4 (all platform variants) npm (my-javascript-crasher/package-lock.json, transitive dev dep): - qs 6.15.1 -> 6.15.3 (via npm audit fix); npm audit 1 moderate -> 0 Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
There was a problem hiding this comment.
Copilot wasn't able to review any files in this pull request.
Files not reviewed (1)
- my-javascript-crasher/package-lock.json: Generated file
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
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
Resolves all 14 open Dependabot security alerts across the two ecosystems in this repo (Ruby/Jekyll
Gemfile.lockand the npmmy-javascript-crasher/package-lock.json). Minimal, security-focused diff — only lock files changed;package.jsonandGemfileare untouched.Ruby / Jekyll (
Gemfile.lock)The
Gemfileuses thegithub-pagesmeta-gem. Its constraints on the vulnerable gems are loose ranges (nokogiri >= 1.16.2, < 2.0,faraday >= 1, < 3,concurrent-ruby ~> 1.0), so a targetedbundle updatebumped each to its patched version without changing the pinnedgithub-pagesversion (still232):Incidental transitive bumps pulled in by the resolver:
faraday-net_http3.4.2 -> 3.4.4,json2.19.5 -> 2.21.1.Command used:
bundle update concurrent-ruby faraday nokogirinpm (
my-javascript-crasher/package-lock.json)qsis a transitive dev dependency (viahttp-server). Fixed withnpm audit fix, which touched only the lock file:Plus its dependency chain (
side-channel1.1.0 -> 1.1.1,object-inspect1.13.3 -> 1.13.4, etc.).npm audit:
1 moderate severity vulnerability->found 0 vulnerabilitiesVerification
bundle install— resolves cleanly (98 gems installed).bundle exec jekyll build— succeeds (exit 0, Cayman remote theme).npm ci+npm audit— installs cleanly, 0 vulnerabilities after fix.Remaining alerts
None. All 14 open alerts (#78-#92) are addressed by the upgrades above. No build artifacts staged (
_siteandnode_modulesare gitignored).🤖 Generated with Claude Code