Skip to content

Commit a51b35d

Browse files
chore: Update version for release (#12444)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent d0ca0ce commit a51b35d

File tree

26 files changed

+48
-95
lines changed

26 files changed

+48
-95
lines changed

Diff for: .changeset/blue-ears-tie.md

-5
This file was deleted.

Diff for: .changeset/curvy-readers-notice.md

-5
This file was deleted.

Diff for: .changeset/pre.json

-28
This file was deleted.

Diff for: .changeset/red-eagles-stare.md

-10
This file was deleted.

Diff for: packages/create-react-router/CHANGELOG.md

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

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

55
## 7.0.1
66

Diff for: packages/create-react-router/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "create-react-router",
3-
"version": "7.0.2-pre.0",
3+
"version": "7.0.2",
44
"description": "Create a new React Router app",
55
"homepage": "https://reactrouter.com",
66
"bugs": {

Diff for: packages/react-router-architect/CHANGELOG.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# `@react-router/architect`
22

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

55
### Patch Changes
66

77
- Updated dependencies:
8-
9-
- `@react-router/[email protected]-pre.0`
8+
9+
- `@react-router/[email protected]`
1010

1111
## 7.0.1
1212

Diff for: packages/react-router-architect/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@react-router/architect",
3-
"version": "7.0.2-pre.0",
3+
"version": "7.0.2",
44
"description": "Architect server request handler for React Router",
55
"bugs": {
66
"url": "https://github.com/remix-run/react-router/issues"

Diff for: packages/react-router-cloudflare/CHANGELOG.md

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

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

55
### Patch Changes
66

77
- Updated dependencies:
8-
8+
99

1010
## 7.0.1
1111

Diff for: packages/react-router-cloudflare/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@react-router/cloudflare",
3-
"version": "7.0.2-pre.0",
3+
"version": "7.0.2",
44
"description": "Cloudflare platform abstractions for React Router",
55
"bugs": {
66
"url": "https://github.com/remix-run/react-router/issues"

Diff for: packages/react-router-dev/CHANGELOG.md

+8-7
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,21 @@
11
# `@react-router/dev`
22

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

55
### Patch Changes
66

77
- Support `moduleResolution` `Node16` and `NodeNext` ([#12440](https://github.com/remix-run/react-router/pull/12440))
8-
- Generate wide `matches` and `params` types for child routes ([#12397](https://github.com/remix-run/react-router/pull/12397))
8+
9+
- Generate wide `matches` and `params` types for current route and child routes ([#12397](https://github.com/remix-run/react-router/pull/12397))
910

1011
At runtime, `matches` includes child route matches and `params` include child route path parameters.
11-
But previously, we only generated types for parent routes and the current route in `matches` and `params`.
12+
But previously, we only generated types for parent routes in `matches`; for `params`, we only considered the parent routes and the current route.
1213
To align our generated types more closely to the runtime behavior, we now generate more permissive, wider types when accessing child route information.
1314

1415
- Updated dependencies:
15-
16-
- `@react-router/[email protected]-pre.0`
17-
- `@react-router/[email protected]-pre.0`
16+
17+
- `@react-router/[email protected]`
18+
- `@react-router/[email protected]`
1819

1920
## 7.0.1
2021

@@ -43,7 +44,7 @@
4344
+import { cloudflareDevProxy } from "@react-router/dev/vite/cloudflare";
4445
```
4546

46-
- Remove single_fetch future flag. ([#11522](https://github.com/remix-run/react-router/pull/11522))
47+
- Remove single\_fetch future flag. ([#11522](https://github.com/remix-run/react-router/pull/11522))
4748

4849
- update minimum node version to 18 ([#11690](https://github.com/remix-run/react-router/pull/11690))
4950

Diff for: packages/react-router-dev/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@react-router/dev",
3-
"version": "7.0.2-pre.0",
3+
"version": "7.0.2",
44
"description": "Dev tools and CLI for React Router",
55
"homepage": "https://reactrouter.com",
66
"bugs": {

Diff for: packages/react-router-dom/CHANGELOG.md

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

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

55
### Patch Changes
66

77
- Updated dependencies:
8-
8+
99

1010
## 7.0.1
1111

@@ -28,7 +28,7 @@
2828

2929
- Use `createRemixRouter`/`RouterProvider` in `entry.client` instead of `RemixBrowser` ([#11469](https://github.com/remix-run/react-router/pull/11469))
3030

31-
- Remove single_fetch future flag. ([#11522](https://github.com/remix-run/react-router/pull/11522))
31+
- Remove single\_fetch future flag. ([#11522](https://github.com/remix-run/react-router/pull/11522))
3232

3333
- Remove `future.v7_startTransition` flag ([#11696](https://github.com/remix-run/react-router/pull/11696))
3434

Diff for: packages/react-router-dom/package.json

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

Diff for: packages/react-router-express/CHANGELOG.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# `@react-router/express`
22

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

55
### Patch Changes
66

77
- Updated dependencies:
8-
9-
- `@react-router/[email protected]-pre.0`
8+
9+
- `@react-router/[email protected]`
1010

1111
## 7.0.1
1212

@@ -20,7 +20,7 @@
2020

2121
### Major Changes
2222

23-
- Remove single_fetch future flag. ([#11522](https://github.com/remix-run/react-router/pull/11522))
23+
- Remove single\_fetch future flag. ([#11522](https://github.com/remix-run/react-router/pull/11522))
2424
- update minimum node version to 18 ([#11690](https://github.com/remix-run/react-router/pull/11690))
2525
- Add `exports` field to all packages ([#11675](https://github.com/remix-run/react-router/pull/11675))
2626
- node package no longer re-exports from react-router ([#11702](https://github.com/remix-run/react-router/pull/11702))

Diff for: packages/react-router-express/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@react-router/express",
3-
"version": "7.0.2-pre.0",
3+
"version": "7.0.2",
44
"description": "Express server request handler for React Router",
55
"bugs": {
66
"url": "https://github.com/remix-run/react-router/issues"

Diff for: packages/react-router-fs-routes/CHANGELOG.md

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

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

55
### Patch Changes
66

77
- Updated dependencies:
8-
- `@react-router/[email protected]-pre.0`
8+
- `@react-router/[email protected]`
99

1010
## 7.0.1
1111

Diff for: packages/react-router-fs-routes/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@react-router/fs-routes",
3-
"version": "7.0.2-pre.0",
3+
"version": "7.0.2",
44
"description": "File system routing conventions for React Router, for use within routes.ts",
55
"bugs": {
66
"url": "https://github.com/remix-run/react-router/issues"

Diff for: packages/react-router-node/CHANGELOG.md

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

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

55
### Patch Changes
66

77
- Updated dependencies:
8-
8+
99

1010
## 7.0.1
1111

@@ -18,7 +18,7 @@
1818

1919
### Major Changes
2020

21-
- Remove single_fetch future flag. ([#11522](https://github.com/remix-run/react-router/pull/11522))
21+
- Remove single\_fetch future flag. ([#11522](https://github.com/remix-run/react-router/pull/11522))
2222

2323
- For Remix consumers migrating to React Router, the `crypto` global from the [Web Crypto API](https://developer.mozilla.org/en-US/docs/Web/API/Web_Crypto_API) is now required when using cookie and session APIs. This means that the following APIs are provided from `react-router` rather than platform-specific packages: ([#11837](https://github.com/remix-run/react-router/pull/11837))
2424

Diff for: packages/react-router-node/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@react-router/node",
3-
"version": "7.0.2-pre.0",
3+
"version": "7.0.2",
44
"description": "Node.js platform abstractions for React Router",
55
"bugs": {
66
"url": "https://github.com/remix-run/react-router/issues"

Diff for: packages/react-router-remix-routes-option-adapter/CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# `@react-router/remix-config-routes-adapter`
22

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

55
### Patch Changes
66

77
- Updated dependencies:
8-
- `@react-router/[email protected]-pre.0`
8+
- `@react-router/[email protected]`
99

1010
## 7.0.1
1111

Diff for: packages/react-router-remix-routes-option-adapter/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@react-router/remix-routes-option-adapter",
3-
"version": "7.0.2-pre.0",
3+
"version": "7.0.2",
44
"description": "Adapter for Remix's \"routes\" config option, for use within routes.ts",
55
"bugs": {
66
"url": "https://github.com/remix-run/react-router/issues"

Diff for: packages/react-router-serve/CHANGELOG.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# `@react-router/serve`
22

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

55
### Patch Changes
66

77
- Updated dependencies:
8-
9-
- `@react-router/[email protected]-pre.0`
10-
- `@react-router/[email protected]-pre.0`
8+
9+
- `@react-router/[email protected]`
10+
- `@react-router/[email protected]`
1111

1212
## 7.0.1
1313

@@ -22,7 +22,7 @@
2222

2323
### Major Changes
2424

25-
- Remove single_fetch future flag. ([#11522](https://github.com/remix-run/react-router/pull/11522))
25+
- Remove single\_fetch future flag. ([#11522](https://github.com/remix-run/react-router/pull/11522))
2626
- update minimum node version to 18 ([#11690](https://github.com/remix-run/react-router/pull/11690))
2727
- Add `exports` field to all packages ([#11675](https://github.com/remix-run/react-router/pull/11675))
2828
- node package no longer re-exports from react-router ([#11702](https://github.com/remix-run/react-router/pull/11702))

Diff for: packages/react-router-serve/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@react-router/serve",
3-
"version": "7.0.2-pre.0",
3+
"version": "7.0.2",
44
"description": "Production application server for React Router",
55
"bugs": {
66
"url": "https://github.com/remix-run/react-router/issues"

Diff for: packages/react-router/CHANGELOG.md

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

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

55
### Patch Changes
66

77
- 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))
8-
- Generate wide `matches` and `params` types for child routes ([#12397](https://github.com/remix-run/react-router/pull/12397))
8+
- Generate wide `matches` and `params` types for current route and child routes ([#12397](https://github.com/remix-run/react-router/pull/12397))
99

1010
At runtime, `matches` includes child route matches and `params` include child route path parameters.
11-
But previously, we only generated types for parent routes and the current route in `matches` and `params`.
11+
But previously, we only generated types for parent routes in `matches`; for `params`, we only considered the parent routes and the current route.
1212
To align our generated types more closely to the runtime behavior, we now generate more permissive, wider types when accessing child route information.
1313

1414
## 7.0.1
@@ -30,7 +30,7 @@
3030
- Collapse `@remix-run/server-runtime` into `react-router`
3131
- Collapse `@remix-run/testing` into `react-router`
3232

33-
- Remove single_fetch future flag. ([#11522](https://github.com/remix-run/react-router/pull/11522))
33+
- Remove single\_fetch future flag. ([#11522](https://github.com/remix-run/react-router/pull/11522))
3434

3535
- Drop support for Node 16, React Router SSR now requires Node 18 or higher ([#11391](https://github.com/remix-run/react-router/pull/11391))
3636

Diff for: packages/react-router/package.json

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

0 commit comments

Comments
 (0)