Skip to content
This repository has been archived by the owner on Sep 15, 2020. It is now read-only.

fix(deps): update mui monorepo (major) #15

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

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented May 23, 2019

This PR contains the following updates:

Package Type Update Change
@material-ui/core (source) dependencies major ^3.4.0 -> ^4.11.0
@material-ui/icons dependencies major ^3.0.1 -> ^4.9.1

Release Notes

mui-org/material-ui

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
@material-ui/system@v4.9.13
@material-ui/lab@v4.0.0-alpha.52
Docs
Core

v4.9.12

Compare Source

Apr 27, 2020

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

Here are some highlights ✨:

  • ⚛️ A first module written in TypeScript (#​20685) @​eps1lon.
  • 🇧🇷 A documentation fully translated in Brazilian (@​jaironalves).
  • And many more 🐛 bug fixes and 📚 improvements.
@material-ui/core@v4.9.12
@material-ui/lab@v4.0.0-alpha.51
Breaking changes
Change
@material-ui/utils@v4.9.12
Docs
Core

v4.9.11

Compare Source

Apr 18, 2020

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

@material-ui/core@v4.9.11
@material-ui/lab@v4.0.0-alpha.50
Docs

Renovate 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 force-pushed the renovate/major-mui-monorepo branch from 065fe9b to 0932932 Compare May 27, 2019 12:47
@renovate renovate bot force-pushed the renovate/major-mui-monorepo branch from 0932932 to b56093d Compare June 3, 2019 16:37
@renovate renovate bot changed the title fix(deps): update mui monorepo to v4 (major) fix(deps): update mui monorepo (major) Jun 3, 2019
@renovate renovate bot force-pushed the renovate/major-mui-monorepo branch 2 times, most recently from c27206e to ea73c44 Compare June 10, 2019 11:53
@renovate renovate bot changed the title fix(deps): update mui monorepo (major) fix(deps): update mui monorepo to v4 (major) Jun 10, 2019
@renovate renovate bot force-pushed the renovate/major-mui-monorepo branch from ea73c44 to aa11524 Compare June 13, 2019 09:57
@renovate renovate bot changed the title fix(deps): update mui monorepo to v4 (major) fix(deps): update mui monorepo (major) Jun 13, 2019
@renovate renovate bot force-pushed the renovate/major-mui-monorepo branch from aa11524 to 64e1daf Compare June 13, 2019 10:54
@renovate renovate bot force-pushed the renovate/major-mui-monorepo branch 3 times, most recently from d795c5f to 4f4a060 Compare June 25, 2019 13:47
@renovate renovate bot force-pushed the renovate/major-mui-monorepo branch from 4f4a060 to 6f37637 Compare July 6, 2019 15:32
@renovate renovate bot force-pushed the renovate/major-mui-monorepo branch 2 times, most recently from ae9f616 to 032f3ba Compare August 10, 2019 17:45
@renovate renovate bot force-pushed the renovate/major-mui-monorepo branch from 032f3ba to 65e5aaf Compare August 21, 2019 17:32
@renovate renovate bot force-pushed the renovate/major-mui-monorepo branch from 65e5aaf to bd2ee7f Compare August 31, 2019 12:20
@renovate renovate bot force-pushed the renovate/major-mui-monorepo branch 2 times, most recently from 08dabf9 to 3957296 Compare September 8, 2019 10:00
@renovate renovate bot changed the title fix(deps): update mui monorepo (major) fix(deps): update mui monorepo to v4 (major) Sep 8, 2019
@renovate renovate bot force-pushed the renovate/major-mui-monorepo branch from 3957296 to 3abcaa8 Compare September 11, 2019 20:46
@renovate renovate bot changed the title fix(deps): update mui monorepo to v4 (major) fix(deps): update mui monorepo (major) Sep 11, 2019
@renovate renovate bot force-pushed the renovate/major-mui-monorepo branch from 3abcaa8 to 6e081f1 Compare September 22, 2019 17:15
@renovate renovate bot changed the title fix(deps): update mui monorepo (major) fix(deps): update mui monorepo to v4 (major) Sep 22, 2019
@renovate renovate bot changed the title fix(deps): update mui monorepo to v4 (major) fix(deps): update mui monorepo (major) Oct 2, 2019
@renovate renovate bot force-pushed the renovate/major-mui-monorepo branch from 6e081f1 to 09855ca Compare October 2, 2019 08:09
@renovate renovate bot force-pushed the renovate/major-mui-monorepo branch from 09855ca to 6f2515d Compare October 12, 2019 20:47
@renovate renovate bot changed the title fix(deps): update mui monorepo (major) fix(deps): update mui monorepo to v4 (major) Oct 12, 2019
@renovate renovate bot force-pushed the renovate/major-mui-monorepo branch from 6f2515d to e8e2587 Compare October 28, 2019 22:59
@renovate renovate bot changed the title fix(deps): update mui monorepo to v4 (major) fix(deps): update mui monorepo (major) Oct 28, 2019
@renovate renovate bot force-pushed the renovate/major-mui-monorepo branch 2 times, most recently from d6c215e to c01e835 Compare November 15, 2019 05:41
@renovate renovate bot force-pushed the renovate/major-mui-monorepo branch from c01e835 to b816a13 Compare December 14, 2019 23:52
@renovate renovate bot force-pushed the renovate/major-mui-monorepo branch from b816a13 to 22b93cc Compare December 30, 2019 15:00
@renovate renovate bot force-pushed the renovate/major-mui-monorepo branch from 22b93cc to 270a8c8 Compare January 18, 2020 18:54
@renovate renovate bot force-pushed the renovate/major-mui-monorepo branch from 270a8c8 to 3af1105 Compare February 8, 2020 19:02
@renovate renovate bot changed the title fix(deps): update mui monorepo (major) fix(deps): update mui monorepo to v4 (major) Feb 8, 2020
@renovate renovate bot force-pushed the renovate/major-mui-monorepo branch from 3af1105 to e5a582a Compare February 22, 2020 14:01
@renovate renovate bot changed the title fix(deps): update mui monorepo to v4 (major) fix(deps): update mui monorepo (major) Feb 22, 2020
@renovate renovate bot force-pushed the renovate/major-mui-monorepo branch from e5a582a to 38b46b9 Compare March 15, 2020 11:57
@renovate renovate bot force-pushed the renovate/major-mui-monorepo branch from 38b46b9 to 3e9908c Compare April 28, 2020 09:01
@renovate renovate bot force-pushed the renovate/major-mui-monorepo branch from 3e9908c to b6fd85d Compare May 8, 2020 11:49
@renovate renovate bot force-pushed the renovate/major-mui-monorepo branch from b6fd85d to 4aedfce Compare May 15, 2020 11:54
@renovate renovate bot force-pushed the renovate/major-mui-monorepo branch from 4aedfce to 7d24f80 Compare July 1, 2020 12:52
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant