Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 26, 2025

Bumps the npm group with 9 updates:

Package From To
@mui/icons-material 6.4.8 7.0.0
@mui/material 6.4.8 7.0.0
eslint-import-resolver-typescript 4.2.3 4.2.4
pnpm 10.6.5 10.7.0
@mui/core-downloads-tracker 6.4.8 7.0.0
@mui/styled-engine 6.4.8 7.0.0
@mui/system 6.4.8 7.0.0
electron-to-chromium 1.5.123 1.5.124
rspack-resolver 1.2.2 1.3.0

Updates @mui/icons-material from 6.4.8 to 7.0.0

Release notes

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

v7.0.0

🎉 We're happy to announce the stable release of v7.

@mui/material@7.0.0

@mui/system@7.0.0

@mui/lab@7.0.0-beta.9

Docs

Core

All contributors of this release in alphabetical order: @​DiegoAndai, @​IshfaqAhmedProg, @​Janpot, @​letianpailove, @​LukasTy, @​mnajdova, @​mushfiqbh, @​oliviertassinari, @​siriwatknp, @​ZeeshanTamboli

v7.0.0-rc.0

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

... (truncated)

Changelog

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

7.0.0

Mar 26, 2025

🎉 We're happy to announce the stable release of v7.

@mui/material@7.0.0

@mui/system@7.0.0

@mui/lab@7.0.0-beta.9

Docs

Core

... (truncated)

Commits

Updates @mui/material from 6.4.8 to 7.0.0

Release notes

Sourced from @​mui/material's releases.

v7.0.0

🎉 We're happy to announce the stable release of v7.

@mui/material@7.0.0

@mui/system@7.0.0

@mui/lab@7.0.0-beta.9

Docs

Core

All contributors of this release in alphabetical order: @​DiegoAndai, @​IshfaqAhmedProg, @​Janpot, @​letianpailove, @​LukasTy, @​mnajdova, @​mushfiqbh, @​oliviertassinari, @​siriwatknp, @​ZeeshanTamboli

v7.0.0-rc.0

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

... (truncated)

Changelog

Sourced from @​mui/material's changelog.

7.0.0

Mar 26, 2025

🎉 We're happy to announce the stable release of v7.

@mui/material@7.0.0

@mui/system@7.0.0

@mui/lab@7.0.0-beta.9

Docs

Core

... (truncated)

Commits

Updates eslint-import-resolver-typescript from 4.2.3 to 4.2.4

Release notes

Sourced from eslint-import-resolver-typescript's releases.

v4.2.4

Patch Changes

  • #407 6b183ff Thanks @​JounQin! - chore: migrate to rebranding unrs-resolver with new targets supported:

    • i686-pc-windows-msvc
    • armv7-unknown-linux-musleabihf
    • powerpc64le-unknown-linux-gnu
    • s390x-unknown-linux-gnu

New Contributors

Full Changelog: import-js/eslint-import-resolver-typescript@v4.2.3...v4.2.4

Changelog

Sourced from eslint-import-resolver-typescript's changelog.

4.2.4

Patch Changes

  • #407 6b183ff Thanks @​JounQin! - chore: migrate to rebranding unrs-resolver with new targets supported:

    • i686-pc-windows-msvc
    • armv7-unknown-linux-musleabihf
    • powerpc64le-unknown-linux-gnu
    • s390x-unknown-linux-gnu
