Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Aug 11, 2025

This PR contains the following updates:

Package Change Age Confidence
@prisma/client (source) 4.16.1 -> 4.16.2 age confidence
@trivago/prettier-plugin-sort-imports 4.1.1 -> 4.3.0 age confidence
@types/eslint (source) 8.40.2 -> 8.56.12 age confidence
@types/humanize-ms (source) 1.2.2 -> 1.2.5 age confidence
@types/node (source) 18.16.18 -> 18.19.130 age confidence
@types/node-cron (source) 3.0.8 -> 3.0.11 age confidence
@types/unzalgo (source) 3.0.0 -> 3.0.2 age confidence
@typescript-eslint/eslint-plugin (source) 5.60.1 -> 5.62.0 age confidence
@typescript-eslint/parser (source) 5.60.1 -> 5.62.0 age confidence
@vitest/coverage-v8 (source) 0.32.2 -> 0.34.6 age confidence
discord.js (source) 14.11.0 -> 14.24.0 age confidence
dotenv 16.3.1 -> 16.6.1 age confidence
eslint (source) 8.43.0 -> 8.57.1 age confidence
eslint-config-prettier 8.8.0 -> 8.10.2 age confidence
eslint-plugin-import 2.27.5 -> 2.32.0 age confidence
eslint-plugin-prettier 4.2.1 -> 4.2.5 age confidence
node-cron 3.0.2 -> 3.0.3 age confidence
pnpm (source) 8.6.5 -> 8.15.9 age confidence
prisma (source) 4.16.1 -> 4.16.2 age confidence
rimraf 5.0.1 -> 5.0.10 age confidence
tsup (source) 7.1.0 -> 7.2.0 age confidence
tsx (source) 3.12.7 -> 3.14.0 age confidence
typescript (source) 5.1.5 -> 5.9.3 age confidence
vite-tsconfig-paths 4.2.0 -> 4.3.2 age confidence
vitest (source) 0.32.2 -> 0.34.6 age confidence
zod (source) 3.21.4 -> 3.25.76 age confidence

Release Notes

prisma/prisma (@​prisma/client)

v4.16.2

Compare Source

Today, we are issuing the 4.16.2 patch release.

Fixes in Prisma Client
trivago/prettier-plugin-sort-imports (@​trivago/prettier-plugin-sort-imports)

v4.3.0

Compare Source

New features

v4.2.1

Compare Source

Chore

v4.2.0

Compare Source

Chore
typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)

v5.62.0

Compare Source

