react-router 0.0.0-experimental-cec61865 → 0.0.0-experimental-0db28b07
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 +28 -2
- 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,5 +1,31 @@
|
|
|
1
1
|
# `react-router`
|
|
2
2
|
|
|
3
|
+
## 6.10.0-pre.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies:
|
|
8
|
+
- `@remix-run/router@1.5.0-pre.1`
|
|
9
|
+
|
|
10
|
+
## 6.10.0-pre.0
|
|
11
|
+
|
|
12
|
+
### Minor Changes
|
|
13
|
+
|
|
14
|
+
- Added support for [**Future Flags**](https://reactrouter.com/en/main/guides/api-development-strategy) in React Router. The first flag being introduced is `future.v7_normalizeFormMethod` which will normalize the exposed `useNavigation()/useFetcher()` `formMethod` fields as uppercase HTTP methods to align with the `fetch()` behavior. ([#10207](https://github.com/remix-run/react-router/pull/10207))
|
|
15
|
+
|
|
16
|
+
- When `future.v7_normalizeFormMethod === false` (default v6 behavior),
|
|
17
|
+
- `useNavigation().formMethod` is lowercase
|
|
18
|
+
- `useFetcher().formMethod` is lowercase
|
|
19
|
+
- When `future.v7_normalizeFormMethod === true`:
|
|
20
|
+
- `useNavigation().formMethod` is uppercase
|
|
21
|
+
- `useFetcher().formMethod` is uppercase
|
|
22
|
+
|
|
23
|
+
### Patch Changes
|
|
24
|
+
|
|
25
|
+
- Fix route ID generation when using Fragments in `createRoutesFromElements` ([#10193](https://github.com/remix-run/react-router/pull/10193))
|
|
26
|
+
- Updated dependencies:
|
|
27
|
+
- `@remix-run/router@1.5.0-pre.0`
|
|
28
|
+
|
|
3
29
|
## 6.9.0
|
|
4
30
|
|
|
5
31
|
### Minor Changes
|
|
@@ -105,8 +131,8 @@
|
|
|
105
131
|
|
|
106
132
|
### Patch Changes
|
|
107
133
|
|
|
108
|
-
- Fix `generatePath` incorrectly applying parameters in some cases ([
|
|
109
|
-
- Improve memoization for context providers to avoid unnecessary re-renders ([
|
|
134
|
+
- Fix `generatePath` incorrectly applying parameters in some cases ([#10078](https://github.com/remix-run/react-router/pull/10078))
|
|
135
|
+
- Improve memoization for context providers to avoid unnecessary re-renders ([#9983](https://github.com/remix-run/react-router/pull/9983))
|
|
110
136
|
|
|
111
137
|
## 6.8.2
|
|
112
138
|
|
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": "0.0.0-experimental-
|
|
3
|
+
"version": "0.0.0-experimental-0db28b07",
|
|
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": "0.0.0-experimental-
|
|
26
|
+
"@remix-run/router": "0.0.0-experimental-0db28b07"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"react": "^18.2.0"
|