Skip to content

Commit 9b2e523

Browse files
authored
[docs][material-ui] Add supported browsers section to migration guide (#42194)
1 parent 495a710 commit 9b2e523

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

docs/data/material/migration/migration-v5/migration-v5.md

+22
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,28 @@ In the `package.json` file, change the package version from `latest` to `next`.
1414
Using `next` ensures your project always uses the latest v6 alpha release.
1515
Alternatively, you can also target and fix it to a specific version, for example, `6.0.0-alpha.0`.
1616

17+
## Supported browsers
18+
19+
The targets of the default bundle have changed in v6.
20+
21+
The exact versions will be pinned on release from the browserslist query `"> 0.5%, last 2 versions, Firefox ESR, not dead, safari >= 15.4, iOS >= 15.4"`.
22+
23+
The stable bundle supports the following minimum versions:
24+
25+
<!-- #stable-snapshot -->
26+
27+
- Chrome 109 (up from 90)
28+
- Edge 121 (up from 91)
29+
- Firefox 115 (up from 78)
30+
- Safari 15.4 in both macOS and iOS (up from 14 in macOS and 12.5 in iOS)
31+
- and more (see [.browserslistrc (`stable` entry)](https://github.com/mui/material-ui/blob/v6.0.0/.browserslistrc#L16))
32+
33+
### Removed support for IE 11
34+
35+
Support for IE 11 is completely removed, by dropping the legacy bundle and all IE 11 related code.
36+
This allows us to decrease bundle size and keep the scope manageable.
37+
If you need to support IE 11, you can use Material UI v5's [legacy bundle](https://v5.mui.com/material-ui/guides/minimizing-bundle-size/#legacy-bundle), but it won't get updates or bug fixes.
38+
1739
## Breaking changes
1840

1941
Since v6 is a new major release, it contains some changes that affect the public API.

0 commit comments

Comments
 (0)