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

chore(deps): update material-ui monorepo #1381

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 13, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@mui/base (source) 5.0.0-alpha.126 -> 5.0.0-beta.40 age adoption passing confidence
@mui/lab (source) 5.0.0-alpha.127 -> 5.0.0-alpha.169 age adoption passing confidence
@mui/material (source) 5.12.1 -> 5.15.14 age adoption passing confidence
@mui/types (source) 7.2.4 -> 7.2.14 age adoption passing confidence

Release Notes

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

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/core@5.0.0-beta.5
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/system@5.0.0-beta.5
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/icons@5.0.0-beta.5
@material-ui/styled-engine@5.0.0-beta.5
@material-ui/unstyled@5.0.0-alpha.44
@material-ui/lab@5.0.0-alpha.44
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/core@5.0.0-beta.4
Breaking changes
Changes
@material-ui/codemods@5.0.0-beta.4
@material-ui/system@5.0.0-beta.4
@material-ui/labs@5.0.0-alpha.42
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/core@5.0.0-beta.3
@material-ui/system@5.0.0-beta.3
  • ​[system] Added top, left, right and bottom border color CSS properties to system (#​27580) @​R-Bower
@material-ui/codemod@5.0.0-beta.3
@material-ui/unstyled@5.0.0-alpha.42
Docs
Core

Configuration

📅 Schedule: Branch creation - "after 10:30 before 18:00 every weekday except after 13:00 before 14:00" in timezone Asia/Tokyo, Automerge - At any time (no schedule defined).

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

Rebasing: Whenever PR becomes conflicted, 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 has been generated by Mend Renovate. View repository job log here.

@changeset-bot
Copy link

changeset-bot bot commented Jul 13, 2023

⚠️ No Changeset found

Latest commit: da47ed8

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch from 1203646 to 2df0b05 Compare July 14, 2023 01:01
@cloudflare-workers-and-pages
Copy link

cloudflare-workers-and-pages bot commented Jul 14, 2023

Deploying for-ui with  Cloudflare Pages  Cloudflare Pages

Latest commit: da47ed8
Status:🚫  Build failed.

View logs

@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch 2 times, most recently from c80ff52 to 071d062 Compare July 25, 2023 12:19
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch 2 times, most recently from c2787b5 to 8e8b787 Compare August 8, 2023 12:48
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch from 8e8b787 to ea913db Compare August 14, 2023 17:35
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch 2 times, most recently from 8700ce3 to bcd7da4 Compare August 29, 2023 12:36
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch from bcd7da4 to 7cd70b0 Compare September 5, 2023 12:58
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch 2 times, most recently from c39c17f to a28f788 Compare September 18, 2023 11:20
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch from a28f788 to 09fcd6c Compare September 26, 2023 14:03
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch 2 times, most recently from 985c2c5 to 0ab71b0 Compare October 10, 2023 20:12
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch from 0ab71b0 to 142e7b6 Compare October 17, 2023 10:56
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch 2 times, most recently from 97822c4 to ba24aa0 Compare October 31, 2023 11:23
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch from ba24aa0 to 82d9e1d Compare November 6, 2023 18:20
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch from 82d9e1d to 5a3def3 Compare November 14, 2023 10:35
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch 2 times, most recently from 4eec791 to dff61bf Compare December 5, 2023 13:41
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch 2 times, most recently from e821e11 to 6b01055 Compare December 19, 2023 12:39
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch from 6b01055 to 020c724 Compare December 25, 2023 15:20
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch 2 times, most recently from 767ce97 to 6c747aa Compare January 10, 2024 17:15
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch 2 times, most recently from 131eec3 to c305b16 Compare January 22, 2024 18:19
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch 2 times, most recently from e2a642c to 8b20197 Compare February 6, 2024 22:10
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch 2 times, most recently from ebdbfe8 to 63d9212 Compare February 12, 2024 17:09
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch 2 times, most recently from 9f79008 to 36d9ec3 Compare February 24, 2024 21:45
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch from 36d9ec3 to 1454672 Compare March 5, 2024 16:00
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch from 1454672 to b157127 Compare March 13, 2024 16:27
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch from b157127 to da47ed8 Compare March 19, 2024 09:13
@Qs-F Qs-F closed this Mar 21, 2024
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.

1 participant