-
Notifications
You must be signed in to change notification settings - Fork 0
chore: resolve non-breaking client security advisories #34
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
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.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -104,6 +104,8 @@ | |
| "write-file-webpack-plugin": "^4.5.1" | ||
| }, | ||
| "overrides": { | ||
| "trim": "^1.0.1" | ||
| "trim": "^1.0.1", | ||
| "serialize-javascript": "^7.0.5", | ||
| "tar": "^7.5.16" | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
| } | ||
| } | ||
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.
serialize-javascript@^7.0.5is more aggressive than the advisory requires. GHSA-76p7-773f-r4q5 (the relevant RCE/XSS advisory) is fixed inserialize-javascript@>=6.0.0. Pinning to^7.0.5adds anengines: node>=20constraint with no extra security benefit;^6.0.0would clear the advisory with a smaller blast radius and looser engine requirements. The production Dockerfile usesnode:lts-alpineso the bump works today, but the override has no security upside over v6.