chore(deps): align react-router family on 7.15.0#374
Merged
Conversation
Bumps the entire React Router family in lockstep: - react-router 7.13.1 → 7.15.0 - @react-router/serve 7.13.0 → 7.15.0 - @react-router/node 7.13.0 → 7.15.0 - @react-router/dev 7.13.0 → 7.15.0 - @react-router/fs-routes 7.13.0 → 7.15.0 Closes Dependabot #350 (@react-router/serve 7.13.1) and #352 (@react-router/fs-routes 7.13.1) — those individual patch bumps could not resolve cleanly because @react-router/fs-routes@7.13.1's peer constraint pulled @react-router/dev to 7.15.x, which then required react-router@^7.15.0, conflicting with @react-router/serve@7.13.1's exact peer on react-router@7.13.1. The 7.13 → 7.15 jump is two minor versions. The codebase has no usage of any unstable_* APIs renamed in 7.15.0, and locally lint, typecheck, all 63 tests pass and the dev server renders /de successfully. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
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
Bumps the entire React Router family to 7.15.0 in one coordinated PR:
react-router7.13.1 → 7.15.0@react-router/serve7.13.0 → 7.15.0@react-router/node7.13.0 → 7.15.0@react-router/dev7.13.0 → 7.15.0@react-router/fs-routes7.13.0 → 7.15.0Closes #350 (Dependabot's
@react-router/serve7.13.1) and closes #352 (Dependabot's@react-router/fs-routes7.13.1) — Dependabot will close them automatically once this lands.Why this PR (and not the individual Dependabot patches)
Trying to install just
@react-router/serve@7.13.1and@react-router/fs-routes@7.13.1fails npm peer-dep resolution:fs-routes@7.13.1peers on@react-router/dev@^7.13.1, which npm wants to satisfy withdev@7.15.0(latest matching), butdev@7.15.0then requiresreact-router@^7.15.0whileserve@7.13.1pinsreact-router@7.13.1exactly. Aligning the whole family on 7.15.0 is the only clean resolution.Risk
7.13 → 7.15 is two minor versions (semver-safe). Notable in the changelog:
unstable_*APIs (renames). Codebase grep shows no usage of any of the renamed APIs (unstable_passThroughRequests,unstable_url,unstable_mask,unstable_useTransitions, etc.) — so this is a no-op for us.Local verification
npm run lint✅npm run typecheck✅npm test -- --run✅ — 63/63 tests passnpm run dev✅ — server boots,/301-redirects to locale,/dereturns 200 with full HTMLTest plan
🤖 Generated with Claude Code