Skip to content

Update mui monorepo#196

Open
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/mui-monorepo
Open

Update mui monorepo#196
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/mui-monorepo

Conversation

@renovate

@renovate renovate Bot commented Oct 28, 2019

Copy link
Copy Markdown

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@material-ui/core (source) 4.5.1 -> 4.11.4 age adoption passing confidence
@material-ui/icons 4.5.1 -> 4.11.2 age adoption passing confidence

Release Notes

mui-org/material-ui

v4.11.4

Compare Source

Apr 27, 2021

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

We fixed an issue related to some packages using incompatible versions of @material-ui/types. This affected @material-ui/core, @material-ui/lab, and @material-ui/styles
@material-ui/types@5.1.7 accidentally included a breaking change.

@​material-ui/core@​4.11.4
  • [Avatar] Remove circular variant deprecation (#​25543) @​michal-perlakowski
  • [types] Ensure Omit type exists (#​25978) @​eps1lon
Docs
  • [DataGrid] Update docs sections (#​25980) @​dtassone
  • [docs] Sync master redirections with next @​oliviertassinari
  • [docs] Fix deploy @​oliviertassinari
  • [docs] Move DataGrid editing nav link (#​25769) @​dtassone
  • [docs] Design is what matters @​oliviertassinari
  • [docs] Add the new demo page (#​25285) @​DanailH
  • [docs] Add a temporary hiring block in the docs (#​25111) @​oliviertassinari
  • [docs] Remove under construction icons from DataGrid feature pages (#​24946) @​DanailH
  • [docs] Add HoodieBees to sponsors (#​24735) @​mbrookes
  • [docs] Add sorting section (#​24637) @​dtassone
  • [docs] v4 is not under active development @​oliviertassinari
Core
  • remove job ad @​oliviertassinari
  • clearer header @​oliviertassinari
  • [blog] Fix typos @​oliviertassinari
  • [core] Update the codesandbox issue templates (#​25501) @​oliviertassinari
  • [core] Support /r/issue-template back (#​24870) @​oliviertassinari
  • [website] Q1 2021 Update (#​25591) @​oliviertassinari
  • [website] Matheus Wichman joins Material-UI (#​25590) @​oliviertassinari
  • [website] Fix 404 page @​oliviertassinari
  • [website] Update Careers page (#​24948) @​oliviertassinari

All contributors of this release in alphabetical order: @​DanailH, @​dtassone, @​eps1lon, @​mbrookes, @​michal-perlakowski, @​oliviertassinari

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/core@v4.11.3
@material-ui/styles@v4.11.3
@material-ui/system@v4.11.3
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/core@v4.11.2
@material-ui/icons@v4.11.2
@material-ui/lab@v4.11.2
@material-ui/styles@v4.11.2
@material-ui/system@v4.11.2
@material-ui/utils@v4.11.2
@material-ui/lab@v4.0.0-alpha.57

v4.11.1

Compare Source

Nov 24, 2020

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

@material-ui/core@v4.11.1
@material-ui/styles@v4.11.1
Docs
Core

v4.11.0

Compare Source

July 1, 2020

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

@material-ui/core@v4.11.0
  • [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/core@v4.10.2
@material-ui/lab@v4.0.0-alpha.56
@material-ui/utils@v4.10.2
Docs
Core

v4.10.1

Compare Source

June 1, 2020

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

@material-ui/core@v4.10.1
@material-ui/lab@v4.0.0-alpha.55
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/core@v4.10.0
@material-ui/styles@v4.10.0
@material-ui/lab@v4.0.0-alpha.54
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/core@v4.9.14
@material-ui/styles@v4.9.14
@material-ui/system@v4.9.14
@material-ui/lab@v4.0.0-alpha.53
@material-ui/types@v5.1.0
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/core@v4.9.13
@material-ui/styles@v4.9.13

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 dependency @material-ui/core to v4.5.2 Update dependency @material-ui/core to v4.6.0 Nov 5, 2019
@renovate
renovate Bot force-pushed the renovate/mui-monorepo branch 2 times, most recently from 798860f to 3bd1792 Compare November 12, 2019 13:55
@renovate renovate Bot changed the title Update dependency @material-ui/core to v4.6.0 Update dependency @material-ui/core to v4.6.1 Nov 12, 2019
@renovate
renovate Bot force-pushed the renovate/mui-monorepo branch from 3bd1792 to 4d8ef43 Compare November 22, 2019 10:51
@renovate renovate Bot changed the title Update dependency @material-ui/core to v4.6.1 Update dependency @material-ui/core to v4.7.0 Nov 22, 2019
@renovate
renovate Bot force-pushed the renovate/mui-monorepo branch from 4d8ef43 to 8256b60 Compare December 1, 2019 11:34
@renovate renovate Bot changed the title Update dependency @material-ui/core to v4.7.0 Update dependency @material-ui/core to v4.7.1 Dec 1, 2019
@renovate
renovate Bot force-pushed the renovate/mui-monorepo branch from 8256b60 to 28eae45 Compare December 7, 2019 12:49
@renovate renovate Bot changed the title Update dependency @material-ui/core to v4.7.1 Update dependency @material-ui/core to v4.7.2 Dec 7, 2019
@renovate
renovate Bot force-pushed the renovate/mui-monorepo branch from 28eae45 to 31ebc8e Compare December 14, 2019 20:17
@renovate renovate Bot changed the title Update dependency @material-ui/core to v4.7.2 Update dependency @material-ui/core to v4.8.0 Dec 14, 2019
@renovate
renovate Bot force-pushed the renovate/mui-monorepo branch from 31ebc8e to 0c3611b Compare December 24, 2019 10:39
@renovate renovate Bot changed the title Update dependency @material-ui/core to v4.8.0 Update dependency @material-ui/core to v4.8.1 Dec 24, 2019
@renovate
renovate Bot force-pushed the renovate/mui-monorepo branch from 0c3611b to 8044f8b Compare December 31, 2019 09:53
@renovate renovate Bot changed the title Update dependency @material-ui/core to v4.8.1 Update dependency @material-ui/core to v4.8.2 Dec 31, 2019
@renovate
renovate Bot force-pushed the renovate/mui-monorepo branch from 8044f8b to a1a1280 Compare January 19, 2020 06:55
@renovate renovate Bot changed the title Update dependency @material-ui/core to v4.8.2 Update dependency @material-ui/core to v4.8.3 Jan 19, 2020
@renovate
renovate Bot force-pushed the renovate/mui-monorepo branch from a1a1280 to 7fcfb49 Compare February 9, 2020 02:59
@renovate renovate Bot changed the title Update dependency @material-ui/core to v4.8.3 Update mui monorepo to v4.9.1 Feb 9, 2020
@renovate
renovate Bot force-pushed the renovate/mui-monorepo branch from 7fcfb49 to d9905b9 Compare February 16, 2020 16:59
@renovate renovate Bot changed the title Update mui monorepo to v4.9.1 Update mui monorepo Feb 16, 2020
@renovate
renovate Bot force-pushed the renovate/mui-monorepo branch from d9905b9 to a9b8eda Compare March 14, 2020 10:02
@renovate
renovate Bot force-pushed the renovate/mui-monorepo branch from a9b8eda to 5dad8fd Compare May 8, 2020 07:57
@renovate
renovate Bot force-pushed the renovate/mui-monorepo branch from 5dad8fd to 5de5f5f Compare May 15, 2020 23:59
@renovate
renovate Bot force-pushed the renovate/mui-monorepo branch from 5de5f5f to a3bc579 Compare May 23, 2020 18:11
@renovate
renovate Bot force-pushed the renovate/mui-monorepo branch from a3bc579 to 7b1cc96 Compare June 1, 2020 15:17
@renovate
renovate Bot force-pushed the renovate/mui-monorepo branch from 7b1cc96 to 960ce98 Compare June 11, 2020 19:16
@renovate
renovate Bot force-pushed the renovate/mui-monorepo branch from 960ce98 to 1bb57cc Compare June 30, 2020 23:40
@renovate
renovate Bot force-pushed the renovate/mui-monorepo branch from 1bb57cc to ab43020 Compare November 27, 2020 20:07
@renovate
renovate Bot force-pushed the renovate/mui-monorepo branch from ab43020 to 20c5089 Compare December 11, 2020 20:00
@renovate renovate Bot changed the title Update mui monorepo Update mui monorepo to v4.11.2 Dec 11, 2020
@renovate
renovate Bot force-pushed the renovate/mui-monorepo branch from 20c5089 to 32c349a Compare January 24, 2021 16:00
@renovate renovate Bot changed the title Update mui monorepo to v4.11.2 Update mui monorepo Jan 24, 2021
@renovate
renovate Bot force-pushed the renovate/mui-monorepo branch from 32c349a to 92974c0 Compare April 27, 2021 16:36
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