You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This release stabilizes the `future.unstable_skipActionErrorRevalidation` flag into [`future.v7_skipActionErrorRevalidation`](https://reactrouter.com/upgrading/future#v7_skipactionstatusrevalidation) in preparation for the upcoming React Router v7 release.
210
+
211
+
- When this flag is enabled, actions that return/throw a `4xx/5xx``Response` will not trigger a revalidation by default
212
+
- This also stabilizes `shouldRevalidate`'s `unstable_actionStatus` parameter to `actionStatus`
213
+
214
+
### Minor Changes
215
+
216
+
- Stabilize `future.unstable_skipActionErrorRevalidation` as `future.v7_skipActionErrorRevalidation` ([#11769](https://github.com/remix-run/react-router/pull/11769))
217
+
218
+
### Patch Changes
219
+
220
+
- Fix regression and properly decode paths inside `useMatch` so matches/params reflect decoded params ([#11789](https://github.com/remix-run/react-router/pull/11789))
221
+
- Fix bubbling of errors thrown from `unstable_patchRoutesOnMiss` ([#11786](https://github.com/remix-run/react-router/pull/11786))
222
+
- Fix hydration in SSR apps using `unstable_patchRoutesOnMiss` that matched a splat route on the server ([#11790](https://github.com/remix-run/react-router/pull/11790))
Copy file name to clipboardExpand all lines: packages/react-router-dom/CHANGELOG.md
+16Lines changed: 16 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,21 @@
1
1
# `react-router-dom`
2
2
3
+
## 6.25.0-pre.0
4
+
5
+
### Minor Changes
6
+
7
+
- Stabilize `future.unstable_skipActionErrorRevalidation` as `future.v7_skipActionErrorRevalidation` ([#11769](https://github.com/remix-run/react-router/pull/11769))
8
+
9
+
- When this flag is enabled, actions will not automatically trigger a revalidation if they return/throw a `Response` with a `4xx`/`5xx` status code
10
+
- You may still opt-into revalidation via `shouldRevalidate`
11
+
- This also changes `shouldRevalidate`'s `unstable_actionStatus` parameter to `actionStatus`
Copy file name to clipboardExpand all lines: packages/react-router/CHANGELOG.md
+16Lines changed: 16 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,21 @@
1
1
# `react-router`
2
2
3
+
## 6.25.0-pre.0
4
+
5
+
### Minor Changes
6
+
7
+
- Stabilize `future.unstable_skipActionErrorRevalidation` as `future.v7_skipActionErrorRevalidation` ([#11769](https://github.com/remix-run/react-router/pull/11769))
8
+
9
+
- When this flag is enabled, actions will not automatically trigger a revalidation if they return/throw a `Response` with a `4xx`/`5xx` status code
10
+
- You may still opt-into revalidation via `shouldRevalidate`
11
+
- This also changes `shouldRevalidate`'s `unstable_actionStatus` parameter to `actionStatus`
12
+
13
+
### Patch Changes
14
+
15
+
- Fix regression and properly decode paths inside `useMatch` so matches/params reflect decoded params ([#11789](https://github.com/remix-run/react-router/pull/11789))
0 commit comments