Update dependency @mui/icons-material to v5.15.5 #78

Merged
pierre merged 1 commits from renovate/mui-icons-material-5.x-lockfile into master 2024-01-18 00:37:16 +00:00
Owner

This PR contains the following updates:

Package Type Update Change
@mui/icons-material (source) dependencies patch 5.15.4 -> 5.15.5

Release Notes

mui/material-ui (@​mui/icons-material)

v5.15.5

Compare Source

Jan 17, 2024

A big thanks to the 18 contributors who made this release possible. Here are some highlights :

  • Base UI's CSS class prefix is now base- (#​40205) @​michaldudak
  • Bug fixes, and a lot of improvements to code and docs infra
@mui/material@5.15.5
@mui/material-next@6.0.0-alpha.118
@mui/base@5.0.0-beta.32
Breaking changes

The class prefix of Base UI components have been changed from Mui- to base-. This only affects codebases that uses class names verbatim, i.e. not exposed by JS objects such as buttonClasses, but as plain strings or in CSS stylesheets (.MuiButton.root)

To adapt your code to the new pattern:

  • replace all occurrences of the regex .Mui([A-Z][A-Za-z]*)- with .base-$1- (so MuiButton-root becomes base-Button-root, etc.),
  • replace all occurrences of the regex .Mui-([a-z]*) with .base--$1 (so Mui-disabled becomes base--disabled, etc.).
Changes
@mui/joy@5.0.0-beta.23
@mui/codemod@5.15.5
@mui/lab@5.0.0-alpha.161
@mui/material-nextjs@5.15.5
@mui/system@5.15.5
Docs
Core

