Skip to content

Commit

Permalink
v5.10.6 (#34381)
Browse files Browse the repository at this point in the history
  • Loading branch information
michaldudak committed Sep 19, 2022
1 parent 23697b9 commit 0f75f3d
Show file tree
Hide file tree
Showing 19 changed files with 128 additions and 53 deletions.
75 changes: 75 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,80 @@
# [Versions](https://mui.com/versions/)

## 5.10.6

<!-- generated comparing v5.10.5..master -->

_Sep 19, 2022_

A big thanks to the 11 contributors who made this release possible.
This release was mostly about 🐛 bug fixes and 📚 documentation improvements.

### `@mui/[email protected]`

- [TextField] Fix conflict with `Bootstrap` even when label is not defined (#34343) @ZeeshanTamboli

### `@mui/[email protected]`

#### Breaking changes

- [button][joy] Replace `start/endIcon` prop with `start/endDecorator` (#34288) @hbjORbj

**BREAKING CHANGE**: replace `start/endIcon` with `start/endDecorator`.

```jsx
// before
<Button startIcon={...} endIcon={...} />

// after
<Button startDecorator={...} endDecorator={...} />
```

#### Changes

- [Joy] Adjust the `Input` and `Textarea` styles (#34281) @siriwatknp
- [menu][joy] Set disablePortal default to false (#34283) @tomasz-sodzawiczny

### `@mui/[email protected]`

#### Breaking changes

- [Select][base] Add event parameter to the onChange callback (#34158) @michaldudak

The SelectUnstyled and MultiSelectUnstyled `onChange` callbacks did not have event as the first parameter, leading to inconsistency with other components and native HTML elements.
This PR adds the event parameter as the first one and moves the newly selected value to the second position. Because of this, it's a breaking change.
This also affects Select from Joy UI.
```jsx
// before
<SelectUnstyled onChange={(newValue) => { /* ... */ }} />
// after
<SelectUnstyled onChange={(event, newValue) => { /* ... */ }} />
```
### Docs
- [blog] The Date Pickers gets a stable v5 release (#34152) @alexfauquette
- [blog] Improve image handling (#34222) @oliviertassinari
- [blog] Correct 2021 survey data interpretation (#34291) @samuelsycamore
- [docs] Remove expired AospExtended showcase @oliviertassinari
- [docs] Link the OpenSSF Best Practices card (#34331) @oliviertassinari
- [docs] Fix 301 link to external projects @oliviertassinari
- [docs] Move 12 component names to Title Case (#34188) @oliviertassinari
- [docs] Fix broken links (#34320) @alexfauquette
- [docs] Add notification for MUI Base announcement post (#34295) @samuelsycamore
- [website] Fix MUI X subscribe email border style (#34330) @oliviertassinari
- [website] Improve security header @oliviertassinari
### Core
- [core] Lock file maintenance (#34161) @renovate[bot]
- [core] Issue template: move reproduction steps to the top (#34279) @Janpot
- [core] Create shared Next.js baseline config (#34259) @oliviertassinari
- [core] In `typescript-to-proptypes`, respect the value pass to the generic (#34311) @flaviendelangle
All contributors of this release in alphabetical order: @alexfauquette, @flaviendelangle, @hbjORbj, @Janpot, @michaldudak, @oliviertassinari, @renovate[bot], @samuelsycamore, @siriwatknp, @tomasz-sodzawiczny, @ZeeshanTamboli
## 5.10.5
<!-- generated comparing v5.10.4..master -->
Expand Down
6 changes: 3 additions & 3 deletions benchmark/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@mdx-js/react": "^2.1.3",
"@mui/material": "^5.10.5",
"@mui/styles": "^5.10.3",
"@mui/system": "^5.10.5",
"@mui/material": "^5.10.6",
"@mui/styles": "^5.10.6",
"@mui/system": "^5.10.6",
"@styled-system/css": "^5.1.5",
"benchmark": "^2.1.4",
"playwright": "^1.25.2",
Expand Down
22 changes: 11 additions & 11 deletions docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,17 +31,17 @@
"@fortawesome/fontawesome-svg-core": "^6.2.0",
"@fortawesome/free-solid-svg-icons": "^6.2.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@mui/base": "5.0.0-alpha.97",
"@mui/docs": "^5.10.3",
"@mui/icons-material": "^5.10.3",
"@mui/joy": "5.0.0-alpha.45",
"@mui/lab": "5.0.0-alpha.99",
"@mui/material": "^5.10.5",
"@mui/material-next": "6.0.0-alpha.53",
"@mui/styled-engine": "^5.10.5",
"@mui/styled-engine-sc": "^5.10.3",
"@mui/styles": "^5.10.3",
"@mui/system": "^5.10.5",
"@mui/base": "5.0.0-alpha.98",
"@mui/docs": "^5.10.6",
"@mui/icons-material": "^5.10.6",
"@mui/joy": "5.0.0-alpha.46",
"@mui/lab": "5.0.0-alpha.100",
"@mui/material": "^5.10.6",
"@mui/material-next": "6.0.0-alpha.54",
"@mui/styled-engine": "^5.10.6",
"@mui/styled-engine-sc": "^5.10.6",
"@mui/styles": "^5.10.6",
"@mui/system": "^5.10.6",
"@mui/types": "^7.2.0",
"@mui/x-data-grid": "^5.17.2",
"@mui/x-data-grid-generator": "^5.17.2",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mui/monorepo",
"version": "5.10.5",
"version": "5.10.6",
"private": true,
"scripts": {
"proptypes": "cross-env BABEL_ENV=development babel-node --extensions \".tsx,.ts,.js\" ./scripts/generateProptypes.ts",
Expand Down
4 changes: 2 additions & 2 deletions packages/mui-base/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mui/base",
"version": "5.0.0-alpha.97",
"version": "5.0.0-alpha.98",
"private": false,
"author": "MUI Team",
"description": "A library of headless ('unstyled') React UI components and low-level hooks.",
Expand Down Expand Up @@ -54,7 +54,7 @@
"@babel/runtime": "^7.19.0",
"@emotion/is-prop-valid": "^1.2.0",
"@mui/types": "^7.2.0",
"@mui/utils": "^5.10.3",
"@mui/utils": "^5.10.6",
"@popperjs/core": "^2.11.6",
"clsx": "^1.2.1",
"prop-types": "^15.8.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/mui-codemod/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mui/codemod",
"version": "5.10.5",
"version": "5.10.6",
"bin": "./codemod.js",
"private": false,
"author": "MUI Team",
Expand Down
2 changes: 1 addition & 1 deletion packages/mui-core-downloads-tracker/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mui/core-downloads-tracker",
"version": "5.10.5",
"version": "5.10.6",
"private": false,
"author": "MUI Team",
"description": "Internal package to track number of downloads of our design system libraries",
Expand Down
4 changes: 2 additions & 2 deletions packages/mui-docs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mui/docs",
"version": "5.10.3",
"version": "5.10.6",
"private": false,
"author": "MUI Team",
"description": "MUI Docs - Documentation building blocks.",
Expand Down Expand Up @@ -45,7 +45,7 @@
},
"dependencies": {
"@babel/runtime": "^7.19.0",
"@mui/utils": "^5.10.3",
"@mui/utils": "^5.10.6",
"nprogress": "^0.2.0"
},
"publishConfig": {
Expand Down
2 changes: 1 addition & 1 deletion packages/mui-icons-material/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mui/icons-material",
"version": "5.10.3",
"version": "5.10.6",
"private": false,
"author": "MUI Team",
"description": "Material Design icons distributed as SVG React components.",
Expand Down
10 changes: 5 additions & 5 deletions packages/mui-joy/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mui/joy",
"version": "5.0.0-alpha.45",
"version": "5.0.0-alpha.46",
"private": false,
"author": "MUI Team",
"description": "A library of beautifully designed React UI components.",
Expand Down Expand Up @@ -57,11 +57,11 @@
},
"dependencies": {
"@babel/runtime": "^7.19.0",
"@mui/base": "5.0.0-alpha.97",
"@mui/core-downloads-tracker": "^5.10.5",
"@mui/system": "^5.10.5",
"@mui/base": "5.0.0-alpha.98",
"@mui/core-downloads-tracker": "^5.10.6",
"@mui/system": "^5.10.6",
"@mui/types": "^7.2.0",
"@mui/utils": "^5.10.3",
"@mui/utils": "^5.10.6",
"clsx": "^1.2.1",
"csstype": "^3.1.0",
"prop-types": "^15.8.1",
Expand Down
8 changes: 4 additions & 4 deletions packages/mui-lab/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mui/lab",
"version": "5.0.0-alpha.99",
"version": "5.0.0-alpha.100",
"private": false,
"author": "MUI Team",
"description": "Laboratory for new MUI modules.",
Expand Down Expand Up @@ -61,9 +61,9 @@
},
"dependencies": {
"@babel/runtime": "^7.19.0",
"@mui/base": "5.0.0-alpha.97",
"@mui/system": "^5.10.5",
"@mui/utils": "^5.10.3",
"@mui/base": "5.0.0-alpha.98",
"@mui/system": "^5.10.6",
"@mui/utils": "^5.10.6",
"clsx": "^1.2.1",
"prop-types": "^15.8.1",
"react-is": "^18.2.0"
Expand Down
10 changes: 5 additions & 5 deletions packages/mui-material-next/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mui/material-next",
"version": "6.0.0-alpha.53",
"version": "6.0.0-alpha.54",
"private": false,
"author": "MUI Team",
"description": "v6-alpha: React components that implement Google's Material Design",
Expand Down Expand Up @@ -59,11 +59,11 @@
},
"dependencies": {
"@babel/runtime": "^7.19.0",
"@mui/base": "5.0.0-alpha.97",
"@mui/material": "^5.10.5",
"@mui/system": "^5.10.5",
"@mui/base": "5.0.0-alpha.98",
"@mui/material": "^5.10.6",
"@mui/system": "^5.10.6",
"@mui/types": "^7.2.0",
"@mui/utils": "^5.10.3",
"@mui/utils": "^5.10.6",
"@popperjs/core": "^2.11.6",
"@types/react-transition-group": "^4.4.5",
"clsx": "^1.2.1",
Expand Down
10 changes: 5 additions & 5 deletions packages/mui-material/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mui/material",
"version": "5.10.5",
"version": "5.10.6",
"private": false,
"author": "MUI Team",
"description": "React components that implement Google's Material Design.",
Expand Down Expand Up @@ -61,11 +61,11 @@
},
"dependencies": {
"@babel/runtime": "^7.19.0",
"@mui/base": "5.0.0-alpha.97",
"@mui/core-downloads-tracker": "^5.10.5",
"@mui/system": "^5.10.5",
"@mui/base": "5.0.0-alpha.98",
"@mui/core-downloads-tracker": "^5.10.6",
"@mui/system": "^5.10.6",
"@mui/types": "^7.2.0",
"@mui/utils": "^5.10.3",
"@mui/utils": "^5.10.6",
"@types/react-transition-group": "^4.4.5",
"clsx": "^1.2.1",
"csstype": "^3.1.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/mui-private-theming/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mui/private-theming",
"version": "5.10.3",
"version": "5.10.6",
"private": false,
"author": "MUI Team",
"description": "Private - The React theme context to be shared between `@mui/styles` and `@mui/material`.",
Expand Down Expand Up @@ -48,7 +48,7 @@
},
"dependencies": {
"@babel/runtime": "^7.19.0",
"@mui/utils": "^5.10.3",
"@mui/utils": "^5.10.6",
"prop-types": "^15.8.1"
},
"sideEffects": false,
Expand Down
2 changes: 1 addition & 1 deletion packages/mui-styled-engine-sc/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mui/styled-engine-sc",
"version": "5.10.3",
"version": "5.10.6",
"private": false,
"author": "MUI Team",
"description": "styled() API wrapper package for styled-components.",
Expand Down
2 changes: 1 addition & 1 deletion packages/mui-styled-engine/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mui/styled-engine",
"version": "5.10.5",
"version": "5.10.6",
"private": false,
"author": "MUI Team",
"description": "styled() API wrapper package for emotion.",
Expand Down
6 changes: 3 additions & 3 deletions packages/mui-styles/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mui/styles",
"version": "5.10.3",
"version": "5.10.6",
"private": false,
"author": "MUI Team",
"description": "MUI Styles - The legacy JSS-based styling solution of Material UI.",
Expand Down Expand Up @@ -49,9 +49,9 @@
"dependencies": {
"@babel/runtime": "^7.19.0",
"@emotion/hash": "^0.9.0",
"@mui/private-theming": "^5.10.3",
"@mui/private-theming": "^5.10.6",
"@mui/types": "^7.2.0",
"@mui/utils": "^5.10.3",
"@mui/utils": "^5.10.6",
"clsx": "^1.2.1",
"csstype": "^3.1.0",
"hoist-non-react-statics": "^3.3.2",
Expand Down
8 changes: 4 additions & 4 deletions packages/mui-system/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mui/system",
"version": "5.10.5",
"version": "5.10.6",
"private": false,
"author": "MUI Team",
"description": "CSS utilities for rapidly laying out custom designs.",
Expand Down Expand Up @@ -58,10 +58,10 @@
},
"dependencies": {
"@babel/runtime": "^7.19.0",
"@mui/private-theming": "^5.10.3",
"@mui/styled-engine": "^5.10.5",
"@mui/private-theming": "^5.10.6",
"@mui/styled-engine": "^5.10.6",
"@mui/types": "^7.2.0",
"@mui/utils": "^5.10.3",
"@mui/utils": "^5.10.6",
"clsx": "^1.2.1",
"csstype": "^3.1.0",
"prop-types": "^15.8.1"
Expand Down
2 changes: 1 addition & 1 deletion packages/mui-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mui/utils",
"version": "5.10.3",
"version": "5.10.6",
"private": false,
"author": "MUI Team",
"description": "Utility functions for React components.",
Expand Down

0 comments on commit 0f75f3d

Please sign in to comment.