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 mui monorepo #45

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

Update mui monorepo #45

wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 1, 2020

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@material-ui/core (source) 4.9.1 -> 4.11.3 age adoption passing confidence
@material-ui/icons 4.9.1 -> 4.11.2 age adoption passing confidence
@material-ui/lab 4.0.0-alpha.41 -> 4.0.0-alpha.57 age adoption passing confidence

Release Notes

mui-org/material-ui

v4.11.3

Compare Source

Jan 24, 2021

This release fixes an important issue with Chrome 88. The usage of NaN as a CSS property's value with JSS throws an exception.

Those wanting to anticipate the breaking changes coming in v5, on top of benefiting from this release, can install 4.11.3-deprecations.0. This pre-release includes deprecations with an upgrade path.

@material-ui/[email protected]
@material-ui/[email protected]
@material-ui/[email protected]
Docs
Core

v4.11.2

Compare Source

Nov 24, 2020

This release widens the peer dependency scope of React to accept ^17.0.0 ⚛️ . The change makes it easier for developers to upgrade React independently from Material-UI. The best support for React 17 will be found in Material-UI v5.

This is a reminder that all ongoing work has moved to v5. This means a feature freeze on v4. The development of v4 is limited to important bug fixes, security patches, and easing the upgrade path to v5.

@material-ui/[email protected]
@material-ui/[email protected]
@material-ui/[email protected]
@material-ui/[email protected]
@material-ui/[email protected]
@material-ui/[email protected]
@material-ui/[email protected]

v4.11.1

Compare Source

Nov 24, 2020

Big thanks to the 12 contributors who made this release possible.

@material-ui/[email protected]
@material-ui/[email protected]
Docs
Core

v4.11.0

Compare Source

July 1, 2020

Big thanks to the 8 contributors who made this release possible.

