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-tree-view from 7.8.0 to 7.10.0 #2832

Closed

Conversation

arnfinn
Copy link
Contributor

@arnfinn arnfinn commented Aug 8, 2024

snyk-top-banner

Snyk has created this PR to upgrade @mui/x-tree-view from 7.8.0 to 7.10.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 a month ago.

Release notes
Package name: @mui/x-tree-view
  • 7.10.0 - 2024-07-11

    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:

    • [DataGridPro] Keep bottom pinned row at the bottom (#13313) @ romgrk

    @ 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

    • [fields] Prevent infinite recursion when ensuring selection (#13779) @ LukasTy
    • [fields] Unify fields behavior regardless of the readOnly flag (#13688) @ LukasTy

    @ mui/x-date-pickers-pro@7.10.0 pro

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

    • [DateRangePicker] Fix calendarHeader slot props propagation (#13780) @ LukasTy
    • [DateTimeRangePicker] Resolve format from given views (#13743) @ LukasTy

    Charts

    @ mui/x-charts@7.10.0

    • [charts] Fix displaying area of a LineChart when using the log scale (#13791) @ alexfauquette
    • [charts] Use correct click handler prop on pie chart OnSeriesItemClick documentation (#13761) @ tonyhallett

    Tree View

    @ mui/x-tree-view@7.10.0

    Docs

    Core

  • 7.9.0 - 2024-07-05

    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

  • 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

from @mui/x-tree-view 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-tree-view from 7.8.0 to 7.10.0.

See this package in npm:
@mui/x-tree-view

See this project in Snyk:
https://app.snyk.io/org/arnfinn/project/93e971fb-73dd-4c65-a126-14af652d59e0?utm_source=github&utm_medium=referral&page=upgrade-pr
@arnfinn arnfinn closed this Aug 9, 2024
@arnfinn arnfinn deleted the snyk-upgrade-99d6e36d86910a12c95369b9381742a7 branch August 9, 2024 11:42
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