Skip to content

Commit 97b5c42

Browse files
authored
chore: Update version for release (pre) (#10243)
1 parent 7924b15 commit 97b5c42

File tree

14 files changed

+95
-17
lines changed

14 files changed

+95
-17
lines changed

.changeset/fix-fragments-ids.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
"react-router": patch
33
---
44

5-
Fix route ID generation when using Fragments in `createRouteFromElements`
5+
Fix route ID generation when using Fragments in `createRoutesFromElements`

.changeset/normalize-form-method.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,11 @@
44
"@remix-run/router": minor
55
---
66

7-
Added support for [**Future Flags**][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.
7+
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.
88

9-
- When `future.v7_normalizeFormMethod === false`,
9+
- When `future.v7_normalizeFormMethod === false` (default v6 behavior),
1010
- `useNavigation().formMethod` is lowercase
1111
- `useFetcher().formMethod` is lowercase
1212
- When `future.v7_normalizeFormMethod === true`:
1313
- `useNavigation().formMethod` is uppercase
1414
- `useFetcher().formMethod` is uppercase
15-
16-
[api-development-strategy]: https://reactrouter.com/en/main/guides/api-development-strategy

.changeset/pre.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,12 @@
88
"react-router-native": "6.9.0",
99
"@remix-run/router": "1.4.0"
1010
},
11-
"changesets": []
11+
"changesets": [
12+
"fetcher-submission-revalidation",
13+
"fix-fragments-ids",
14+
"initialize-lazy-errors",
15+
"normalize-form-method",
16+
"ssr-error-boundary",
17+
"update-web-fetch"
18+
]
1219
}

.changeset/ssr-error-boundary.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
"react-router-dom": patch
33
---
44

5-
Check for `ErrorBoundary` property (not only `errorElement`) in `detectErrorBoundary`
5+
Fix `createStaticHandler` to also check for `ErrorBoundary` on routes in addition to `errorElement`

packages/react-router-dom-v5-compat/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# `react-router-dom-v5-compat`
22

3+
## 6.10.0-pre.0
4+
5+
### Patch Changes
6+
7+
- Updated dependencies:
8+
9+
10+
311
## 6.9.0
412

513
### Minor Changes

packages/react-router-dom-v5-compat/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-router-dom-v5-compat",
3-
"version": "6.9.0",
3+
"version": "6.10.0-pre.0",
44
"description": "Migration path to React Router v6 from v4/5",
55
"keywords": [
66
"react",
@@ -24,7 +24,7 @@
2424
"types": "./dist/index.d.ts",
2525
"dependencies": {
2626
"history": "^5.3.0",
27-
"react-router": "6.9.0"
27+
"react-router": "6.10.0-pre.0"
2828
},
2929
"peerDependencies": {
3030
"react": ">=16.8",

packages/react-router-dom/CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,25 @@
11
# `react-router-dom`
22

3+
## 6.10.0-pre.0
4+
5+
### Minor Changes
6+
7+
- 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))
8+
9+
- When `future.v7_normalizeFormMethod === false` (default v6 behavior),
10+
- `useNavigation().formMethod` is lowercase
11+
- `useFetcher().formMethod` is lowercase
12+
- When `future.v7_normalizeFormMethod === true`:
13+
- `useNavigation().formMethod` is uppercase
14+
- `useFetcher().formMethod` is uppercase
15+
16+
### Patch Changes
17+
18+
- Fix `createStaticHandler` to also check for `ErrorBoundary` on routes in addition to `errorElement` ([#10190](https://github.com/remix-run/react-router/pull/10190))
19+
- Updated dependencies:
20+
- `@remix-run/[email protected]`
21+
22+
323
## 6.9.0
424

525
### Minor Changes

packages/react-router-dom/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-router-dom",
3-
"version": "6.9.0",
3+
"version": "6.10.0-pre.0",
44
"description": "Declarative routing for React web applications",
55
"keywords": [
66
"react",
@@ -23,8 +23,8 @@
2323
"module": "./dist/index.js",
2424
"types": "./dist/index.d.ts",
2525
"dependencies": {
26-
"@remix-run/router": "1.4.0",
27-
"react-router": "6.9.0"
26+
"@remix-run/router": "1.5.0-pre.0",
27+
"react-router": "6.10.0-pre.0"
2828
},
2929
"devDependencies": {
3030
"react": "^18.2.0",

packages/react-router-native/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# `react-router-native`
22

3+
## 6.10.0-pre.0
4+
5+
### Patch Changes
6+
7+
- Updated dependencies:
8+
9+
310
## 6.9.0
411

512
### Minor Changes

packages/react-router-native/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-router-native",
3-
"version": "6.9.0",
3+
"version": "6.10.0-pre.0",
44
"description": "Declarative routing for React Native applications",
55
"keywords": [
66
"react",
@@ -22,7 +22,7 @@
2222
"types": "./dist/index.d.ts",
2323
"dependencies": {
2424
"@ungap/url-search-params": "^0.1.4",
25-
"react-router": "6.9.0"
25+
"react-router": "6.10.0-pre.0"
2626
},
2727
"devDependencies": {
2828
"react": "^18.2.0",

0 commit comments

Comments
 (0)