Commits
  • e4a3270 chore: release eslint-import-resolver-typescript (#408)
  • 6b183ff chore: migrate to rebranding unrs-resolver with new targets supported (#407)
  • 5cfcf4c docs: document usage with Bun (#404)
  • See full diff in compare view

Updates pnpm from 10.6.5 to 10.7.0

Release notes

Sourced from pnpm's releases.

pnpm 10.7

Minor Changes

  • pnpm config get and list also show settings set in pnpm-workspace.yaml files #9316.

  • It should be possible to use env variables in pnpm-workspace.yaml setting names and value.

  • Add an ability to patch dependencies by version ranges. Exact versions override version ranges, which in turn override name-only patches. Version range * is the same as name-only, except that patch application failure will not be ignored.

    For example:

    patchedDependencies:
      foo: patches/foo-1.patch
      foo@^2.0.0: patches/foo-2.patch
      foo@2.1.0: patches/foo-3.patch

    The above configuration would apply patches/foo-3.patch to foo@2.1.0, patches/foo-2.patch to all foo versions which satisfy ^2.0.0 except 2.1.0, and patches/foo-1.patch to the remaining foo versions.

    [!WARNING] The version ranges should not overlap. If you want to specialize a sub range, make sure to exclude it from the other keys. For example:

    # pnpm-workspace.yaml
    patchedDependencies:
      # the specialized sub range
      'foo@2.2.0-2.8.0': patches/foo.2.2.0-2.8.0.patch
      # the more general patch, excluding the sub range above
      'foo@>=2.0.0 <2.2.0 || >2.8.0': 'patches/foo.gte2.patch

    In most cases, however, it's sufficient to just define an exact version to override the range.

  • pnpm config set --location=project saves the setting to a pnpm-workspace.yaml file if no .npmrc file is present in the directory #9316.

  • Rename pnpm.allowNonAppliedPatches to pnpm.allowUnusedPatches. The old name is still supported but it would print a deprecation warning message.

  • Add pnpm.ignorePatchFailures to manage whether pnpm would ignore patch application failures.

    If ignorePatchFailures is not set, pnpm would throw an error when patches with exact versions or version ranges fail to apply, and it would ignore failures from name-only patches.

    If ignorePatchFailures is explicitly set to false, pnpm would throw an error when any type of patch fails to apply.

    If ignorePatchFailures is explicitly set to true, pnpm would print a warning when any type of patch fails to apply.

Patch Changes

  • Remove dependency paths from audit output to prevent out-of-memory errors #9280.

... (truncated)

Changelog

Sourced from pnpm's changelog.

10.7.0

Minor Changes

  • pnpm config get and list also show settings set in pnpm-workspace.yaml files #9316.

  • It should be possible to use env variables in pnpm-workspace.yaml setting names and value.

  • Add an ability to patch dependencies by version ranges. Exact versions override version ranges, which in turn override name-only patches. Version range * is the same as name-only, except that patch application failure will not be ignored.

    For example:

    patchedDependencies:
      foo: patches/foo-1.patch
      foo@^2.0.0: patches/foo-2.patch
      foo@2.1.0: patches/foo-3.patch

    The above configuration would apply patches/foo-3.patch to foo@2.1.0, patches/foo-2.patch to all foo versions which satisfy ^2.0.0 except 2.1.0, and patches/foo-1.patch to the remaining foo versions.

    [!WARNING] The version ranges should not overlap. If you want to specialize a sub range, make sure to exclude it from the other keys. For example:

    # pnpm-workspace.yaml
    patchedDependencies:
      # the specialized sub range
      'foo@2.2.0-2.8.0': patches/foo.2.2.0-2.8.0.patch
      # the more general patch, excluding the sub range above
      'foo@>=2.0.0 <2.2.0 || >2.8.0': 'patches/foo.gte2.patch

    In most cases, however, it's sufficient to just define an exact version to override the range.

  • pnpm config set --location=project saves the setting to a pnpm-workspace.yaml file if no .npmrc file is present in the directory #9316.

  • Rename pnpm.allowNonAppliedPatches to pnpm.allowUnusedPatches. The old name is still supported but it would print a deprecation warning message.

  • Add pnpm.ignorePatchFailures to manage whether pnpm would ignore patch application failures.

    If ignorePatchFailures is not set, pnpm would throw an error when patches with exact versions or version ranges fail to apply, and it would ignore failures from name-only patches.

    If ignorePatchFailures is explicitly set to false, pnpm would throw an error when any type of patch fails to apply.

    If ignorePatchFailures is explicitly set to true, pnpm would print a warning when any type of patch fails to apply.

Patch Changes

  • Remove dependency paths from audit output to prevent out-of-memory errors #9280.
Commits

Updates @mui/core-downloads-tracker from 6.4.8 to 7.0.0

Release notes

Sourced from @​mui/core-downloads-tracker's releases.

v7.0.0

🎉 We're happy to announce the stable release of v7.

@mui/material@7.0.0

@mui/system@7.0.0

@mui/lab@7.0.0-beta.9

Docs

Core

All contributors of this release in alphabetical order: @​DiegoAndai, @​IshfaqAhmedProg, @​Janpot, @​letianpailove, @​LukasTy, @​mnajdova, @​mushfiqbh, @​oliviertassinari, @​siriwatknp, @​ZeeshanTamboli

v7.0.0-rc.0

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

... (truncated)

Commits

Updates @mui/styled-engine from 6.4.8 to 7.0.0

Release notes

Sourced from @​mui/styled-engine's releases.

v7.0.0

🎉 We're happy to announce the stable release of v7.

@mui/material@7.0.0

@mui/system@7.0.0

@mui/lab@7.0.0-beta.9

Docs

Core

All contributors of this release in alphabetical order: @​DiegoAndai, @​IshfaqAhmedProg, @​Janpot, @​letianpailove, @​LukasTy, @​mnajdova, @​mushfiqbh, @​oliviertassinari, @​siriwatknp, @​ZeeshanTamboli

v7.0.0-rc.0

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

... (truncated)

Changelog

Sourced from @​mui/styled-engine's changelog.

7.0.0

Mar 26, 2025

🎉 We're happy to announce the stable release of v7.

@mui/material@7.0.0

@mui/system@7.0.0

@mui/lab@7.0.0-beta.9

Docs

Bumps the npm group with 9 updates:

| Package | From | To |
| --- | --- | --- |
| [@mui/icons-material](https://github.com/mui/material-ui/tree/HEAD/packages/mui-icons-material) | `6.4.8` | `7.0.0` |
| [@mui/material](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material) | `6.4.8` | `7.0.0` |
| [eslint-import-resolver-typescript](https://github.com/import-js/eslint-import-resolver-typescript) | `4.2.3` | `4.2.4` |
| [pnpm](https://github.com/pnpm/pnpm/tree/HEAD/pnpm) | `10.6.5` | `10.7.0` |
| [@mui/core-downloads-tracker](https://github.com/mui/material-ui/tree/HEAD/packages/core-downloads-tracker) | `6.4.8` | `7.0.0` |
| [@mui/styled-engine](https://github.com/mui/material-ui/tree/HEAD/packages/mui-styled-engine) | `6.4.8` | `7.0.0` |
| [@mui/system](https://github.com/mui/material-ui/tree/HEAD/packages/mui-system) | `6.4.8` | `7.0.0` |
| [electron-to-chromium](https://github.com/kilian/electron-to-chromium) | `1.5.123` | `1.5.124` |
| [rspack-resolver](https://github.com/unrs/rspack-resolver) | `1.2.2` | `1.3.0` |


Updates `@mui/icons-material` from 6.4.8 to 7.0.0
- [Release notes](https://github.com/mui/material-ui/releases)
- [Changelog](https://github.com/mui/material-ui/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mui/material-ui/commits/v7.0.0/packages/mui-icons-material)

Updates `@mui/material` from 6.4.8 to 7.0.0
- [Release notes](https://github.com/mui/material-ui/releases)
- [Changelog](https://github.com/mui/material-ui/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mui/material-ui/commits/v7.0.0/packages/mui-material)

Updates `eslint-import-resolver-typescript` from 4.2.3 to 4.2.4
- [Release notes](https://github.com/import-js/eslint-import-resolver-typescript/releases)
- [Changelog](https://github.com/import-js/eslint-import-resolver-typescript/blob/master/CHANGELOG.md)
- [Commits](import-js/eslint-import-resolver-typescript@v4.2.3...v4.2.4)

Updates `pnpm` from 10.6.5 to 10.7.0
- [Release notes](https://github.com/pnpm/pnpm/releases)
- [Changelog](https://github.com/pnpm/pnpm/blob/main/pnpm/CHANGELOG.md)
- [Commits](https://github.com/pnpm/pnpm/commits/v10.7.0/pnpm)

Updates `@mui/core-downloads-tracker` from 6.4.8 to 7.0.0
- [Release notes](https://github.com/mui/material-ui/releases)
- [Commits](https://github.com/mui/material-ui/commits/v7.0.0/packages/core-downloads-tracker)

Updates `@mui/styled-engine` from 6.4.8 to 7.0.0
- [Release notes](https://github.com/mui/material-ui/releases)
- [Changelog](https://github.com/mui/material-ui/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mui/material-ui/commits/v7.0.0/packages/mui-styled-engine)

Updates `@mui/system` from 6.4.8 to 7.0.0
- [Release notes](https://github.com/mui/material-ui/releases)
- [Changelog](https://github.com/mui/material-ui/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mui/material-ui/commits/v7.0.0/packages/mui-system)

Updates `electron-to-chromium` from 1.5.123 to 1.5.124
- [Changelog](https://github.com/Kilian/electron-to-chromium/blob/master/CHANGELOG.md)
- [Commits](https://github.com/kilian/electron-to-chromium/commits)

Updates `rspack-resolver` from 1.2.2 to 1.3.0
- [Release notes](https://github.com/unrs/rspack-resolver/releases)
- [Changelog](https://github.com/unrs/unrs-resolver/blob/main/CHANGELOG.md)
- [Commits](unrs/unrs-resolver@unrspack-resolver-v1.2.2...unrs_resolver-v1.3.0)

---
updated-dependencies:
- dependency-name: "@mui/icons-material"
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm
- dependency-name: "@mui/material"
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm
- dependency-name: eslint-import-resolver-typescript
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: pnpm
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: "@mui/core-downloads-tracker"
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: npm
- dependency-name: "@mui/styled-engine"
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: npm
- dependency-name: "@mui/system"
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: npm
- dependency-name: electron-to-chromium
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: rspack-resolver
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: npm
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Mar 26, 2025
@vercel
Copy link

vercel bot commented Mar 26, 2025

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
github-oauth-example ✅ Ready (Inspect) Visit Preview 💬 Add feedback Mar 26, 2025 3:17pm

@github-actions github-actions bot enabled auto-merge (squash) March 26, 2025 15:16
@github-actions github-actions bot merged commit b027590 into main Mar 26, 2025
6 of 7 checks passed
@github-actions github-actions bot deleted the dependabot/npm_and_yarn/npm-d6a4164184 branch March 26, 2025 15:17
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

None yet

Development

Successfully merging this pull request may close these issues.

1 participant