Skip to content

Commit cde8139

Browse files
chore: Update version for release (pre) (#12112)
1 parent 2367bfd commit cde8139

File tree

13 files changed

+45
-6
lines changed

13 files changed

+45
-6
lines changed

‎.changeset/pre.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
"happy-grapes-fry",
1616
"itchy-shoes-sort",
1717
"nasty-queens-leave",
18+
"shy-chicken-talk",
1819
"silly-walls-sit",
1920
"soft-maps-fix",
2021
"stabilize-flush-sync",

‎.changeset/shy-chicken-talk.md

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

5-
Expose errors thown from `patchRoutesOnNavigation` directly to `useRouteError` instead of wrapping them in a 400 `ErrorResponse` instance
5+
Expose errors thrown from `patchRoutesOnNavigation` directly to `useRouteError` instead of wrapping them in a 400 `ErrorResponse` instance

‎CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -253,6 +253,7 @@ This release stabilizes a handful of "unstable" APIs in preparation for the pend
253253
- This was originally implemented as an optimization but it proved to be a bit too limiting
254254
- If you need this optimization you can implement your own cache inside `patchRoutesOnNavigation`
255255
- Fix types for `RouteObject` within `PatchRoutesOnNavigationFunction`'s `patch` method so it doesn't expect agnostic route objects passed to `patch` ([#11967](https://github.com/remix-run/react-router/pull/11967))
256+
- Expose errors thrown from `patchRoutesOnNavigation` directly to `useRouteError` instead of wrapping them in a 400 `ErrorResponse` instance ([#12111](https://github.com/remix-run/react-router/pull/12111))
256257

257258
**Full Changelog**: [`v6.26.2...v6.27.0`](https://github.com/remix-run/react-router/compare/react-router@6.26.2...react-router@6.27.0)
258259

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

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

3+
## 6.27.0-pre.1
4+
5+
### Patch Changes
6+
7+
- Updated dependencies:
8+
- `@remix-run/router@1.20.0-pre.1`
9+
- `react-router@6.27.0-pre.1`
10+
- `react-router-dom@6.27.0-pre.1`
11+
312
## 6.27.0-pre.0
413

514
### Patch Changes

‎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.27.0-pre.0",
3+
"version": "6.27.0-pre.1",
44
"description": "Migration path to React Router v6 from v4/5",
55
"keywords": [
66
"react",

‎packages/react-router-dom/CHANGELOG.md

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

3+
## 6.27.0-pre.1
4+
5+
### Patch Changes
6+
7+
- Updated dependencies:
8+
- `@remix-run/router@1.20.0-pre.1`
9+
- `react-router@6.27.0-pre.1`
10+
311
## 6.27.0-pre.0
412

513
### Minor Changes

‎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.27.0-pre.0",
3+
"version": "6.27.0-pre.1",
44
"description": "Declarative routing for React web applications",
55
"keywords": [
66
"react",

‎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.27.0-pre.1
4+
5+
### Patch Changes
6+
7+
- Updated dependencies:
8+
- `react-router@6.27.0-pre.1`
9+
310
## 6.27.0-pre.0
411

512
### Patch Changes

‎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.27.0-pre.0",
3+
"version": "6.27.0-pre.1",
44
"description": "Declarative routing for React Native applications",
55
"keywords": [
66
"react",

‎packages/react-router/CHANGELOG.md

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

3+
## 6.27.0-pre.1
4+
5+
### Patch Changes
6+
7+
- Updated dependencies:
8+
- `@remix-run/router@1.20.0-pre.1`
9+
310
## 6.27.0-pre.0
411

512
### Minor Changes

‎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.27.0-pre.0",
3+
"version": "6.27.0-pre.1",
44
"description": "Declarative routing for React",
55
"keywords": [
66
"react",

‎packages/router/CHANGELOG.md

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

3+
## 1.20.0-pre.1
4+
5+
### Patch Changes
6+
7+
- Expose errors thrown from `patchRoutesOnNavigation` directly to `useRouteError` instead of wrapping them in a 400 `ErrorResponse` instance ([#12111](https://github.com/remix-run/react-router/pull/12111))
8+
39
## 1.20.0-pre.0
410

511
### Minor Changes

‎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.20.0-pre.0",
3+
"version": "1.20.0-pre.1",
44
"description": "Nested/Data-driven/Framework-agnostic Routing",
55
"keywords": [
66
"remix",

0 commit comments

Comments
 (0)