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

Bump MUI X to 7.8.0 #3699

Merged
merged 1 commit into from
Jun 28, 2024
Merged

Bump MUI X to 7.8.0 #3699

merged 1 commit into from
Jun 28, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 21, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@mui/x-charts (source) 7.7.0 -> 7.8.0 age adoption passing confidence
@mui/x-data-grid (source) 7.7.0 -> 7.8.0 age adoption passing confidence
@mui/x-data-grid-premium (source) 7.7.0 -> 7.8.0 age adoption passing confidence
@mui/x-date-pickers (source) 7.7.0 -> 7.8.0 age adoption passing confidence
@mui/x-date-pickers-pro (source) 7.7.0 -> 7.8.0 age adoption passing confidence
@mui/x-license (source) 7.7.0 -> 7.8.0 age adoption passing confidence
@mui/x-tree-view (source) 7.7.0 -> 7.8.0 age adoption passing confidence

Release Notes

mui/mui-x (@​mui/x-charts)

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/[email protected]
@mui/[email protected] pro

Same changes as in @mui/[email protected], plus:

@mui/[email protected] premium

Same changes as in @mui/[email protected].

Date and Time Pickers
@mui/[email protected]
@mui/[email protected] pro

Same changes as in @mui/[email protected].

Charts
@mui/[email protected]
Tree View
@mui/[email protected]
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/[email protected]
@mui/[email protected] pro

Same changes as in @mui/[email protected], plus:

@mui/[email protected] premium

Same changes as in @mui/[email protected].

Date and Time Pickers
@mui/[email protected]
@mui/[email protected] pro

Same changes as in @mui/[email protected], plus:

Charts
@mui/[email protected]
Tree View
@mui/[email protected]
Docs
Core

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 these updates 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 dependencies Update of dependencies label Jun 21, 2024
@github-actions github-actions bot added the PR: out-of-date The pull request has merge conflicts and can't be merged label Jun 21, 2024
@renovate renovate bot force-pushed the renovate/mui-x branch from 190cba6 to 3770e7e Compare June 21, 2024 16:24
@github-actions github-actions bot added PR: out-of-date The pull request has merge conflicts and can't be merged and removed PR: out-of-date The pull request has merge conflicts and can't be merged labels Jun 21, 2024
@renovate renovate bot force-pushed the renovate/mui-x branch from 3770e7e to ecadc86 Compare June 23, 2024 09:57
@github-actions github-actions bot removed the PR: out-of-date The pull request has merge conflicts and can't be merged label Jun 23, 2024
@Janpot
Copy link
Member

Janpot commented Jun 24, 2024

Blocked on mui/mui-x#13611

@github-actions github-actions bot added the PR: out-of-date The pull request has merge conflicts and can't be merged label Jun 24, 2024
@renovate renovate bot force-pushed the renovate/mui-x branch from ecadc86 to 03266ef Compare June 24, 2024 18:34
@github-actions github-actions bot added PR: out-of-date The pull request has merge conflicts and can't be merged and removed PR: out-of-date The pull request has merge conflicts and can't be merged labels Jun 24, 2024
@renovate renovate bot force-pushed the renovate/mui-x branch from 03266ef to 1f80f52 Compare June 25, 2024 08:46
@github-actions github-actions bot removed the PR: out-of-date The pull request has merge conflicts and can't be merged label Jun 25, 2024
@renovate renovate bot force-pushed the renovate/mui-x branch from 1f80f52 to eca038e Compare June 28, 2024 16:49
@renovate renovate bot changed the title Bump MUI X to 7.7.1 Bump MUI X to 7.8.0 Jun 28, 2024
@renovate renovate bot force-pushed the renovate/mui-x branch from eca038e to 181678e Compare June 28, 2024 17:14
@Janpot Janpot merged commit 874a7e4 into master Jun 28, 2024
14 checks passed
@Janpot Janpot deleted the renovate/mui-x branch June 28, 2024 18:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Update of dependencies
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant