Skip to content

chore(deps)(deps): bump the root-minor-patch group across 1 directory with 7 updates - #305

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/root-minor-patch-65b0bce314
Closed

chore(deps)(deps): bump the root-minor-patch group across 1 directory with 7 updates#305
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/root-minor-patch-65b0bce314

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 10, 2026

Copy link
Copy Markdown

Updates the requirements on @mui/icons-material, @mui/material, eslint-plugin-react-refresh, express-rate-limit, prom-client, @stryker-mutator/core and @stryker-mutator/jest-runner to permit the latest version.
Updates @mui/icons-material from 9.2.0 to 9.3.1

Release notes

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

v9.3.1

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

@mui/material@9.3.1

@mui/codemod@9.3.1

Core

All contributors of this release in alphabetical order: @​brijeshb42, @​DanailH, @​silviuaavram, @​ZeeshanTamboli

v9.3.0

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

  • ♿️ Keyboard navigation in the Toggle Button Group now follows the roving tabindex pattern.
  • ♿️ The Autocomplete announces its loading and no options messages through a new status slot.

@mui/material@9.3.0

@mui/system@9.3.0

@mui/codemod@9.3.0

Docs

... (truncated)

Changelog

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

9.3.1

Aug 6, 2026

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

@mui/material@9.3.1

@mui/codemod@9.3.1

Core

All contributors of this release in alphabetical order: @​brijeshb42, @​DanailH, @​silviuaavram, @​ZeeshanTamboli

9.3.0

Aug 4, 2026

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

  • ♿️ Keyboard navigation in the Toggle Button Group now follows the roving tabindex pattern.
  • ♿️ The Autocomplete announces its loading and no options messages through a new status slot.

@mui/material@9.3.0

@mui/system@9.3.0

... (truncated)

Commits

Updates @mui/material from 9.2.0 to 9.3.1

Release notes

Sourced from @​mui/material's releases.

v9.3.1

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

@mui/material@9.3.1

@mui/codemod@9.3.1

Core

All contributors of this release in alphabetical order: @​brijeshb42, @​DanailH, @​silviuaavram, @​ZeeshanTamboli

v9.3.0

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

  • ♿️ Keyboard navigation in the Toggle Button Group now follows the roving tabindex pattern.
  • ♿️ The Autocomplete announces its loading and no options messages through a new status slot.

@mui/material@9.3.0

@mui/system@9.3.0

@mui/codemod@9.3.0

Docs

... (truncated)

Changelog

Sourced from @​mui/material's changelog.

9.3.1

Aug 6, 2026

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

@mui/material@9.3.1

@mui/codemod@9.3.1

Core

All contributors of this release in alphabetical order: @​brijeshb42, @​DanailH, @​silviuaavram, @​ZeeshanTamboli

9.3.0

Aug 4, 2026

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

  • ♿️ Keyboard navigation in the Toggle Button Group now follows the roving tabindex pattern.
  • ♿️ The Autocomplete announces its loading and no options messages through a new status slot.

@mui/material@9.3.0

@mui/system@9.3.0

... (truncated)

Commits

Updates eslint-plugin-react-refresh from 0.4.26 to 0.5.3

Release notes

Sourced from eslint-plugin-react-refresh's releases.

v0.5.3

  • Fix check for non component class exported via export { } #110 (fixes #109)

