Skip to content

fix(deps): update dependency @material-ui/core to ~4.11.0 #219

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

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

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Jan 22, 2020

This PR contains the following updates:

Package Type Update Change
@material-ui/core (source) dependencies minor ~4.8.0 -> ~4.11.0

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/[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
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/[email protected]
@material-ui/[email protected]
Breaking changes
Change
@material-ui/[email protected]
Docs
Core

v4.9.11

Compare Source

Apr 18, 2020

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

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

Renovate configuration

📅 Schedule: At any time (no schedule defined).

🚦 Automerge: Disabled due to failing status checks.

♻️ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • 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 5d077ba to 0676964 Compare May 23, 2020 17:53
@renovate renovate bot changed the title fix(deps): update dependency @material-ui/core to ~4.9.0 fix(deps): update dependency @material-ui/core to ~4.10.0 May 23, 2020
@renovate renovate bot changed the title fix(deps): update dependency @material-ui/core to ~4.10.0 Update dependency @material-ui/core to ~4.10.0 May 30, 2020
@renovate renovate bot changed the title Update dependency @material-ui/core to ~4.10.0 fix(deps): update dependency @material-ui/core to ~4.10.0 May 30, 2020
@renovate renovate bot force-pushed the renovate/mui-monorepo branch from 0676964 to a066443 Compare June 30, 2020 23:38
@renovate renovate bot changed the title fix(deps): update dependency @material-ui/core to ~4.10.0 fix(deps): update dependency @material-ui/core to ~4.11.0 Jun 30, 2020
@codecov
Copy link

codecov bot commented Jun 30, 2020

Codecov Report

Merging #219 into master will not change coverage.
The diff coverage is n/a.

@@            Coverage Diff            @@
##            master      #219   +/-   ##
=========================================
  Coverage   100.00%   100.00%           
=========================================
  Files            6         6           
  Lines          157       156    -1     
  Branches        14        14           
=========================================
- Hits           157       156    -1     
Impacted Files Coverage Δ
src/components/commit.tsx 100.00% <0.00%> (ø)

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