Bug Fixes
  • eslint-plugin: [comma-spacing] allow no space after trailing comma in objects and arrays (#​6938) (24bdacc)
  • eslint-plugin: [prefer-includes] escape special characters (#​7161) (5a347a5), closes #​7145
  • eslint-plugin: replace auto-fix of class literal property style rule with suggestion (#​7054) (a8c824a)
Features
  • eslint-plugin: [prefer-nullish-coalescing] add ignorePrimitives option (#​6487) (6edaa04)

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

v5.61.0

Compare Source

Features

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

5.60.1 (2023-06-26)

Note: Version bump only for package @​typescript-eslint/eslint-plugin

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

typescript-eslint/typescript-eslint (@​typescript-eslint/parser)

v5.62.0

Compare Source

Note: Version bump only for package @​typescript-eslint/parser

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

v5.61.0

Compare Source

Note: Version bump only for package @​typescript-eslint/parser

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

5.60.1 (2023-06-26)

Note: Version bump only for package @​typescript-eslint/parser

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

vitest-dev/vitest (@​vitest/coverage-v8)

v0.34.6

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.34.5

Compare Source

   🚀 Features
   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

v0.34.4

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.34.3

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.34.2

Compare Source

   🚀 Features
   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

v0.34.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.34.0

Compare Source

   🚨 Breaking Changes
  • Transform mode affects only test files, not regular files  -  by @​sheremet-va in #​3491 (9608b)
    • transformMode is now moved to server.transformMode. This option is highly discouraged to use. If you need to change the transform mode, use the new option testTransformMode instead to control the mode based on the running test, not the current file path. By default, tests with jsdom or happy-dom use web transform mode, and tests using node or edge environment use ssr mode. If you have a custom environment, it should provide transformMode property.
  • Custom environment now should be processed before Vitest can consume it. It means that you cannot specify a path to a TS file or use import paths that should be processed by Vite.
  • Disable coverage.reportOnFailure by default  -  by @​AriPerkkio in #​3615 (0c6f6)
  • Remove @vitest/coverage-c8 package  -  by @​AriPerkkio in #​3614 (a90d6)
    • @vitest/coverage-c8 is no longer supported. Please, use @vitest/coverage-v8 instead.
  • Support running tests using VM context  -  by @​sheremet-va and @​dammy001 in #​3203 (b0929)
    • To address speed issues in some applications, Vitest now provides experimentalVmThreads pool to run your tests using VM Sandboxes environment. Make sure you understand all pitfalls of this pool before opening an issue.
  • Introduce server option  -  by @​fenghan34 and @​sheremet-va in #​3725 (dc4fa)
    • Most of deps. options are now moved to server.deps with a deprecation warning. Please, consider using deps.optimizer instead of deps.inline/deps.external. Ideally, we would like to move away from using server.deps.inline altogether.
  • vite-node: Make CLI arguments parsing behavior consistent with node/tsx/ts-node  -  by @​rxliuli in #​3574 (1cd4e)
    • You now have to provide CLI arguments before the entry point. For example, instead of vite-node index.ts --watch, you now have to do vite-node --watch index.ts.
  • Add preact example, remove optimizer experimental status, enable by default  -  by @​sheremet-va and @​eryue0220 in #​3854 (4b946)
    • deps.optimizer is now enabled by default. This means that Vitest will bundle specified dependencies before running your tests. This field inherits options from optimizeDeps and ssr.optimizeDeps which are populated by other plugins (like, Svelte).
   🚀 Features
   🐞 Bug Fixes
   🏎 Performance
  • Deprecate deps.registerNodeLoader  -  by @​sheremet-va (7f45b)
    • This option was introduced to support aliasing inside external packages. Please, use deps.optimizer.web instead. If you test Node.js applications, consider adding external packages to server.deps.inline.
    View changes on GitHub

v0.33.0

Compare Source

   🚨 Breaking Changes
  • Revert default include patterns  -  by @​so1ve #​3729
    • 0.32.0 changed the default include globs to be compatible with Jest. After a discussion with the community, we are reverting this change because it turned out to be non-intuitive.
   🐞 Bug Fixes
    View changes on GitHub

v0.32.4

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.32.3

Compare Source

   🚀 Features

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot enabled auto-merge August 11, 2025 15:14
@github-actions
Copy link

github-actions bot commented Aug 11, 2025

Coverage Report

Status Category Percentage Covered / Total
🔵 Lines 47.23% 1522 / 3222
🔵 Statements 47.23% 1522 / 3222
🔵 Functions 39.42% 41 / 104
🔵 Branches 87.12% 115 / 132
File CoverageNo changed files found.
Generated in workflow #1125 for commit a5bf8c0 by the Vitest Coverage Report Action

@renovate renovate bot force-pushed the renovate/dependencies-(non-major) branch 2 times, most recently from fba4100 to 2df423b Compare August 15, 2025 09:10
@renovate renovate bot force-pushed the renovate/dependencies-(non-major) branch 2 times, most recently from 1919269 to 4c6c063 Compare August 22, 2025 11:32
@renovate renovate bot force-pushed the renovate/dependencies-(non-major) branch from 4c6c063 to 565e7d2 Compare August 31, 2025 10:36
@renovate renovate bot force-pushed the renovate/dependencies-(non-major) branch from 565e7d2 to dd879c4 Compare September 7, 2025 22:56
@renovate renovate bot force-pushed the renovate/dependencies-(non-major) branch 3 times, most recently from 8067814 to 002b2a6 Compare September 18, 2025 02:33
@renovate renovate bot force-pushed the renovate/dependencies-(non-major) branch 4 times, most recently from b128fa3 to a8d6924 Compare October 1, 2025 01:59
@renovate renovate bot force-pushed the renovate/dependencies-(non-major) branch 4 times, most recently from 5b7af25 to 1d653bd Compare October 9, 2025 18:01
@renovate renovate bot force-pushed the renovate/dependencies-(non-major) branch from 1d653bd to 57a80c9 Compare October 21, 2025 22:10
@renovate renovate bot force-pushed the renovate/dependencies-(non-major) branch from 57a80c9 to a5bf8c0 Compare October 24, 2025 22:35
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants