Skip to content

Commit 0d509f8

Browse files
authored
[release] v5.17.1 (#45614)
1 parent 2baafb3 commit 0d509f8

File tree

14 files changed

+21
-13
lines changed

14 files changed

+21
-13
lines changed

Diff for: CHANGELOG.md

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

3+
## v5.17.1
4+
5+
<!-- generated comparing v5.17.0..v5.x -->
6+
7+
_Mar 18, 2025_
8+
9+
This release fixes the `@mui/types` dependencies in all packages to fix a package layout bug (#45612) @DiegoAndai
10+
311
## v5.17.0
412

513
_Mar 18, 2025_

Diff for: package.json

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

Diff for: packages/mui-base/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/base",
3-
"version": "5.0.0-beta.40-0",
3+
"version": "5.0.0-beta.40-1",
44
"private": false,
55
"author": "MUI Team",
66
"description": "Base UI is a library of headless ('unstyled') React components and low-level hooks. You gain complete control over your app's CSS and accessibility features.",

Diff for: 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": "5.17.0",
3+
"version": "5.17.1",
44
"private": false,
55
"author": "MUI Team",
66
"description": "Internal package to track number of downloads of our design system libraries",

Diff for: 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": "5.17.0",
3+
"version": "5.17.1",
44
"private": false,
55
"author": "MUI Team",
66
"description": "MUI Docs - Documentation building blocks.",

Diff for: 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": "5.17.0",
3+
"version": "5.17.1",
44
"private": false,
55
"author": "MUI Team",
66
"description": "Material Design icons distributed as SVG React components.",

Diff for: packages/mui-joy/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/joy",
3-
"version": "5.0.0-beta.51",
3+
"version": "5.0.0-beta.52",
44
"private": false,
55
"author": "MUI Team",
66
"description": "Joy UI is an open-source React component library that implements MUI's own design principles. It's comprehensive and can be used in production out of the box.",

Diff for: 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": "5.0.0-alpha.175",
3+
"version": "5.0.0-alpha.176",
44
"private": false,
55
"author": "MUI Team",
66
"description": "Laboratory for new MUI modules.",

Diff for: 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": "5.17.0",
3+
"version": "5.17.1",
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.",

Diff for: 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": "5.16.14",
3+
"version": "5.17.1",
44
"private": false,
55
"author": "MUI Team",
66
"description": "Private - The React theme context to be shared between `@mui/styles` and `@mui/material`.",

Diff for: 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": "5.17.0",
3+
"version": "5.17.1",
44
"private": false,
55
"author": "MUI Team",
66
"description": "MUI Styles - The legacy JSS-based styling solution of Material UI.",

Diff for: 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": "5.16.14",
3+
"version": "5.17.1",
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.",

Diff for: 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": "5.16.14",
3+
"version": "5.17.1",
44
"private": false,
55
"author": "MUI Team",
66
"description": "Utility functions for React components.",

Diff for: scripts/releaseChangelog.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ yargs(process.argv.slice(2))
206206
})
207207
.option('release', {
208208
// #default-branch-switch
209-
default: 'master',
209+
default: 'v5.x',
210210
describe: 'Ref which we want to release',
211211
type: 'string',
212212
})

0 commit comments

Comments
 (0)