Legend:
- Unmodified
- Added
- Removed
-
imaps-frontend/node_modules/react-router-dom/CHANGELOG.md
rd565449 r0c6b92a 1 1 # `react-router-dom` 2 3 ## 6.28.0 4 5 ### Minor Changes 6 7 - - Log deprecation warnings for v7 flags ([#11750](https://github.com/remix-run/react-router/pull/11750)) 8 - Add deprecation warnings to `json`/`defer` in favor of returning raw objects 9 - These methods will be removed in React Router v7 10 11 ### Patch Changes 12 13 - Update JSDoc URLs for new website structure (add /v6/ segment) ([#12141](https://github.com/remix-run/react-router/pull/12141)) 14 - Updated dependencies: 15 - `react-router@6.28.0` 16 - `@remix-run/router@1.21.0` 17 18 ## 6.27.0 19 20 ### Minor Changes 21 22 - Stabilize `unstable_patchRoutesOnNavigation` ([#11973](https://github.com/remix-run/react-router/pull/11973)) 23 - Add new `PatchRoutesOnNavigationFunctionArgs` type for convenience ([#11967](https://github.com/remix-run/react-router/pull/11967)) 24 - Stabilize `unstable_dataStrategy` ([#11974](https://github.com/remix-run/react-router/pull/11974)) 25 - Stabilize the `unstable_flushSync` option for navigations and fetchers ([#11989](https://github.com/remix-run/react-router/pull/11989)) 26 - Stabilize the `unstable_viewTransition` option for navigations and the corresponding `unstable_useViewTransitionState` hook ([#11989](https://github.com/remix-run/react-router/pull/11989)) 27 28 ### Patch Changes 29 30 - Fix bug when submitting to the current contextual route (parent route with an index child) when an `?index` param already exists from a prior submission ([#12003](https://github.com/remix-run/react-router/pull/12003)) 31 32 - Fix `useFormAction` bug - when removing `?index` param it would not keep other non-Remix `index` params ([#12003](https://github.com/remix-run/react-router/pull/12003)) 33 34 - Fix types for `RouteObject` within `PatchRoutesOnNavigationFunction`'s `patch` method so it doesn't expect agnostic route objects passed to `patch` ([#11967](https://github.com/remix-run/react-router/pull/11967)) 35 36 - Updated dependencies: 37 - `react-router@6.27.0` 38 - `@remix-run/router@1.20.0` 39 40 ## 6.26.2 41 42 ### Patch Changes 43 44 - Updated dependencies: 45 - `@remix-run/router@1.19.2` 46 - `react-router@6.26.2` 47 48 ## 6.26.1 49 50 ### Patch Changes 51 52 - Rename `unstable_patchRoutesOnMiss` to `unstable_patchRoutesOnNavigation` to match new behavior ([#11888](https://github.com/remix-run/react-router/pull/11888)) 53 - Updated dependencies: 54 - `@remix-run/router@1.19.1` 55 - `react-router@6.26.1` 2 56 3 57 ## 6.26.0 … … 55 109 - Add support for Lazy Route Discovery (a.k.a. Fog of War) ([#11626](https://github.com/remix-run/react-router/pull/11626)) 56 110 - RFC: <https://github.com/remix-run/react-router/discussions/11113> 57 - `unstable_patchRoutesOnMiss` docs: <https://reactrouter.com/ en/main/routers/create-browser-router>111 - `unstable_patchRoutesOnMiss` docs: <https://reactrouter.com/v6/routers/create-browser-router> 58 112 59 113 ### Patch Changes … … 521 575 ### Minor Changes 522 576 523 - Move [`React.startTransition`](https://react.dev/reference/react/startTransition) usage behind a [future flag](https://reactrouter.com/ en/main/guides/api-development-strategy) to avoid issues with existing incompatible `Suspense` usages. We recommend folks adopting this flag to be better compatible with React concurrent mode, but if you run into issues you can continue without the use of `startTransition` until v7. Issues usually boils down to creating net-new promises during the render cycle, so if you run into issues you should either lift your promise creation out of the render cycle or put it behind a `useMemo`. ([#10596](https://github.com/remix-run/react-router/pull/10596))577 - Move [`React.startTransition`](https://react.dev/reference/react/startTransition) usage behind a [future flag](https://reactrouter.com/v6/guides/api-development-strategy) to avoid issues with existing incompatible `Suspense` usages. We recommend folks adopting this flag to be better compatible with React concurrent mode, but if you run into issues you can continue without the use of `startTransition` until v7. Issues usually boils down to creating net-new promises during the render cycle, so if you run into issues you should either lift your promise creation out of the render cycle or put it behind a `useMemo`. ([#10596](https://github.com/remix-run/react-router/pull/10596)) 524 578 525 579 Existing behavior will no longer include `React.startTransition`: … … 612 666 ### Minor Changes 613 667 614 - 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))668 - Added support for [**Future Flags**](https://reactrouter.com/v6/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)) 615 669 616 670 - When `future.v7_normalizeFormMethod === false` (default v6 behavior), … … 886 940 ## 6.4.0 887 941 888 Whoa this is a big one! `6.4.0` brings all the data loading and mutation APIs over from Remix. Here's a quick high level overview, but it's recommended 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).942 Whoa this is a big one! `6.4.0` brings all the data loading and mutation APIs over from Remix. Here's a quick high level overview, but it's recommended you go check out the [docs](https://reactrouter.com), especially the [feature overview](https://reactrouter.com/en/6.4.0/start/overview) and the [tutorial](https://reactrouter.com/en/6.4.0/start/tutorial). 889 943 890 944 **New APIs**
Note:
See TracChangeset
for help on using the changeset viewer.