Skip to content

Commit 610ce6e

Browse files
committed
Merge branch 'release-next'
2 parents 06d198c + 6c0bbb1 commit 610ce6e

29 files changed

+1594
-826
lines changed

package.json

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,15 @@
3232
"jest": {
3333
"projects": [
3434
"<rootDir>/packages/*"
35+
],
36+
"reporters": [
37+
"default"
3538
]
3639
},
3740
"resolutions": {
3841
"@types/react": "^18.0.0",
39-
"@types/react-dom": "^18.0.0"
42+
"@types/react-dom": "^18.0.0",
43+
"jsdom": "22.0.0"
4044
},
4145
"dependencies": {
4246
"@ampproject/filesize": "^4.3.0",
@@ -108,16 +112,16 @@
108112
"none": "45 kB"
109113
},
110114
"packages/react-router/dist/react-router.production.min.js": {
111-
"none": "13.3 kB"
115+
"none": "13.4 kB"
112116
},
113117
"packages/react-router/dist/umd/react-router.production.min.js": {
114-
"none": "15.6 kB"
118+
"none": "15.8 kB"
115119
},
116120
"packages/react-router-dom/dist/react-router-dom.production.min.js": {
117-
"none": "11.8 kB"
121+
"none": "12.0 kB"
118122
},
119123
"packages/react-router-dom/dist/umd/react-router-dom.production.min.js": {
120-
"none": "17.7 kB"
124+
"none": "18.0 kB"
121125
}
122126
}
123127
}

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

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

3+
## 6.12.0
4+
5+
### Patch Changes
6+
7+
- Updated dependencies:
8+
9+
10+
311
## 6.11.2
412

513
### Patch Changes

packages/react-router-dom-v5-compat/jest.config.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,4 @@ module.exports = {
2121
"^react-router$": "<rootDir>/../react-router/index.ts",
2222
"^react-router-dom-v5-compat$": "<rootDir>/index.ts",
2323
},
24-
reporters: ["default"],
2524
};

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.11.2",
3+
"version": "6.12.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.11.2"
27+
"react-router": "6.12.0"
2828
},
2929
"peerDependencies": {
3030
"react": ">=16.8",

packages/react-router-dom/CHANGELOG.md

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

3+
## 6.12.0
4+
5+
### Minor Changes
6+
7+
- Wrap internal router state updates with `React.startTransition` if it exists ([#10438](https://github.com/remix-run/react-router/pull/10438))
8+
9+
### Patch Changes
10+
11+
- Re-throw `DOMException` (`DataCloneError`) when attempting to perform a `PUSH` navigation with non-serializable state. ([#10427](https://github.com/remix-run/react-router/pull/10427))
12+
- Updated dependencies:
13+
- `@remix-run/[email protected]`
14+
15+
316
## 6.11.2
417

518
### Patch Changes
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import * as React from "react";
2+
3+
export default function LazyComponent() {
4+
return <h1>Lazy</h1>;
5+
}

0 commit comments

Comments
 (0)