Chore(deps): Fix multiple CVEs in dev and docs dependencies#1050
Open
Pierre-Sassoulas wants to merge 1 commit into
Open
Chore(deps): Fix multiple CVEs in dev and docs dependencies#1050Pierre-Sassoulas wants to merge 1 commit into
Pierre-Sassoulas wants to merge 1 commit into
Conversation
Address open security alerts: - serialize-javascript RCE + DoS: force ^7.0.7 via overrides (mocha pins 6.0.2) - pygments GUID ReDoS: 2.19.1 -> 2.20.0 - requests extract_zipped_paths temp file reuse: 2.32.4 -> 2.34.2 - urllib3 decompression bomb + cross-origin header leak: 2.6.3 -> 2.7.0 - glob CLI command injection, js-yaml merge-key DoS, @babel/core file read, and related transitive advisories resolved via npm audit fix elliptic (GHSA-848j-6mx2-7j84) has no patched release and is a build-time-only bundler dependency (browserify), not shipped in the published wheel; left for alert dismissal.
89e14da to
5bf0857
Compare
There was a problem hiding this comment.
Pull request overview
This PR updates JavaScript and documentation build dependencies to remediate multiple reported security advisories, including forcing a patched serialize-javascript version via npm overrides and bumping pinned Python doc dependencies.
Changes:
- Add an npm
overridesentry to forceserialize-javascriptto^7.0.7despite transitive pinning. - Refresh
package-lock.jsonto reflectnpm audit fixand updated transitive dependency graph. - Update pinned doc-build Python dependencies (
pygments,requests,urllib3) indocs/requirements.txt.
Reviewed changes
Copilot reviewed 2 out of 3 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| package.json | Adds an npm override to force a patched serialize-javascript version. |
| package-lock.json | Updates the resolved dependency tree to incorporate security fixes and transitive upgrades. |
| docs/requirements.txt | Bumps pinned Python dependencies used for building documentation. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+10
to
13
| "overrides": { | ||
| "serialize-javascript": "^7.0.7" | ||
| }, | ||
| "devDependencies": { |
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.
Address open security alerts:
elliptic (GHSA-848j-6mx2-7j84) has no patched release and is a build-time-only bundler dependency (browserify), not shipped in the published wheel; left for alert dismissal.