fix(security): remediate dependency vulnerabilities via upgrades and overrides#71
Open
Shriram96 wants to merge 2 commits intoexcalidraw:mainfrom
Open
Conversation
|
@Shriram96 is attempting to deploy a commit to the Excalidraw Team on Vercel. A member of the Team first needs to authorize it. |
There was a problem hiding this comment.
Pull request overview
This PR focuses on dependency-security remediation by upgrading direct dependencies, forcing patched transitive resolutions via pnpm.overrides, and refreshing the pnpm lockfile to reflect the remediated graph.
Changes:
- Upgraded direct dependencies (notably
@modelcontextprotocol/sdk,mcp-handler,@excalidraw/excalidraw,express,vite) - Added
pnpm.overridesto force patched transitive versions (path-to-regexp,lodash-es,nanoid,uuid) - Regenerated
pnpm-lock.yamlto capture updated resolutions
Reviewed changes
Copilot reviewed 1 out of 2 changed files in this pull request and generated 3 comments.
| File | Description |
|---|---|
| package.json | Bumps direct dependency versions and adds pnpm.overrides configuration for vulnerable transitive deps. |
| pnpm-lock.yaml | Reflects the upgraded dependency graph plus override-enforced transitive resolutions. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
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.
Summary
pnpm.overridesto force patched transitive resolutions where upstream ranges lagChanges
@modelcontextprotocol/sdk->1.29.0mcp-handler->1.1.0@excalidraw/excalidraw->^0.18.1express->^5.2.1vite->^6.4.2pnpm.overridesfor vulnerable transitive packages (path-to-regexp,lodash-es,nanoid,uuid)pnpm-lock.yamlwith patched transitive versionsVerification
pnpm audit-> No known vulnerabilities foundpnpm run build-> successful (BUILD_OK)No functional code-path changes were introduced; this is a dependency security remediation only.