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

chore(deps): bump the mui-packages group across 1 directory with 4 updates #985

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

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jul 1, 2024

Bumps the mui-packages group with 4 updates in the / directory: @mui/icons-material, @mui/lab, @mui/material and @mui/x-data-grid.

Updates @mui/icons-material from 5.14.16 to 5.15.21

Release notes

Sourced from @​mui/icons-material's releases.

v5.15.21

Jun 28, 2024

A big thanks to the 7 contributors who made this release possible.

@mui/[email protected]

Docs

Core

All contributors of this release in alphabetical order: @​alexfauquette, @​alexismo, @​arminmeh, @​Danielkhakbaz, @​DiegoAndai, @​mnajdova, @​oliviertassinari

v5.15.20

Jun 12, 2024

A big thanks to the 9 contributors who made this release possible.

@mui/[email protected]

@mui/[email protected]

Docs

... (truncated)

Changelog

Sourced from @​mui/icons-material's changelog.

v5.15.21

Jun 28, 2024

A big thanks to the 7 contributors who made this release possible.

@mui/[email protected]

Docs

Core

All contributors of this release in alphabetical order: @​alexfauquette, @​alexismo, @​arminmeh, @​Danielkhakbaz, @​DiegoAndai, @​mnajdova, @​oliviertassinari

v5.15.20

Jun 12, 2024

A big thanks to the 9 contributors who made this release possible.

@mui/[email protected]

@mui/[email protected]

Docs

... (truncated)

Commits

Updates @mui/lab from 5.0.0-alpha.152 to 5.0.0-alpha.170

Changelog

Sourced from @​mui/lab's changelog.

Versions

v6.0.0-alpha.13

Jun 27, 2024

A big thanks to the 10 contributors who made this release possible. Here are some highlights ✨:

@mui/[email protected]

  • [Autocomplete] Fix more React 18.3 key spread warnings in demos (#42639) @​wbt
  • [Container][Grid][Stack][Hidden] Export Pigment CSS layout components (#42693) @​siriwatknp
  • [Text Field] when click password visibility button, text caret position change to very front. (#42595) @​appleSimple
  • [Modal] migrate useSlotProps to useSLot (#42150) @​sai6855

@mui/[email protected]

Docs

Core

All contributors of this release in alphabetical order: @​aarongarciah, @​alelthomas, @​appleSimple, @​cjl750, @​Janpot, @​joetats, @​LukasTy, @​sai6855, @​siriwatknp, @​wbt

v6.0.0-alpha.12

Jun 24, 2024

A big thanks to the 17 contributors who made this release possible.

@mui/[email protected]

... (truncated)

Commits

Updates @mui/material from 5.14.17 to 5.15.21

Release notes

Sourced from @​mui/material's releases.

v5.15.21

Jun 28, 2024

A big thanks to the 7 contributors who made this release possible.

@mui/[email protected]

Docs

Core

All contributors of this release in alphabetical order: @​alexfauquette, @​alexismo, @​arminmeh, @​Danielkhakbaz, @​DiegoAndai, @​mnajdova, @​oliviertassinari

v5.15.20

Jun 12, 2024

A big thanks to the 9 contributors who made this release possible.

@mui/[email protected]

@mui/[email protected]

Docs

... (truncated)

Changelog

Sourced from @​mui/material's changelog.

v5.15.21

Jun 28, 2024

A big thanks to the 7 contributors who made this release possible.

@mui/[email protected]

Docs

Core

All contributors of this release in alphabetical order: @​alexfauquette, @​alexismo, @​arminmeh, @​Danielkhakbaz, @​DiegoAndai, @​mnajdova, @​oliviertassinari

v5.15.20

Jun 12, 2024

A big thanks to the 9 contributors who made this release possible.

@mui/[email protected]

@mui/[email protected]

Docs

... (truncated)

Commits

Updates @mui/x-data-grid from 6.18.1 to 7.8.0

Release notes

Sourced from @​mui/x-data-grid's releases.

v7.8.0

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

... (truncated)

Changelog

Sourced from @​mui/x-data-grid's changelog.

7.8.0

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]

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by kyusuf, a new releaser for @​mui/x-data-grid since your current version.


Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

…dates

Bumps the mui-packages group with 4 updates in the / directory: [@mui/icons-material](https://github.com/mui/material-ui/tree/HEAD/packages/mui-icons-material), [@mui/lab](https://github.com/mui/material-ui/tree/HEAD/packages/mui-lab), [@mui/material](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material) and [@mui/x-data-grid](https://github.com/mui/mui-x/tree/HEAD/packages/x-data-grid).


Updates `@mui/icons-material` from 5.14.16 to 5.15.21
- [Release notes](https://github.com/mui/material-ui/releases)
- [Changelog](https://github.com/mui/material-ui/blob/v5.15.21/CHANGELOG.md)
- [Commits](https://github.com/mui/material-ui/commits/v5.15.21/packages/mui-icons-material)

Updates `@mui/lab` from 5.0.0-alpha.152 to 5.0.0-alpha.170
- [Release notes](https://github.com/mui/material-ui/releases)
- [Changelog](https://github.com/mui/material-ui/blob/next/CHANGELOG.md)
- [Commits](https://github.com/mui/material-ui/commits/HEAD/packages/mui-lab)

Updates `@mui/material` from 5.14.17 to 5.15.21
- [Release notes](https://github.com/mui/material-ui/releases)
- [Changelog](https://github.com/mui/material-ui/blob/v5.15.21/CHANGELOG.md)
- [Commits](https://github.com/mui/material-ui/commits/v5.15.21/packages/mui-material)

Updates `@mui/x-data-grid` from 6.18.1 to 7.8.0
- [Release notes](https://github.com/mui/mui-x/releases)
- [Changelog](https://github.com/mui/mui-x/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mui/mui-x/commits/v7.8.0/packages/x-data-grid)

---
updated-dependencies:
- dependency-name: "@mui/icons-material"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: mui-packages
- dependency-name: "@mui/lab"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: mui-packages
- dependency-name: "@mui/material"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: mui-packages
- dependency-name: "@mui/x-data-grid"
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: mui-packages
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested a review from a team as a code owner July 1, 2024 02:44
@dependabot dependabot bot added dependencies Pull requests that update a dependency file JavaScript Pull requests that update Javascript code labels Jul 1, 2024
Copy link

netlify bot commented Jul 1, 2024

Deploy Preview for warm-cannoli-79bbb2 ready!

Name Link
🔨 Latest commit 81bcc12
🔍 Latest deploy log https://app.netlify.com/sites/warm-cannoli-79bbb2/deploys/668217f9432edd0008e47a09
😎 Deploy Preview https://deploy-preview-985--warm-cannoli-79bbb2.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

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 JavaScript Pull requests that update Javascript code
Projects
Status: In progress
Development

Successfully merging this pull request may close these issues.

None yet

0 participants