Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update material-ui monorepo #32

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 30, 2023

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@mui/base (source) 5.0.0-alpha.111 -> 5.0.0-beta.68 age adoption passing confidence
@mui/material (source) 5.11.1 -> 5.16.14 age adoption passing confidence
@mui/system (source) 5.11.1 -> 5.16.14 age adoption passing confidence

Release Notes

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

v5.0.0-beta.53

v5.0.0-beta.45

v5.0.0-beta.43

v5.0.0-beta.39

v5.0.0-beta.37

v5.0.0-beta.36

v5.0.0-beta.34

v5.0.0-beta.33

v5.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

v5.0.0-beta.31

  • [base-ui][NumberInput] Remove inputId and inputRef types from NumberInput component (#​40425) @​sai6855

v5.0.0-beta.30

Compare Source

v5.0.0-beta.29

Compare Source

v5.0.0-beta.28

Compare Source

v5.0.0-beta.27

Compare Source

  • ​[base-ui] useControllableReducer warns when controlled props become uncontrolled (and vice versa) (#​39096) @​mj12albert

v5.0.0-beta.26

Compare Source

v5.0.0-beta.25

Compare Source

v5.0.0-beta.23

v5.0.0-beta.22

Compare Source

v5.0.0-beta.21

Compare Source

v5.0.0-beta.20

Compare Source

v5.0.0-beta.19

Compare Source

v5.0.0-beta.18

Compare Source

v5.0.0-beta.17

Compare Source

v5.0.0-beta.16

Compare Source

v5.0.0-beta.15

Compare Source

v5.0.0-beta.14

Compare Source

v5.0.0-beta.13

Compare Source

v5.0.0-beta.12

v5.0.0-beta.11

v5.0.0-beta.10

Compare Source

v5.0.0-beta.9

Compare Source

Breaking changes
Other changes

v5.0.0-beta.8

Compare Source

v5.0.0-beta.7

v5.0.0-beta.6

v5.0.0-beta.5

Compare Source

Aug 24, 2021

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

  • 🐛 Fixed a lot of bugs and regressions to get us closer to the v5 stable release milestone
  • 📚 Improved the docs and the migration guide for upgrading to v5
@material-ui/[email protected]
Breaking changes
  • ​ [core] Update .browserslistrc file (#​27788) @​DanailH

    The targets of the default bundle have changed:

    • Chrome 90 (up from 84)
    • Edge 91 (up from 85)
    • Safari 14 (macOS) (up from 13.1) and 12.4 (iOS) (up from 12.2)
    • Opera 76 (up from 70)
  • ​ [Autocomplete] Rename Value type to AutocompleteValue (#​27804) @​michaldudak

    The useAutocomplete hook used a type called Value. It was a very generic name for a type specific to the Autocomplete control, so it was removed to AutocompleteValue.

    -import { Value } from '@​material-ui/core/useAutocomplete';
    +import { AutocompleteValue } from '@​material-ui/core/useAutocomplete';
Changes
@material-ui/[email protected]
Breaking changes
  • ​ [system] Rename styleProps to ownerState (#​27830) @​mnajdova

    The change was done in order to better reflect what they are, not what we think they will be used for.

     <SomeSlotComponent
    -  styleProps={propsAndState}
    +  ownerState={propsAndState}
     />
Changes
@material-ui/[email protected]
@material-ui/[email protected]
@material-ui/[email protected]
@material-ui/[email protected]
Docs
Core

All contributors of this release in alphabetical order: @​aaronlademann-wf, @​alexile, @​atorenherrinton, @​benny0642, @​DanailH, @​eps1lon, @​hamidreza-nateghi, @​hbjORbj, @​jakeanq, @​JEONGJIHUN, @​LorenzHenk, @​mekouar-mehdi, @​michaldudak, @​mnajdova, @​nguyenyou, @​nolastemgarden, @​nomanoff, @​noviicee, @​oliviertassinari, @​pvdstel, @​qiweiii, @​siriwatknp, @​surajkumar016, @​teachhay, @​vedadeepta, @​will-amaral

v5.0.0-beta.4

Compare Source

Aug 13, 2021

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

@material-ui/[email protected]
Breaking changes
Changes
@material-ui/[email protected]
@material-ui/[email protected]
@material-ui/[email protected]
Docs
Core

All contributors of this release in alphabetical order: @​aaronlademann-wf, @​abriginets, @​DouglasPds, @​eps1lon, @​garronej, @​kylegach, @​LorenzHenk, @​m4theushw, @​matiasherranz, @​mnajdova, @​nikitabobers, @​oliviertassinari, @​R-Bower, @​ryancogswell, @​siriwatknp, @​tonextone, @​umidbekk, @​vedadeepta, @​YassinHussein

v5.0.0-beta.3

Compare Source

Aug 6, 2021

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

  • ​✨ jss-to-styled codemod has been improved to support createStyles and <React.Fragment> usage (#​27578) @​mnajdova
@material-ui/[email protected]
@material-ui/[email protected]
  • ​[system] Added top, left, right and bottom border color CSS properties to system (#​27580) @​R-Bower
@material-ui/[email protected]
@material-ui/[email protected]
Docs

Configuration

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

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


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

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch 2 times, most recently from f3f838e to 74a29c2 Compare January 10, 2024 20:51
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch 2 times, most recently from 3edb1ec to dc643c5 Compare January 23, 2024 08:52
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch 2 times, most recently from a075e8e to 3652da0 Compare February 7, 2024 02:57
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch 2 times, most recently from 106f582 to acac0d1 Compare February 13, 2024 02:41
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch 4 times, most recently from 52484a2 to 8c3a5f2 Compare February 25, 2024 23:45
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch from 8c3a5f2 to 5c47aef Compare March 5, 2024 16:06
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch 4 times, most recently from cb84d79 to 8deda79 Compare March 19, 2024 11:23
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch from 8deda79 to 94fc37f Compare April 4, 2024 10:12
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch from 94fc37f to 2f7a0ef Compare April 12, 2024 15:32
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch from 2f7a0ef to 96a4394 Compare May 1, 2024 15:17
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch from 96a4394 to 029ea0a Compare May 8, 2024 19:43
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch from 029ea0a to 5074130 Compare May 16, 2024 12:12
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch from 5074130 to e0dd03e Compare May 29, 2024 12:13
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch from e0dd03e to 193538c Compare June 12, 2024 20:25
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch 2 times, most recently from 1a35421 to d539d14 Compare July 5, 2024 14:42
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch 4 times, most recently from 9ea5770 to c8579e0 Compare July 16, 2024 18:56
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch 3 times, most recently from 5ceb3e8 to 15e53ba Compare July 31, 2024 02:05
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch from 15e53ba to 5b23c68 Compare August 9, 2024 11:46
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch from 5b23c68 to 5c4013b Compare September 19, 2024 03:22
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch 2 times, most recently from 9fc653d to 8ee4ae0 Compare October 22, 2024 11:38
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch from 8ee4ae0 to 88ddec1 Compare October 30, 2024 13:26
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch from 88ddec1 to adc8ce6 Compare November 20, 2024 16:49
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch 2 times, most recently from 6244288 to 84ee5b0 Compare December 4, 2024 11:54
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch 3 times, most recently from 97c44f2 to dc748c4 Compare December 17, 2024 18:09
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch 2 times, most recently from 90d9ac5 to 3ac30d1 Compare December 25, 2024 12:45
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch from 3ac30d1 to de37d6d Compare January 7, 2025 00:58
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants