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 #828

Merged
merged 1 commit into from
Jul 21, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 10, 2024

Mend Renovate

This PR contains the following updates:

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

Release Notes

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

v7.11.0

Compare Source

Jul 18, 2024

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

  • 🎨 Add color legend for charts (#​13700) @​alexfauquette
  • 🌍 Improve Korean (ko-KR) locale on the Date and Time Pickers
  • 🌍 Improve Russian (ru-RU) locale on the Date and Time Pickers and Data Grid
  • 🐞 Bugfixes
  • 📚 Documentation improvements
Data Grid
@mui/x-data-grid@7.11.0
@mui/x-data-grid-pro@7.11.0 pro

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

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

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

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

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

Charts
@mui/x-charts@7.11.0
Tree View
@mui/x-tree-view@7.11.0
Docs
Core

v7.10.0

Compare Source

Jul 11, 2024

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

  • 🎁 Add selectors to support showing child row count in footer in the Data Grid
  • ✨ New APIs for retrieving current item tree and item's children IDs in the Tree View
  • 🌍 Improve Spanish (es-ES) locale on the Data Grid
  • 🐞 Bugfixes
  • 📚 Documentation improvements
Data Grid
@mui/x-data-grid@7.10.0
@mui/x-data-grid-pro@7.10.0 pro

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

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

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

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

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

Charts
@mui/x-charts@7.10.0
Tree View
@mui/x-tree-view@7.10.0
Docs
Core

v7.9.0

Compare Source

Jul 5, 2024

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

  • 🔄 Add loading overlay variants, including a skeleton loader option to the Data Grid component. See Loading overlay docs for more details.
  • 🌳 Add selectItem and getItemDOMElement methods to the TreeView component public API
  • ⛏️ Make the usePickersTranslations hook public in the pickers component
  • 🐞 Bugfixes
Data Grid
@mui/x-data-grid@7.9.0
@mui/x-data-grid-pro@7.9.0 pro

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

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

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

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

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

Charts
@mui/x-charts@7.9.0
Tree View
@mui/x-tree-view@7.9.0
Docs
Core

v7.8.0

Compare Source

Jun 28, 2024

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

  • 🛰 Introduce server-side data source for improved server integration in the Data Grid.

    Supports server-side pagination, sorting and filtering on plain and tree data, and automatic caching.

    To enable, provide a getRows function to the unstable_dataSource prop on the Data Grid component.

    const dataSource = {
      getRows: async (params: GridServerGetRowsParams) => {
        const data = await fetch(
          `https://api.example.com/data?${new URLSearchParams({
            page: params.page,
            pageSize: params.pageSize,
            sortModel: JSON.stringify(params.sortModel),
            filterModel: JSON.stringify(params.filterModel),
          }).toString()}`,
        );
        return {
          rows: data.rows,
          totalRows: data.totalRows,
        };
      },
    }
    <DataGridPro
      unstable_dataSource={dataSource}
      {...otherProps}
    />

    See server-side data documentation for more details.

  • 📈 Support Date data on the BarChart component

  • ↕️ Support custom column sort icons on the Data Grid

  • 🖱️ Support modifying the expansion trigger on the Tree View components

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

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

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

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

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

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

Charts
@mui/x-charts@7.8.0
Tree View
@mui/x-tree-view@7.8.0
Docs
Core

v7.7.1

Compare Source

Jun 21, 2024

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

  • 🌍 Improve Portuguese (pt-PT) locale on the Data Grid
  • 🌍 Improve Danish (da-DK) locale on the Date and Time Pickers
  • 🐞 Bugfixes
  • 📚 Documentation improvements
Data Grid
@mui/x-data-grid@7.7.1
@mui/x-data-grid-pro@7.7.1 pro

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

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

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

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

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

Charts
@mui/x-charts@7.7.1
Tree View
@mui/x-tree-view@7.7.1
Docs
Core

v7.7.0

Compare Source

Jun 13, 2024

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

  • 🎁 Allow customization of the Pickers month and the year buttons
  • 🌍 Improve Persian (fa-IR), Portuguese (pt-PT), and Russian (ru-RU) locales on the Data Grid
  • 🌍 Improve Korean (ko-KR) and Persian (fa-IR) locales on the Date and Time Pickers
  • 🐞 Bugfixes
  • 📚 Documentation improvements
Data Grid
@mui/x-data-grid@7.7.0
@mui/x-data-grid-pro@7.7.0 pro

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

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

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

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

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

Charts
@mui/x-charts@7.7.0
Tree View
@mui/x-tree-view@7.7.0
Docs
Core

v7.6.2

Compare Source

Jun 6, 2024

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

  • 📚 Adds Date and Time Pickers accessibility page
  • 🐞 Bugfixes
  • 📚 Documentation improvements
Data Grid
@mui/x-data-grid@7.6.2
@mui/x-data-grid-pro@7.6.2 pro

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

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

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

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

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

Charts
@mui/x-charts@7.6.2
Docs
Core

v7.6.1

Compare Source

May 31, 2024

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

🐞 Address the @mui/internal-test-utils added as a direct dependency to @mui/x-data-grid by mistake.

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

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

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

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

v7.6.0

Compare Source

May 30, 2024

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

  • 🎁 Allow to define and customize the indentation of nested items in the Tree View
  • ✨ Allow charts highlights to be controlled
  • 🌍 Improve Persian (fa-IR) locale on the Data Grid
  • 🐞 Bugfixes
  • 📚 Documentation improvements
Data Grid
@mui/x-data-grid@7.6.0
@mui/x-data-grid-pro@7.6.0 pro

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

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

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

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

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

Charts
@mui/x-charts@7.6.0
Tree View
@mui/x-tree-view@7.6.0
Docs
Core

v7.5.1

Compare Source

May 23, 2024

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

  • 🧰 Improve tree view testing
  • 📊 Add label to be displayed in BarChart
Data Grid
@mui/x-data-grid@7.5.1
@mui/x-data-grid-pro@7.5.1 pro

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

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

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

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

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

Charts
@mui/x-charts@7.5.1
Docs
Core

v7.5.0

Compare Source

May 17, 2024

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

  • 🎁 Add support for checkbox selection on the Tree View components
  • 🌍 Improve Norwegian (nb-NO) and Spanish (es-ES) locales on the Data Grid
  • 🐞 Bugfixes
  • 📚 Documentation improvements
Data Grid
@mui/x-data-grid@7.5.0
@mui/x-data-grid-pro@7.5.0 pro

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

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

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

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

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

Charts
@mui/x-charts@7.5.0
Tree View
@mui/x-tree-view@7.5.0
Docs
Core

v7.4.0

Compare Source

May 10, 2024

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

  • ✨ Add optional id attribute on shortcut items of the Date and Time Pickers
  • 🎁 Add support for date-fns-jalali v3 in the Date and Time Pickers
  • 🚀 Support rounded corners on BarChart
  • 🌍 Add accessibility page to TreeView docs
  • 🐞 Bugfixes
  • 📚 Documentation improvements
Data Grid
@mui/x-data-grid@7.4.0
@mui/x-data-grid-pro@7.4.0 pro

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

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

Same changes as in `@mui/x-data


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - 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.

🔕 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 requested a review from a team as a code owner May 10, 2024 09:19
@renovate renovate bot added dependencies Pull requests that update a dependency file deps: javascript labels May 10, 2024
@renovate renovate bot force-pushed the renovate/major-material-ui-monorepo branch 2 times, most recently from 61bfad3 to 1b2c426 Compare May 10, 2024 23:20
@renovate renovate bot force-pushed the renovate/major-material-ui-monorepo branch 2 times, most recently from 0040dad to 8f17068 Compare May 23, 2024 15:24
@renovate renovate bot changed the title fix(deps): update dependency @mui/x-date-pickers to v7 fix(deps): update dependency @mui/x-date-pickers to v7 - autoclosed May 24, 2024
@renovate renovate bot closed this May 24, 2024
@renovate renovate bot deleted the renovate/major-material-ui-monorepo branch May 24, 2024 09:55
@renovate renovate bot changed the title fix(deps): update dependency @mui/x-date-pickers to v7 - autoclosed fix(deps): update dependency @mui/x-date-pickers to v7 May 27, 2024
@renovate renovate bot restored the renovate/major-material-ui-monorepo branch May 27, 2024 18:09
@renovate renovate bot reopened this May 27, 2024
@renovate renovate bot force-pushed the renovate/major-material-ui-monorepo branch 3 times, most recently from cb2a3f3 to 6ed4898 Compare June 6, 2024 05:20
@renovate renovate bot force-pushed the renovate/major-material-ui-monorepo branch from 6ed4898 to 314ea0f Compare June 6, 2024 16:42
@renovate renovate bot force-pushed the renovate/major-material-ui-monorepo branch from 314ea0f to 1097d09 Compare June 13, 2024 17:51
@renovate renovate bot force-pushed the renovate/major-material-ui-monorepo branch from 1097d09 to f603cd0 Compare June 21, 2024 17:15
@renovate renovate bot force-pushed the renovate/major-material-ui-monorepo branch from f603cd0 to d2f3b6d Compare June 28, 2024 18:57
@renovate renovate bot force-pushed the renovate/major-material-ui-monorepo branch 2 times, most recently from c9c3214 to 068427d Compare July 11, 2024 14:54
@renovate renovate bot force-pushed the renovate/major-material-ui-monorepo branch from 068427d to e035307 Compare July 18, 2024 16:53
@renovate renovate bot force-pushed the renovate/major-material-ui-monorepo branch from e035307 to c7a1616 Compare July 21, 2024 05:15
@renovate renovate bot force-pushed the renovate/major-material-ui-monorepo branch from c7a1616 to bba18f7 Compare July 21, 2024 13:08
@Shzmj Shzmj merged commit b2b70a0 into dev Jul 21, 2024
3 checks passed
@Shzmj Shzmj deleted the renovate/major-material-ui-monorepo branch July 21, 2024 13:11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file deps: javascript
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants