Skip to content

fix(deps): update all dependencies#36

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/all
Open

fix(deps): update all dependencies#36
renovate[bot] wants to merge 1 commit intomainfrom
renovate/all

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate bot commented Mar 27, 2026

This PR contains the following updates:

Package Change Age Confidence
@biomejs/biome (source) ^2.4.9^2.4.10 age confidence
@eslint/compat (source) 2.0.32.0.4 age confidence
@playwright/test (source) ^1.58.2^1.59.1 age confidence
@types/node (source) ^24.12.0^24.12.2 age confidence
@typescript-eslint/eslint-plugin (source) ^8.57.2^8.58.0 age confidence
@typescript-eslint/parser (source) ^8.57.2^8.58.0 age confidence
@vitest/eslint-plugin ^1.6.13^1.6.14 age confidence
eslint (source) ^10.1.0^10.2.0 age confidence
eslint-plugin-unicorn ^63.0.0^64.0.0 age confidence
next (source) ^16.2.1^16.2.2 age confidence
typescript-eslint (source) ^8.57.2^8.58.0 age confidence

cc @skulidropek


Release Notes

biomejs/biome (@​biomejs/biome)

v2.4.10

Compare Source

Patch Changes
  • #​8838 f3a6a6b Thanks @​baeseokjae! - Added new lint nursery rule noImpliedEval.

    The rule detects implied eval() usage through functions like setTimeout, setInterval, and setImmediate when called with string arguments.

    // Invalid
    setTimeout("alert('Hello');", 100);
    
    // Valid
    setTimeout(() => alert("Hello"), 100);
  • #​9320 93c3b6c Thanks @​taberoajorge! - Fixed #​7664: noUnusedVariables no longer reports false positives for TypeScript namespace declarations that participate in declaration merging with an exported or used value declaration (const, function, or class) of the same name. The reverse direction is also handled: a value declaration merged with an exported namespace is no longer flagged.

  • #​9630 1dd4a56 Thanks @​raashish1601! - Fixed #​9629: noNegationElse now keeps ternary branch comments attached to the correct branch when applying its fixer.

  • #​9216 04243b0 Thanks @​FrederickStempfle! - Fixed #​9061: noProcessEnv now also detects process.env when process is imported from the "process" or "node:process" modules.

    Previously, only the global process object was flagged:

    import process from "node:process";
    // This was not flagged, but now it is:
    console.log(process.env.NODE_ENV);
  • #​9692 61b7ec5 Thanks @​mkosei! - Fixed Svelte #each destructuring parsing and formatting for nested patterns such as [key, { a, b }].

  • #​9627 06a0f35 Thanks @​ematipico! - Fixed #​191: Improved the performance of how the Biome Language Server pulls code actions and diagnostics.

    Before, code actions were pulled and computed all at once in one request. This approach couldn't work in big files, and caused Biome to stale and have CPU usage spikes up to 100%.

    Now, code actions are pulled and computed lazily, and Biome won't choke anymore in big files.

  • #​9643 5bfee36 Thanks @​dyc3! - Fixed #​9347: useVueValidVBind no longer reports valid object bindings like v-bind="props".

  • #​9627 06a0f35 Thanks @​ematipico! - Fixed assist diagnostics being invisible when using --diagnostic-level=error. Enforced assist violations (e.g. useSortedKeys) were filtered out before being promoted to errors, causing biome check to incorrectly return success.

  • #​9695 9856a87 Thanks @​dyc3! - Added the new nursery rule noUnsafePlusOperands, which reports + and += operations that use object-like, symbol, unknown, or never operands, or that mix number with bigint.

  • #​9627 06a0f35 Thanks @​ematipico! - Fixed duplicate parse errors in check and ci output. When a file had syntax errors, the same parse error was printed twice and the error count was inflated.

  • #​9627 06a0f35 Thanks @​ematipico! - Improved the performance of the commands lint and check when they are called with --write.

  • #​9627 06a0f35 Thanks @​ematipico! - Fixed --diagnostic-level not fully filtering diagnostics. Setting --diagnostic-level=error now correctly excludes warnings and infos from both the output and the summary counts.

  • #​9623 13b3261 Thanks @​ematipico! - Fixed #​9258: --skip no longer causes suppressions/unused warnings for suppression comments targeting skipped rules or domains.

  • #​9631 599dd04 Thanks @​raashish1601! - Fixed #​9625: experimentalEmbeddedSnippetsEnabled no longer crashes when a file mixes formatable CSS-in-JS templates with tagged templates that the embedded formatter can't currently delegate, such as a styled-components interpolation returning `css```.

eslint/rewrite (@​eslint/compat)

v2.0.4

Compare Source

Dependencies
  • The following workspace dependencies were updated
microsoft/playwright (@​playwright/test)

v1.59.1

Compare Source

v1.59.0

Compare Source

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

v8.58.0

Compare Source

🚀 Features
🩹 Fixes
  • eslint-plugin: [prefer-regexp-exec] avoid fixing unknown RegExp flags (#​12161)
  • eslint-plugin: [no-extraneous-class] handle index signatures (#​12142)
  • eslint-plugin: crash in no-unnecessary-type-arguments (#​12163)
❤️ Thank You

See GitHub Releases for more information.

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

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

v8.58.0

Compare Source

🚀 Features
❤️ Thank You

See GitHub Releases for more information.

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

vitest-dev/eslint-plugin-vitest (@​vitest/eslint-plugin)

v1.6.14

Compare Source

What's Changed

New Contributors

Full Changelog: vitest-dev/eslint-plugin-vitest@v1.6.13...v1.6.14

eslint/eslint (eslint)

v10.2.0

Compare Source

Features

Bug Fixes

Documentation

  • a2af743 docs: add language to configuration objects (#​20712) (Francesco Trotta)
  • 845f23f docs: Update README (GitHub Actions Bot)
  • 5fbcf59 docs: remove sourceType from ts playground link (#​20477) (Tanuj Kanti)
  • 8702a47 docs: Update README (GitHub Actions Bot)
  • ddeaded docs: Update README (GitHub Actions Bot)
  • 2b44966 docs: add Major Releases section to Manage Releases (#​20269) (Milos Djermanovic)
  • eab65c7 docs: update eslint versions in examples (#​20664) (루밀LuMir)
  • 3e4a299 docs: update ESM Dependencies policies with note for own-usage packages (#​20660) (Milos Djermanovic)

Chores

  • 8120e30 refactor: extract no unmodified loop condition (#​20679) (kuldeep kumar)
  • 46e8469 chore: update dependency markdownlint-cli2 to ^0.22.0 (#​20697) (renovate[bot])
  • 01ed3aa test: add unit tests for unicode utilities (#​20622) (Manish chaudhary)
  • 811f493 ci: remove --legacy-peer-deps from types integration tests (#​20667) (Milos Djermanovic)
  • 6b86fcf chore: update dependency npm-run-all2 to v8 (#​20663) (renovate[bot])
  • 632c4f8 chore: add prettier update commit to .git-blame-ignore-revs (#​20662) (루밀LuMir)
  • b0b0f21 chore: update dependency eslint-plugin-regexp to ^3.1.0 (#​20659) (Milos Djermanovic)
  • 228a2dd chore: update dependency eslint-plugin-eslint-plugin to ^7.3.2 (#​20661) (Milos Djermanovic)
  • 3ab4d7e test: Add tests for eslintrc-style keys (#​20645) (kuldeep kumar)
sindresorhus/eslint-plugin-unicorn (eslint-plugin-unicorn)

v64.0.0

Compare Source

New rules
Improvements
  • Support TypeScript type assertions in many rules (#​2909) 6b41299
  • text-encoding-identifier-case: Support template literals (#​2905) 9448c8c
  • prefer-math-min-max: Ignore Date objects (#​2903) cd53d9e
  • prevent-abbreviations: Handle exported TS interfaces and enums (#​2898) 6dc01d2
  • no-array-callback-reference: Skip TypeScript type predicate callbacks (#​2897) 02364c8
  • prefer-spread: Skip autofix when it would drop comments (#​2896) 6ff1467
  • no-useless-undefined: Flag return undefined for explicit undefined return types (#​2876) 41fc9c2
  • no-unnecessary-polyfills: Improve performance (#​2874) c88bf29
  • expiring-todo-comments: Add ignoreDates option (#​2892) 95a288b
  • prevent-abbreviations: Recognize jQuery 42f5364
  • prefer-object-from-entries: Avoid auto-fixing generic reduce (#​2878) bea9b20
Fixes
  • expiring-todo-comments: Fix partial version comparison (#​2895) 51390e9
  • consistent-destructuring: Fix false positive for nested rest destructuring (#​2894) 1cddfb5
  • consistent-destructuring: Fix false positive after reassignment (#​2893) c7f57d0
  • consistent-function-scoping: Fix TypeScript false positives for lexical this (#​2885) a383657
  • custom-error-definition: Fix class field autofix (#​2887) 1359726
  • explicit-length-check: Fix || fallback false positives (#​2889) 84246ec
  • explicit-length-check: Avoid unsafe autofix in negated comparisons (#​2883) 73b043b
  • import-style: Fix false positive for type-only import (#​2891) aea9954
  • no-unused-properties: Fix for JSX member access (#​2890) 0ff698b
  • better-regex: Fix empty-pattern autofix (#​2881) c201987
  • prefer-global-this: Fix for window-specific in checks (#​2879) 6bf7537
  • prefer-native-coercion-functions: Fix false positive for TS type predicates (#​2888) 4c4b565
  • prefer-set-has: Fix string false positives (#​2882) c230c22
  • prefer-top-level-await: Fix false positive with Promise.all (#​2884) 67faa7a

vercel/next.js (next)

v16.2.2

Compare Source

typescript-eslint/typescript-eslint (typescript-eslint)

v8.58.0

Compare Source

🚀 Features
❤️ Thank You

See GitHub Releases for more information.

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


Configuration

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

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, 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 requested a review from skulidropek March 27, 2026 21:38
@renovate renovate bot changed the title chore(deps): update dependency eslint-plugin-unicorn to v64 chore(deps): update all dependencies Mar 30, 2026
@renovate renovate bot force-pushed the renovate/all branch 4 times, most recently from 488e25d to b79115f Compare April 1, 2026 01:05
@renovate renovate bot changed the title chore(deps): update all dependencies fix(deps): update all dependencies Apr 1, 2026
@renovate renovate bot force-pushed the renovate/all branch 3 times, most recently from 9cbe3a5 to 7fbd780 Compare April 3, 2026 13:56
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.

1 participant