Skip to content

chore(deps): update all dependencies#36

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

chore(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
@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-plugin-unicorn ^63.0.0^64.0.0 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```.

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

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

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 2 times, most recently from 929a7d3 to 29e0b37 Compare March 30, 2026 21:49
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