Skip to content

Commit eeb86ab

Browse files
chore: Update version for release (#11968)
* chore: Update version for release * Update changelog --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: Matt Brophy <matt@brophy.org>
1 parent a018177 commit eeb86ab

File tree

15 files changed

+18
-66
lines changed

15 files changed

+18
-66
lines changed

.changeset/four-books-bow.md

Lines changed: 0 additions & 14 deletions
This file was deleted.

.changeset/hot-insects-rescue.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/pre.json

Lines changed: 0 additions & 17 deletions
This file was deleted.

.changeset/serious-news-kick.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/soft-socks-remain.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

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

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

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

55
### Patch Changes
66

77
- Updated dependencies:
8-
- `@remix-run/router@1.19.2-pre.0`
9-
- `react-router@6.26.2-pre.0`
10-
- `react-router-dom@6.26.2-pre.0`
8+
- `@remix-run/router@1.19.2`
9+
- `react-router@6.26.2`
10+
- `react-router-dom@6.26.2`
1111

1212
## 6.26.1
1313

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-router-dom-v5-compat",
3-
"version": "6.26.2-pre.0",
3+
"version": "6.26.2",
44
"description": "Migration path to React Router v6 from v4/5",
55
"keywords": [
66
"react",

packages/react-router-dom/CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# `react-router-dom`
22

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

55
### Patch Changes
66

77
- Updated dependencies:
8-
- `@remix-run/router@1.19.2-pre.0`
9-
- `react-router@6.26.2-pre.0`
8+
- `@remix-run/router@1.19.2`
9+
- `react-router@6.26.2`
1010

1111
## 6.26.1
1212

packages/react-router-dom/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-router-dom",
3-
"version": "6.26.2-pre.0",
3+
"version": "6.26.2",
44
"description": "Declarative routing for React web applications",
55
"keywords": [
66
"react",

packages/react-router-native/CHANGELOG.md

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

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

55
### Patch Changes
66

77
- Updated dependencies:
8-
- `react-router@6.26.2-pre.0`
8+
- `react-router@6.26.2`
99

1010
## 6.26.1
1111

packages/react-router-native/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-router-native",
3-
"version": "6.26.2-pre.0",
3+
"version": "6.26.2",
44
"description": "Declarative routing for React Native applications",
55
"keywords": [
66
"react",

packages/react-router/CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# `react-router`
22

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

55
### Patch Changes
66

77
- Updated dependencies:
8-
- `@remix-run/router@1.19.2-pre.0`
8+
- `@remix-run/router@1.19.2`
99

1010
## 6.26.1
1111

packages/react-router/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-router",
3-
"version": "6.26.2-pre.0",
3+
"version": "6.26.2",
44
"description": "Declarative routing for React",
55
"keywords": [
66
"react",

packages/router/CHANGELOG.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
# `@remix-run/router`
22

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

55
### Patch Changes
66

77
- Update the `unstable_dataStrategy` API to allow for more advanced implementations ([#11943](https://github.com/remix-run/react-router/pull/11943))
8-
98
- Rename `unstable_HandlerResult` to `unstable_DataStrategyResult`
109
- The return signature has changed from a parallel array of `unstable_DataStrategyResult[]` (parallel to `matches`) to a key/value object of `routeId => unstable_DataStrategyResult`
1110
- This allows you to more easily decide to opt-into or out-of revalidating data that may not have been revalidated by default (via `match.shouldLoad`)
@@ -14,9 +13,8 @@
1413
- You should now return/throw a result from your `handlerOverride` instead of returning a `DataStrategyResult`
1514
- If you are aggregating the results of `match.resolve()` into a final results object you should not need to think about the `DataStrategyResult` type
1615
- If you are manually filling your results object from within your `handlerOverride`, then you will need to assign a `DataStrategyResult` as the value so React Router knows if it's a successful execution or an error.
17-
1816
- Preserve view transition through redirects ([#11925](https://github.com/remix-run/react-router/pull/11925))
19-
- Fix blocker usage when `blocker.proceed` is called quickly/syncronously ([#11930](https://github.com/remix-run/react-router/pull/11930))
17+
- Fix blocker usage when `blocker.proceed` is called quickly/synchronously ([#11930](https://github.com/remix-run/react-router/pull/11930))
2018
- Preserve pending view transitions through a router revalidation call ([#11917](https://github.com/remix-run/react-router/pull/11917))
2119

2220
## 1.19.1

packages/router/package.json

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

0 commit comments

Comments
 (0)