-
Notifications
You must be signed in to change notification settings - Fork 0
fix(security): bump pdfjs-dist 6.2.108 (CVE-2026-16633), undici >=7.29.0, nanoid 3.3.18 #1023
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 |
|---|---|---|
|
|
@@ -37,6 +37,7 @@ | |
| }, | ||
| "overrides": { | ||
| "brace-expansion": "5.0.9", | ||
| "postcss": "8.5.25" | ||
| "postcss": "8.5.25", | ||
| "undici": "^7.29.0" | ||
|
Comment on lines
+40
to
+41
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. 📝 Info: nanoid fix enforced only by the lockfile The nanoid 3.3.18 remediation was applied by bumping the lockfile, with no override added. nanoid is transitive via Was this helpful? React with 👍 or 👎 to provide feedback. |
||
| } | ||
| } | ||
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.
📝 Info: undici override uses a caret, siblings pin exact versions
The new override
undici: "^7.29.0"(package.json) is a caret range, whilebrace-expansionandpostcssnext to it pin exact versions. It stays bounded below 8.0.0 and the lockfile resolves 7.29.0, so behavior is fine today, but it can float within 7.x on a future lockfile regeneration.Was this helpful? React with 👍 or 👎 to provide feedback.