fix: upgrade @remix-run/router to 1.23.2 (CVE-2026-22029) - #1025
Open
anupamme wants to merge 1 commit into
Open
Conversation
Automated dependency upgrade by OrbisAI Security
Contributor
There was a problem hiding this comment.
Pull request overview
Upgrades the transitive @remix-run/router dependency to address CVE-2026-22029 (XSS via open redirects) in the project’s React Router stack.
Changes:
- Adds an npm
overridesentry to force@remix-run/routerto1.23.2. - Updates
package-lock.jsonsonode_modules/@remix-run/routerresolves to1.23.2.
Reviewed changes
Copilot reviewed 1 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| package.json | Adds npm overrides to pin @remix-run/router to 1.23.2. |
| package-lock.json | Updates the resolved @remix-run/router package entry to 1.23.2. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+77
to
79
| "overrides": { | ||
| "@remix-run/router": "1.23.2" | ||
| } |
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
Upgrade @remix-run/router from 1.23.0 to 1.23.2 to fix CVE-2026-22029.
Vulnerability
CVE-2026-22029package-lock.json(dependency:@remix-run/router)Description: @remix-run/router: react-router: React Router vulnerable to XSS via Open Redirects
Evidence
Scanner confirmation: trivy rule
CVE-2026-22029flagged this pattern.Changes
package.jsonpackage-lock.jsonBehavior Preservation
The change is scoped to 2 files on the vulnerable path; it only tightens handling of untrusted input and leaves valid inputs unaffected.
This change addresses a pattern flagged by static analysis. The code path handles user-influenced input and the fix reduces the attack surface against both manual and automated exploitation.
Automated security fix by OrbisAI Security