Skip to content

Commit c9a9adf

Browse files
authored
v6.0.0 (#43463)
1 parent 7ef0b10 commit c9a9adf

File tree

21 files changed

+68
-22
lines changed

21 files changed

+68
-22
lines changed

CHANGELOG.md

+46
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,51 @@
11
# [Versions](https://mui.com/versions/)
22

3+
## 6.0.0
4+
5+
<!-- generated comparing v6.0.0-rc.0..master -->
6+
7+
_Aug 27, 2024_
8+
9+
We are excited to announce the stable release of Material-UI v6 🎉, check out [the blog post](https://mui.com/blog/material-ui-v6-is-out/) to see all the updates.
10+
11+
12+
13+
- Change React.ReactElement<any,any> type from any to unknown (#43358) @sai6855
14+
- [Pagination] Update `getItemAriaLabel` page param type (#43399) @sydneyjodon-wk
15+
- [Unstable_TrapFocus] Fix `getTabbable` function return type (#42237) @KalmarLorand
16+
17+
18+
19+
- [button] Add missing customize points for span (#43436) @oliviertassinari
20+
21+
### Docs
22+
23+
- Fix broken links (#43144) @DiegoAndai
24+
- Updated mui-x roadmap links with the new project URL (#43444) @michelengelen
25+
- Update pnpm order, move to second (#42712) @ahmadnadeem6236
26+
- Fix CSS theme variables section (#43439) @siriwatknp
27+
- Add two Toolpad Core components to Material UI sidebar (#43391) @prakhargupta1
28+
- Fix licensingModel -> licenseModel @oliviertassinari
29+
- Fix Stack Overflow issue canned response @oliviertassinari
30+
- Avoid referencing MUI Core @oliviertassinari
31+
- Fix description of eslint-plugin-material-ui @oliviertassinari
32+
- [docs-infra] Polish reportBrokenLinks.js to support Base UI @oliviertassinari
33+
- [material-ui] Clarify RTL language support in localization guide (#41784) @bahmanworld
34+
- [material-ui] Refine templates theme selector (#43396) @zanivan
35+
36+
### Core
37+
38+
- Prepare for v6 stable release (#43454) @siriwatknp
39+
- [blog] Polish Upcoming changes to MUI X pricing in 2024 (#43438) @oliviertassinari
40+
- [blog] Add Material UI v6 stable release (#41932) @siriwatknp
41+
- [ci] Fix the release:changelog cmd (#43451) @mnajdova
42+
- [core] Allow `^6.0.0` for `@mui/` dependencies in `@mui/docs` (#43445) @LukasTy
43+
- [code-infra] Babel plugin to fully resolve imported paths (#43294) @Janpot
44+
- [infra] Add closing message workflow (#43450) @michelengelen
45+
- [website] Make beta chip consistent for Toolpad (#43392) @prakhargupta1
46+
47+
All contributors of this release in alphabetical order: @ahmadnadeem6236, @bahmanworld, @DiegoAndai, @Janpot, @KalmarLorand, @LukasTy, @michelengelen, @mnajdova, @oliviertassinari, @prakhargupta1, @sai6855, @siriwatknp, @sydneyjodon-wk, @zanivan
48+
349
## 6.0.0-rc.0
450

551
<!-- generated comparing v6.0.0-beta.6..next -->

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/monorepo",
3-
"version": "6.0.0-rc.0",
3+
"version": "6.0.0",
44
"private": true,
55
"scripts": {
66
"preinstall": "npx only-allow pnpm",

packages-internal/babel-plugin-resolve-imports/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/internal-babel-plugin-resolve-imports",
3-
"version": "1.0.16",
3+
"version": "1.0.17",
44
"author": "MUI Team",
55
"description": "babel plugin that resolves import specifiers to their actual output file.",
66
"main": "./index.js",
@@ -18,8 +18,8 @@
1818
"resolve": "^1.22.8"
1919
},
2020
"devDependencies": {
21-
"@types/resolve": "^1.20.6",
22-
"@types/babel__core": "^7.20.5"
21+
"@types/babel__core": "^7.20.5",
22+
"@types/resolve": "^1.20.6"
2323
},
2424
"peerDependencies": {
2525
"@babel/core": "7"

packages-internal/scripts/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/internal-scripts",
3-
"version": "1.0.17",
3+
"version": "1.0.18",
44
"author": "MUI Team",
55
"description": "Utilities supporting MUI libraries build and docs generation. This is an internal package not meant for general use.",
66
"main": "build/index.js",

packages-internal/test-utils/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/internal-test-utils",
3-
"version": "1.0.9",
3+
"version": "1.0.10",
44
"author": "MUI Team",
55
"description": "Utilities for MUI tests. This is an internal package not meant for general use.",
66
"main": "./build/index.js",

packages/mui-codemod/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/codemod",
3-
"version": "6.0.0-rc.0",
3+
"version": "6.0.0",
44
"bin": "./codemod.js",
55
"private": false,
66
"author": "MUI Team",

packages/mui-core-downloads-tracker/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/core-downloads-tracker",
3-
"version": "6.0.0-rc.0",
3+
"version": "6.0.0",
44
"private": false,
55
"author": "MUI Team",
66
"description": "Internal package to track number of downloads of our design system libraries",

packages/mui-docs/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/docs",
3-
"version": "6.0.0-rc.0",
3+
"version": "6.0.0",
44
"private": false,
55
"author": "MUI Team",
66
"description": "MUI Docs - Documentation building blocks.",

packages/mui-envinfo/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/envinfo",
3-
"version": "2.0.23",
3+
"version": "2.0.24",
44
"private": false,
55
"author": "MUI Team",
66
"description": "Logs infos about the environment relevant to @mui/*",

packages/mui-icons-material/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/icons-material",
3-
"version": "6.0.0-rc.0",
3+
"version": "6.0.0",
44
"private": false,
55
"author": "MUI Team",
66
"description": "Material Design icons distributed as SVG React components.",

packages/mui-lab/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/lab",
3-
"version": "6.0.0-beta.7",
3+
"version": "6.0.0-beta.8",
44
"private": false,
55
"author": "MUI Team",
66
"description": "Laboratory for new MUI modules.",

packages/mui-material-nextjs/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/material-nextjs",
3-
"version": "6.0.0-beta.6",
3+
"version": "6.0.0",
44
"private": false,
55
"author": "MUI Team",
66
"description": "Collection of utilities for integration between Material UI and Next.js.",

packages/mui-material-pigment-css/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/material-pigment-css",
3-
"version": "6.0.0-rc.0",
3+
"version": "6.0.0",
44
"author": "MUI Team",
55
"description": "A wrapper over Pigment CSS that provides the same styled and theming APIs as Material UI.",
66
"main": "./src/index.ts",

packages/mui-material/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/material",
3-
"version": "6.0.0-rc.0",
3+
"version": "6.0.0",
44
"private": false,
55
"author": "MUI Team",
66
"description": "Material UI is an open-source React component library that implements Google's Material Design. It's comprehensive and can be used in production out of the box.",

packages/mui-private-theming/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/private-theming",
3-
"version": "6.0.0-rc.0",
3+
"version": "6.0.0",
44
"private": false,
55
"author": "MUI Team",
66
"description": "Private - The React theme context to be shared between `@mui/styles` and `@mui/material`.",

packages/mui-styled-engine-sc/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/styled-engine-sc",
3-
"version": "6.0.0-rc.0",
3+
"version": "6.0.0",
44
"private": false,
55
"author": "MUI Team",
66
"description": "styled() API wrapper package for styled-components.",

packages/mui-styled-engine/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/styled-engine",
3-
"version": "6.0.0-rc.0",
3+
"version": "6.0.0",
44
"private": false,
55
"author": "MUI Team",
66
"description": "styled() API wrapper package for emotion.",

packages/mui-styles/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/styles",
3-
"version": "6.0.0-rc.0",
3+
"version": "6.0.0",
44
"private": false,
55
"author": "MUI Team",
66
"description": "MUI Styles - The legacy JSS-based styling solution of Material UI.",

packages/mui-system/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/system",
3-
"version": "6.0.0-rc.0",
3+
"version": "6.0.0",
44
"private": false,
55
"author": "MUI Team",
66
"description": "MUI System is a set of CSS utilities to help you build custom designs more efficiently. It makes it possible to rapidly lay out custom designs.",

packages/mui-types/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/types",
3-
"version": "7.2.15",
3+
"version": "7.2.16",
44
"private": false,
55
"author": "MUI Team",
66
"description": "Utility types for MUI.",

packages/mui-utils/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/utils",
3-
"version": "6.0.0-rc.0",
3+
"version": "6.0.0",
44
"private": false,
55
"author": "MUI Team",
66
"description": "Utility functions for React components.",

0 commit comments

Comments
 (0)