fix(security): bump transitive npm deps via overrides (clears 17 npm alerts) - #1143
Merged
Conversation
Clears the 17 npm Dependabot alerts (all transitive) by pinning patched versions: - undici 6.19.7 -> 6.27.0 - fast-xml-parser 5.9.3 -> 5.10.1 - fast-uri 3.1.3 -> 3.1.4 - brace-expansion 2.1.1 -> 2.1.2 - protobufjs 7.6.4 -> 7.6.5 - @hono/node-server 1.19.14 -> 2.0.5 npm install --package-lock-only rc=0; all six verified at patched versions in the lockfile. build-web CI is the regression gate (notably the @HONO major).
mdheller
enabled auto-merge (squash)
July 31, 2026 00:18
Contributor
There was a problem hiding this comment.
Pull request overview
Note
Copilot couldn't run its full agentic review because it didn't start before the timeout. Make sure your repository has a runner available, or add a copilot-code-review.yml file specifying one with the runs-on attribute. See the docs for more details.
Pins patched transitive npm dependencies in apps/socioprophet-web via package.json overrides to clear npm security alerts.
Changes:
- Added
overridesentries forundici,fast-xml-parser,fast-uri,brace-expansion,protobufjs, and@hono/node-server - Kept existing
qsoverride andresolutionsentry
Files not reviewed (1)
- apps/socioprophet-web/package-lock.json: Generated file
Comments suppressed due to low confidence (1)
apps/socioprophet-web/package.json:57
- This file uses both npm
overridesand (typically Yarn)resolutions, but the new security pins are only applied viaoverrides. If anyone installs with Yarn (or tooling that relies onresolutions), they may still pull vulnerable transitive versions. Consider mirroring these new pins intoresolutions(or removingresolutionsif Yarn isn’t supported here) to keep behavior consistent across package managers.
"overrides": {
"qs": "^6.11.2",
"undici": "6.27.0",
"fast-xml-parser": "5.10.1",
"fast-uri": "3.1.4",
"brace-expansion": "2.1.2",
"protobufjs": "7.6.5",
"@hono/node-server": "2.0.5"
},
"resolutions": {
"qs": "^6.11.2"
}
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+47
to
+53
| "qs": "^6.11.2", | ||
| "undici": "6.27.0", | ||
| "fast-xml-parser": "5.10.1", | ||
| "fast-uri": "3.1.4", | ||
| "brace-expansion": "2.1.2", | ||
| "protobufjs": "7.6.5", | ||
| "@hono/node-server": "2.0.5" |
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.
Third Dependabot tranche. All npm alerts are transitive in
apps/socioprophet-web, fixed by pinning patched versions through package.jsonoverrides:npm install --package-lock-onlyrc=0; all six verified at patched versions in the lockfile. Five are in-major/patch;@hono/node-serveris a major bump (transitive) —build-webCI gates any regression, and auto-merge won't fire unless it's green.Completes the Dependabot remediation with #1130 (go criticals) and #1142 (pip). Remaining: starlette major migration, protobuf-vs-arcticdb, lattice pypdf, and dev-only pytest — each documented in #1142.