Skip to content

Bump the npm-actions-deps group in /frontend with 12 updates#155

Merged
andrewmarklloyd merged 1 commit into
mainfrom
dependabot/npm_and_yarn/frontend/npm-actions-deps-90307a9b3a
Apr 2, 2026
Merged

Bump the npm-actions-deps group in /frontend with 12 updates#155
andrewmarklloyd merged 1 commit into
mainfrom
dependabot/npm_and_yarn/frontend/npm-actions-deps-90307a9b3a

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Apr 1, 2026

Copy link
Copy Markdown
Contributor

Bumps the npm-actions-deps group in /frontend with 12 updates:

Package From To
@mui/icons-material 7.3.8 7.3.9
@mui/material 7.3.8 7.3.9
react-router 7.13.1 7.13.2
@mui/x-data-grid 8.27.3 8.28.2
@rsbuild/core 1.7.3 1.7.5
@rsbuild/plugin-react 1.4.5 1.4.6
@rspack/binding-darwin-arm64 1.7.6 1.7.11
@rspack/binding-darwin-x64 1.7.6 1.7.11
@rspack/binding-linux-arm64-gnu 1.7.6 1.7.11
@rspack/binding-linux-arm64-musl 1.7.6 1.7.11
@rspack/binding-linux-x64-gnu 1.7.6 1.7.11
@rspack/binding-linux-x64-musl 1.7.6 1.7.11

Updates @mui/icons-material from 7.3.8 to 7.3.9

Release notes

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

v7.3.9

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

@mui/material@7.3.9

Docs

Core

All contributors of this release in alphabetical order: @​alelthomas, @​arthur-plazanet, @​brijeshb42, @​DanailH, @​dav-is, @​Janpot, @​matthias-ccri, @​mnajdova, @​oliviertassinari, @​pavan-sh, @​PeterTYLiu, @​sai6855, @​silviuaavram, @​vmakhaev, @​ZeeshanTamboli

Changelog

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

7.3.9

Mar 5, 2026

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

@mui/material@7.3.9

Docs

Core

All contributors of this release in alphabetical order: @​alelthomas, @​arthur-plazanet, @​brijeshb42, @​DanailH, @​dav-is, @​Janpot, @​matthias-ccri, @​mnajdova, @​oliviertassinari, @​pavan-sh, @​PeterTYLiu, @​sai6855, @​silviuaavram, @​vmakhaev, @​ZeeshanTamboli

Commits

Updates @mui/material from 7.3.8 to 7.3.9

Release notes

Sourced from @​mui/material's releases.

v7.3.9

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

@mui/material@7.3.9

Docs

Core

All contributors of this release in alphabetical order: @​alelthomas, @​arthur-plazanet, @​brijeshb42, @​DanailH, @​dav-is, @​Janpot, @​matthias-ccri, @​mnajdova, @​oliviertassinari, @​pavan-sh, @​PeterTYLiu, @​sai6855, @​silviuaavram, @​vmakhaev, @​ZeeshanTamboli

Changelog

Sourced from @​mui/material's changelog.

7.3.9

Mar 5, 2026

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

@mui/material@7.3.9

Docs

Core

All contributors of this release in alphabetical order: @​alelthomas, @​arthur-plazanet, @​brijeshb42, @​DanailH, @​dav-is, @​Janpot, @​matthias-ccri, @​mnajdova, @​oliviertassinari, @​pavan-sh, @​PeterTYLiu, @​sai6855, @​silviuaavram, @​vmakhaev, @​ZeeshanTamboli

