Skip to content

Commit ed17fcd

Browse files
chore: Update version for release (#10601)
* chore: Update version for release * Update changelogs --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: Matt Brophy <[email protected]>
1 parent 9f1ae18 commit ed17fcd

File tree

11 files changed

+25
-90
lines changed

11 files changed

+25
-90
lines changed

.changeset/pre.json

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

.changeset/start-transition-minification.md

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

.changeset/v7-start-transition.md

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

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

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

3-
## 6.13.0-pre.1
3+
## 6.13.0
44

55
### Patch Changes
66

77
- Updated dependencies:
8-
9-
10-
11-
## 6.12.2-pre.0
12-
13-
### Patch Changes
14-
15-
- Updated dependencies:
16-
17-
8+
9+
1810

1911
## 6.12.1
2012

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.13.0-pre.1",
3+
"version": "6.13.0",
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.13.0-pre.1"
27+
"react-router": "6.13.0"
2828
},
2929
"peerDependencies": {
3030
"react": ">=16.8",

packages/react-router-dom/CHANGELOG.md

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

3-
## 6.13.0-pre.1
3+
## 6.13.0
44

55
### Minor Changes
66

7-
- Move [`React.startTransition`](https://react.dev/reference/react/startTransition) behind a [future flag](https://reactrouter.com/en/main/guides/api-development-strategy) to avoid issues with existing incompatible `Suspense` usages. We recommend folks adopting this flag to be better compatible with React concurrent mode, but if you run into issues you can continue without the use of `startTransition` until v7. Issues usually boils down to creating net-new promises during the render cycle, so if you run into issues you should either lift your promise creation out of the render cycle or put it behind a `useMemo`. ([#10596](https://github.com/remix-run/react-router/pull/10596))
7+
- Move [`React.startTransition`](https://react.dev/reference/react/startTransition) usage behind a [future flag](https://reactrouter.com/en/main/guides/api-development-strategy) to avoid issues with existing incompatible `Suspense` usages. We recommend folks adopting this flag to be better compatible with React concurrent mode, but if you run into issues you can continue without the use of `startTransition` until v7. Issues usually boils down to creating net-new promises during the render cycle, so if you run into issues you should either lift your promise creation out of the render cycle or put it behind a `useMemo`. ([#10596](https://github.com/remix-run/react-router/pull/10596))
88

99
Existing behavior will no longer include `React.startTransition`:
1010

@@ -28,19 +28,15 @@
2828

2929
### Patch Changes
3030

31+
- Work around webpack/terser `React.startTransition` minification bug in production mode ([#10588](https://github.com/remix-run/react-router/pull/10588))
3132
- Updated dependencies:
32-
33-
34-
## 6.12.2-pre.0
35-
36-
### Patch Changes
37-
38-
- Work around webpack/terser `React.startTransition` minification bug in production mode ([`2f79bcef`](https://github.com/remix-run/react-router/commit/2f79bcef5f396943cf95d0d23fbd67df9b8e17a6))
39-
- Updated dependencies:
40-
33+
4134

4235
## 6.12.1
4336

37+
> **Warning**
38+
> Please use version `6.13.0` or later instead of `6.12.1`. This version suffers from a `webpack`/`terser` minification issue resulting in invalid minified code in your resulting production bundles which can cause issues in your application. See [#10579](https://github.com/remix-run/react-router/issues/10579) for more details.
39+
4440
### Patch Changes
4541

4642
- Adjust feature detection of `React.startTransition` to fix webpack + react 17 compilation error ([#10569](https://github.com/remix-run/react-router/pull/10569))

packages/react-router-dom/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",
3-
"version": "6.13.0-pre.1",
3+
"version": "6.13.0",
44
"description": "Declarative routing for React web applications",
55
"keywords": [
66
"react",
@@ -24,7 +24,7 @@
2424
"types": "./dist/index.d.ts",
2525
"dependencies": {
2626
"@remix-run/router": "1.6.3",
27-
"react-router": "6.13.0-pre.1"
27+
"react-router": "6.13.0"
2828
},
2929
"devDependencies": {
3030
"react": "^18.2.0",

packages/react-router-native/CHANGELOG.md

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

3-
## 6.13.0-pre.1
3+
## 6.13.0
44

55
### Patch Changes
66

77
- Updated dependencies:
8-
9-
10-
## 6.12.2-pre.0
11-
12-
### Patch Changes
13-
14-
- Updated dependencies:
15-
8+
169

1710
## 6.12.1
1811

packages/react-router-native/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-native",
3-
"version": "6.13.0-pre.1",
3+
"version": "6.13.0",
44
"description": "Declarative routing for React Native applications",
55
"keywords": [
66
"react",
@@ -22,7 +22,7 @@
2222
"types": "./dist/index.d.ts",
2323
"dependencies": {
2424
"@ungap/url-search-params": "^0.1.4",
25-
"react-router": "6.13.0-pre.1"
25+
"react-router": "6.13.0"
2626
},
2727
"devDependencies": {
2828
"react": "^18.2.0",

packages/react-router/CHANGELOG.md

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

3-
## 6.13.0-pre.1
3+
## 6.13.0
44

55
### Minor Changes
66

7-
- Move [`React.startTransition`](https://react.dev/reference/react/startTransition) behind a [future flag](https://reactrouter.com/en/main/guides/api-development-strategy) to avoid issues with existing incompatible `Suspense` usages. We recommend folks adopting this flag to be better compatible with React concurrent mode, but if you run into issues you can continue without the use of `startTransition` until v7. Issues usually boils down to creating net-new promises during the render cycle, so if you run into issues you should either lift your promise creation out of the render cycle or put it behind a `useMemo`. ([#10596](https://github.com/remix-run/react-router/pull/10596))
7+
- Move [`React.startTransition`](https://react.dev/reference/react/startTransition) usage behind a [future flag](https://reactrouter.com/en/main/guides/api-development-strategy) to avoid issues with existing incompatible `Suspense` usages. We recommend folks adopting this flag to be better compatible with React concurrent mode, but if you run into issues you can continue without the use of `startTransition` until v7. Issues usually boils down to creating net-new promises during the render cycle, so if you run into issues you should either lift your promise creation out of the render cycle or put it behind a `useMemo`. ([#10596](https://github.com/remix-run/react-router/pull/10596))
88

99
Existing behavior will no longer include `React.startTransition`:
1010

@@ -26,14 +26,15 @@
2626
<RouterProvider router={router} future={{ v7_startTransition: true }}/>
2727
```
2828

29-
## 6.12.2-pre.0
30-
3129
### Patch Changes
3230

33-
- Work around webpack/terser `React.startTransition` minification bug in production mode ([`2f79bcef`](https://github.com/remix-run/react-router/commit/2f79bcef5f396943cf95d0d23fbd67df9b8e17a6))
31+
- Work around webpack/terser `React.startTransition` minification bug in production mode ([#10588](https://github.com/remix-run/react-router/pull/10588))
3432

3533
## 6.12.1
3634

35+
> **Warning**
36+
> Please use version `6.13.0` or later instead of `6.12.1`. This version suffers from a `webpack`/`terser` minification issue resulting in invalid minified code in your resulting production bundles which can cause issues in your application. See [#10579](https://github.com/remix-run/react-router/issues/10579) for more details.
37+
3738
### Patch Changes
3839

3940
- Adjust feature detection of `React.startTransition` to fix webpack + react 17 compilation error ([#10569](https://github.com/remix-run/react-router/pull/10569))

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

0 commit comments

Comments
 (0)