chore(deps): update all non-major dependencies#119
Merged
renovate[bot] merged 1 commit intomainfrom Apr 5, 2026
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
2.4.9→2.4.10^1.1.0→^1.2.0^7.57.7→^7.58.10.20.1→0.20.3^0.3.3→^0.3.40.9.5→0.9.624.12.0→24.12.2^3.16.0→^3.17.0^8.57.2→^8.58.0Release Notes
biomejs/biome (@biomejs/biome)
v2.4.10Compare Source
Patch Changes
#8838
f3a6a6bThanks @baeseokjae! - Added new lint nursery rulenoImpliedEval.The rule detects implied
eval()usage through functions likesetTimeout,setInterval, andsetImmediatewhen called with string arguments.#9320
93c3b6cThanks @taberoajorge! - Fixed #7664:noUnusedVariablesno longer reports false positives for TypeScript namespace declarations that participate in declaration merging with an exported or used value declaration (const,function, orclass) of the same name. The reverse direction is also handled: a value declaration merged with an exported namespace is no longer flagged.#9630
1dd4a56Thanks @raashish1601! - Fixed #9629:noNegationElsenow keeps ternary branch comments attached to the correct branch when applying its fixer.#9216
04243b0Thanks @FrederickStempfle! - Fixed #9061:noProcessEnvnow also detectsprocess.envwhenprocessis imported from the"process"or"node:process"modules.Previously, only the global
processobject was flagged:#9692
61b7ec5Thanks @mkosei! - Fixed Svelte#eachdestructuring parsing and formatting for nested patterns such as[key, { a, b }].#9627
06a0f35Thanks @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
5bfee36Thanks @dyc3! - Fixed #9347:useVueValidVBindno longer reports valid object bindings likev-bind="props".#9627
06a0f35Thanks @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, causingbiome checkto incorrectly return success.#9695
9856a87Thanks @dyc3! - Added the new nursery rulenoUnsafePlusOperands, which reports+and+=operations that use object-like,symbol,unknown, orneveroperands, or that mixnumberwithbigint.#9627
06a0f35Thanks @ematipico! - Fixed duplicate parse errors incheckandcioutput. When a file had syntax errors, the same parse error was printed twice and the error count was inflated.#9627
06a0f35Thanks @ematipico! - Improved the performance of the commandslintandcheckwhen they are called with--write.#9627
06a0f35Thanks @ematipico! - Fixed--diagnostic-levelnot fully filtering diagnostics. Setting--diagnostic-level=errornow correctly excludes warnings and infos from both the output and the summary counts.#9623
13b3261Thanks @ematipico! - Fixed #9258:--skipno longer causessuppressions/unusedwarnings for suppression comments targeting skipped rules or domains.#9631
599dd04Thanks @raashish1601! - Fixed #9625:experimentalEmbeddedSnippetsEnabledno 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```.bombshell-dev/clack (@clack/prompts)
v1.2.0Compare Source
Minor Changes
9786226: Externalizefast-string-widthandfast-wrap-ansito avoid double dependencies090902c: Addsdateprompt withformatsupport (YMD, MDY, DMY)Patch Changes
134a1a1: Fix thepathprompt sodirectory: truecorrectly enforces directory-only selection while still allowing directory navigation, and add regression tests for both directory and default file selection behavior.bdf89a5: Addsplaceholderoption toautocomplete. When the placeholder is set and the input is empty, pressingtabwill set the value toplaceholder.336495a: Apply guide to wrapped multi-line messages in confirm prompt.9fe8de6: RespectwithGuide: falsein autocomplete and multiselect prompts.29a50cb: Fixpathdirectory mode so pressing Enter with an existing directoryinitialValuesubmits that current directory instead of the first child option, and add regression coverage for immediate submit and child-directory navigation.9786226]bdf89a5]417b451]090902c]microsoft/rushstack (@microsoft/api-extractor)
v7.58.1Compare Source
Sat, 04 Apr 2026 00:14:00 GMT
Patches
v7.58.0Compare Source
Wed, 01 Apr 2026 15:13:38 GMT
Minor changes
v7.57.8Compare Source
Tue, 31 Mar 2026 15:14:14 GMT
Version update only
web-infra-dev/rslib (@rslib/core)
v0.20.3Compare Source
What's Changed
Other Changes
Full Changelog: web-infra-dev/rslib@v0.20.2...v0.20.3
v0.20.2Compare Source
What's Changed
New Features 🎉
Bug Fixes 🐞
Document 📖
Other Changes
df5ea7eby @renovate[bot] in #1562Full Changelog: web-infra-dev/rslib@v0.20.1...v0.20.2
web-infra-dev/rslint (@rslint/core)
v0.3.4Compare Source
What's Changed
New Features 🎉
Bug Fixes 🐞
Documentation 📖
Other Changes
Full Changelog: web-infra-dev/rslint@v0.3.3...v0.3.4
web-infra-dev/rstest (@rstest/core)
v0.9.6Compare Source
What's Changed
New Features 🎉
Bug Fixes 🐞
Document 📖
Other Changes
New Contributors
Full Changelog: web-infra-dev/rstest@v0.9.5...v0.9.6
sveltejs/eslint-plugin-svelte (eslint-plugin-svelte)
v3.17.0Compare Source
Minor Changes
eb8172cThanks @marekdedic! - feat(no-navigation-without-resolve): added support for ternary expressionsPatch Changes
b742163Thanks @marekdedic! - fix(no-navigation-without-resolve): properly detecting invalid binary expression operatorstypescript-eslint/typescript-eslint (typescript-eslint)
v8.58.0Compare 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 - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) in timezone Asia/Shanghai, 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.
This PR was generated by Mend Renovate. View the repository job log.