Skip to content

Commit ad520bc

Browse files
chore: Update version for release
1 parent 7c49c84 commit ad520bc

File tree

17 files changed

+63
-53
lines changed

17 files changed

+63
-53
lines changed

.changeset/aborted-query-error-message.md

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

.changeset/encode-uri-ssr.md

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

.changeset/error-response-type.md

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

.changeset/export-should-revalidate-args.md

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

.changeset/remix-v2-prep.md

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

.changeset/route-lazy-race.md

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

.changeset/should-revalidate-action-result-type.md

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

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

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

3+
## 6.15.1
4+
5+
### Patch Changes
6+
7+
- Move the `@private` class export `ErrorResponse` to an `UNSAFE_ErrorResponseImpl` export since it is an implementation detail and there should be no construction of `ErrorResponse` instances in userland. This frees us up to export a `type ErrorResponse` which correlates to an instance of the class via `InstanceType`. Userland code should only ever be using `ErrorResponse` as a type and should be type-narrowing via `isRouteErrorResponse`. ([#10811](https://github.com/remix-run/react-router/pull/10811))
8+
- Export `ShouldRevalidateFunctionArgs` interface ([#10797](https://github.com/remix-run/react-router/pull/10797))
9+
- Updated dependencies:
10+
11+
12+
313
## 6.15.0
414

515
### 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.15.0",
3+
"version": "6.15.1",
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.15.0"
27+
"react-router": "6.15.1"
2828
},
2929
"peerDependencies": {
3030
"react": ">=16.8",

packages/react-router-dom/CHANGELOG.md

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

3+
## 6.15.1
4+
5+
### Patch Changes
6+
7+
- Proeprly encode rendered URIs in server rendering to avoid hydration errors ([#10769](https://github.com/remix-run/react-router/pull/10769))
8+
- Move the `@private` class export `ErrorResponse` to an `UNSAFE_ErrorResponseImpl` export since it is an implementation detail and there should be no construction of `ErrorResponse` instances in userland. This frees us up to export a `type ErrorResponse` which correlates to an instance of the class via `InstanceType`. Userland code should only ever be using `ErrorResponse` as a type and should be type-narrowing via `isRouteErrorResponse`. ([#10811](https://github.com/remix-run/react-router/pull/10811))
9+
- Export `ShouldRevalidateFunctionArgs` interface ([#10797](https://github.com/remix-run/react-router/pull/10797))
10+
- Updated dependencies:
11+
- `@remix-run/[email protected]`
12+
13+
314
## 6.15.0
415

516
### Minor Changes

0 commit comments

Comments
 (0)