v0.5.2

  • Support nested function calls for extraHOCs (actually fixes #104)

v0.5.1

  • Mark ESLint v10 as supported
  • Support false positives with TypeScript function overloading (fixes #105)
  • Support nested function calls for extraHOCs (fixes #104)

v0.5.0

Breaking changes

  • The package now ships as ESM and requires ESLint 9 + node 20. Because legacy config doesn't support ESM, this requires to use flat config
  • A new reactRefresh export is available and prefered over the default export. It's an object with two properties:
    • plugin: The plugin object with the rules
    • configs: An object containing configuration presets, each exposed as a function. These functions accept your custom options, merge them with sensible defaults for that config, and return the final config object.
  • customHOCs option was renamed to extraHOCs
  • Validation of HOCs calls is now more strict, you may need to add some HOCs to the extraHOCs option (like connect or styled)

Config example:

import { defineConfig } from "eslint/config";
import { reactRefresh } from "eslint-plugin-react-refresh";
export default defineConfig(
/* Main config */
reactRefresh.configs.vite({ extraHOCs: ["someLibHOC"] }),
);

Config example without config:

import { defineConfig } from "eslint/config";
import { reactRefresh } from "eslint-plugin-react-refresh";
export default defineConfig({
files: ["/*.ts", "/*.tsx"],
plugins: {
// other plugins
"react-refresh": reactRefresh.plugin,
},
rules: {
// other rules
"react-refresh/only-export-components": [
"warn",
{ extraHOCs: ["someLibHOC"] },
</tr></table>

... (truncated)

Changelog

Sourced from eslint-plugin-react-refresh's changelog.

0.5.3

  • Fix check for non component class exported via export { } #110 (fixes #109)

0.5.2

  • Support nested function calls for extraHOCs (actually fixes #104)

0.5.1

  • Mark ESLint v10 as supported
  • Support false positives with TypeScript function overloading (fixes #105)
  • Support nested function calls for extraHOCs (fixes #104)

0.5.0

Breaking changes

  • The package now ships as ESM and requires ESLint 9 + node 20. Because legacy config doesn't support ESM, this requires to use flat config
  • A new reactRefresh export is available and prefered over the default export. It's an object with two properties:
    • plugin: The plugin object with the rules
    • configs: An object containing configuration presets, each exposed as a function. These functions accept your custom options, merge them with sensible defaults for that config, and return the final config object.
  • customHOCs option was renamed to extraHOCs
  • Validation of HOCs calls is now more strict, you may need to add some HOCs to the extraHOCs option

Config example:

import { defineConfig } from "eslint/config";
import { reactRefresh } from "eslint-plugin-react-refresh";
export default defineConfig(
/* Main config */
reactRefresh.configs.vite({ extraHOCs: ["someLibHOC"] }),
);

Config example without config:

import { defineConfig } from "eslint/config";
import { reactRefresh } from "eslint-plugin-react-refresh";
export default defineConfig({
files: ["/*.ts", "/*.tsx"],
plugins: {
// other plugins
"react-refresh": reactRefresh.plugin,
},
rules: {
</tr></table>

... (truncated)

Commits
  • 00818e9 v0.5.3 [publish]
  • 202fc4a Fix PascalCase class exported via export { Name } incorrectly treated as Re...
  • c0317bf Fix support for nested function calls for extraHOCs [publish]
  • 42a1805 Explicit v10 support (fixes #106) [publish]
  • 199793e Support nested function calls for extraHOCs (fixes #104)
  • 26b3c15 Support false positives with TypeScript function overloading (fixes #105)
  • daa2efb Revamp logic to catch more cases [publish] (#97)
  • See full diff in compare view

Updates express-rate-limit from 8.6.1 to 8.6.2

Release notes

Sourced from express-rate-limit's releases.

v8.6.2

You can view the changelog here.

Commits
  • c416f78 8.6.2
  • defb334 v8.6.2 changelog
  • 7dd82cf fix: key IPv4-in-IPv6 addresses by range, not notation (#667)
  • 4e23dbb chore(deps): bump ip-address from 10.3.1 to 10.4.0 (#666)
  • 607ef1f chore(deps): bump ip-address from 10.2.0 to 10.3.1 (#664)
  • d2370f6 chore(deps-dev): bump the development-dependencies group with 5 updates (#663)
  • See full diff in compare view

Updates prom-client to 15.1.3

Release notes

Sourced from prom-client's releases.

v15.1.3

What's Changed

New Contributors

Full Changelog: prometheus/client_js@v15.1.2...v15.1.3

Changelog

Sourced from prom-client's changelog.

[15.1.3] - 2024-06-27

Changed

  • Improve error message when number of registered labels mismatch with the number of labels provided

[15.1.2] - 2024-04-16

Changed

  • Add Registry.PROMETHEUS_CONTENT_TYPE and Registry.OPENMETRICS_CONTENT_TYPE constants to the TypeScript types
  • Correctly read and set contentType top level export

Added

  • Enable bun.js by catching NotImplemented error (Fixes #570)

[15.1.1] - 2024-03-26

Changed

  • Improve the memory usage of histograms when the enableExemplars option is disabled
  • fix: Avoid updating exemplar values during subsequent metric changes (Fixes #616)

15.1.0 - 2023-12-15

Changed

  • remove unnecessary loop from osMemoryHeapLinux
  • Improve performance of hashObject by using pre-sorted array of label names
  • Fix type of collectDefaultMetrics.metricsList

Added

  • Allow Pushgateway to now require job names for compatibility with Gravel Gateway.
  • Allow histogram.startTime() to be used with exemplars.

[15.0.0] - 2023-10-09

Breaking

  • drop support for Node.js versions 10, 12, 14, 17 and 19

Changed

  • Refactor histogram internals and provide a fast path for rendering metrics to Prometheus strings when there are many labels shared across different values.
  • Disable custom content encoding for pushgateway delete requests in order to

... (truncated)

Commits

Updates @stryker-mutator/core to 8.7.1

Release notes

Sourced from @​stryker-mutator/core's releases.

v8.7.1

8.7.1 (2024-12-11)

Bug Fixes

  • util: prevent prototype pollution in deepMerge (#5144) (f7b34bf)
Changelog

Sourced from @​stryker-mutator/core's changelog.

8.7.1 (2024-12-11)

Note: Version bump only for package @​stryker-mutator/core

8.7.0 (2024-12-06)

Bug Fixes

  • deps: update dependency mutation-testing-elements to v3.4.0 (#5138) (32001dd)

Features

  • logging: remove dependency on log4js (#5111) (276ffd8)
  • temp-dir: allow multiple instances to share the same temp-dir (#5120) (d15453e), closes #5086

8.6.0 (2024-09-29)

Bug Fixes

  • deps: update dependency @​inquirer/prompts to v6 (#5029) (d727cb7)
  • deps: update dependency emoji-regex to ~10.4.0 (#4987) (8337f88)
  • deps: update dependency execa to v9.4.0 (#5024) (99d60e0)
  • deps: update dependency npm-run-path to v6 (#4986) (1c9f354)
  • deps: update dependency tslib to v2.7.0 (#4981) (4bdef40)
  • deps: update dependency typed-rest-client to ~2.1.0 (#5025) (454e5e2)
  • deps: update mutation-testing-elements monorepo to v3.3.0 (#5026) (88caf82)

Features

  • ignore: add "angular" ignore plugin (#4789) (5d792d8)
  • init: use user configured npm registry (#4937) (33e348e)
  • reporter: add "% score of covered" column to the clear text report (#4945) (3b511ed)

8.5.0 (2024-08-11)

Features

  • html report: support mutation coverage based on covered code (cec0b95)

8.4.0 (2024-08-06)

Bug Fixes

  • node-18: revert changes to support node 18 again (#4935) (42162bd)

Features

  • clear-text-reporter: Add "skipFull" option (#4875) (da213ad)

8.3.0 (2024-08-01)

... (truncated)

Commits

Updates @stryker-mutator/jest-runner to 8.7.1

Release notes

Sourced from @​stryker-mutator/jest-runner's releases.

v8.7.1

8.7.1 (2024-12-11)

Bug Fixes

  • util: prevent prototype pollution in deepMerge (#5144) (f7b34bf)
Changelog

Sourced from @​stryker-mutator/jest-runner's changelog.

8.7.1 (2024-12-11)

Note: Version bump only for package @​stryker-mutator/jest-runner

8.7.0 (2024-12-06)

Note: Version bump only for package @​stryker-mutator/jest-runner

8.6.0 (2024-09-29)

Bug Fixes

8.5.0 (2024-08-11)

Note: Version bump only for package @​stryker-mutator/jest-runner

8.4.0 (2024-08-06)

Bug Fixes

  • node-18: revert changes to support node 18 again (#4935) (42162bd)

8.3.0 (2024-08-01)

Features

8.2.6 (2024-02-25)

Note: Version bump only for package @​stryker-mutator/jest-runner

8.2.5 (2024-02-20)

Note: Version bump only for package @​stryker-mutator/jest-runner

8.2.4 (2024-02-19)

Bug Fixes

  • deps: update dependency semver to ~7.6.0 (#4719) (ffe9aeb)

8.2.3 (2024-02-03)

Note: Version bump only for package @​stryker-mutator/jest-runner

8.2.2 (2024-01-29)

... (truncated)

Commits

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 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

… with 7 updates

Updates the requirements on [@mui/icons-material](https://github.com/mui/material-ui/tree/HEAD/packages/mui-icons-material), [@mui/material](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material), [eslint-plugin-react-refresh](https://github.com/ArnaudBarre/eslint-plugin-react-refresh), [express-rate-limit](https://github.com/express-rate-limit/express-rate-limit), [prom-client](https://github.com/siimon/prom-client), [@stryker-mutator/core](https://github.com/stryker-mutator/stryker-js/tree/HEAD/packages/core) and [@stryker-mutator/jest-runner](https://github.com/stryker-mutator/stryker-js/tree/HEAD/packages/jest-runner) to permit the latest version.

Updates `@mui/icons-material` from 9.2.0 to 9.3.1
- [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/v9.3.1/packages/mui-icons-material)

Updates `@mui/material` from 9.2.0 to 9.3.1
- [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/v9.3.1/packages/mui-material)

Updates `eslint-plugin-react-refresh` from 0.4.26 to 0.5.3
- [Release notes](https://github.com/ArnaudBarre/eslint-plugin-react-refresh/releases)
- [Changelog](https://github.com/ArnaudBarre/eslint-plugin-react-refresh/blob/main/CHANGELOG.md)
- [Commits](ArnaudBarre/eslint-plugin-react-refresh@v0.4.26...v0.5.3)

Updates `express-rate-limit` from 8.6.1 to 8.6.2
- [Release notes](https://github.com/express-rate-limit/express-rate-limit/releases)
- [Commits](express-rate-limit/express-rate-limit@v8.6.1...v8.6.2)

Updates `prom-client` to 15.1.3
- [Release notes](https://github.com/siimon/prom-client/releases)
- [Changelog](https://github.com/prometheus/client_js/blob/main/CHANGELOG.md)
- [Commits](prometheus/client_js@v15.1.3...v15.1.3)

Updates `@stryker-mutator/core` to 8.7.1
- [Release notes](https://github.com/stryker-mutator/stryker-js/releases)
- [Changelog](https://github.com/stryker-mutator/stryker-js/blob/master/packages/core/CHANGELOG.md)
- [Commits](https://github.com/stryker-mutator/stryker-js/commits/v8.7.1/packages/core)

Updates `@stryker-mutator/jest-runner` to 8.7.1
- [Release notes](https://github.com/stryker-mutator/stryker-js/releases)
- [Changelog](https://github.com/stryker-mutator/stryker-js/blob/master/packages/jest-runner/CHANGELOG.md)
- [Commits](https://github.com/stryker-mutator/stryker-js/commits/v8.7.1/packages/jest-runner)

---
updated-dependencies:
- dependency-name: "@mui/icons-material"
  dependency-version: 9.3.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: root-minor-patch
- dependency-name: "@mui/material"
  dependency-version: 9.3.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: root-minor-patch
- dependency-name: eslint-plugin-react-refresh
  dependency-version: 0.5.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: root-minor-patch
- dependency-name: express-rate-limit
  dependency-version: 8.6.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: root-minor-patch
- dependency-name: prom-client
  dependency-version: 15.1.3
  dependency-type: direct:production
  dependency-group: root-minor-patch
- dependency-name: "@stryker-mutator/core"
  dependency-version: 8.7.1
  dependency-type: direct:development
  dependency-group: root-minor-patch
- dependency-name: "@stryker-mutator/jest-runner"
  dependency-version: 8.7.1
  dependency-type: direct:development
  dependency-group: root-minor-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot @github

dependabot Bot commented on behalf of github Aug 10, 2026

Copy link
Copy Markdown
Author

Labels

The following labels could not be found: automated, dependencies, root. Please create them before Dependabot can add them to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

@dependabot @github

dependabot Bot commented on behalf of github Aug 10, 2026

Copy link
Copy Markdown
Author

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot Bot closed this Aug 10, 2026
@dependabot
dependabot Bot deleted the dependabot/npm_and_yarn/root-minor-patch-65b0bce314 branch August 10, 2026 15:55
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants