-
Notifications
You must be signed in to change notification settings - Fork 1
fix: upgraded packages to fix vulnerabilities #41
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
Merged
Merged
Changes from all commits
Commits
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,39 @@ | ||
| [[IgnoredVulns]] | ||
| id = "GHSA-345p-7cg4-v4c7" | ||
| reason = "test dependencies" | ||
|
|
||
| [[IgnoredVulns]] | ||
| id = "GHSA-8r9q-7v3j-jr4g" | ||
| reason = "test dependencies" | ||
|
|
||
| [[IgnoredVulns]] | ||
| id = "GHSA-w48q-cv73-mx4w" | ||
| reason = "test dependencies" | ||
|
|
||
| [[IgnoredVulns]] | ||
| id = "GHSA-2g4f-4pwh-qvx6" | ||
| reason = "test dependencies" | ||
|
|
||
| [[IgnoredVulns]] | ||
| id = "GHSA-wqch-xfxh-vrr4" | ||
| reason = "test dependencies" | ||
|
|
||
| [[IgnoredVulns]] | ||
| id = "GHSA-27v5-c462-wpq7" | ||
| reason = "test dependencies" | ||
|
|
||
| [[IgnoredVulns]] | ||
| id = "GHSA-j3q9-mxjg-w52f" | ||
| reason = "test dependencies" | ||
|
|
||
| [[IgnoredVulns]] | ||
| id = "GHSA-6rw7-vpxm-498p" | ||
| reason = "test dependencies" | ||
|
|
||
| [[IgnoredVulns]] | ||
| id = "GHSA-q8mj-m7cp-5q26" | ||
| reason = "test dependencies" | ||
|
|
||
| [[IgnoredVulns]] | ||
| id = "GHSA-w7fw-mjwx-w883" | ||
| reason = "test dependencies" | ||
Oops, something went wrong.
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.
Two concerns with this new suppression file:
Prefer upgrading over suppressing. This fixture's lockfile is stale —
package.jsonrequests@modelcontextprotocol/sdk@^1.24.0butbun.lockstill resolves1.12.0(its workspace spec even reads^1.11.0). Abun installin this dir would pull the SDK to 1.24+ (newerexpress,qs,send, etc.) and likely eliminate most of these 10 advisories at the source rather than masking them. Suppressing a stale lockfile leaves the fixture pinned to known-vulnerable transitive deps.Blanket reasons aren't auditable. All 10 entries use the identical reason
"test dependencies", unlike the repo-rootosv-scanner.toml, which gives specific per-vuln rationale (e.g. "project does not use WebSocket connections"). Sinceosv-scanner'sIgnoredVulnsmatch by advisory ID with no package/path scoping, a future reader can't tell whether each suppression is still valid. At minimum, name the affected package per entry. Also worth confirming none of these 10 IDs overlap a still-vulnerable package in the shipped root/base-actiontrees (the root package also depends on@modelcontextprotocol/sdk), so an ID-based ignore can't leak into production coverage.