Commits
  • 5430aaa v7.3.9 (#47911)
  • 4980716 [website] Implement the latest price changes proposal (@​DanailH) (#47606) (#4...
  • 67acb51 [material-ui] Clean up duplicated CSS rules (@​sai6855) (#47893)
  • 3692e54 [code-infra] Detect browser envs that don't support layout (#47813) (#47873)
  • 556e388 [tooltip] Fix error is thrown when wrapping an input which is disabled while ...
  • 09398d6 [table cell][theme] Apply alpha before color mixing to border bottom color ...
  • dc1e493 [code-infra] Enable undefined addition to optional properties (#47815)
  • d92df84 [theme] Generate color-mix value on top of default generated Material UI CS...
  • See full diff in compare view

Updates react-router from 7.13.1 to 7.13.2

Release notes

Sourced from react-router's releases.

v7.13.2

See the changelog for release notes: https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v7132

Changelog

Sourced from react-router's changelog.

7.13.2

Patch Changes

  • Fix clientLoader.hydrate when an ancestor route is also hydrating a clientLoader (#14835)

  • Fix type error when passing Framework Mode route components using Route.ComponentProps to createRoutesStub (#14892)

  • Fix percent encoding in relative path navigation (#14786)

  • Add future.unstable_passThroughRequests flag (#14775)

    By default, React Router normalizes the request.url passed to your loader, action, and middleware functions by removing React Router's internal implementation details (.data suffixes, index + _routes query params).

    Enabling this flag removes that normalization and passes the raw HTTP request instance to your handlers. This provides a few benefits:

    • Reduces server-side overhead by eliminating multiple new Request() calls on the critical path
    • Allows you to distinguish document from data requests in your handlers base don the presence of a .data suffix (useful for observability purposes)

    If you were previously relying on the normalization of request.url, you can switch to use the new sibling unstable_url parameter which contains a URL instance representing the normalized location:

    // ❌ Before: you could assume there was no `.data` suffix in `request.url`
    export async function loader({ request }: Route.LoaderArgs) {
      let url = new URL(request.url);
      if (url.pathname === "/path") {
        // This check will fail with the flag enabled because the `.data` suffix will
        // exist on data requests
      }
    }
    // ✅ After: use unstable_url for normalized routing logic and request.url
    // for raw routing logic
    export async function loader({ request, unstable_url }: Route.LoaderArgs) {
    if (unstable_url.pathname === "/path") {
    // This will always have the .data suffix stripped
    }
    // And now you can distinguish between document versus data requests
    let isDataRequest = new URL(request.url).pathname.endsWith(".data");
    }

  • Internal refactor to consolidate framework-agnostic/React-specific route type layers - no public API changes (#14765)

  • Sync protocol validation to rsc flows (#14882)

  • Add a new unstable_url: URL parameter to route handler methods (loader, action, middleware, etc.) representing the normalized URL the application is navigating to or fetching, with React Router implementation details removed (.datasuffix, index/_routes query params) (#14775)

    This is being added alongside the new future.unstable_passthroughRequests future flag so that users still have a way to access the normalized URL when that flag is enabled and non-normalized request's are being passed to your handlers. When adopting this flag, you will only need to start leveraging this new parameter if you are relying on the normalization of request.url in your application code.

... (truncated)

Commits
  • aadb56f chore: Update version for release (#14908)
  • c68a9b3 chore: Update version for release (pre) (#14893)
  • 8c3c7ce fix: allow Framework Mode route components to be passed to createRoutesStub (...
  • 1cd923e chore: format
  • 830d3ba Fix percent encoding in relative path navigation (#14786)
  • 8646d39 Align redirect protocol validation in RSC flows (#14882)
  • 7d21b1c Add additional unit test - hydrate fallback rendering for SPA middleware w/o ...
  • 8a10826 docs: fix typo in useNavigate documentation (#14848)
  • bda5bb7 Fix typo in comment (#14844)
  • bbe4a73 chore: format
  • Additional commits viewable in compare view

Updates @mui/x-data-grid from 8.27.3 to 8.28.2

Release notes

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

v8.28.2

We'd like to extend a big thank you to the 4 contributors who made this release possible.

Special thanks go out to this community member for their valuable contribution: @​mixelburg, @​sibananda485

The following team members contributed to this release: @​dav-is, @​JCQuintas

Data Grid

@mui/x-data-grid@8.28.2

  • [DataGrid] Export GridColumnUnsortedIconProps for custom column icon slots (#21898) @​mixelburg

@mui/x-data-grid-pro@8.28.2 pro

Same changes as in @mui/x-data-grid@8.28.2.

@mui/x-data-grid-premium@8.28.2 premium

Same changes as in @mui/x-data-grid-pro@8.28.2, plus:

Charts

@mui/x-charts@8.28.2

@mui/x-charts-pro@8.28.2 pro

Same changes as in @mui/x-charts@8.28.2.

@mui/x-charts-premium@8.28.2 premium

Same changes as in @mui/x-charts-pro@8.28.2.

Docs

Core

v8.28.1

We'd like to extend a big thank you to the 2 contributors who made this release possible.

... (truncated)

Changelog

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

8.28.2

Apr 1, 2026

We'd like to extend a big thank you to the 4 contributors who made this release possible.

Special thanks go out to this community member for their valuable contribution: @​mixelburg, @​sibananda485

The following team members contributed to this release: @​dav-is, @​JCQuintas

Data Grid

@mui/x-data-grid@8.28.2

  • [DataGrid] Export GridColumnUnsortedIconProps for custom column icon slots (#21898) @​mixelburg

@mui/x-data-grid-pro@8.28.2 pro

Same changes as in @mui/x-data-grid@8.28.2.

@mui/x-data-grid-premium@8.28.2 premium

Same changes as in @mui/x-data-grid-pro@8.28.2, plus:

Charts

@mui/x-charts@8.28.2

@mui/x-charts-pro@8.28.2 pro

Same changes as in @mui/x-charts@8.28.2.

@mui/x-charts-premium@8.28.2 premium

Same changes as in @mui/x-charts-pro@8.28.2.

Docs

Core

... (truncated)

Commits
  • 969a7b7 [release] v8.28.2 (#21952)
  • bdb1120 [DataGrid] Export GridColumnUnsortedIconProps for custom column icon slots ...
  • 20da5c7 [release] v8.28.1 (#21853)
  • bfa29f7 [release] v8.28.0 (#21799)
  • 3db7e86 [DataGrid] Move elementOverrides to constants and remove duplicates (@​sai68...
  • 354c7ad [release] v8.27.5 (#21704)
  • 74407d1 [DataGrid] Fix keyboard navigation with single-row checkbox selection (@​mj12a...
  • ce30d8f [data-grid] Refactor headerAlign style calls (@​sai6855) (#21633)
  • af2a7f9 [data-grid] Add missing resizablePanelHandle classes to gridClasses object (@...
  • 6a4fdc8 [test] Add missing tests for forwarding props to filter operators in DataGrid...
  • Additional commits viewable in compare view

Updates @rsbuild/core from 1.7.3 to 1.7.5

Release notes

Sourced from @​rsbuild/core's releases.

v1.7.5

What's Changed

Bug Fixes 🐞

Other Changes

Full Changelog: web-infra-dev/rsbuild@v1.7.4...v1.7.5

v1.7.4

What's Changed

Bug Fixes 🐞

Other Changes

Full Changelog: web-infra-dev/rsbuild@v1.7.3...v1.7.4

Commits

Updates @rsbuild/plugin-react from 1.4.5 to 1.4.6

Release notes

Sourced from @​rsbuild/plugin-react's releases.

v1.4.6

What's Changed

New Features 🎉

Bug Fixes 🐞

Document 📖

Other Changes

Full Changelog: web-infra-dev/rsbuild@v1.4.5...v1.4.6

Commits

Updates @rspack/binding-darwin-arm64 from 1.7.6 to 1.7.11

Release notes

Sourced from @​rspack/binding-darwin-arm64's releases.

v1.7.11

What's Changed

New Features 🎉

Other Changes

Full Changelog: web-infra-dev/rspack@v1.7.10...v1.7.11

v1.7.10

What's Changed

New Features 🎉

Other Changes

Full Changelog: web-infra-dev/rspack@v1.7.9...v1.7.10

v1.7.9

What's Changed

New Features 🎉

Bug Fixes 🐞

Other Changes

Full Changelog: web-infra-dev/rspack@v1.7.8...v1.7.9

v1.7.8

What's Changed

New Features 🎉

Other Changes

... (truncated)

Commits

Updates @rspack/binding-darwin-x64 from 1.7.6 to 1.7.11

Release notes

Sourced from @​rspack/binding-darwin-x64's releases.

v1.7.11

What's Changed

New Features 🎉

Other Changes

Full Changelog: web-infra-dev/rspack@v1.7.10...v1.7.11

v1.7.10

What's Changed

New Features 🎉

Other Changes

Full Changelog: web-infra-dev/rspack@v1.7.9...v1.7.10

v1.7.9

What's Changed

New Features 🎉

Bug Fixes 🐞

Other Changes

<...

Description has been truncated

Bumps the npm-actions-deps group in /frontend with 12 updates:

| Package | From | To |
| --- | --- | --- |
| [@mui/icons-material](https://github.com/mui/material-ui/tree/HEAD/packages/mui-icons-material) | `7.3.8` | `7.3.9` |
| [@mui/material](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material) | `7.3.8` | `7.3.9` |
| [react-router](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router) | `7.13.1` | `7.13.2` |
| [@mui/x-data-grid](https://github.com/mui/mui-x/tree/HEAD/packages/x-data-grid) | `8.27.3` | `8.28.2` |
| [@rsbuild/core](https://github.com/web-infra-dev/rsbuild/tree/HEAD/packages/core) | `1.7.3` | `1.7.5` |
| [@rsbuild/plugin-react](https://github.com/web-infra-dev/rsbuild/tree/HEAD/packages/plugin-react) | `1.4.5` | `1.4.6` |
| [@rspack/binding-darwin-arm64](https://github.com/web-infra-dev/rspack/tree/HEAD/packages/rspack) | `1.7.6` | `1.7.11` |
| [@rspack/binding-darwin-x64](https://github.com/web-infra-dev/rspack/tree/HEAD/packages/rspack) | `1.7.6` | `1.7.11` |
| [@rspack/binding-linux-arm64-gnu](https://github.com/web-infra-dev/rspack/tree/HEAD/packages/rspack) | `1.7.6` | `1.7.11` |
| [@rspack/binding-linux-arm64-musl](https://github.com/web-infra-dev/rspack/tree/HEAD/packages/rspack) | `1.7.6` | `1.7.11` |
| [@rspack/binding-linux-x64-gnu](https://github.com/web-infra-dev/rspack/tree/HEAD/packages/rspack) | `1.7.6` | `1.7.11` |
| [@rspack/binding-linux-x64-musl](https://github.com/web-infra-dev/rspack/tree/HEAD/packages/rspack) | `1.7.6` | `1.7.11` |


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

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

Updates `react-router` from 7.13.1 to 7.13.2
- [Release notes](https://github.com/remix-run/react-router/releases)
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router/CHANGELOG.md)
- [Commits](https://github.com/remix-run/react-router/commits/react-router@7.13.2/packages/react-router)

Updates `@mui/x-data-grid` from 8.27.3 to 8.28.2
- [Release notes](https://github.com/mui/mui-x/releases)
- [Changelog](https://github.com/mui/mui-x/blob/v8.28.2/CHANGELOG.md)
- [Commits](https://github.com/mui/mui-x/commits/v8.28.2/packages/x-data-grid)

Updates `@rsbuild/core` from 1.7.3 to 1.7.5
- [Release notes](https://github.com/web-infra-dev/rsbuild/releases)
- [Commits](https://github.com/web-infra-dev/rsbuild/commits/v1.7.5/packages/core)

Updates `@rsbuild/plugin-react` from 1.4.5 to 1.4.6
- [Release notes](https://github.com/web-infra-dev/rsbuild/releases)
- [Commits](https://github.com/web-infra-dev/rsbuild/commits/v1.4.6/packages/plugin-react)

Updates `@rspack/binding-darwin-arm64` from 1.7.6 to 1.7.11
- [Release notes](https://github.com/web-infra-dev/rspack/releases)
- [Commits](https://github.com/web-infra-dev/rspack/commits/v1.7.11/packages/rspack)

Updates `@rspack/binding-darwin-x64` from 1.7.6 to 1.7.11
- [Release notes](https://github.com/web-infra-dev/rspack/releases)
- [Commits](https://github.com/web-infra-dev/rspack/commits/v1.7.11/packages/rspack)

Updates `@rspack/binding-linux-arm64-gnu` from 1.7.6 to 1.7.11
- [Release notes](https://github.com/web-infra-dev/rspack/releases)
- [Commits](https://github.com/web-infra-dev/rspack/commits/v1.7.11/packages/rspack)

Updates `@rspack/binding-linux-arm64-musl` from 1.7.6 to 1.7.11
- [Release notes](https://github.com/web-infra-dev/rspack/releases)
- [Commits](https://github.com/web-infra-dev/rspack/commits/v1.7.11/packages/rspack)

Updates `@rspack/binding-linux-x64-gnu` from 1.7.6 to 1.7.11
- [Release notes](https://github.com/web-infra-dev/rspack/releases)
- [Commits](https://github.com/web-infra-dev/rspack/commits/v1.7.11/packages/rspack)

Updates `@rspack/binding-linux-x64-musl` from 1.7.6 to 1.7.11
- [Release notes](https://github.com/web-infra-dev/rspack/releases)
- [Commits](https://github.com/web-infra-dev/rspack/commits/v1.7.11/packages/rspack)

---
updated-dependencies:
- dependency-name: "@mui/icons-material"
  dependency-version: 7.3.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-actions-deps
- dependency-name: "@mui/material"
  dependency-version: 7.3.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-actions-deps
- dependency-name: react-router
  dependency-version: 7.13.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-actions-deps
- dependency-name: "@mui/x-data-grid"
  dependency-version: 8.28.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-actions-deps
- dependency-name: "@rsbuild/core"
  dependency-version: 1.7.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-actions-deps
- dependency-name: "@rsbuild/plugin-react"
  dependency-version: 1.4.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-actions-deps
- dependency-name: "@rspack/binding-darwin-arm64"
  dependency-version: 1.7.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-actions-deps
- dependency-name: "@rspack/binding-darwin-x64"
  dependency-version: 1.7.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-actions-deps
- dependency-name: "@rspack/binding-linux-arm64-gnu"
  dependency-version: 1.7.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-actions-deps
- dependency-name: "@rspack/binding-linux-arm64-musl"
  dependency-version: 1.7.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-actions-deps
- dependency-name: "@rspack/binding-linux-x64-gnu"
  dependency-version: 1.7.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-actions-deps
- dependency-name: "@rspack/binding-linux-x64-musl"
  dependency-version: 1.7.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-actions-deps
...

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 Apr 1, 2026
@andrewmarklloyd andrewmarklloyd merged commit 213df8a into main Apr 2, 2026
1 check passed
@andrewmarklloyd andrewmarklloyd deleted the dependabot/npm_and_yarn/frontend/npm-actions-deps-90307a9b3a branch April 2, 2026 14:00
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