Skip to content

chore(deps-dev): bump the dev-tooling group with 8 updates#77

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/dev-tooling-7e4be3ceef
Open

chore(deps-dev): bump the dev-tooling group with 8 updates#77
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/dev-tooling-7e4be3ceef

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Apr 13, 2026

Bumps the dev-tooling group with 8 updates:

Package From To
@stryker-mutator/core 9.6.0 9.6.1
@stryker-mutator/vitest-runner 9.6.0 9.6.1
@types/node 25.5.2 25.6.0
@vitest/coverage-v8 4.1.2 4.1.4
globals 17.4.0 17.5.0
prettier 3.8.1 3.8.2
typescript-eslint 8.58.0 8.58.1
vitest 4.1.2 4.1.4

Updates @stryker-mutator/core from 9.6.0 to 9.6.1

Release notes

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

v9.6.1

9.6.1 (2026-04-10)

Bug Fixes

  • deps: update dependency typed-rest-client to ~2.3.0 (#5933) (5a24298)
  • deps: update mutation-testing-elements monorepo to v3.7.3 (#5912) (1f68437)
  • vitest-runner: fix vitest runner mutant hitcount and coverage for v4.1 (#5928) (56c1ae2)
Changelog

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

9.6.1 (2026-04-10)

Bug Fixes

  • deps: update dependency typed-rest-client to ~2.3.0 (#5933) (5a24298)
  • deps: update mutation-testing-elements monorepo to v3.7.3 (#5912) (1f68437)
Commits
  • e1abfbe v9.6.1
  • 1f68437 fix(deps): update mutation-testing-elements monorepo to v3.7.3 (#5912)
  • 5a24298 fix(deps): update dependency typed-rest-client to ~2.3.0 (#5933)
  • 6792b90 chore(deps): update dependency @​types/node to v24.12.2 (#5943)
  • be5a1b8 chore(deps): update dependency @​types/node to v24.12.1 (#5942)
  • a990813 chore(deps): update dependency @​types/node to v24.12.0 (#5887)
  • e511114 chore(deps): update dependency @​types/node to v24.11.2 (#5885)
  • 9d2bb9a chore(deps): update dependency @​types/node to v24.11.0 (#5879)
  • e634c9a chore(deps): update dependency @​types/node to v24.10.15 (#5871)
  • 2834eb5 chore(deps): update dependency @​types/node to v24.10.14 (#5870)
  • See full diff in compare view

Updates @stryker-mutator/vitest-runner from 9.6.0 to 9.6.1

Release notes

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

v9.6.1

9.6.1 (2026-04-10)

Bug Fixes

  • deps: update dependency typed-rest-client to ~2.3.0 (#5933) (5a24298)
  • deps: update mutation-testing-elements monorepo to v3.7.3 (#5912) (1f68437)
  • vitest-runner: fix vitest runner mutant hitcount and coverage for v4.1 (#5928) (56c1ae2)
Changelog

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

9.6.1 (2026-04-10)

Bug Fixes

  • vitest-runner: fix vitest runner mutant hitcount and coverage for v4.1 (#5928) (56c1ae2)
Commits
  • e1abfbe v9.6.1
  • f421b42 chore(deps): update dependency vite to v7.3.2 (#5949)
  • 56c1ae2 fix(vitest-runner): fix vitest runner mutant hitcount and coverage for v4.1 (...
  • 1a30329 chore(deps): update dependency vitest-browser-react to v2.2.0 (#5947)
  • 6792b90 chore(deps): update dependency @​types/node to v24.12.2 (#5943)
  • be5a1b8 chore(deps): update dependency @​types/node to v24.12.1 (#5942)
  • f29da0e chore(deps): update dependency vitest-browser-react to v2.1.0 (#5906)
  • a990813 chore(deps): update dependency @​types/node to v24.12.0 (#5887)
  • e511114 chore(deps): update dependency @​types/node to v24.11.2 (#5885)
  • 9d2bb9a chore(deps): update dependency @​types/node to v24.11.0 (#5879)
  • Additional commits viewable in compare view

Updates @types/node from 25.5.2 to 25.6.0

Commits

Updates @vitest/coverage-v8 from 4.1.2 to 4.1.4

Release notes

Sourced from @​vitest/coverage-v8's releases.

v4.1.4

   🚀 Experimental Features

   🐞 Bug Fixes

    View changes on GitHub

v4.1.3

   🚀 Experimental Features

   🐞 Bug Fixes

    View changes on GitHub
Commits

Updates globals from 17.4.0 to 17.5.0

Release notes

Sourced from globals's releases.

v17.5.0

  • Update globals (2026-04-12) (#342) 5d84602

sindresorhus/globals@v17.4.0...v17.5.0

Commits

Updates prettier from 3.8.1 to 3.8.2

Release notes

Sourced from prettier's releases.

3.8.2

  • Support Angular v21.2

🔗 Changelog

Changelog

Sourced from prettier's changelog.

3.8.2

diff

Angular: Support Angular v21.2 (#18722, #19034 by @​fisker)

Exhaustive typechecking with @default never;

<!-- Input -->
@switch (foo) {
  @case (1) {}
  @default never;
}
<!-- Prettier 3.8.1 -->
SyntaxError: Incomplete block "default never". If you meant to write the @ character, you should use the "&#64;" HTML entity instead. (3:3)
<!-- Prettier 3.8.2 -->
@​switch (foo) {
@​case (1) {}
@​default never;
}

arrow function and instanceof expressions.

<!-- Input -->
@let fn = (a) =>        a?    1:2;
{{ fn ( a         instanceof b)}}
<!-- Prettier 3.8.1 -->
@​let fn = (a) =>        a?    1:2;
{{ fn ( a         instanceof b)}}
<!-- Prettier 3.8.2 -->
@​let fn = (a) => (a ? 1 : 2);
{{ fn(a instanceof b) }}

Commits

Updates typescript-eslint from 8.58.0 to 8.58.1

Release notes

Sourced from typescript-eslint's releases.

v8.58.1

8.58.1 (2026-04-08)

🩹 Fixes

  • eslint-plugin: [no-unused-vars] fix false negative for type predicate parameter (#12004)

❤️ Thank You

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

Changelog

Sourced from typescript-eslint's changelog.

8.58.1 (2026-04-08)

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

Commits

Updates vitest from 4.1.2 to 4.1.4

Release notes

Sourced from vitest's releases.

v4.1.4

   🚀 Experimental Features

   🐞 Bug Fixes

    View changes on GitHub

v4.1.3

   🚀 Experimental Features

   🐞 Bug Fixes

    View changes on GitHub
Commits
  • ac04bac chore: release v4.1.4
  • 82c858d chore: Remove no-op function in plugin config logic (#8501)
  • d4fbb5c feat(experimental): support aria snapshot (#9668)
  • b77de96 feat(reporter): add filterMeta option to json reporter (#10078)
  • a120e3a feat(experimental): expose assertion as a public field (#10095)
  • 5375780 feat(coverage): default to text reporter skipFull if agent detected (#10018)
  • a1b5f0f fix: make expect(..., message) consistent as error message prefix (#10068)
  • 203f07a fix: use "black" foreground for labeled terminal message to ensure contrast (...
  • 2dc0d62 chore: release v4.1.3
  • 7827363 feat: add experimental.preParse flag (#10070)
  • Additional commits viewable in compare view

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

Bumps the dev-tooling group with 8 updates:

| Package | From | To |
| --- | --- | --- |
| [@stryker-mutator/core](https://github.com/stryker-mutator/stryker-js/tree/HEAD/packages/core) | `9.6.0` | `9.6.1` |
| [@stryker-mutator/vitest-runner](https://github.com/stryker-mutator/stryker-js/tree/HEAD/packages/vitest-runner) | `9.6.0` | `9.6.1` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `25.5.2` | `25.6.0` |
| [@vitest/coverage-v8](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8) | `4.1.2` | `4.1.4` |
| [globals](https://github.com/sindresorhus/globals) | `17.4.0` | `17.5.0` |
| [prettier](https://github.com/prettier/prettier) | `3.8.1` | `3.8.2` |
| [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.58.0` | `8.58.1` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `4.1.2` | `4.1.4` |


Updates `@stryker-mutator/core` from 9.6.0 to 9.6.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/v9.6.1/packages/core)

Updates `@stryker-mutator/vitest-runner` from 9.6.0 to 9.6.1
- [Release notes](https://github.com/stryker-mutator/stryker-js/releases)
- [Changelog](https://github.com/stryker-mutator/stryker-js/blob/master/packages/vitest-runner/CHANGELOG.md)
- [Commits](https://github.com/stryker-mutator/stryker-js/commits/v9.6.1/packages/vitest-runner)

Updates `@types/node` from 25.5.2 to 25.6.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `@vitest/coverage-v8` from 4.1.2 to 4.1.4
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.1.4/packages/coverage-v8)

Updates `globals` from 17.4.0 to 17.5.0
- [Release notes](https://github.com/sindresorhus/globals/releases)
- [Commits](sindresorhus/globals@v17.4.0...v17.5.0)

Updates `prettier` from 3.8.1 to 3.8.2
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.8.1...3.8.2)

Updates `typescript-eslint` from 8.58.0 to 8.58.1
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.58.1/packages/typescript-eslint)

Updates `vitest` from 4.1.2 to 4.1.4
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.1.4/packages/vitest)

---
updated-dependencies:
- dependency-name: "@stryker-mutator/core"
  dependency-version: 9.6.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-tooling
- dependency-name: "@stryker-mutator/vitest-runner"
  dependency-version: 9.6.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-tooling
- dependency-name: "@types/node"
  dependency-version: 25.6.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-tooling
- dependency-name: "@vitest/coverage-v8"
  dependency-version: 4.1.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-tooling
- dependency-name: globals
  dependency-version: 17.5.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-tooling
- dependency-name: prettier
  dependency-version: 3.8.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-tooling
- dependency-name: typescript-eslint
  dependency-version: 8.58.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-tooling
- dependency-name: vitest
  dependency-version: 4.1.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-tooling
...

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 13, 2026
@dependabot dependabot bot requested a review from f-campana as a code owner April 13, 2026 08:26
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Apr 13, 2026
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.

0 participants