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 (major) #103

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

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented May 23, 2019

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@material-ui/core (source) ^3.5.1 -> ^4.0.0 age adoption passing confidence
@material-ui/icons ^3.0.1 -> ^4.0.0 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

Configuration

📅 Schedule: 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 WhiteSource Renovate. View repository job log here.

@renovate renovate bot changed the title Update mui monorepo to v4 (major) Update mui monorepo (major) May 27, 2019
@renovate renovate bot changed the title Update mui monorepo (major) Update mui monorepo to v4 (major) May 27, 2019
@renovate renovate bot changed the title Update mui monorepo to v4 (major) Update mui monorepo (major) Jun 3, 2019
@renovate renovate bot changed the title Update mui monorepo (major) Update mui monorepo to v4 (major) Jun 10, 2019
@renovate renovate bot changed the title Update mui monorepo to v4 (major) Update mui monorepo (major) Jun 13, 2019
@renovate renovate bot changed the title Update mui monorepo (major) Update mui monorepo to v4 (major) Jul 17, 2019
@renovate renovate bot changed the title Update mui monorepo to v4 (major) Update mui monorepo (major) Jul 28, 2019
@renovate renovate bot changed the title Update mui monorepo (major) Update mui monorepo to v4 (major) Sep 8, 2019
@renovate renovate bot force-pushed the renovate/major-mui-monorepo branch from 7747e91 to 8c2118a Compare September 9, 2019 05:34
@renovate renovate bot force-pushed the renovate/major-mui-monorepo branch from 8c2118a to ac5d486 Compare September 9, 2019 05:43
@renovate renovate bot changed the title Update mui monorepo to v4 (major) Update mui monorepo (major) Sep 11, 2019
@renovate renovate bot changed the title Update mui monorepo (major) Update mui monorepo to v4 (major) Sep 22, 2019
@renovate renovate bot changed the title Update mui monorepo to v4 (major) Update mui monorepo (major) Oct 2, 2019
@renovate renovate bot changed the title Update mui monorepo (major) Update mui monorepo to v4 (major) Oct 12, 2019
@renovate renovate bot changed the title Update mui monorepo to v4 (major) Update mui monorepo (major) Oct 28, 2019
@renovate renovate bot changed the title Update mui monorepo (major) Update mui monorepo to v4 (major) Feb 8, 2020
@renovate renovate bot changed the title Update mui monorepo to v4 (major) Update mui monorepo (major) Feb 22, 2020
@renovate renovate bot changed the title Update mui monorepo (major) Update mui monorepo to v4 (major) Dec 11, 2020
@renovate renovate bot changed the title Update mui monorepo to v4 (major) Update mui monorepo (major) Jan 24, 2021
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