From 9654bfdaa8761457e81c2cf3d2229a09ce6ea377 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Tue, 7 Apr 2026 04:22:50 +0000
Subject: [PATCH] Bump react-router from 7.13.0 to 7.14.0 in /frontend (#1645)
Bumps
[react-router](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router)
from 7.13.0 to 7.14.0.
Sourced from react-router's
releases. See the changelog for release notes: https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v7140 See the changelog for release notes: https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v7132 See the changelog for release notes: https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v7131 Sourced from react-router's
changelog. UNSTABLE RSC FRAMEWORK MODE BREAKING CHANGE - Existing route module
exports remain unchanged from stable v7 non-RSC mode, but new exports
are added for RSC mode. If you want to use RSC features, you will need
to update your route modules to export the new annotations. (#14901) If you are using RSC framework mode currently, you will need to
update your route modules to the new conventions. The following route
module components have their own mutually exclusive server component
counterparts: If you were previously exporting a Example: Before export function ServerComponent() { export function ErrorBoundary() { export function Layout() { export function HydrateFallback() {Release notes
v7.14.0
v7.13.2
v7.13.1
Changelog
7.14.0
Patch Changes
Server Component Export
Client Component
ServerComponentdefault
ServerErrorBoundaryErrorBoundary
ServerLayoutLayout
ServerHydrateFallbackHydrateFallbackServerComponent, your
ErrorBoundary, Layout, and
HydrateFallback were also server components. If you want to
keep those as server components, you can rename them and prefix them
with Server. If you were previously importing the
implementations of those components from a client module, you can simply
inline them.import { ErrorBoundary as ClientErrorBoundary }
from "./client";
// ...
}
return <ClientErrorBoundary />;
}
// ...
}
// ...
}
After
export function ServerComponent() {
// ...
}
export function ErrorBoundary() {
// previous implementation of ClientErrorBoundary, this is now a client
component
... (truncated)
e31077b
chore: Update version for release (#14945)6683e85
chore: Update version for release (pre) (#14943)49a2ed5
Merge branch 'main' into release-nexte8b3c3a
feat: RSC framework mode prerender (#14907)82eca19
docs: clarify useViewTransitionState matches to or from path (#14922)d439188
feat:! new RSC framework mode module API (#14901)98641e2
feat: rsc prefetch (#14902)903d924
chore: format0d57748
Merge branch 'release-next' into dev921db15
chore: format