fix(deps): address Dependabot alerts #63/#70/#71#1048
Merged
Conversation
Resolves Dependabot alert accius#68. The tmp package had a path traversal vulnerability (GHSA-ph9p-34f9-6g65) in versions < 0.2.6. Updated the lock file so the transitive dep from tmp-promise resolves to 0.2.7. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Bump axios 1.15.2→1.16.1 (prototype pollution MITM/header-injection/proxy-bypass, high), ws 8.19.0→8.21.0 (uninitialized memory disclosure), express 4.22.1→4.22.2 + qs 6.14.2→6.15.2 + body-parser 1.20.4→1.20.5 (DoS via null entries in comma-format arrays). Also fixes transitive brace-expansion DoS and ip-address XSS picked up in the same pass. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Bump rig-bridge transitive deps: express→4.22.2, qs→6.15.2, body-parser→1.20.5, ws→8.21.0 via npm audit fix. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Collaborator
Author
|
@accius I tried to fix a few dep findings, in case you think it is too risky for the next release leave it. |
accius
approved these changes
Jun 1, 2026
Owner
accius
left a comment
There was a problem hiding this comment.
Reviewed the diff. All changes are pure package-lock.json updates within already-declared semver ranges — no package.json or app code touched, which is the right scope for a Dependabot-style triage.
- axios 1.15.2 → 1.16.1: closes the prototype-pollution / proxy-bypass advisories
- ws 8.19.0 → 8.21.0: closes the uninitialized-memory disclosure
- express 4.22.1 → 4.22.2 / qs / body-parser bumps: closes the qs DoS chain
- Transitive
brace-expansionandip-addresspicked up in the same pass — fine
One thing worth knowing: the axios bump pulls in a transitive https-proxy-agent@5.0.1 + agent-base@6.0.2 under node_modules/axios/. That's axios narrowing its own proxy path; nothing in our code wires HTTPS_PROXY, so it's effectively dormant.
CI is green, no app diff. Good to merge.
K0CJH
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
brace-expansionDoS andip-addressXSS picked up in the same passCloses Dependabot alerts #63, #70, #71. All bumps are within already-declared semver ranges — no breaking changes.
Test plan
npm auditreports 0 vulnerabilities after fix🤖 Generated with Claude Code