react-router 6.26.0-pre.1 → 6.26.0
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.
- package/CHANGELOG.md +2 -13
- package/dist/index.js +1 -1
- package/dist/main.js +1 -1
- package/dist/react-router.development.js +1 -1
- package/dist/react-router.production.min.js +1 -1
- package/dist/umd/react-router.development.js +1 -1
- package/dist/umd/react-router.production.min.js +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,13 +1,6 @@
|
|
|
1
1
|
# `react-router`
|
|
2
2
|
|
|
3
|
-
## 6.26.0
|
|
4
|
-
|
|
5
|
-
### Patch Changes
|
|
6
|
-
|
|
7
|
-
- Updated dependencies:
|
|
8
|
-
- `@remix-run/router@1.19.0-pre.1`
|
|
9
|
-
|
|
10
|
-
## 6.26.0-pre.0
|
|
3
|
+
## 6.26.0
|
|
11
4
|
|
|
12
5
|
### Minor Changes
|
|
13
6
|
|
|
@@ -16,11 +9,9 @@
|
|
|
16
9
|
### Patch Changes
|
|
17
10
|
|
|
18
11
|
- Fix initial hydration behavior when using `future.v7_partialHydration` along with `unstable_patchRoutesOnMiss` ([#11838](https://github.com/remix-run/react-router/pull/11838))
|
|
19
|
-
|
|
20
12
|
- During initial hydration, `router.state.matches` will now include any partial matches so that we can render ancestor `HydrateFallback` components
|
|
21
|
-
|
|
22
13
|
- Updated dependencies:
|
|
23
|
-
- `@remix-run/router@1.19.0
|
|
14
|
+
- `@remix-run/router@1.19.0`
|
|
24
15
|
|
|
25
16
|
## 6.25.1
|
|
26
17
|
|
|
@@ -31,7 +22,6 @@ No significant changes to this package were made in this release. [See the repo
|
|
|
31
22
|
### Minor Changes
|
|
32
23
|
|
|
33
24
|
- Stabilize `future.unstable_skipActionErrorRevalidation` as `future.v7_skipActionErrorRevalidation` ([#11769](https://github.com/remix-run/react-router/pull/11769))
|
|
34
|
-
|
|
35
25
|
- When this flag is enabled, actions will not automatically trigger a revalidation if they return/throw a `Response` with a `4xx`/`5xx` status code
|
|
36
26
|
- You may still opt-into revalidation via `shouldRevalidate`
|
|
37
27
|
- This also changes `shouldRevalidate`'s `unstable_actionStatus` parameter to `actionStatus`
|
|
@@ -55,7 +45,6 @@ No significant changes to this package were made in this release. [See the repo
|
|
|
55
45
|
### Minor Changes
|
|
56
46
|
|
|
57
47
|
- Add support for Lazy Route Discovery (a.k.a. Fog of War) ([#11626](https://github.com/remix-run/react-router/pull/11626))
|
|
58
|
-
|
|
59
48
|
- RFC: <https://github.com/remix-run/react-router/discussions/11113>
|
|
60
49
|
- `unstable_patchRoutesOnMiss` docs: <https://reactrouter.com/en/main/routers/create-browser-router>
|
|
61
50
|
|
package/dist/index.js
CHANGED
package/dist/main.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-router",
|
|
3
|
-
"version": "6.26.0
|
|
3
|
+
"version": "6.26.0",
|
|
4
4
|
"description": "Declarative routing for React",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -23,11 +23,11 @@
|
|
|
23
23
|
"module": "./dist/index.js",
|
|
24
24
|
"types": "./dist/index.d.ts",
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@remix-run/router": "1.19.0
|
|
26
|
+
"@remix-run/router": "1.19.0"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"react": "^18.2.0",
|
|
30
|
-
"react-router-dom": "6.26.0
|
|
30
|
+
"react-router-dom": "6.26.0"
|
|
31
31
|
},
|
|
32
32
|
"peerDependencies": {
|
|
33
33
|
"react": ">=16.8"
|