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

[Snyk] Upgrade @mui/x-data-grid from 7.7.0 to 7.8.0 #7

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

Conversation

DMPatod
Copy link
Owner

@DMPatod DMPatod commented Jul 20, 2024

This PR was automatically created by Snyk using the credentials of a real user.


![snyk-top-banner](https://github.com/andygongea/OWASP-Benchmark/assets/818805/c518c423-16fe-447e-b67f-ad5a49b5d123)

Snyk has created this PR to upgrade @mui/x-data-grid from 7.7.0 to 7.8.0.

ℹ️ Keep your dependencies up-to-date. This makes it easier to fix existing vulnerabilities and to more quickly identify and fix newly disclosed vulnerabilities when they affect your project.


  • The recommended version is 2 versions ahead of your current version.

  • The recommended version was released on 22 days ago.

Release notes
Package name: @mui/x-data-grid
  • 7.8.0 - 2024-06-28

    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

  • 7.7.1 - 2024-06-21

    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:

    • [DateRangePicker] Add accessible name to calendar grid (#13538) @ LukasTy

    Charts

    @ mui/x-charts@7.7.1

    Tree View

    @ mui/x-tree-view@7.7.1

    Docs

    Core

  • 7.7.0 - 2024-06-13

    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:

    • [DataGridPro] Do not render detail panel if the focused cell is not visible (#13456) @ cherniavskii

    @ 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

from @mui/x-data-grid GitHub release notes

Important

  • Check the changes in this PR to ensure they won't cause issues with your project.
  • This PR was automatically created by Snyk using the credentials of a real user.

Note: You are seeing this because you or someone else with access to this repository has authorized Snyk to open upgrade PRs.

For more information:

Snyk has created this PR to upgrade @mui/x-data-grid from 7.7.0 to 7.8.0.

See this package in npm:
@mui/x-data-grid

See this project in Snyk:
https://app.snyk.io/org/danielmaiaevangelista/project/0ba00ac7-dbb6-4868-9b17-5aee98a2b5c0?utm_source=github&utm_medium=referral&page=upgrade-pr
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.

2 participants