@material-ui/[email protected]
  • [ExpansionPanel] Prepare renaming to Accordion in v5 (#​21560) @​mnajdova
    It uses a more common naming convention:

    -import ExpansionPanel from '@​material-ui/core/ExpansionPanel';
    -import ExpansionPanelSummary from '@​material-ui/core/ExpansionPanelSummary';
    -import ExpansionPanelDetails from '@​material-ui/core/ExpansionPanelDetails';
    -import ExpansionPanelActions from '@​material-ui/core/ExpansionPanelActions';
    +import Accordion from '@​material-ui/core/Accordion';
    +import AccordionSummary from '@​material-ui/core/AccordionSummary';
    +import AccordionDetails from '@​material-ui/core/AccordionDetails';
    +import AccordionActions from '@​material-ui/core/AccordionActions';
    
    -<ExpansionPanel>
    +<Accordion>
    -  <ExpansionPanelSummary>
    +  <AccordionSummary>
        <Typography>Location</Typography>
        <Typography>Select trip destination</Typography>
    -  </ExpansionPanelSummary>
    +  </AccordionSummary>
    -  <ExpansionPanelDetails>
    +  <AccordionDetails>
        <Chip label="Barbados" onDelete={() => {}} />
        <Typography variant="caption">Select your destination of choice</Typography>
    -  </ExpansionPanelDetails>
    +  </AccordionDetails>
      <Divider />
    -  <ExpansionPanelActions>
    +  <AccordionActions>
        <Button size="small">Cancel</Button>
        <Button size="small">Save</Button>
    -  </ExpansionPanelActions>
    +  </AccordionActions>
    -</ExpansionPanel>
    +</Accordion>
Docs
Core

v4.10.2

Compare Source

June 11, 2020

⚠️ This release marks the end of the active development on the v4.x versions, after 18 months of development.
We are moving all ongoing efforts to v5 (next branch) ✨.
This means a feature freeze on v4. The development of this version will be limited to important bug fixes, security patches, and easing the upgrade path to v5.

You can follow our progress on the v5 milestone. We will make the documentation of the v5 alpha releases available under https://next.material-ui.com/, starting next week (weekly releases, as usual).

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

  • Introduce a new Timeline component (#​21331) @​mnajdova.
    timeline
    You can find the component in the lab.

  • Simplify the theme overrides with TypeScript for the components in the lab (#​21279) @​CarsonF.

    In order to benefit from the CSS overrides with the theme and the lab components, TypeScript users need to import the following types. Internally, it uses module augmentation to extend the default theme structure with the extension components available in the lab.

    // 1. augment the theme
    import type '@&#8203;material-ui/lab/themeAugmentation';
    
    // 2. override
    const theme = createMuiTheme({
      overrides: {
        MuiTimeline: {
          root{
            backgroundColor: 'red',
          },
        },
      },
    });
  • Minify error messages in production (#​21214) @​eps1lon.

    Using the React error decoder as inspiration, the exceptions thrown by Material-UI in production are now minified.
    You will be redirected to the documentation to decode the error.

@material-ui/[email protected]
@material-ui/[email protected]
@material-ui/[email protected]
Docs
Core

v4.10.1

Compare Source

June 1, 2020

Big thanks to the 21 contributors who made this release possible.

@material-ui/[email protected]
@material-ui/[email protected]
Docs
Core

v4.10.0

Compare Source

May 23, 2020

Big thanks to the 30 contributors who made this release possible.

Here are some highlights ✨:

  • 🦴 Allow Skeleton to infer its dimensions from the children (#​21097) @​mikew.
    In the following example, the skeleton will take the size of the avatar.
    <Skeleton>
      <Avatar />
    </Skeleton>
    Follow the docs to learn more.
  • ♿️ Add tabs accessibility docs section (#​20965) @​eps1lon.
    The behavior of the keyboard navigation can be customized with the selectionFollowsFocus prop.
  • ℹ Improve tooltip arrow customizability (#​21095) @​sakulstra.
    The arrow background color and border can now be customized independently.
  • 🔘 Add vertical support to the ToggleButton component (#​21051) @​xiaomaini
  • And many more 🐛 bug fixes and 📚 improvements.
@material-ui/[email protected]
@material-ui/[email protected]
@material-ui/[email protected]
Docs
Core

v4.9.14

Compare Source

May 11, 2020

Big thanks to the 19 contributors who made this release possible.

Here are some highlights ✨:

@material-ui/[email protected]
@material-ui/[email protected]
@material-ui/[email protected]
@material-ui/[email protected]
@material-ui/[email protected]
Docs
Core

v4.9.13

Compare Source

May 4, 2020

Big thanks to the 27 contributors who made this release possible.

Here are some highlights ✨:

  • 💎 A new diamond sponsor: Sencha, thank you!
  • ⚛️ More tests migrated from enzyme to testing-library @​marcosvega91.
  • And many more 🐛 bug fixes and 📚 improvements.
@material-ui/[email protected]
@material-ui/[email protected]
@material-ui/[email protected]
@material-ui/[email protected]
Docs

Renovate configuration

📅 Schedule: "before 3am on the first day of the month" (UTC).

🚦 Automerge: Enabled.

♻️ 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 has been generated by WhiteSource Renovate. View repository job log here.

@renovate renovate bot force-pushed the renovate/mui-monorepo branch from 1191cee to d45409b Compare August 26, 2020 08:59
@renovate renovate bot force-pushed the renovate/mui-monorepo branch from d45409b to 6e728b4 Compare October 1, 2020 06:17
@renovate renovate bot force-pushed the renovate/mui-monorepo branch 2 times, most recently from cbadb55 to 843c784 Compare November 2, 2020 13:22
@renovate renovate bot force-pushed the renovate/mui-monorepo branch from 843c784 to a84fb0d Compare November 24, 2020 14:39
@renovate renovate bot force-pushed the renovate/mui-monorepo branch 2 times, most recently from 4cbd31e to fd04b8f Compare December 2, 2020 23:51
@renovate renovate bot force-pushed the renovate/mui-monorepo branch from fd04b8f to a58cdb5 Compare January 24, 2021 14:59
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