Skip to content

Commit d0ca0ce

Browse files
committed
update changelogs
1 parent 4eb12b7 commit d0ca0ce

File tree

2 files changed

+52
-2
lines changed

2 files changed

+52
-2
lines changed

CHANGELOG.md

Lines changed: 51 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,10 @@ We manage release notes in this file instead of the paginated Github Releases Pa
3131
- [Minor Changes](#minor-changes)
3232
- [Patch Changes](#patch-changes)
3333
- [Changes by Package](#changes-by-package)
34-
- [**Full Changelog**: `v6.28.0...v7.0.0`](#full-changelog-v6280v700)
3534
- [v6.28.0](#v6280)
3635
- [What's Changed](#whats-changed)
3736
- [Minor Changes](#minor-changes-1)
3837
- [Patch Changes](#patch-changes-1)
39-
- [\<\<\<\<\<\<\< HEAD](#-head)
4038
- [v6.27.0](#v6270)
4139
- [What's Changed](#whats-changed-1)
4240
- [Stabilized APIs](#stabilized-apis)
@@ -248,6 +246,57 @@ Date: YYYY-MM-DD
248246
**Full Changelog**: [`v7.X.Y...v7.X.Y`](https://github.com/remix-run/react-router/compare/[email protected]@7.X.Y)
249247
-->
250248

249+
## v7.0.2
250+
251+
Date: 2024-12-02
252+
253+
### Patch Changes
254+
255+
- Temporarily only use one build in export map so packages can have a peer dependency on react router ([#12437](https://github.com/remix-run/react-router/pull/12437))
256+
- Support `moduleResolution` `Node16` and `NodeNext` ([#12440](https://github.com/remix-run/react-router/pull/12440))
257+
- Generate wide `matches` and `params` types for child routes ([#12397](https://github.com/remix-run/react-router/pull/12397))
258+
259+
At runtime, `matches` includes child route matches and `params` include child route path parameters.
260+
But previously, we only generated types for parent routes and the current route in `matches` and `params`.
261+
To align our generated types more closely to the runtime behavior, we now generate more permissive, wider types when accessing child route information.
262+
263+
### Changes by Package
264+
265+
- [`react-router`](https://github.com/remix-run/react-router/blob/react-router%407.0.2/packages/react-router/CHANGELOG.md#702)
266+
- [`@react-router/architect`](https://github.com/remix-run/react-router/blob/react-router%407.0.2/packages/react-router-architect/CHANGELOG.md#702)
267+
- [`@react-router/cloudflare`](https://github.com/remix-run/react-router/blob/react-router%407.0.2/packages/react-router-cloudflare/CHANGELOG.md#702)
268+
- [`@react-router/dev`](https://github.com/remix-run/react-router/blob/react-router%407.0.2/packages/react-router-dev/CHANGELOG.md#702)
269+
- [`@react-router/express`](https://github.com/remix-run/react-router/blob/react-router%407.0.2/packages/react-router-express/CHANGELOG.md#702)
270+
- [`@react-router/fs-routes`](https://github.com/remix-run/react-router/blob/react-router%407.0.2/packages/react-router-fs-routes/CHANGELOG.md#702)
271+
- [`@react-router/node`](https://github.com/remix-run/react-router/blob/react-router%407.0.2/packages/react-router-node/CHANGELOG.md#702)
272+
- [`@react-router/remix-config-routes-adapter`](https://github.com/remix-run/react-router/blob/react-router%407.0.2/packages/react-router-remix-config-routes-adapter/CHANGELOG.md#702)
273+
- [`@react-router/serve`](https://github.com/remix-run/react-router/blob/react-router%407.0.2/packages/react-router-serve/CHANGELOG.md#702)
274+
275+
**Full Changelog**: [`v7.0.1...v7.0.2`](https://github.com/remix-run/react-router/compare/[email protected]@7.0.2)
276+
277+
## v7.0.1
278+
279+
Date: 2024-12-02
280+
281+
### Patch Changes
282+
283+
- Ensure typegen file watcher is cleaned up when Vite dev server restarts ([#12331](https://github.com/remix-run/react-router/pull/12331))
284+
- Pass route error to ErrorBoundary as a prop ([#12338](https://github.com/remix-run/react-router/pull/12338))
285+
286+
### Changes by Package
287+
288+
- [`react-router`](https://github.com/remix-run/react-router/blob/react-router%407.0.1/packages/react-router/CHANGELOG.md#701)
289+
- [`@react-router/architect`](https://github.com/remix-run/react-router/blob/react-router%407.0.1/packages/react-router-architect/CHANGELOG.md#701)
290+
- [`@react-router/cloudflare`](https://github.com/remix-run/react-router/blob/react-router%407.0.1/packages/react-router-cloudflare/CHANGELOG.md#701)
291+
- [`@react-router/dev`](https://github.com/remix-run/react-router/blob/react-router%407.0.1/packages/react-router-dev/CHANGELOG.md#701)
292+
- [`@react-router/express`](https://github.com/remix-run/react-router/blob/react-router%407.0.1/packages/react-router-express/CHANGELOG.md#701)
293+
- [`@react-router/fs-routes`](https://github.com/remix-run/react-router/blob/react-router%407.0.1/packages/react-router-fs-routes/CHANGELOG.md#701)
294+
- [`@react-router/node`](https://github.com/remix-run/react-router/blob/react-router%407.0.1/packages/react-router-node/CHANGELOG.md#701)
295+
- [`@react-router/remix-config-routes-adapter`](https://github.com/remix-run/react-router/blob/react-router%407.0.1/packages/react-router-remix-config-routes-adapter/CHANGELOG.md#701)
296+
- [`@react-router/serve`](https://github.com/remix-run/react-router/blob/react-router%407.0.1/packages/react-router-serve/CHANGELOG.md#701)
297+
298+
**Full Changelog**: [`v7.0.0...v7.0.1`](https://github.com/remix-run/react-router/compare/[email protected]@7.0.1)
299+
251300
## v7.0.0
252301

253302
Date: 2024-11-21

packages/react-router-dev/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020

2121
### Patch Changes
2222

23+
- Pass route error to ErrorBoundary as a prop ([#12338](https://github.com/remix-run/react-router/pull/12338))
2324
- Ensure typegen file watcher is cleaned up when Vite dev server restarts ([#12331](https://github.com/remix-run/react-router/pull/12331))
2425
- Updated dependencies:
2526

0 commit comments

Comments
 (0)