source: node_modules/@remix-run/router/CHANGELOG.md

main
Last change on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 38.5 KB
RevLine 
[d24f17c]1# `@remix-run/router`
2
3## 1.15.1
4
5### Patch Changes
6
7- Fix encoding/decoding issues with pre-encoded dynamic parameter values ([#11199](https://github.com/remix-run/react-router/pull/11199))
8
9## 1.15.0
10
11### Minor Changes
12
13- Add a `createStaticHandler` `future.v7_throwAbortReason` flag to throw `request.signal.reason` (defaults to a `DOMException`) when a request is aborted instead of an `Error` such as `new Error("query() call aborted: GET /path")` ([#11104](https://github.com/remix-run/react-router/pull/11104))
14
15 - Please note that `DOMException` was added in Node v17 so you will not get a `DOMException` on Node 16 and below.
16
17### Patch Changes
18
19- Respect the `ErrorResponse` status code if passed to `getStaticContextFormError` ([#11213](https://github.com/remix-run/react-router/pull/11213))
20
21## 1.14.2
22
23### Patch Changes
24
25- Fix bug where dashes were not picked up in dynamic parameter names ([#11160](https://github.com/remix-run/react-router/pull/11160))
26- Do not attempt to deserialize empty JSON responses ([#11164](https://github.com/remix-run/react-router/pull/11164))
27
28## 1.14.1
29
30### Patch Changes
31
32- Fix bug with `route.lazy` not working correctly on initial SPA load when `v7_partialHydration` is specified ([#11121](https://github.com/remix-run/react-router/pull/11121))
33- Fix bug preventing revalidation from occurring for persisted fetchers unmounted during the `submitting` phase ([#11102](https://github.com/remix-run/react-router/pull/11102))
34- De-dup relative path logic in `resolveTo` ([#11097](https://github.com/remix-run/react-router/pull/11097))
35
36## 1.14.0
37
38### Minor Changes
39
40- Added a new `future.v7_partialHydration` future flag that enables partial hydration of a data router when Server-Side Rendering. This allows you to provide `hydrationData.loaderData` that has values for _some_ initially matched route loaders, but not all. When this flag is enabled, the router will call `loader` functions for routes that do not have hydration loader data during `router.initialize()`, and it will render down to the deepest provided `HydrateFallback` (up to the first route without hydration data) while it executes the unhydrated routes. ([#11033](https://github.com/remix-run/react-router/pull/11033))
41
42 For example, the following router has a `root` and `index` route, but only provided `hydrationData.loaderData` for the `root` route. Because the `index` route has a `loader`, we need to run that during initialization. With `future.v7_partialHydration` specified, `<RouterProvider>` will render the `RootComponent` (because it has data) and then the `IndexFallback` (since it does not have data). Once `indexLoader` finishes, application will update and display `IndexComponent`.
43
44 ```jsx
45 let router = createBrowserRouter(
46 [
47 {
48 id: "root",
49 path: "/",
50 loader: rootLoader,
51 Component: RootComponent,
52 Fallback: RootFallback,
53 children: [
54 {
55 id: "index",
56 index: true,
57 loader: indexLoader,
58 Component: IndexComponent,
59 HydrateFallback: IndexFallback,
60 },
61 ],
62 },
63 ],
64 {
65 future: {
66 v7_partialHydration: true,
67 },
68 hydrationData: {
69 loaderData: {
70 root: { message: "Hydrated from Root!" },
71 },
72 },
73 }
74 );
75 ```
76
77 If the above example did not have an `IndexFallback`, then `RouterProvider` would instead render the `RootFallback` while it executed the `indexLoader`.
78
79 **Note:** When `future.v7_partialHydration` is provided, the `<RouterProvider fallbackElement>` prop is ignored since you can move it to a `Fallback` on your top-most route. The `fallbackElement` prop will be removed in React Router v7 when `v7_partialHydration` behavior becomes the standard behavior.
80
81- Add a new `future.v7_relativeSplatPath` flag to implement a breaking bug fix to relative routing when inside a splat route. ([#11087](https://github.com/remix-run/react-router/pull/11087))
82
83 This fix was originally added in [#10983](https://github.com/remix-run/react-router/issues/10983) and was later reverted in [#11078](https://github.com/remix-run/react-router/pull/11078) because it was determined that a large number of existing applications were relying on the buggy behavior (see [#11052](https://github.com/remix-run/react-router/issues/11052))
84
85 **The Bug**
86 The buggy behavior is that without this flag, the default behavior when resolving relative paths is to _ignore_ any splat (`*`) portion of the current route path.
87
88 **The Background**
89 This decision was originally made thinking that it would make the concept of nested different sections of your apps in `<Routes>` easier if relative routing would _replace_ the current splat:
90
91 ```jsx
92 <BrowserRouter>
93 <Routes>
94 <Route path="/" element={<Home />} />
95 <Route path="dashboard/*" element={<Dashboard />} />
96 </Routes>
97 </BrowserRouter>
98 ```
99
100 Any paths like `/dashboard`, `/dashboard/team`, `/dashboard/projects` will match the `Dashboard` route. The dashboard component itself can then render nested `<Routes>`:
101
102 ```jsx
103 function Dashboard() {
104 return (
105 <div>
106 <h2>Dashboard</h2>
107 <nav>
108 <Link to="/">Dashboard Home</Link>
109 <Link to="team">Team</Link>
110 <Link to="projects">Projects</Link>
111 </nav>
112
113 <Routes>
114 <Route path="/" element={<DashboardHome />} />
115 <Route path="team" element={<DashboardTeam />} />
116 <Route path="projects" element={<DashboardProjects />} />
117 </Routes>
118 </div>
119 );
120 }
121 ```
122
123 Now, all links and route paths are relative to the router above them. This makes code splitting and compartmentalizing your app really easy. You could render the `Dashboard` as its own independent app, or embed it into your large app without making any changes to it.
124
125 **The Problem**
126
127 The problem is that this concept of ignoring part of a path breaks a lot of other assumptions in React Router - namely that `"."` always means the current location pathname for that route. When we ignore the splat portion, we start getting invalid paths when using `"."`:
128
129 ```jsx
130 // If we are on URL /dashboard/team, and we want to link to /dashboard/team:
131 function DashboardTeam() {
132 // ❌ This is broken and results in <a href="/dashboard">
133 return <Link to=".">A broken link to the Current URL</Link>;
134
135 // ✅ This is fixed but super unintuitive since we're already at /dashboard/team!
136 return <Link to="./team">A broken link to the Current URL</Link>;
137 }
138 ```
139
140 We've also introduced an issue that we can no longer move our `DashboardTeam` component around our route hierarchy easily - since it behaves differently if we're underneath a non-splat route, such as `/dashboard/:widget`. Now, our `"."` links will, properly point to ourself _inclusive of the dynamic param value_ so behavior will break from it's corresponding usage in a `/dashboard/*` route.
141
142 Even worse, consider a nested splat route configuration:
143
144 ```jsx
145 <BrowserRouter>
146 <Routes>
147 <Route path="dashboard">
148 <Route path="*" element={<Dashboard />} />
149 </Route>
150 </Routes>
151 </BrowserRouter>
152 ```
153
154 Now, a `<Link to=".">` and a `<Link to="..">` inside the `Dashboard` component go to the same place! That is definitely not correct!
155
156 Another common issue arose in Data Routers (and Remix) where any `<Form>` should post to it's own route `action` if you the user doesn't specify a form action:
157
158 ```jsx
159 let router = createBrowserRouter({
160 path: "/dashboard",
161 children: [
162 {
163 path: "*",
164 action: dashboardAction,
165 Component() {
166 // ❌ This form is broken! It throws a 405 error when it submits because
167 // it tries to submit to /dashboard (without the splat value) and the parent
168 // `/dashboard` route doesn't have an action
169 return <Form method="post">...</Form>;
170 },
171 },
172 ],
173 });
174 ```
175
176 This is just a compounded issue from the above because the default location for a `Form` to submit to is itself (`"."`) - and if we ignore the splat portion, that now resolves to the parent route.
177
178 **The Solution**
179 If you are leveraging this behavior, it's recommended to enable the future flag, move your splat to it's own route, and leverage `../` for any links to "sibling" pages:
180
181 ```jsx
182 <BrowserRouter>
183 <Routes>
184 <Route path="dashboard">
185 <Route index path="*" element={<Dashboard />} />
186 </Route>
187 </Routes>
188 </BrowserRouter>
189
190 function Dashboard() {
191 return (
192 <div>
193 <h2>Dashboard</h2>
194 <nav>
195 <Link to="..">Dashboard Home</Link>
196 <Link to="../team">Team</Link>
197 <Link to="../projects">Projects</Link>
198 </nav>
199
200 <Routes>
201 <Route path="/" element={<DashboardHome />} />
202 <Route path="team" element={<DashboardTeam />} />
203 <Route path="projects" element={<DashboardProjects />} />
204 </Router>
205 </div>
206 );
207 }
208 ```
209
210 This way, `.` means "the full current pathname for my route" in all cases (including static, dynamic, and splat routes) and `..` always means "my parents pathname".
211
212### Patch Changes
213
214- Catch and bubble errors thrown when trying to unwrap responses from `loader`/`action` functions ([#11061](https://github.com/remix-run/react-router/pull/11061))
215- Fix `relative="path"` issue when rendering `Link`/`NavLink` outside of matched routes ([#11062](https://github.com/remix-run/react-router/pull/11062))
216
217## 1.13.1
218
219### Patch Changes
220
221- Revert the `useResolvedPath` fix for splat routes due to a large number of applications that were relying on the buggy behavior (see <https://github.com/remix-run/react-router/issues/11052#issuecomment-1836589329>). We plan to re-introduce this fix behind a future flag in the next minor version. ([#11078](https://github.com/remix-run/react-router/pull/11078))
222
223## 1.13.0
224
225### Minor Changes
226
227- Export the `PathParam` type from the public API ([#10719](https://github.com/remix-run/react-router/pull/10719))
228
229### Patch Changes
230
231- Fix bug with `resolveTo` in splat routes ([#11045](https://github.com/remix-run/react-router/pull/11045))
232 - This is a follow up to [#10983](https://github.com/remix-run/react-router/pull/10983) to handle the few other code paths using `getPathContributingMatches`
233 - This removes the `UNSAFE_getPathContributingMatches` export from `@remix-run/router` since we no longer need this in the `react-router`/`react-router-dom` layers
234- Do not revalidate unmounted fetchers when `v7_fetcherPersist` is enabled ([#11044](https://github.com/remix-run/react-router/pull/11044))
235
236## 1.12.0
237
238### Minor Changes
239
240- Add `unstable_flushSync` option to `router.navigate` and `router.fetch` to tell the React Router layer to opt-out of `React.startTransition` and into `ReactDOM.flushSync` for state updates ([#11005](https://github.com/remix-run/react-router/pull/11005))
241
242### Patch Changes
243
244- Fix `relative="path"` bug where relative path calculations started from the full location pathname, instead of from the current contextual route pathname. ([#11006](https://github.com/remix-run/react-router/pull/11006))
245
246 ```jsx
247 <Route path="/a">
248 <Route path="/b" element={<Component />}>
249 <Route path="/c" />
250 </Route>
251 </Route>;
252
253 function Component() {
254 return (
255 <>
256 {/* This is now correctly relative to /a/b, not /a/b/c */}
257 <Link to=".." relative="path" />
258 <Outlet />
259 </>
260 );
261 }
262 ```
263
264## 1.11.0
265
266### Minor Changes
267
268- Add a new `future.v7_fetcherPersist` flag to the `@remix-run/router` to change the persistence behavior of fetchers when `router.deleteFetcher` is called. Instead of being immediately cleaned up, fetchers will persist until they return to an `idle` state ([RFC](https://github.com/remix-run/remix/discussions/7698)) ([#10962](https://github.com/remix-run/react-router/pull/10962))
269
270 - This is sort of a long-standing bug fix as the `useFetchers()` API was always supposed to only reflect **in-flight** fetcher information for pending/optimistic UI -- it was not intended to reflect fetcher data or hang onto fetchers after they returned to an `idle` state
271 - Keep an eye out for the following specific behavioral changes when opting into this flag and check your app for compatibility:
272 - Fetchers that complete _while still mounted_ will no longer appear in `useFetchers()`. They served effectively no purpose in there since you can access the data via `useFetcher().data`).
273 - Fetchers that previously unmounted _while in-flight_ will not be immediately aborted and will instead be cleaned up once they return to an `idle` state. They will remain exposed via `useFetchers` while in-flight so you can still access pending/optimistic data after unmount.
274
275- When `v7_fetcherPersist` is enabled, the router now performs ref-counting on fetcher keys via `getFetcher`/`deleteFetcher` so it knows when a given fetcher is totally unmounted from the UI ([#10977](https://github.com/remix-run/react-router/pull/10977))
276
277 - Once a fetcher has been totally unmounted, we can ignore post-processing of a persisted fetcher result such as a redirect or an error
278 - The router will also pass a new `deletedFetchers` array to the subscriber callbacks so that the UI layer can remove associated fetcher data
279
280- Add support for optional path segments in `matchPath` ([#10768](https://github.com/remix-run/react-router/pull/10768))
281
282### Patch Changes
283
284- Fix `router.getFetcher`/`router.deleteFetcher` type definitions which incorrectly specified `key` as an optional parameter ([#10960](https://github.com/remix-run/react-router/pull/10960))
285
286## 1.10.0
287
288### Minor Changes
289
290- Add experimental support for the [View Transitions API](https://developer.mozilla.org/en-US/docs/Web/API/ViewTransition) by allowing users to opt-into view transitions on navigations via the new `unstable_viewTransition` option to `router.navigate` ([#10916](https://github.com/remix-run/react-router/pull/10916))
291
292### Patch Changes
293
294- Allow 404 detection to leverage root route error boundary if path contains a URL segment ([#10852](https://github.com/remix-run/react-router/pull/10852))
295- Fix `ErrorResponse` type to avoid leaking internal field ([#10876](https://github.com/remix-run/react-router/pull/10876))
296
297## 1.9.0
298
299### Minor Changes
300
301- In order to move towards stricter TypeScript support in the future, we're aiming to replace current usages of `any` with `unknown` on exposed typings for user-provided data. To do this in Remix v2 without introducing breaking changes in React Router v6, we have added generics to a number of shared types. These continue to default to `any` in React Router and are overridden with `unknown` in Remix. In React Router v7 we plan to move these to `unknown` as a breaking change. ([#10843](https://github.com/remix-run/react-router/pull/10843))
302 - `Location` now accepts a generic for the `location.state` value
303 - `ActionFunctionArgs`/`ActionFunction`/`LoaderFunctionArgs`/`LoaderFunction` now accept a generic for the `context` parameter (only used in SSR usages via `createStaticHandler`)
304 - The return type of `useMatches` (now exported as `UIMatch`) accepts generics for `match.data` and `match.handle` - both of which were already set to `unknown`
305- Move the `@private` class export `ErrorResponse` to an `UNSAFE_ErrorResponseImpl` export since it is an implementation detail and there should be no construction of `ErrorResponse` instances in userland. This frees us up to export a `type ErrorResponse` which correlates to an instance of the class via `InstanceType`. Userland code should only ever be using `ErrorResponse` as a type and should be type-narrowing via `isRouteErrorResponse`. ([#10811](https://github.com/remix-run/react-router/pull/10811))
306- Export `ShouldRevalidateFunctionArgs` interface ([#10797](https://github.com/remix-run/react-router/pull/10797))
307- Removed private/internal APIs only required for the Remix v1 backwards compatibility layer and no longer needed in Remix v2 (`_isFetchActionRedirect`, `_hasFetcherDoneAnything`) ([#10715](https://github.com/remix-run/react-router/pull/10715))
308
309### Patch Changes
310
311- Add method/url to error message on aborted `query`/`queryRoute` calls ([#10793](https://github.com/remix-run/react-router/pull/10793))
312- Fix a race-condition with loader/action-thrown errors on `route.lazy` routes ([#10778](https://github.com/remix-run/react-router/pull/10778))
313- Fix type for `actionResult` on the arguments object passed to `shouldRevalidate` ([#10779](https://github.com/remix-run/react-router/pull/10779))
314
315## 1.8.0
316
317### Minor Changes
318
319- Add's a new `redirectDocument()` function which allows users to specify that a redirect from a `loader`/`action` should trigger a document reload (via `window.location`) instead of attempting to navigate to the redirected location via React Router ([#10705](https://github.com/remix-run/react-router/pull/10705))
320
321### Patch Changes
322
323- Fix an issue in `queryRoute` that was not always identifying thrown `Response` instances ([#10717](https://github.com/remix-run/react-router/pull/10717))
324- Ensure hash history always includes a leading slash on hash pathnames ([#10753](https://github.com/remix-run/react-router/pull/10753))
325
326## 1.7.2
327
328### Patch Changes
329
330- Trigger an error if a `defer` promise resolves/rejects with `undefined` in order to match the behavior of loaders and actions which must return a value or `null` ([#10690](https://github.com/remix-run/react-router/pull/10690))
331- Properly handle fetcher redirects interrupted by normal navigations ([#10674](https://github.com/remix-run/react-router/pull/10674), [#10709](https://github.com/remix-run/react-router/pull/10709))
332- Initial-load fetchers should not automatically revalidate on GET navigations ([#10688](https://github.com/remix-run/react-router/pull/10688))
333- Enhance the return type of `Route.lazy` to prohibit returning an empty object ([#10634](https://github.com/remix-run/react-router/pull/10634))
334
335## 1.7.1
336
337### Patch Changes
338
339- Fix issues with reused blockers on subsequent navigations ([#10656](https://github.com/remix-run/react-router/pull/10656))
340
341## 1.7.0
342
343### Minor Changes
344
345- Add support for `application/json` and `text/plain` encodings for `router.navigate`/`router.fetch` submissions. To leverage these encodings, pass your data in a `body` parameter and specify the desired `formEncType`: ([#10413](https://github.com/remix-run/react-router/pull/10413))
346
347 ```js
348 // By default, the encoding is "application/x-www-form-urlencoded"
349 router.navigate("/", {
350 formMethod: "post",
351 body: { key: "value" },
352 });
353
354 async function action({ request }) {
355 // await request.formData() => FormData instance with entry [key=value]
356 }
357 ```
358
359 ```js
360 // Pass `formEncType` to opt-into a different encoding (json)
361 router.navigate("/", {
362 formMethod: "post",
363 formEncType: "application/json",
364 body: { key: "value" },
365 });
366
367 async function action({ request }) {
368 // await request.json() => { key: "value" }
369 }
370 ```
371
372 ```js
373 // Pass `formEncType` to opt-into a different encoding (text)
374 router.navigate("/", {
375 formMethod: "post",
376 formEncType: "text/plain",
377 body: "Text submission",
378 });
379
380 async function action({ request }) {
381 // await request.text() => "Text submission"
382 }
383 ```
384
385### Patch Changes
386
387- Call `window.history.pushState/replaceState` before updating React Router state (instead of after) so that `window.location` matches `useLocation` during synchronous React 17 rendering ([#10448](https://github.com/remix-run/react-router/pull/10448))
388 - ⚠️ However, generally apps should not be relying on `window.location` and should always reference `useLocation` when possible, as `window.location` will not be in sync 100% of the time (due to `popstate` events, concurrent mode, etc.)
389- Strip `basename` from the `location` provided to `<ScrollRestoration getKey>` to match the `useLocation` behavior ([#10550](https://github.com/remix-run/react-router/pull/10550))
390- Avoid calling `shouldRevalidate` for fetchers that have not yet completed a data load ([#10623](https://github.com/remix-run/react-router/pull/10623))
391- Fix `unstable_useBlocker` key issues in `StrictMode` ([#10573](https://github.com/remix-run/react-router/pull/10573))
392- Upgrade `typescript` to 5.1 ([#10581](https://github.com/remix-run/react-router/pull/10581))
393
394## 1.6.3
395
396### Patch Changes
397
398- Allow fetcher revalidations to complete if submitting fetcher is deleted ([#10535](https://github.com/remix-run/react-router/pull/10535))
399- Re-throw `DOMException` (`DataCloneError`) when attempting to perform a `PUSH` navigation with non-serializable state. ([#10427](https://github.com/remix-run/react-router/pull/10427))
400- Ensure revalidations happen when hash is present ([#10516](https://github.com/remix-run/react-router/pull/10516))
401- upgrade jest and jsdom ([#10453](https://github.com/remix-run/react-router/pull/10453))
402
403## 1.6.2
404
405### Patch Changes
406
407- Fix HMR-driven error boundaries by properly reconstructing new routes and `manifest` in `\_internalSetRoutes` ([#10437](https://github.com/remix-run/react-router/pull/10437))
408- Fix bug where initial data load would not kick off when hash is present ([#10493](https://github.com/remix-run/react-router/pull/10493))
409
410## 1.6.1
411
412### Patch Changes
413
414- Fix `basename` handling when navigating without a path ([#10433](https://github.com/remix-run/react-router/pull/10433))
415- "Same hash" navigations no longer re-run loaders to match browser behavior (i.e. `/path#hash -> /path#hash`) ([#10408](https://github.com/remix-run/react-router/pull/10408))
416
417## 1.6.0
418
419### Minor Changes
420
421- Enable relative routing in the `@remix-run/router` when providing a source route ID from which the path is relative to: ([#10336](https://github.com/remix-run/react-router/pull/10336))
422
423 - Example: `router.navigate("../path", { fromRouteId: "some-route" })`.
424 - This also applies to `router.fetch` which already receives a source route ID
425
426- Introduce a new `@remix-run/router` `future.v7_prependBasename` flag to enable `basename` prefixing to all paths coming into `router.navigate` and `router.fetch`.
427
428 - Previously the `basename` was prepended in the React Router layer, but now that relative routing is being handled by the router we need prepend the `basename` _after_ resolving any relative paths
429 - This also enables `basename` support in `useFetcher` as well
430
431### Patch Changes
432
433- Enhance `LoaderFunction`/`ActionFunction` return type to prevent `undefined` from being a valid return value ([#10267](https://github.com/remix-run/react-router/pull/10267))
434- Ensure proper 404 error on `fetcher.load` call to a route without a `loader` ([#10345](https://github.com/remix-run/react-router/pull/10345))
435- Deprecate the `createRouter` `detectErrorBoundary` option in favor of the new `mapRouteProperties` option for converting a framework-agnostic route to a framework-aware route. This allows us to set more than just the `hasErrorBoundary` property during route pre-processing, and is now used for mapping `Component -> element` and `ErrorBoundary -> errorElement` in `react-router`. ([#10287](https://github.com/remix-run/react-router/pull/10287))
436- Fixed a bug where fetchers were incorrectly attempting to revalidate on search params changes or routing to the same URL (using the same logic for route `loader` revalidations). However, since fetchers have a static href, they should only revalidate on `action` submissions or `router.revalidate` calls. ([#10344](https://github.com/remix-run/react-router/pull/10344))
437- Decouple `AbortController` usage between revalidating fetchers and the thing that triggered them such that the unmount/deletion of a revalidating fetcher doesn't impact the ongoing triggering navigation/revalidation ([#10271](https://github.com/remix-run/react-router/pull/10271))
438
439## 1.5.0
440
441### Minor Changes
442
443- Added support for [**Future Flags**](https://reactrouter.com/en/main/guides/api-development-strategy) in React Router. The first flag being introduced is `future.v7_normalizeFormMethod` which will normalize the exposed `useNavigation()/useFetcher()` `formMethod` fields as uppercase HTTP methods to align with the `fetch()` behavior. ([#10207](https://github.com/remix-run/react-router/pull/10207))
444
445 - When `future.v7_normalizeFormMethod === false` (default v6 behavior),
446 - `useNavigation().formMethod` is lowercase
447 - `useFetcher().formMethod` is lowercase
448 - When `future.v7_normalizeFormMethod === true`:
449 - `useNavigation().formMethod` is uppercase
450 - `useFetcher().formMethod` is uppercase
451
452### Patch Changes
453
454- Provide fetcher submission to `shouldRevalidate` if the fetcher action redirects ([#10208](https://github.com/remix-run/react-router/pull/10208))
455- Properly handle `lazy()` errors during router initialization ([#10201](https://github.com/remix-run/react-router/pull/10201))
456- Remove `instanceof` check for `DeferredData` to be resilient to ESM/CJS boundaries in SSR bundling scenarios ([#10247](https://github.com/remix-run/react-router/pull/10247))
457- Update to latest `@remix-run/web-fetch@4.3.3` ([#10216](https://github.com/remix-run/react-router/pull/10216))
458
459## 1.4.0
460
461### Minor Changes
462
463- **Introducing Lazy Route Modules!** ([#10045](https://github.com/remix-run/react-router/pull/10045))
464
465 In order to keep your application bundles small and support code-splitting of your routes, we've introduced a new `lazy()` route property. This is an async function that resolves the non-route-matching portions of your route definition (`loader`, `action`, `element`/`Component`, `errorElement`/`ErrorBoundary`, `shouldRevalidate`, `handle`).
466
467 Lazy routes are resolved on initial load and during the `loading` or `submitting` phase of a navigation or fetcher call. You cannot lazily define route-matching properties (`path`, `index`, `children`) since we only execute your lazy route functions after we've matched known routes.
468
469 Your `lazy` functions will typically return the result of a dynamic import.
470
471 ```jsx
472 // In this example, we assume most folks land on the homepage so we include that
473 // in our critical-path bundle, but then we lazily load modules for /a and /b so
474 // they don't load until the user navigates to those routes
475 let routes = createRoutesFromElements(
476 <Route path="/" element={<Layout />}>
477 <Route index element={<Home />} />
478 <Route path="a" lazy={() => import("./a")} />
479 <Route path="b" lazy={() => import("./b")} />
480 </Route>
481 );
482 ```
483
484 Then in your lazy route modules, export the properties you want defined for the route:
485
486 ```jsx
487 export async function loader({ request }) {
488 let data = await fetchData(request);
489 return json(data);
490 }
491
492 // Export a `Component` directly instead of needing to create a React Element from it
493 export function Component() {
494 let data = useLoaderData();
495
496 return (
497 <>
498 <h1>You made it!</h1>
499 <p>{data}</p>
500 </>
501 );
502 }
503
504 // Export an `ErrorBoundary` directly instead of needing to create a React Element from it
505 export function ErrorBoundary() {
506 let error = useRouteError();
507 return isRouteErrorResponse(error) ? (
508 <h1>
509 {error.status} {error.statusText}
510 </h1>
511 ) : (
512 <h1>{error.message || error}</h1>
513 );
514 }
515 ```
516
517 An example of this in action can be found in the [`examples/lazy-loading-router-provider`](https://github.com/remix-run/react-router/tree/main/examples/lazy-loading-router-provider) directory of the repository.
518
519 🙌 Huge thanks to @rossipedia for the [Initial Proposal](https://github.com/remix-run/react-router/discussions/9826) and [POC Implementation](https://github.com/remix-run/react-router/pull/9830).
520
521### Patch Changes
522
523- Fix `generatePath` incorrectly applying parameters in some cases ([#10078](https://github.com/remix-run/react-router/pull/10078))
524
525## 1.3.3
526
527### Patch Changes
528
529- Correctly perform a hard redirect for same-origin absolute URLs outside of the router `basename` ([#10076](https://github.com/remix-run/react-router/pull/10076))
530- Ensure status code and headers are maintained for `defer` loader responses in `createStaticHandler`'s `query()` method ([#10077](https://github.com/remix-run/react-router/pull/10077))
531- Change `invariant` to an `UNSAFE_invariant` export since it's only intended for internal use ([#10066](https://github.com/remix-run/react-router/pull/10066))
532- Add internal API for custom HMR implementations ([#9996](https://github.com/remix-run/react-router/pull/9996))
533
534## 1.3.2
535
536### Patch Changes
537
538- Remove inaccurate console warning for POP navigations and update active blocker logic ([#10030](https://github.com/remix-run/react-router/pull/10030))
539- Only check for differing origin on absolute URL redirects ([#10033](https://github.com/remix-run/react-router/pull/10033))
540
541## 1.3.1
542
543### Patch Changes
544
545- Fixes 2 separate issues for revalidating fetcher `shouldRevalidate` calls ([#9948](https://github.com/remix-run/react-router/pull/9948))
546 - The `shouldRevalidate` function was only being called for _explicit_ revalidation scenarios (after a mutation, manual `useRevalidator` call, or an `X-Remix-Revalidate` header used for cookie setting in Remix). It was not properly being called on _implicit_ revalidation scenarios that also apply to navigation `loader` revalidation, such as a change in search params or clicking a link for the page we're already on. It's now correctly called in those additional scenarios.
547 - The parameters being passed were incorrect and inconsistent with one another since the `current*`/`next*` parameters reflected the static `fetcher.load` URL (and thus were identical). Instead, they should have reflected the the navigation that triggered the revalidation (as the `form*` parameters did). These parameters now correctly reflect the triggering navigation.
548- Respect `preventScrollReset` on `<fetcher.Form>` ([#9963](https://github.com/remix-run/react-router/pull/9963))
549- Do not short circuit on hash change only mutation submissions ([#9944](https://github.com/remix-run/react-router/pull/9944))
550- Remove `instanceof` check from `isRouteErrorResponse` to avoid bundling issues on the server ([#9930](https://github.com/remix-run/react-router/pull/9930))
551- Fix navigation for hash routers on manual URL changes ([#9980](https://github.com/remix-run/react-router/pull/9980))
552- Detect when a `defer` call only contains critical data and remove the `AbortController` ([#9965](https://github.com/remix-run/react-router/pull/9965))
553- Send the name as the value when url-encoding `File` `FormData` entries ([#9867](https://github.com/remix-run/react-router/pull/9867))
554
555## 1.3.0
556
557### Minor Changes
558
559- Added support for navigation blocking APIs ([#9709](https://github.com/remix-run/react-router/pull/9709))
560- Expose deferred information from `createStaticHandler` ([#9760](https://github.com/remix-run/react-router/pull/9760))
561
562### Patch Changes
563
564- Improved absolute redirect url detection in actions/loaders ([#9829](https://github.com/remix-run/react-router/pull/9829))
565- Fix URL creation with memory histories ([#9814](https://github.com/remix-run/react-router/pull/9814))
566- Fix `generatePath` when optional params are present ([#9764](https://github.com/remix-run/react-router/pull/9764))
567- Fix scroll reset if a submission redirects ([#9886](https://github.com/remix-run/react-router/pull/9886))
568- Fix 404 bug with same-origin absolute redirects ([#9913](https://github.com/remix-run/react-router/pull/9913))
569- Support `OPTIONS` requests in `staticHandler.queryRoute` ([#9914](https://github.com/remix-run/react-router/pull/9914))
570
571## 1.2.1
572
573### Patch Changes
574
575- Include submission info in `shouldRevalidate` on action redirects ([#9777](https://github.com/remix-run/react-router/pull/9777), [#9782](https://github.com/remix-run/react-router/pull/9782))
576- Reset `actionData` on action redirect to current location ([#9772](https://github.com/remix-run/react-router/pull/9772))
577
578## 1.2.0
579
580### Minor Changes
581
582- Remove `unstable_` prefix from `createStaticHandler`/`createStaticRouter`/`StaticRouterProvider` ([#9738](https://github.com/remix-run/react-router/pull/9738))
583
584### Patch Changes
585
586- Fix explicit `replace` on submissions and `PUSH` on submission to new paths ([#9734](https://github.com/remix-run/react-router/pull/9734))
587- Fix a few bugs where loader/action data wasn't properly cleared on errors ([#9735](https://github.com/remix-run/react-router/pull/9735))
588- Prevent `useLoaderData` usage in `errorElement` ([#9735](https://github.com/remix-run/react-router/pull/9735))
589- Skip initial scroll restoration for SSR apps with `hydrationData` ([#9664](https://github.com/remix-run/react-router/pull/9664))
590
591## 1.1.0
592
593This release introduces support for [Optional Route Segments](https://github.com/remix-run/react-router/issues/9546). Now, adding a `?` to the end of any path segment will make that entire segment optional. This works for both static segments and dynamic parameters.
594
595**Optional Params Examples**
596
597- Path `lang?/about` will match:
598 - `/:lang/about`
599 - `/about`
600- Path `/multistep/:widget1?/widget2?/widget3?` will match:
601 - `/multistep`
602 - `/multistep/:widget1`
603 - `/multistep/:widget1/:widget2`
604 - `/multistep/:widget1/:widget2/:widget3`
605
606**Optional Static Segment Example**
607
608- Path `/home?` will match:
609 - `/`
610 - `/home`
611- Path `/fr?/about` will match:
612 - `/about`
613 - `/fr/about`
614
615### Minor Changes
616
617- Allows optional routes and optional static segments ([#9650](https://github.com/remix-run/react-router/pull/9650))
618
619### Patch Changes
620
621- Stop incorrectly matching on partial named parameters, i.e. `<Route path="prefix-:param">`, to align with how splat parameters work. If you were previously relying on this behavior then it's recommended to extract the static portion of the path at the `useParams` call site: ([#9506](https://github.com/remix-run/react-router/pull/9506))
622
623```jsx
624// Old behavior at URL /prefix-123
625<Route path="prefix-:id" element={<Comp /> }>
626
627function Comp() {
628 let params = useParams(); // { id: '123' }
629 let id = params.id; // "123"
630 ...
631}
632
633// New behavior at URL /prefix-123
634<Route path=":id" element={<Comp /> }>
635
636function Comp() {
637 let params = useParams(); // { id: 'prefix-123' }
638 let id = params.id.replace(/^prefix-/, ''); // "123"
639 ...
640}
641```
642
643- Persist `headers` on `loader` `request`'s after SSR document `action` request ([#9721](https://github.com/remix-run/react-router/pull/9721))
644- Fix requests sent to revalidating loaders so they reflect a GET request ([#9660](https://github.com/remix-run/react-router/pull/9660))
645- Fix issue with deeply nested optional segments ([#9727](https://github.com/remix-run/react-router/pull/9727))
646- GET forms now expose a submission on the loading navigation ([#9695](https://github.com/remix-run/react-router/pull/9695))
647- Fix error boundary tracking for multiple errors bubbling to the same boundary ([#9702](https://github.com/remix-run/react-router/pull/9702))
648
649## 1.0.5
650
651### Patch Changes
652
653- Fix requests sent to revalidating loaders so they reflect a `GET` request ([#9680](https://github.com/remix-run/react-router/pull/9680))
654- Remove `instanceof Response` checks in favor of `isResponse` ([#9690](https://github.com/remix-run/react-router/pull/9690))
655- Fix `URL` creation in Cloudflare Pages or other non-browser-environments ([#9682](https://github.com/remix-run/react-router/pull/9682), [#9689](https://github.com/remix-run/react-router/pull/9689))
656- Add `requestContext` support to static handler `query`/`queryRoute` ([#9696](https://github.com/remix-run/react-router/pull/9696))
657 - Note that the unstable API of `queryRoute(path, routeId)` has been changed to `queryRoute(path, { routeId, requestContext })`
658
659## 1.0.4
660
661### Patch Changes
662
663- Throw an error if an `action`/`loader` function returns `undefined` as revalidations need to know whether the loader has previously been executed. `undefined` also causes issues during SSR stringification for hydration. You should always ensure you `loader`/`action` returns a value, and you may return `null` if you don't wish to return anything. ([#9511](https://github.com/remix-run/react-router/pull/9511))
664- Properly handle redirects to external domains ([#9590](https://github.com/remix-run/react-router/pull/9590), [#9654](https://github.com/remix-run/react-router/pull/9654))
665- Preserve the HTTP method on 307/308 redirects ([#9597](https://github.com/remix-run/react-router/pull/9597))
666- Support `basename` in static data routers ([#9591](https://github.com/remix-run/react-router/pull/9591))
667- Enhanced `ErrorResponse` bodies to contain more descriptive text in internal 403/404/405 scenarios
668
669## 1.0.3
670
671### Patch Changes
672
673- Fix hrefs generated when using `createHashRouter` ([#9409](https://github.com/remix-run/react-router/pull/9409))
674- fix encoding/matching issues with special chars ([#9477](https://github.com/remix-run/react-router/pull/9477), [#9496](https://github.com/remix-run/react-router/pull/9496))
675- Support `basename` and relative routing in `loader`/`action` redirects ([#9447](https://github.com/remix-run/react-router/pull/9447))
676- Ignore pathless layout routes when looking for proper submission `action` function ([#9455](https://github.com/remix-run/react-router/pull/9455))
677- properly support `index` routes with a `path` in `useResolvedPath` ([#9486](https://github.com/remix-run/react-router/pull/9486))
678- Add UMD build for `@remix-run/router` ([#9446](https://github.com/remix-run/react-router/pull/9446))
679- fix `createURL` in local file execution in Firefox ([#9464](https://github.com/remix-run/react-router/pull/9464))
680- Updates to `unstable_createStaticHandler` for incorporating into Remix ([#9482](https://github.com/remix-run/react-router/pull/9482), [#9465](https://github.com/remix-run/react-router/pull/9465))
681
682## 1.0.2
683
684### Patch Changes
685
686- Reset `actionData` after a successful action redirect ([#9334](https://github.com/remix-run/react-router/pull/9334))
687- Update `matchPath` to avoid false positives on dash-separated segments ([#9300](https://github.com/remix-run/react-router/pull/9300))
688- If an index route has children, it will result in a runtime error. We have strengthened our `RouteObject`/`RouteProps` types to surface the error in TypeScript. ([#9366](https://github.com/remix-run/react-router/pull/9366))
689
690## 1.0.1
691
692### Patch Changes
693
694- Preserve state from `initialEntries` ([#9288](https://github.com/remix-run/react-router/pull/9288))
695- Preserve `?index` for fetcher get submissions to index routes ([#9312](https://github.com/remix-run/react-router/pull/9312))
696
697## 1.0.0
698
699This is the first stable release of `@remix-run/router`, which provides all the underlying routing and data loading/mutation logic for `react-router`. You should _not_ be using this package directly unless you are authoring a routing library similar to `react-router`.
700
701For an overview of the features provided by `react-router`, we recommend you go check out the [docs](https://reactrouter.com), especially the [feature overview](https://reactrouter.com/start/overview) and the [tutorial](https://reactrouter.com/start/tutorial).
702
703For an overview of the features provided by `@remix-run/router`, please check out the [`README`](./README.md).
Note: See TracBrowser for help on using the repository browser.