Skip to content

chore(deps-dev): bump the dev-deps group with 6 updates#14

Merged
crimx merged 1 commit intomainfrom
dependabot/npm_and_yarn/dev-deps-b80a38bc4f
Jan 2, 2026
Merged

chore(deps-dev): bump the dev-deps group with 6 updates#14
crimx merged 1 commit intomainfrom
dependabot/npm_and_yarn/dev-deps-b80a38bc4f

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 1, 2026

Bumps the dev-deps group with 6 updates:

Package From To
@types/node 24.10.1 25.0.3
@vitest/coverage-v8 4.0.14 4.0.16
@wopjs/eslint-config 0.1.51 0.1.56
eslint 9.39.1 9.39.2
prettier 3.7.3 3.7.4
vitest 4.0.14 4.0.16

Updates @types/node from 24.10.1 to 25.0.3

Commits

Updates @vitest/coverage-v8 from 4.0.14 to 4.0.16

Release notes

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

v4.0.16

   🐞 Bug Fixes

    View changes on GitHub

v4.0.15

   🚀 Experimental Features

   🐞 Bug Fixes

    View changes on GitHub
Commits

Updates @wopjs/eslint-config from 0.1.51 to 0.1.56

Release notes

Sourced from @​wopjs/eslint-config's releases.

v0.1.56

0.1.56 (2025-12-29)

Build System

  • deps: bump the prod-deps group with 2 updates (#147) (2596c48)

v0.1.55

0.1.55 (2025-12-22)

Build System

  • deps: bump eslint-plugin-perfectionist from 4.15.1 to 5.0.0 in the prod-deps group (#145) (b77ded8)

v0.1.54

0.1.54 (2025-12-16)

Build System

  • deps-dev: bump eslint from 9.39.1 to 9.39.2 in the dev-deps group (#140) (4084239)
  • deps: bump the prod-deps group with 2 updates (#141) (d6ffe79)

v0.1.53

0.1.53 (2025-12-08)

Build System

  • deps-dev: bump prettier from 3.7.3 to 3.7.4 in the dev-deps group (#137) (55eadde)
  • deps: bump typescript-eslint in the prod-deps group (#138) (fad66cd)

v0.1.52

0.1.52 (2025-12-02)

Build System

  • deps-dev: bump prettier from 3.6.2 to 3.7.3 in the dev-deps group (#134) (097852d)
  • deps: bump typescript-eslint in the prod-deps group (#135) (676f2d3)
Changelog

Sourced from @​wopjs/eslint-config's changelog.

0.1.56 (2025-12-29)

Build System

  • deps: bump the prod-deps group with 2 updates (#147) (2596c48)

0.1.55 (2025-12-22)

Build System

  • deps: bump eslint-plugin-perfectionist from 4.15.1 to 5.0.0 in the prod-deps group (#145) (b77ded8)

0.1.54 (2025-12-16)

Build System

  • deps-dev: bump eslint from 9.39.1 to 9.39.2 in the dev-deps group (#140) (4084239)
  • deps: bump the prod-deps group with 2 updates (#141) (d6ffe79)
  • deps: bump typescript-eslint (#143) (a434bac)

0.1.53 (2025-12-08)

Build System

  • deps-dev: bump prettier from 3.7.3 to 3.7.4 in the dev-deps group (#137) (55eadde)
  • deps: bump typescript-eslint in the prod-deps group (#138) (fad66cd)

0.1.52 (2025-12-02)

Build System

  • deps-dev: bump prettier from 3.6.2 to 3.7.3 in the dev-deps group (#134) (097852d)
  • deps: bump typescript-eslint in the prod-deps group (#135) (676f2d3)
Commits
  • 5778e2a chore(main): release 0.1.56 (#148)
  • 2596c48 build(deps): bump the prod-deps group with 2 updates (#147)
  • 2f0f9c7 chore(main): release 0.1.55 (#146)
  • b77ded8 build(deps): bump eslint-plugin-perfectionist from 4.15.1 to 5.0.0 in the pro...
  • 718568d chore(main): release 0.1.54 (#144)
  • f43c16b chore(main): release 0.1.54 (#142)
  • a434bac build(deps): bump typescript-eslint (#143)
  • d6ffe79 build(deps): bump the prod-deps group with 2 updates (#141)
  • 4084239 build(deps-dev): bump eslint from 9.39.1 to 9.39.2 in the dev-deps group (#140)
  • b7efdd4 chore(main): release 0.1.53 (#139)
  • Additional commits viewable in compare view

Updates eslint from 9.39.1 to 9.39.2

Release notes

Sourced from eslint's releases.

v9.39.2

Bug Fixes

  • 5705833 fix: warn when eslint-env configuration comments are found (#20381) (sethamus)

Build Related

  • 506f154 build: add .scss files entry to knip (#20391) (Milos Djermanovic)

Chores

  • 7ca0af7 chore: upgrade to @eslint/js@9.39.2 (#20394) (Francesco Trotta)
  • c43ce24 chore: package.json update for @​eslint/js release (Jenkins)
  • 4c9858e ci: add v9.x-dev branch (#20382) (Milos Djermanovic)
Commits

Updates prettier from 3.7.3 to 3.7.4

Release notes

Sourced from prettier's releases.

3.7.4

What's Changed

🔗 Changelog

Changelog

Sourced from prettier's changelog.

3.7.4

diff

LWC: Avoid quote around interpolations (#18383 by @​kovsu)

<!-- Input -->
<div foo={bar}>   </div>
<!-- Prettier 3.7.3 (--embedded-language-formatting off) -->
<div foo="{bar}"></div>
<!-- Prettier 3.7.4 (--embedded-language-formatting off) -->
<div foo={bar}></div>

TypeScript: Fix comment inside union type gets duplicated (#18393 by @​fisker)

// Input
type Foo = (/** comment */ a | b) | c;
// Prettier 3.7.3
type Foo = /** comment / (/* comment */ a | b) | c;
// Prettier 3.7.4
type Foo = /** comment */ (a | b) | c;

TypeScript: Fix unstable comment print in union type comments (#18395 by @​fisker)

// Input
type X = (A | B) & (
  // comment
  A | B
);
// Prettier 3.7.3 (first format)
type X = (A | B) &
(// comment
A | B);
// Prettier 3.7.3 (second format)
type X = (
| A
</tr></table>

... (truncated)

Commits

Updates vitest from 4.0.14 to 4.0.16

Release notes

Sourced from vitest's releases.

v4.0.16

   🐞 Bug Fixes

    View changes on GitHub

v4.0.15

   🚀 Experimental Features

   🐞 Bug Fixes

    View changes on GitHub
Commits
  • b46d744 chore: release v4.0.16
  • 84a3062 fix(browser): string formatting bug when including placeholders in console.lo...
  • f7f6aa8 fix: log deprecated test.poolOptions if it's set (#9226)
  • 568513c fix: allow inlining fully dynamic import (#9137)
  • 5d26b87 fix(experimental): export setupEnvironment for custom pools (#9187)
  • f17eb42 refactor: avoid using isFileServingAllowed from Vite (#9160)
  • 78cfbf9 fix: avoid crashing on process.versions stub (#9174)
  • da0ade2 fix: fix browser mode default testTimeout back to 15 seconds (#9167)
  • eb1abf0 chore: release v4.0.15
  • a68f74e feat(cache): add opt-out on a plugin level, fix internal root cache (#9154)
  • 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 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

Bumps the dev-deps group with 6 updates:

| Package | From | To |
| --- | --- | --- |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `24.10.1` | `25.0.3` |
| [@vitest/coverage-v8](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8) | `4.0.14` | `4.0.16` |
| [@wopjs/eslint-config](https://github.com/wopjs/eslint-config) | `0.1.51` | `0.1.56` |
| [eslint](https://github.com/eslint/eslint) | `9.39.1` | `9.39.2` |
| [prettier](https://github.com/prettier/prettier) | `3.7.3` | `3.7.4` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `4.0.14` | `4.0.16` |


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

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

Updates `@wopjs/eslint-config` from 0.1.51 to 0.1.56
- [Release notes](https://github.com/wopjs/eslint-config/releases)
- [Changelog](https://github.com/wopjs/eslint-config/blob/main/CHANGELOG.md)
- [Commits](wopjs/eslint-config@v0.1.51...v0.1.56)

Updates `eslint` from 9.39.1 to 9.39.2
- [Release notes](https://github.com/eslint/eslint/releases)
- [Commits](eslint/eslint@v9.39.1...v9.39.2)

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

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

---
updated-dependencies:
- dependency-name: "@types/node"
  dependency-version: 25.0.3
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-deps
- dependency-name: "@vitest/coverage-v8"
  dependency-version: 4.0.16
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-deps
- dependency-name: "@wopjs/eslint-config"
  dependency-version: 0.1.56
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-deps
- dependency-name: eslint
  dependency-version: 9.39.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-deps
- dependency-name: prettier
  dependency-version: 3.7.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-deps
- dependency-name: vitest
  dependency-version: 4.0.16
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-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 Jan 1, 2026
@crimx crimx merged commit 60e5b33 into main Jan 2, 2026
1 check passed
@crimx crimx deleted the dependabot/npm_and_yarn/dev-deps-b80a38bc4f branch January 2, 2026 09:26
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