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

fix(deps): update dependency @mui/x-date-pickers to v7 #242

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 6, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@mui/x-date-pickers (source) 5.0.20 -> 7.1.0 age adoption passing confidence

Release Notes

mui/mui-x (@​mui/x-date-pickers)

v7.1.0

Compare Source

Mar 28, 2024

We'd like to offer a big thanks to the 10 contributors who made this release possible. Here are some highlights ✨:

  • 🚀 Add resizeThrottleMs prop (#​12556) @​romgrk
  • 🌍 Improve Chinese (Hong Kong) (zh-HK) and Italian (it-IT) locale on the Pickers
  • 🐞 Bugfixes
  • 📚 Documentation improvements
Data Grid
@mui/x-data-grid@7.1.0
@mui/x-data-grid-pro@7.1.0 pro

Same changes as in @mui/x-data-grid@7.1.0.

@mui/x-data-grid-premium@7.1.0 premium

Same changes as in @mui/x-data-grid-pro@7.1.0.

Date and Time Pickers
@mui/x-date-pickers@7.1.0
@mui/x-date-pickers-pro@7.1.0 pro

Same changes as in @mui/x-date-pickers@7.1.0, plus:

  • [DateRangePicker] Fix selection behavior with single input field when readOnly (#​12593) @​LukasTy
Charts
@mui/x-charts@7.1.0
Tree View
@mui/x-tree-view@7.1.0
Docs
Core

v7.0.0

Compare Source

Mar 22, 2024

We're excited to announce the first v7 stable release! 🎉🚀

This is now the officially supported major version, where we'll keep rolling out new features, bug fixes, and improvements.
Migration guides are available with a complete list of the breaking changes:

We'd like to offer a big thanks to the 12 contributors who made this release possible. Here are some highlights ✨:

Data Grid
Breaking changes
  • The density is a controlled prop now, if you were previously passing the density prop to the Data Grid, you will need to do one of the following:

    1. Move it to the initialState.density to initialize it.
     <DataGrid
    -  density="compact"
    +  initialState={{ density: "compact" }}
     />
    1. Move it to the state and use onDensityChange callback to update the density prop accordingly for it to work as expected.
    + const [density, setDensity] = React.useState<GridDensity>('compact');
     <DataGrid
    -  density="compact"
    +  density={density}
    +  onDensityChange={(newDensity) => setDensity(newDensity)}
     />
  • The selector gridDensityValueSelector was removed, use the gridDensitySelector instead.

  • The props rowBuffer and columnBuffer were renamed to rowBufferPx and columnBufferPx.
    Their value is now a pixel value rather than a number of items. Their default value is now 150.

  • The props rowThreshold and columnThreshold have been removed.
    If you had the rowThreshold prop set to 0 to force new rows to be rendered more often – this is no longer necessary.

@mui/x-data-grid@7.0.0
@mui/x-data-grid-pro@7.0.0 pro

Same changes as in @mui/x-data-grid@7.0.0.

@mui/x-data-grid-premium@7.0.0 premium

Same changes as in @mui/x-data-grid-pro@7.0.0, plus:

Date and Time Pickers
Breaking changes
  • The DesktopDateTimePicker view rendering has been optimized by using the same technique as for DesktopDateTimeRangePicker.
    • The dateTimeViewRenderers have been removed in favor of reusing existing time view renderers (renderTimeViewClock, renderDigitalClockTimeView and renderMultiSectionDigitalClockTimeView) and date view renderer (renderDateViewCalendar).
    • Passing renderTimeViewClock to time view renderers will no longer revert to the old behavior of rendering only date or time view.
@mui/x-date-pickers@7.0.0
@mui/x-date-pickers-pro@7.0.0 pro

Same changes as in @mui/x-date-pickers@7.0.0, plus:

Charts
@mui/x-charts@7.0.0
Tree View
Breaking changes
  • The required nodeId prop used by the TreeItem has been renamed to itemId for consistency:
 <TreeView>
-    <TreeItem label="Item 1" nodeId="one">
+    <TreeItem label="Item 1" itemId="one">
 </TreeView>
  • The focus is now applied to the Tree Item root element instead of the Tree View root element.

    This change will allow new features that require the focus to be on the Tree Item,
    like the drag and drop reordering of items.
    It also solves several issues with focus management,
    like the inability to scroll to the focused item when a lot of items are rendered.

    This will mostly impact how you write tests to interact with the Tree View:

    For example, if you were writing a test with react-testing-library, here is what the changes could look like:

     it('test example on first item', () => {
    -  const { getByRole } = render(
    +  const { getAllByRole } = render(
         <SimpleTreeView>
           <TreeItem nodeId="one" />
           <TreeItem nodeId="two" />
        </SimpleTreeView>
       );
    
    -  const tree = getByRole('tree');
    +  const firstTreeItem = getAllByRole('treeitem')[0];
       act(() => {
    -    tree.focus();
    +    firstTreeItem.focus();
       });
    -  fireEvent.keyDown(tree, { key: 'ArrowDown' });
    +  fireEvent.keyDown(firstTreeItem, { key: 'ArrowDown' });
     })
@mui/x-tree-view@7.0.0
@mui/x-codemod@7.0.0
Docs
Core

v6.19.9

Compare Source

v6.19.8

Compare Source

v6.19.7

Compare Source

v6.19.6

Compare Source

Mar 1, 2024

We'd like to offer a big thanks to the 4 contributors who made this release possible. Here are some highlights ✨:

  • 🌍 Improve Korean (ko-KR) and Chinese (zh-CN) locales on the Pickers
  • 🐞 Bugfixes
  • 📚 Documentation improvements
Data Grid
@mui/x-data-grid@6.19.6
@mui/x-data-grid-pro@6.19.6 pro

Same changes as in @mui/x-data-grid@6.19.6.

@mui/x-data-grid-premium@6.19.6 premium

Same changes as in @mui/x-data-grid-pro@6.19.6, plus:

Date Pickers
@mui/x-date-pickers@6.19.6
@mui/x-date-pickers-pro@6.19.6 pro

Same changes as in @mui/x-date-pickers@6.19.6.

Docs

v6.19.5

Compare Source

Feb 23, 2024

We'd like to offer a big thanks to the 6 contributors who made this release possible. Here are some highlights ✨:

  • 🐞 Bugfixes
  • 📚 Documentation improvements
Data Grid
@mui/x-data-grid@6.19.5
@mui/x-data-grid-pro@6.19.5 pro

Same changes as in @mui/x-data-grid@6.19.5.

@mui/x-data-grid-premium@6.19.5 premium

Same changes as in @mui/x-data-grid-pro@6.19.5.

Date Pickers
@mui/x-date-pickers@6.19.5
@mui/x-date-pickers-pro@6.19.5 pro

Same changes as in @mui/x-date-pickers@6.19.5.

Charts / @mui/x-charts@6.19.5
Docs
Core

v6.19.4

Compare Source

Feb 9, 2024

We'd like to offer a big thanks to the 10 contributors who made this release possible. Here are some highlights ✨:

  • 🌍 Improve Danish (da-DK) locale on the Data Grid (#​11972) @​ShahrazH
  • 🐞 Bugfixes
  • 📚 Documentation improvements
Data Grid
@mui/x-data-grid@v6.19.4
@mui/x-data-grid-pro@v6.19.4 pro

Same changes as in @mui/x-data-grid@v6.19.4.

@mui/x-data-grid-premium@v6.19.4 premium

Same changes as in @mui/x-data-grid-pro@v6.19.4, plus:

Date Pickers
@mui/x-date-pickers@v6.19.4
@mui/x-date-pickers-pro@v6.19.4 pro

Same changes as in @mui/x-date-pickers@v6.19.4.

Charts / @mui/x-charts@v6.19.4
Docs

v6.19.3

Compare Source

Feb 1, 2024

We'd like to offer a big thanks to the 6 contributors who made this release possible. Here are some highlights ✨:

Data Grid
@mui/x-data-grid@6.19.3
@mui/x-data-grid-pro@6.19.3 pro

Same changes as in @mui/x-data-grid@6.19.3.

@mui/x-data-grid-premium@6.19.3 premium

Same changes as in @mui/x-data-grid-pro@6.19.3.

Date Pickers
@mui/x-date-pickers@6.19.3
@mui/x-date-pickers-pro@6.19.3 pro

Same changes as in @mui/x-date-pickers@6.19.3.

Charts / @mui/x-charts@6.19.3
Docs

v6.19.2

Compare Source

v6.19.0

Compare Source

Jan 11, 2024

We'd like to offer a big thanks to the 3 contributors who made this release possible. Here are some highlights ✨:

  • ⏰ Support date-fns v3 (#​11659) @​LukasTy
    Pickers support both v2 and v3 of date-fns. For v3 use AdapterDateFnsV3.
    // with date-fns v2.x
    import { AdapterDateFns } from '@&#8203;mui/x-date-pickers/AdapterDateFns';
    import de from 'date-fns/locale/de';
    // with date-fns v3.x
    import { AdapterDateFns } from '@&#8203;mui/x-date-pickers/AdapterDateFnsV3';
    import { de } from 'date-fns/locale/de';
Date Pickers
@mui/x-date-pickers@6.19.0
@mui/x-date-pickers-pro@6.19.0 pro

Same changes as in @mui/x-date-pickers@6.19.0.

Docs

v6.18.7

Compare Source

v6.18.6

Compare Source

Dec 22, 2023

We'd like to offer a big thanks to the 5 contributors who made this release possible. Here are some highlights ✨:

Data Grid
@mui/x-data-grid@6.18.6
@mui/x-data-grid-pro@6.18.6 pro

Same changes as in @mui/x-data-grid@6.18.6.

@mui/x-data-grid-premium@6.18.6 premium

Same changes as in @mui/x-data-grid-pro@6.18.6.

Date Pickers
@mui/x-date-pickers@6.18.6
@mui/x-date-pickers-pro@6.18.6 pro

Same changes as in @mui/x-date-pickers@6.18.6.

Charts / @mui/x-charts@6.18.4
Docs

v6.18.5

Compare Source

Dec 14, 2023

We'd like to offer a big thanks to the 7 contributors who made this release possible. Here are some highlights ✨:

  • 🌍 Improve Swedish (sv-SE) and Urdu (ur-PK) locales on the Data Grid
  • 🐞 Bugfixes
Data Grid
@mui/x-data-grid@6.18.5
@mui/x-data-grid-pro@6.18.5 pro

Same changes as in @mui/x-data-grid@6.18.5.

@mui/x-data-grid-premium@6.18.5 premium

Same changes as in @mui/x-data-grid-pro@6.18.5.

Date Pickers
@mui/x-date-pickers@6.18.5
@mui/x-date-pickers-pro@6.18.5 pro

Same changes as in @mui/x-date-pickers@6.18.5, plus:

Docs

v6.18.4

Compare Source

Dec 8, 2023

We'd like to offer a big thanks to the 6 contributors who made this release possible. Here are some highlights ✨:

  • 📚 Add Pickers FAQ page
  • 🌍 Improve Danish (da-DK) locale on Data Grid
  • 🐞 Bugfixes
Data Grid
@mui/x-data-grid@6.18.4
@mui/x-data-grid-pro@6.18.4 pro

Same changes as in @mui/x-data-grid@6.18.4.

@mui/x-data-grid-premium@6.18.4 premium

Same changes as in @mui/x-data-grid-pro@6.18.4.

Date Pickers
@mui/x-date-pickers@6.18.4
@mui/x-date-pickers-pro@6.18.4 pro

Same changes as in @mui/x-date-pickers@6.18.4.

Docs

v6.18.3

Compare Source

Dec 4, 2023

We'd like to offer a big thanks to the 10 contributors who made this release possible. Here are some highlights ✨:

  • 📈 Fix a lot of Charts package issues
  • 🌍 Improve Bulgarian (bg-BG) locale on Data Grid
  • 🐞 Bugfixes
  • 📚 Documentation improvements
Data Grid
@mui/x-data-grid@6.18.3
@mui/x-data-grid-pro@6.18.3 pro

Same changes as in @mui/x-data-grid@6.18.3.

@mui/x-data-grid-premium@6.18.3 premium

Same changes as in @mui/x-data-grid-pro@6.18.3, plus:

Date Pickers
@mui/x-date-pickers@6.18.3
  • [pickers] Correctly format MultiSectionDigitalClock number sections (#​11297) @​LukasTy
  • [pickers] Expand field placeholder methods flexibility by providing format parameter (#​11254) @​LukasTy
@mui/x-date-pickers-pro@6.18.3 pro

Same changes as in @mui/x-date-pickers@6.18.3.

Charts / @mui/x-charts@6.18.3
Docs

v6.18.2

Compare Source

Nov 23, 2023

We'd like to offer a big thanks to the 11 contributors who made this release possible. Here are some highlights ✨:

  • 🌍 Improve Arabic (ar-SD), Czech (cs-CZ), and Hebrew (he-IL) locales on Data Grid
  • 🌍 Add Basque (eu) and Macedonian (mk) locales on Pickers
  • 🌍 Improve German (de-DE) and Spanish (es-ES) locales on Pickers
  • 🐞 Bugfixes
  • 📚 Documentation improvements
Data Grid
@mui/x-data-grid@6.18.2
@mui/x-data-grid-pro@6.18.2 pro

Same changes as in @mui/x-data-grid@6.18.2.

@mui/x-data-grid-premium@6.18.2 premium

Same changes as in @mui/x-data-grid-pro@6.18.2.

Date Pickers
@mui/x-date-pickers@6.18.2
@mui/x-date-pickers-pro@6.18.2 pro

Same changes as in @mui/x-date-pickers@6.18.2.

Charts / @mui/x-charts@6.18.2
Docs

v6.18.1

Compare Source

Nov 9, 2023

We'd like to offer a big thanks to the 9 contributors who made this release possible. Here are some highlights ✨:

  • ✨ Fix aggregation label not showing when renderHeader is used (#​10961) @​cherniavskii
  • 📘 Server side data source early documentation published
  • 📈 <ChartsReferenceLine /> component is now available
  • 🐞 Bugfixes
  • 📚 Documentation improvements
Data Grid
@mui/x-data-grid@6.18.1
@mui/x-data-grid-pro@6.18.1 pro

Same changes as in @mui/x-data-grid@6.18.1, plus:

@mui/x-data-grid-premium@6.18.1 premium

Same changes as in @mui/x-data-grid-pro@6.18.1, plus:

Date Pickers
@mui/x-date-pickers@6.18.1
@mui/x-date-pickers-pro@6.18.1 pro

Same changes as in @mui/x-date-pickers@6.18.1.

Charts / @mui/x-charts@6.18.1
Docs
Core

v6.18.0

Compare Source

Nov 3, 2023

We'd like to offer a big thanks to the 7 contributors who made this release possible. Here are some highlights ✨:

  • 🎁 The Charts package is now officially stable!
  • 🥧 Pie charts are now animated.
  • 📈 Line charts now support partial data, and can interpolate missing data.
line charts with partial data
  • ✨ Allow to ignore diacritics when filtering
  • 📚 Documentation improvements
Data Grid
@mui/x-data-grid@6.18.0
@mui/x-data-grid-pro@6.18.0 pro

Same changes as in @mui/x-data-grid@6.18.0.

@mui/x-data-grid-premium@6.18.0 premium

Same changes as in @mui/x-data-grid-pro@6.18.0.

Date Pickers
@mui/x-date-pickers@6.18.0
@mui/x-date-pickers-pro@6.18.0 pro

Same changes as in @mui/x-date-pickers@6.18.0.

Charts / @mui/x-charts@6.18.0
Docs
Core

v6.17.0

Compare Source

Oct 27, 2023

We'd like to offer a big thanks to the 9 contributors who made this release possible. Here are some highlights ✨:

  • 🎁 The Tree View package is now officially stable!

tree-view-example

  • ✨ Improve the handling of non-numeric values by Data Grid aggregation
  • 🚀 Support lines with different domains on the line charts
  • 🐞 Bugfixes
  • 📚 Documentation improvements
Data Grid
@mui/x-data-grid@6.17.0
@mui/x-data-grid-pro@6.17.0 pro

Same changes as in @mui/x-data-grid@6.17.0, plus:

`@mui/x-data-gr

Configuration

📅 Schedule: Branch creation - "before 8am every weekend" in timezone Europe/Berlin, Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, 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 Mend Renovate. View repository job log here.

@renovate renovate bot added the renovate Renovate Bot label Apr 6, 2024
@JuliusHenke JuliusHenke closed this Apr 7, 2024
Copy link
Contributor Author

renovate bot commented Apr 7, 2024

Renovate Ignore Notification

Because you closed this PR without merging, Renovate will ignore this update. You will not get PRs for any future 7.x releases. But if you manually upgrade to 7.x then Renovate will re-enable minor and patch updates automatically.

If you accidentally closed this PR, or if you changed your mind: rename this PR to get a fresh replacement PR.

@renovate renovate bot deleted the renovate/major-material-ui-monorepo branch April 7, 2024 00:04
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
renovate Renovate Bot
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant