Fix Dependabot security advisories (uuid, babel, brace-expansion)#121
Closed
MastaP wants to merge 1 commit into
Closed
Fix Dependabot security advisories (uuid, babel, brace-expansion)#121MastaP wants to merge 1 commit into
MastaP wants to merge 1 commit into
Conversation
Clears the 3 open advisories on main (npm audit: 0 vulnerabilities): - uuid 13.0.0 -> 13.0.2 (GHSA-w5hq-g745-h8pq, runtime dep). Not reachable here (SDK only uses v4() with no buf arg) but bumped for hygiene to clear the alert. - @babel/plugin-transform-modules-systemjs 7.29.0 -> 7.29.7 (GHSA-fv7c-fp4j-7gwp, high; dev/transitive, lockfile-only). - brace-expansion 5.0.5 -> 5.0.6 (GHSA-jxxr-4gwj-5jf2; dev/transitive, lockfile-only). Only package.json change is the uuid pin; everything else is lockfile-only and within existing semver ranges. Build + test:ci pass.
There was a problem hiding this comment.
Code Review
This pull request updates dependency versions in package.json and package-lock.json. Specifically, the uuid package is upgraded from 13.0.0 to 13.0.2, various @babel packages are updated to version 7.29.7, and several peer dependency flags are removed from the lockfile. There are no review comments to address, and I have no feedback to provide.
Important
The consumer version of Gemini Code Assist on GitHub is being sunset. Starting June 18, 2026, new organization installations will be blocked, and all code review activity will officially cease on July 17, 2026.
For more details on the timeline and next steps, please review the Help Documentation.
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
Clears all 3 open Dependabot advisories on
main. After the change,npm auditreports 0 vulnerabilities.uuid13.0.0 → 13.0.2package.json+ lockfile@babel/plugin-transform-modules-systemjs7.29.0 → 7.29.7brace-expansion5.0.5 → 5.0.6Reachability (none are exploitable in this package)
src/api/json-rpc/JsonRpcHttpTransport.tsviaimport { v4 as uuid }, called asuuid()with nobuf. The advisory affectsv3/v5/v6with abufargument, so the vulnerable path isn't present. Bumped anyway for hygiene / to clear the alert.Scope
Only
package.jsonchange is theuuidpin; all other bumps are lockfile-only and within existing semver ranges (no major bumps, no API changes).Verification
npm audit→ 0 vulnerabilitiesnpm run build→ cleannpm run test:ci→ 15 suites / 56 tests pass