Skip to content

Commit dcf0c2a

Browse files
chore: Update version for release (#11035)
* chore: Update version for release * Update changelogs --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: Matt Brophy <[email protected]>
1 parent 4934947 commit dcf0c2a

22 files changed

+25
-120
lines changed

.changeset/changing-fetcher-key.md

-5
This file was deleted.

.changeset/fix-action-data.md

-5
This file was deleted.

.changeset/fix-relative-path.md

-23
This file was deleted.

.changeset/fix-resolve-path.md

-7
This file was deleted.

.changeset/flush-sync-router.md

-5
This file was deleted.

.changeset/flush-sync.md

-6
This file was deleted.

.changeset/form-action-index.md

-5
This file was deleted.

.changeset/itchy-items-hang.md

-5
This file was deleted.

.changeset/pre.json

-23
This file was deleted.

.changeset/stabilize-use-blocker.md

-5
This file was deleted.

.changeset/update-useprompt-args.md

-5
This file was deleted.

CHANGELOG.md

+4-5
Original file line numberDiff line numberDiff line change
@@ -168,17 +168,16 @@ function handleClick() {
168168
- Add `unstable_flushSync` option to `useNavigate`/`useSubmit`/`fetcher.load`/`fetcher.submit` to opt-out of `React.startTransition` and into `ReactDOM.flushSync` for state updates ([#11005](https://github.com/remix-run/react-router/pull/11005))
169169
- Remove the `unstable_` prefix from the [`useBlocker`](https://reactrouter.com/en/main/hooks/use-blocker) hook as it's been in use for enough time that we are confident in the API ([#10991](https://github.com/remix-run/react-router/pull/10991))
170170
- We do not plan to remove the prefix from `unstable_usePrompt` due to differences in how browsers handle `window.confirm` that prevent React Router from guaranteeing consistent/correct behavior
171-
- Fix types so `unstable_usePrompt` can accept a `BlockerFunction` in addition to a `boolean` ([#10991](https://github.com/remix-run/react-router/pull/10991))
172-
- `@remix-run/router`: Add `unstable_flushSync` option to `router.navigate` and `router.fetch` to tell the React Router layer to opt-out of `React.startTransition` and into `ReactDOM.flushSync` for state updates ([#11005](https://github.com/remix-run/react-router/pull/11005))
173171

174172
### Patch Changes
175173

176-
- Fix issue where a changing fetcher `key` in a `useFetcher` that remains mounted wasn't getting picked up ([#11009](https://github.com/remix-run/react-router/pull/11009))
177-
- Fix `useFormAction` which was incorrectly inheriting the `?index` query param from child route `action` submissions ([#11025](https://github.com/remix-run/react-router/pull/11025))
178174
- Fix `useActionData` so it returns proper contextual action data and not _any_ action data in the tree ([#11023](https://github.com/remix-run/react-router/pull/11023))
179-
- Fix `NavLink` `active` logic when `to` location has a trailing slash ([#10734](https://github.com/remix-run/react-router/pull/10734))
180175
- Fix bug in `useResolvedPath` that would cause `useResolvedPath(".")` in a splat route to lose the splat portion of the URL path. ([#10983](https://github.com/remix-run/react-router/pull/10983))
181176
- ⚠️ This fixes a quite long-standing bug specifically for `"."` paths inside a splat route which incorrectly dropped the splat portion of the URL. If you are relative routing via `"."` inside a splat route in your application you should double check that your logic is not relying on this buggy behavior and update accordingly.
177+
- Fix issue where a changing fetcher `key` in a `useFetcher` that remains mounted wasn't getting picked up ([#11009](https://github.com/remix-run/react-router/pull/11009))
178+
- Fix `useFormAction` which was incorrectly inheriting the `?index` query param from child route `action` submissions ([#11025](https://github.com/remix-run/react-router/pull/11025))
179+
- Fix `NavLink` `active` logic when `to` location has a trailing slash ([#10734](https://github.com/remix-run/react-router/pull/10734))
180+
- Fix types so `unstable_usePrompt` can accept a `BlockerFunction` in addition to a `boolean` ([#10991](https://github.com/remix-run/react-router/pull/10991))
182181
- Fix `relative="path"` bug where relative path calculations started from the full location pathname, instead of from the current contextual route pathname. ([#11006](https://github.com/remix-run/react-router/pull/11006))
183182

184183
```jsx

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# `react-router-dom-v5-compat`
22

3-
## 6.19.0-pre.0
3+
## 6.19.0
44

55
### Patch Changes
66

77
- Updated dependencies:
8-
9-
8+
9+
1010

1111
## 6.18.0
1212

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-router-dom-v5-compat",
3-
"version": "6.19.0-pre.0",
3+
"version": "6.19.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.19.0-pre.0"
27+
"react-router": "6.19.0"
2828
},
2929
"peerDependencies": {
3030
"react": ">=16.8",

packages/react-router-dom/CHANGELOG.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# `react-router-dom`
22

3-
## 6.19.0-pre.0
3+
## 6.19.0
44

55
### Minor Changes
66

@@ -13,8 +13,8 @@
1313
- Fix `useFormAction` which was incorrectly inheriting the `?index` query param from child route `action` submissions ([#11025](https://github.com/remix-run/react-router/pull/11025))
1414
- Fix `NavLink` `active` logic when `to` location has a trailing slash ([#10734](https://github.com/remix-run/react-router/pull/10734))
1515
- Updated dependencies:
16-
17-
- `@remix-run/[email protected]-pre.0`
16+
17+
- `@remix-run/[email protected]`
1818

1919
## 6.18.0
2020

packages/react-router-dom/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-router-dom",
3-
"version": "6.19.0-pre.0",
3+
"version": "6.19.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.12.0-pre.0",
27-
"react-router": "6.19.0-pre.0"
26+
"@remix-run/router": "1.12.0",
27+
"react-router": "6.19.0"
2828
},
2929
"devDependencies": {
3030
"react": "^18.2.0",

packages/react-router-native/CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# `react-router-native`
22

3-
## 6.19.0-pre.0
3+
## 6.19.0
44

55
### Patch Changes
66

77
- Updated dependencies:
8-
8+
99

1010
## 6.18.0
1111

packages/react-router-native/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-router-native",
3-
"version": "6.19.0-pre.0",
3+
"version": "6.19.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.2.2",
25-
"react-router": "6.19.0-pre.0"
25+
"react-router": "6.19.0"
2626
},
2727
"devDependencies": {
2828
"react": "^18.2.0",

packages/react-router/CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# `react-router`
22

3-
## 6.19.0-pre.0
3+
## 6.19.0
44

55
### Minor Changes
66

@@ -15,7 +15,7 @@
1515
- ⚠️ This fixes a quite long-standing bug specifically for `"."` paths inside a splat route which incorrectly dropped the splat portion of the URL. If you are relative routing via `"."` inside a splat route in your application you should double check that your logic is not relying on this buggy behavior and update accordingly.
1616

1717
- Updated dependencies:
18-
- `@remix-run/[email protected]-pre.0`
18+
- `@remix-run/[email protected]`
1919

2020
## 6.18.0
2121

packages/react-router/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-router",
3-
"version": "6.19.0-pre.0",
3+
"version": "6.19.0",
44
"description": "Declarative routing for React",
55
"keywords": [
66
"react",
@@ -23,7 +23,7 @@
2323
"module": "./dist/index.js",
2424
"types": "./dist/index.d.ts",
2525
"dependencies": {
26-
"@remix-run/router": "1.12.0-pre.0"
26+
"@remix-run/router": "1.12.0"
2727
},
2828
"devDependencies": {
2929
"react": "^18.2.0"

packages/router/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# `@remix-run/router`
22

3-
## 1.12.0-pre.0
3+
## 1.12.0
44

55
### Minor Changes
66

packages/router/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@remix-run/router",
3-
"version": "1.12.0-pre.0",
3+
"version": "1.12.0",
44
"description": "Nested/Data-driven/Framework-agnostic Routing",
55
"keywords": [
66
"remix",

0 commit comments

Comments
 (0)