All contributors of this release in alphabetical order: @​2metres, @​aacevski, @​brijeshb42, @​danilo-leal, @​DiegoAndai, @​josh-feldman, @​Kamino0, @​lhilgert9, @​maakcode, @​michaldudak, @​oliviertassinari, @​petrovmiroslav, @​sai6855, @​samuelsycamore, @​siriwatknp, @​zanivan, @​ZeeshanTamboli, @​zinoroman


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [@mui/icons-material](https://mui.com/material-ui/material-icons/) ([source](https://github.com/mui/material-ui/tree/HEAD/packages/mui-icons-material)) | dependencies | patch | [`5.15.4` -> `5.15.5`](https://renovatebot.com/diffs/npm/@mui%2ficons-material/5.15.4/5.15.5) | --- ### Release Notes <details> <summary>mui/material-ui (@&#8203;mui/icons-material)</summary> ### [`v5.15.5`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#v5155) [Compare Source](https://github.com/mui/material-ui/compare/v5.15.4...v5.15.5) <!-- generated comparing v5.15.4..master --> *Jan 17, 2024* A big thanks to the 18 contributors who made this release possible. Here are some highlights ✨: - Base UI's CSS class prefix is now `base-` ([#&#8203;40205](https://github.com/mui/material-ui/issues/40205)) [@&#8203;michaldudak](https://github.com/michaldudak) - Bug fixes, and a lot of improvements to code and docs infra ##### `@mui/material@5.15.5` - ​<!-- 42 -->\[Accordion] Deprecate \*Props props and classes for v6 ([#&#8203;40418](https://github.com/mui/material-ui/issues/40418)) [@&#8203;DiegoAndai](https://github.com/DiegoAndai) - ​<!-- 41 -->\[Alert] Update TypeScript types to allow color override types to be added to `iconMapping` and `severity` props ([#&#8203;40551](https://github.com/mui/material-ui/issues/40551)) [@&#8203;2metres](https://github.com/2metres) - ​<!-- 27 -->\[Dialog] Remove deprecated onBackdropClick from Dialog tests ([#&#8203;40505](https://github.com/mui/material-ui/issues/40505)) [@&#8203;sai6855](https://github.com/sai6855) - ​<!-- 26 -->\[Divider] Deprecate props and classes for v6 ([#&#8203;40563](https://github.com/mui/material-ui/issues/40563)) [@&#8203;sai6855](https://github.com/sai6855) ##### `@mui/material-next@6.0.0-alpha.118` - ​<!-- 36 -->\[ButtonGroup] Apply MD3 style to `ButtonGroup` ([#&#8203;40124](https://github.com/mui/material-ui/issues/40124)) [@&#8203;lhilgert9](https://github.com/lhilgert9) ##### `@mui/base@5.0.0-beta.32` ##### Breaking changes - ​<!-- 40 -->Change the CSS class prefix to `base-` ([#&#8203;40205](https://github.com/mui/material-ui/issues/40205)) [@&#8203;michaldudak](https://github.com/michaldudak) The class prefix of Base UI components have been changed from `Mui-` to `base-`. This only affects codebases that uses class names verbatim, i.e. not exposed by JS objects such as `buttonClasses`, but as plain strings or in CSS stylesheets (`.MuiButton.root`) To adapt your code to the new pattern: - replace all occurrences of the regex `.Mui([A-Z][A-Za-z]*)-` with `.base-$1-` (so `MuiButton-root` becomes `base-Button-root`, etc.), - replace all occurrences of the regex `.Mui-([a-z]*)` with `.base--$1` (so `Mui-disabled` becomes `base--disabled`, etc.). ##### Changes - ​<!-- 39 -->\[Select] Fix screen-reader CSS to avoid body scrollbar ([#&#8203;40599](https://github.com/mui/material-ui/issues/40599)) [@&#8203;brijeshb42](https://github.com/brijeshb42) - ​<!-- 38 -->\[Switch] Add border-box to demos ([#&#8203;40638](https://github.com/mui/material-ui/issues/40638)) [@&#8203;zanivan](https://github.com/zanivan) ##### `@mui/joy@5.0.0-beta.23` - ​<!-- 11 -->\[ModalDialog] Fix ModalDialog layout prop override ([#&#8203;40512](https://github.com/mui/material-ui/issues/40512)) [@&#8203;maakcode](https://github.com/maakcode) - ​<!-- 10 -->\[RadioGroup] Allow zero number as a value ([#&#8203;40344](https://github.com/mui/material-ui/issues/40344)) [@&#8203;aacevski](https://github.com/aacevski) ##### `@mui/codemod@5.15.5` - ​<!-- 31 -->Allow `json` files to be transformed ([#&#8203;40536](https://github.com/mui/material-ui/issues/40536)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) ##### `@mui/lab@5.0.0-alpha.161` - ​<!-- 09 -->Update `@mui/material` peer dependency version ([#&#8203;40528](https://github.com/mui/material-ui/issues/40528)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) ##### `@mui/material-nextjs@5.15.5` - ​<!-- 08 -->Fix release script ([#&#8203;40519](https://github.com/mui/material-ui/issues/40519)) [@&#8203;petrovmiroslav](https://github.com/petrovmiroslav) - ​<!-- 07 -->Support Nonces in the App Router Provider ([#&#8203;40269](https://github.com/mui/material-ui/issues/40269)) [@&#8203;josh-feldman](https://github.com/josh-feldman) - ​<!-- 06 -->Polish [@&#8203;mui/material-nextjs](https://github.com/mui/material-nextjs) ([#&#8203;40473](https://github.com/mui/material-ui/issues/40473)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) ##### `@mui/system@5.15.5` - ​<!-- 05 -->Fix import path for [@&#8203;mui/system](https://github.com/mui/system) in vite apps ([#&#8203;40490](https://github.com/mui/material-ui/issues/40490)) [@&#8203;brijeshb42](https://github.com/brijeshb42) - ​<!-- 02 -->Fix css vars generation and simplify the code ([#&#8203;40530](https://github.com/mui/material-ui/issues/40530)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 01 -->Identify zero runtime styled path ([#&#8203;40555](https://github.com/mui/material-ui/issues/40555)) [@&#8203;brijeshb42](https://github.com/brijeshb42) ##### Docs - ​<!-- 35 -->\[joy-ui]\[Card] Fix text alignment in horizontal aligned card demo ([#&#8203;40562](https://github.com/mui/material-ui/issues/40562)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) - ​<!-- 25 -->Improve instructions about peer dependencies ([#&#8203;40621](https://github.com/mui/material-ui/issues/40621)) [@&#8203;danilo-leal](https://github.com/danilo-leal) - ​<!-- 24 -->Solve page description length [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 23 -->Fix MUI Treasury links ([#&#8203;40561](https://github.com/mui/material-ui/issues/40561)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 17 -->\[material-ui] Update <ListItem button/> to ListItemButton in demos ([#&#8203;40564](https://github.com/mui/material-ui/issues/40564)) [@&#8203;sai6855](https://github.com/sai6855) - ​<!-- 16 -->\[material-ui] Revise the Snackbar page ([#&#8203;39298](https://github.com/mui/material-ui/issues/39298)) [@&#8203;danilo-leal](https://github.com/danilo-leal) - ​<!-- 15 -->\[material-ui] Sharpen Material 3 copy on demo pages ([#&#8203;40546](https://github.com/mui/material-ui/issues/40546)) [@&#8203;samuelsycamore](https://github.com/samuelsycamore) - ​<!-- 14 -->\[material-ui] Fix typo on Next.js integration guide ([#&#8203;40538](https://github.com/mui/material-ui/issues/40538)) [@&#8203;zanivan](https://github.com/zanivan) - ​<!-- 13 -->\[material-ui]\[Snackbar] Remove unused `State` interface from Consecutive Snackbars demo ([#&#8203;40410](https://github.com/mui/material-ui/issues/40410)) [@&#8203;zinoroman](https://github.com/zinoroman) - ​<!-- 12 -->\[website] Resolve broken links reported by `docs:link-check` ([#&#8203;40547](https://github.com/mui/material-ui/issues/40547)) [@&#8203;samuelsycamore](https://github.com/samuelsycamore) ##### Core - ​<!-- 37 -->\[blog] Fix 404 link to MUI Treasury [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 34 -->\[code-infra] Add `run` command to deploy docs ([#&#8203;40513](https://github.com/mui/material-ui/issues/40513)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 32 -->\[core] Update the lockfile ([#&#8203;40628](https://github.com/mui/material-ui/issues/40628)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 31 -->\[core] Remove dead code and follow standard [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 30 -->\[core] Simplify server detection ([#&#8203;40471](https://github.com/mui/material-ui/issues/40471)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 29 -->\[core] Sync playwright cache between MUI X and Material UI ([#&#8203;40475](https://github.com/mui/material-ui/issues/40475)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 28 -->\[dependencies] Bump tough-cookie ([#&#8203;40437](https://github.com/mui/material-ui/issues/40437)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 22 -->\[docs-infra] Enforce brand name rules ([#&#8203;40525](https://github.com/mui/material-ui/issues/40525)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 21 -->\[docs-infra] Minimize ad layout shift on mobile ([#&#8203;40582](https://github.com/mui/material-ui/issues/40582)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 20 -->\[docs-infra] Improve API page deprecation info ([#&#8203;40440](https://github.com/mui/material-ui/issues/40440)) [@&#8203;DiegoAndai](https://github.com/DiegoAndai) - ​<!-- 19 -->\[docs-infra] Remove old tocs banners ([#&#8203;40537](https://github.com/mui/material-ui/issues/40537)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 18 -->\[docs-infra] Remove dead code aria-label sponsors ([#&#8203;40526](https://github.com/mui/material-ui/issues/40526)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 04 -->\[utils] Centralize clamp implementation in utils ([#&#8203;40267](https://github.com/mui/material-ui/issues/40267)) [@&#8203;Kamino0](https://github.com/Kamino0) - ​<!-- 03 -->\[website] Polish the Base UI page demos ([#&#8203;40504](https://github.com/mui/material-ui/issues/40504)) [@&#8203;danilo-leal](https://github.com/danilo-leal) All contributors of this release in alphabetical order: [@&#8203;2metres](https://github.com/2metres), [@&#8203;aacevski](https://github.com/aacevski), [@&#8203;brijeshb42](https://github.com/brijeshb42), [@&#8203;danilo-leal](https://github.com/danilo-leal), [@&#8203;DiegoAndai](https://github.com/DiegoAndai), [@&#8203;josh-feldman](https://github.com/josh-feldman), [@&#8203;Kamino0](https://github.com/Kamino0), [@&#8203;lhilgert9](https://github.com/lhilgert9), [@&#8203;maakcode](https://github.com/maakcode), [@&#8203;michaldudak](https://github.com/michaldudak), [@&#8203;oliviertassinari](https://github.com/oliviertassinari), [@&#8203;petrovmiroslav](https://github.com/petrovmiroslav), [@&#8203;sai6855](https://github.com/sai6855), [@&#8203;samuelsycamore](https://github.com/samuelsycamore), [@&#8203;siriwatknp](https://github.com/siriwatknp), [@&#8203;zanivan](https://github.com/zanivan), [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli), [@&#8203;zinoroman](https://github.com/zinoroman) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMzkuNCIsInVwZGF0ZWRJblZlciI6IjM3LjEzOS40IiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIn0=-->
pierre added 1 commit 2024-01-18 00:31:12 +00:00
Update dependency @mui/icons-material to v5.15.5
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
d2bddb62bc
pierre scheduled this pull request to auto merge when all checks succeed 2024-01-18 00:31:12 +00:00
pierre merged commit d2bddb62bc into master 2024-01-18 00:37:16 +00:00
Sign in to join this conversation.
No reviewers
No Label
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: pierre/GeneIT#78
No description provided.