-
Notifications
You must be signed in to change notification settings - Fork 0
FE-1286: Bump seroval, postcss and @hono/node-server (security) #383
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
56b9946
FE-1286: Bump seroval, postcss and @hono/node-server (security)
claude 010b932
FE-1286: Bump @hono/node-server override to 2.0.10
claude ffb6d8c
Use @hono/node-server 1.19.17 backport instead of 2.0.10 override
claude f1ad812
Revert "Use @hono/node-server 1.19.17 backport instead of 2.0.10 over…
claude File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Incorrect major version override
Medium Severity
The
@hono/node-serveroverride pins2.0.10, but@modelcontextprotocol/sdkdeclares^1.19.9and cannot take 2.x. The path-traversal fix is already in1.19.15+, so an in-range bump to1.19.17is enough. Forcing the major may break MCP at runtime without the smoke coverage this PR says is required when a 2.x override remains.Additional Locations (1)
package-lock.json#L3458-L3465Reviewed by Cursor Bugbot for commit f1ad812. Configure here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You're right that the fix is backported to 1.19.15+, and we tried exactly that: commit ffb6d8c removed this override so
@modelcontextprotocol/sdk's^1.19.9resolved in-range to 1.19.17. But this repo's "Dependencies / Review" check is a required status check (org-wide ruleset), and it failed on that head because the GHSA-frvp-7c67-39w9 advisory still lists the affected range as< 2.0.5— the advisory database hasn't caught up with the 1.19.15 backport. So the 1.19.17 commit was reverted and the 2.0.10 override kept purely to satisfy the gate (2.0.10 is patched for both GHSA-frvp-7c67-39w9 and GHSA-9mqv-5hh9-4cgg). We'll switch back to the in-range 1.x resolution once GitHub corrects the advisory range — the PR body's known-issues section tracks this. The MCP smoke-test caveat for the forced major remains noted in the body.