react-router 6.7.0-pre.4 → 6.7.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 +5 -27
- 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 +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,39 +1,17 @@
|
|
|
1
1
|
# `react-router`
|
|
2
2
|
|
|
3
|
-
## 6.7.0
|
|
3
|
+
## 6.7.0
|
|
4
4
|
|
|
5
|
-
###
|
|
6
|
-
|
|
7
|
-
- Updated dependencies:
|
|
8
|
-
- `@remix-run/router@1.3.0-pre.3`
|
|
9
|
-
|
|
10
|
-
## 6.7.0-pre.3
|
|
11
|
-
|
|
12
|
-
### Patch Changes
|
|
13
|
-
|
|
14
|
-
- Updated dependencies:
|
|
15
|
-
- `@remix-run/router@1.3.0-pre.2`
|
|
16
|
-
|
|
17
|
-
## 6.7.0-pre.2
|
|
18
|
-
|
|
19
|
-
### Patch Changes
|
|
20
|
-
|
|
21
|
-
- update <Await> to accept ReactNode as children function return result ([#9896](https://github.com/remix-run/react-router/pull/9896))
|
|
22
|
-
|
|
23
|
-
## 6.7.0-pre.1
|
|
24
|
-
|
|
25
|
-
### Patch Changes
|
|
26
|
-
|
|
27
|
-
- Updated dependencies:
|
|
28
|
-
- `@remix-run/router@1.3.0-pre.1`
|
|
5
|
+
### Minor Changes
|
|
29
6
|
|
|
30
|
-
|
|
7
|
+
- Add `unstable_useBlocker` hook for blocking navigations within the app's location origin ([#9709](https://github.com/remix-run/react-router/pull/9709))
|
|
31
8
|
|
|
32
9
|
### Patch Changes
|
|
33
10
|
|
|
34
11
|
- Fix `generatePath` when optional params are present ([#9764](https://github.com/remix-run/react-router/pull/9764))
|
|
12
|
+
- Update `<Await>` to accept `ReactNode` as children function return result ([#9896](https://github.com/remix-run/react-router/pull/9896))
|
|
35
13
|
- Updated dependencies:
|
|
36
|
-
- `@remix-run/router@1.3.0
|
|
14
|
+
- `@remix-run/router@1.3.0`
|
|
37
15
|
|
|
38
16
|
## 6.6.2
|
|
39
17
|
|
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.7.0
|
|
3
|
+
"version": "6.7.0",
|
|
4
4
|
"description": "Declarative routing for React",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"module": "./dist/index.js",
|
|
24
24
|
"types": "./dist/index.d.ts",
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@remix-run/router": "1.3.0
|
|
26
|
+
"@remix-run/router": "1.3.0"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"react": "^18.2.0"
|