react-router 6.29.0 → 6.30.0-pre-v6.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 +6 -23
- 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,22 +1,17 @@
|
|
|
1
1
|
# `react-router`
|
|
2
2
|
|
|
3
|
-
## 6.
|
|
3
|
+
## 6.30.0-pre-v6.0
|
|
4
4
|
|
|
5
5
|
### Minor Changes
|
|
6
6
|
|
|
7
|
-
-
|
|
8
|
-
|
|
9
|
-
- This can be used to abort any manifest fetches if the in-flight navigation/fetcher is aborted
|
|
7
|
+
- Add `fetcherKey` as a parameter to `patchRoutesOnNavigation` ([#13109](https://github.com/remix-run/react-router/pull/13109))
|
|
10
8
|
|
|
11
9
|
### Patch Changes
|
|
12
10
|
|
|
13
|
-
- Do not log v7 deprecation warnings in production builds ([#12794](https://github.com/remix-run/react-router/pull/12794))
|
|
14
|
-
- Limit matchRoutes optimization to client side routers ([#12881](https://github.com/remix-run/react-router/pull/12881))
|
|
15
|
-
- Optimize route matching by skipping redundant `matchRoutes` calls when possible ([#12169](https://github.com/remix-run/react-router/pull/12169))
|
|
16
11
|
- Updated dependencies:
|
|
17
|
-
- `@remix-run/router@1.
|
|
12
|
+
- `@remix-run/router@1.23.0-pre-v6.0`
|
|
18
13
|
|
|
19
|
-
## 6.29.0
|
|
14
|
+
## 6.29.0
|
|
20
15
|
|
|
21
16
|
### Minor Changes
|
|
22
17
|
|
|
@@ -26,23 +21,11 @@
|
|
|
26
21
|
|
|
27
22
|
### Patch Changes
|
|
28
23
|
|
|
29
|
-
- Updated dependencies:
|
|
30
|
-
- `@remix-run/router@1.22.0-pre-v6.1`
|
|
31
|
-
|
|
32
|
-
## 6.28.3-pre-v6.1
|
|
33
|
-
|
|
34
|
-
### Patch Changes
|
|
35
|
-
|
|
36
|
-
- Limit matchRoutes optimization to client side routers ([#12881](https://github.com/remix-run/react-router/pull/12881))
|
|
37
|
-
|
|
38
|
-
## 6.28.3-pre-v6.0
|
|
39
|
-
|
|
40
|
-
### Patch Changes
|
|
41
|
-
|
|
42
24
|
- Do not log v7 deprecation warnings in production builds ([#12794](https://github.com/remix-run/react-router/pull/12794))
|
|
25
|
+
- Limit matchRoutes optimization to client side routers ([#12881](https://github.com/remix-run/react-router/pull/12881))
|
|
43
26
|
- Optimize route matching by skipping redundant `matchRoutes` calls when possible ([#12169](https://github.com/remix-run/react-router/pull/12169))
|
|
44
27
|
- Updated dependencies:
|
|
45
|
-
- `@remix-run/router@1.
|
|
28
|
+
- `@remix-run/router@1.22.0`
|
|
46
29
|
|
|
47
30
|
## 6.28.2
|
|
48
31
|
|
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.
|
|
3
|
+
"version": "6.30.0-pre-v6.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.
|
|
26
|
+
"@remix-run/router": "1.23.0-pre-v6.0"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"react": "^18.2.0",
|
|
30
|
-
"react-router-dom": "6.
|
|
30
|
+
"react-router-dom": "6.30.0-pre-v6.0"
|
|
31
31
|
},
|
|
32
32
|
"peerDependencies": {
|
|
33
33
|
"react": ">=16.8"
|