react-router 0.0.0-experimental-e56aa53bc → 0.0.0-experimental-aecfb0db1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (48) hide show
  1. package/CHANGELOG.md +19 -0
  2. package/dist/development/{chunk-RMWJZNG5.mjs → chunk-RXFCVJK2.mjs} +1132 -1142
  3. package/dist/development/dom-export.d.mts +2 -2
  4. package/dist/development/dom-export.d.ts +1 -2
  5. package/dist/development/dom-export.js +34 -6129
  6. package/dist/development/dom-export.mjs +6 -3
  7. package/dist/development/index.d.mts +13 -68
  8. package/dist/development/index.d.ts +1873 -198
  9. package/dist/development/index.js +1132 -1151
  10. package/dist/development/index.mjs +2 -19
  11. package/dist/development/lib/types/route-module.d.mts +1 -2
  12. package/dist/development/lib/types/route-module.d.ts +1 -2
  13. package/dist/development/lib/types/route-module.js +1 -1
  14. package/dist/development/lib/types/route-module.mjs +1 -1
  15. package/dist/development/{fog-of-war-DrUCUQQ-.d.ts → lib-BJBhVBWN.d.mts} +136 -178
  16. package/dist/{production/route-data-BIYebJr3.d.mts → development/route-data-BmDen1H_.d.mts} +12 -12
  17. package/dist/development/{route-data-BIYebJr3.d.mts → route-data-fNWkI-4T.d.ts} +12 -12
  18. package/dist/production/{chunk-BXBFRMFA.mjs → chunk-TLRBG5AD.mjs} +1132 -1142
  19. package/dist/production/dom-export.d.mts +2 -2
  20. package/dist/production/dom-export.d.ts +1 -2
  21. package/dist/production/dom-export.js +34 -6129
  22. package/dist/production/dom-export.mjs +6 -3
  23. package/dist/production/index.d.mts +13 -68
  24. package/dist/production/index.d.ts +1873 -198
  25. package/dist/production/index.js +1132 -1151
  26. package/dist/production/index.mjs +2 -19
  27. package/dist/production/lib/types/route-module.d.mts +1 -2
  28. package/dist/production/lib/types/route-module.d.ts +1 -2
  29. package/dist/production/lib/types/route-module.js +1 -1
  30. package/dist/production/lib/types/route-module.mjs +1 -1
  31. package/dist/production/{fog-of-war-DrUCUQQ-.d.ts → lib-BJBhVBWN.d.mts} +136 -178
  32. package/dist/{development/route-data-BIYebJr3.d.ts → production/route-data-BmDen1H_.d.mts} +12 -12
  33. package/dist/production/{route-data-BIYebJr3.d.ts → route-data-fNWkI-4T.d.ts} +12 -12
  34. package/package.json +6 -35
  35. package/dist/development/data-CQbyyGzl.d.mts +0 -11
  36. package/dist/development/data-CQbyyGzl.d.ts +0 -11
  37. package/dist/development/fog-of-war-C5L_Yd5M.d.mts +0 -1778
  38. package/dist/development/rsc-export.d.mts +0 -1788
  39. package/dist/development/rsc-export.d.ts +0 -1788
  40. package/dist/development/rsc-export.js +0 -2778
  41. package/dist/development/rsc-export.mjs +0 -2743
  42. package/dist/production/data-CQbyyGzl.d.mts +0 -11
  43. package/dist/production/data-CQbyyGzl.d.ts +0 -11
  44. package/dist/production/fog-of-war-C5L_Yd5M.d.mts +0 -1778
  45. package/dist/production/rsc-export.d.mts +0 -1788
  46. package/dist/production/rsc-export.d.ts +0 -1788
  47. package/dist/production/rsc-export.js +0 -2778
  48. package/dist/production/rsc-export.mjs +0 -2743
package/CHANGELOG.md CHANGED
@@ -1,5 +1,24 @@
1
1
  # `react-router`
2
2
 
3
+ ## 7.5.3
4
+
5
+ ### Patch Changes
6
+
7
+ - Fix bug where bubbled action errors would result in `loaderData` being cleared at the handling `ErrorBoundary` route ([#13476](https://github.com/remix-run/react-router/pull/13476))
8
+ - Handle redirects from `clientLoader.hydrate` initial load executions ([#13477](https://github.com/remix-run/react-router/pull/13477))
9
+
10
+ ## 7.5.2
11
+
12
+ ### Patch Changes
13
+
14
+ - Update Single Fetch to also handle the 204 redirects used in `?_data` requests in Remix v2 ([#13364](https://github.com/remix-run/react-router/pull/13364))
15
+
16
+ - This allows applications to return a redirect on `.data` requests from outside the scope of React Router (i.e., an `express`/`hono` middleware)
17
+ - ⚠️ Please note that doing so relies on implementation details that are subject to change without a SemVer major release
18
+ - This is primarily done to ease upgrading to Single Fetch for existing Remix v2 applications, but the recommended way to handle this is redirecting from a route middleware
19
+
20
+ - Adjust approach for Prerendering/SPA Mode via headers ([#13453](https://github.com/remix-run/react-router/pull/13453))
21
+
3
22
  ## 7.5.1
4
23
 
5
24
  ### Patch Changes