chore(deps): update all non-major dependencies #1326
Merged
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.3.2->^2.3.4^7.53.3->^7.54.0^4.0.34->^4.0.35^2.9.2->^2.10.1~1.6.2->~1.6.3^1.4.1->^1.4.2^0.6.2->^0.6.3^3.14.0->^3.15.0^4.1.16->^4.1.177.0.0-dev.20251102.1->7.0.0-dev.20251109.1^1.0.2->^1.0.310.20.0->10.21.0>=10.20.0->>=10.21.00.17.0->0.17.1^2.1.3->^2.1.4^2.1.3->^2.1.4^2.1.3->^2.1.4^4.1.16->^4.1.17^4.0.6->^4.0.8^3.5.22->^3.5.24Release Notes
biomejs/biome (@biomejs/biome)
v2.3.4Compare Source
Patch Changes
#7989
4855c4aThanks @alissonlauffer! - Fixed a regression in Astro frontmatter parsing where comments inside quoted strings were incorrectly detected as actual comments. This caused the parser to prematurely terminate frontmatter parsing when encountering strings likeconst test = "//";.For example, the following Astro frontmatter now parses correctly:
#7968
0b28f5fThanks @denbezrukov! - Refactored formatter to use strictTokenelement for better performance. The newTokenvariant is optimized for static, ASCII-only text (keywords, operators, punctuation) with the following constraints:\n,\r)\t)This enables faster printing and fitting logic by using bulk string operations (
push_str,len()) instead of character-by-character iteration with Unicode width calculations.#7941
19b8280Thanks @Conaclos! - Fixed #7943. Rules'optionsare now properly merged with the inheritedoptionsfrom a shared configuration.This means that you can now override a specific option from a rule without resetting the other options to their default.
Given the following shared configuration:
{ "linter": { "rules": { "style": { "useNamingConvention": { "level": "on", "options": { "strictCase": false, "conventions": [ { "selector": { "kind": "variable", "scope": "global" }, "formats": ["CONSTANT_CASE"] } ] } } } } } }And the user configuration that extends this shared configuration:
{ "extends": ["shared.json"], "linter": { "rules": { "style": { "useNamingConvention": { "level": "on", "options": { "strictCase": true } } } } } }The obtained merged configuration is now as follows:
{ "extends": ["shared.json"], "linter": { "rules": { "style": { "useNamingConvention": { "level": "on", "options": { "strictCase": true, "conventions": [ { "selector": { "kind": "variable", "scope": "global" }, "formats": ["CONSTANT_CASE"] } ] } } } } } }#7969
425963dThanks @ematipico! - Added support for the Svelte syntax{@​debug}. The Biome HTML parser is now able to parse and format the blocks:#7986
3256f82Thanks @lisiur! - Fixed #7981. Now Biome correctly detects and parseslang='tsx'andlang='jsx'languages when used inside in.vuefiles, when.experimentalFullSupportEnabledis enabled.#7921
547c2daThanks @dyc3! - Fixed #7854: The CSS parser, withtailwindDirectivesenabled, will now parse@source inline("underline");.#7856
c9e20c3Thanks @Netail! - Added the nursery rulenoContinue. Disallowing the usage of thecontinuestatement, structured control flow statements such asifshould be used instead.Invalid:
Valid:
v2.3.3Compare Source
Patch Changes
#7907
57bd662Thanks @ematipico! - Fixed #7839. Now the Biome parser correctly parses the Astro frontmatter even when a triple fence is inside quotes.#7934
a35c496Thanks @alissonlauffer! - Fixed #7919: The HTML parser now correctly handles Unicode BOM (Byte Order Mark) characters at the beginning of HTML files, ensuring proper parsing and tokenization.#7869
c80361dThanks @matanshavit! - Fixed #7864: Biome now preserves component tag name casing in Svelte, Astro, and Vue files.#7926
69cececThanks @matanshavit! - Added the rulenoParametersOnlyUsedInRecursion.This rule detects function parameters that are exclusively used in recursive calls and can be removed to simplify the function signature since they are effectively unused.
Fixes #6484.
#7774
2509b91Thanks @dibashthapa! - Fixed #7657: Added the new ruleno-unknown-propertyfrom ESLint#7918
7165d06Thanks @dyc3! - Fixed #7913: The CSS parser, withtailwindDirectivesenabled, will now correctly handle@slot.#7959
ffae203Thanks @siketyan! - Fixed the Biome Language Server so it no longer returns an internal error when the formatter is disabled in the configuration.microsoft/rushstack (@microsoft/api-extractor)
v7.54.0Compare Source
Tue, 04 Nov 2025 08:15:14 GMT
Minor changes
IExtractorInvokeOptions.printApiReportDiffthat makes build logs easier to diagnose by printing a diff of any changes to API report files (*.api.md).--print-api-report-diffCLI flag that causes a diff of any changes to API report files (*.api.md) to be printed.module-federation/core (@module-federation/storybook-addon)
v4.0.35Patch Changes
reduxjs/redux-toolkit (@reduxjs/toolkit)
v2.10.1Compare Source
This bugfix release fixes an issue with
windowaccess breaking in SSR due to the byte-shaving work in 2.10.What's Changed
Full Changelog: reduxjs/redux-toolkit@v2.10.0...v2.10.1
v2.10.0Compare Source
web-infra-dev/rsbuild (@rsbuild/core)
v1.6.3Compare Source
What's Changed
New Features 🎉
Bug Fixes 🐞
Refactor 🔨
Document 📖
Other Changes
New Contributors
Full Changelog: web-infra-dev/rsbuild@v1.6.2...v1.6.3
web-infra-dev/rstest (@rstest/core)
v0.6.3Compare Source
What's Changed
New Features 🎉
Bug Fixes 🐞
Other Changes
SIGTERMevent handler by @9aoy in #680Full Changelog: web-infra-dev/rstest@v0.6.2...v0.6.3
shikijs/shiki (@shikijs/transformers)
v3.15.0Compare Source
🚀 Features
meta.indentfor indent guides - by @L33Z22L11 in #1087 (d8f89)🐞 Bug Fixes
View changes on GitHub
tailwindlabs/tailwindcss (@tailwindcss/postcss)
v4.1.17Compare Source
Fixed
@variantinside legacy JS APIs (#19263)microsoft/typescript-go (@typescript/native-preview)
v7.0.0-dev.20251109.1Compare Source
v7.0.0-dev.20251108.1Compare Source
v7.0.0-dev.20251107.1Compare Source
v7.0.0-dev.20251106.1Compare Source
v7.0.0-dev.20251105.1Compare Source
v7.0.0-dev.20251104.1Compare Source
v7.0.0-dev.20251103.1Compare Source
rspack-contrib/heading-case (heading-case)
v1.0.3Compare Source
What's Changed
Full Changelog: rspack-contrib/heading-case@v1.0.2...v1.0.3
pnpm/pnpm (pnpm)
v10.21.0Compare Source
web-infra-dev/rslib (rslib)
v0.17.1Compare Source
What's Changed
New Features 🎉
rslibwithout any sub-command to trigger build by @Timeless0911 in #1316rslib-runtimeby @Timeless0911 in #1320Bug Fixes 🐞
Other Changes
Full Changelog: v0.17.0...v0.17.1
rspack-contrib/storybook-rsbuild (storybook-addon-rslib)
v2.1.4Compare Source
🐞 Bug Fixes
View changes on GitHub
vitest-dev/vitest (vitest)
v4.0.8Compare Source
🐞 Bug Fixes
noExternalmerging bug on Vite 6 - by @hi-ogawa in #8950 (bcb13)expect.element()- by @StyleShit in #8954 (9638d)vi.fn(), fix types forvi.spyOn(obj, class)- by @sheremet-va in #8956 (75e7f)View changes on GitHub
v4.0.7Compare Source
🐞 Bug Fixes
processin case global is overwritten - by @AriPerkkio in #8916 (6240d)isolate: false- by @sheremet-va in #8915 (c9078)toContainElement()matcher - by @vitalybaev in #8910 and #8927 (35a27)isolateoption, deprecatebrowser.isolate/browser.fileParallelism- by @sheremet-va in #8890 (9d2b4)--execArgvas array - by @AriPerkkio in #8924 (751c3)URL.createObjectURL,FormData.set(prop, blob)- by @sheremet-va in #8935 (a1b73)--requireargument when running in deno - by @pi0 in #8897 (d41fa)tsc- by @AriPerkkio in #8920 (fdb2e)🏎 Performance
Array.fromcall - by @Connormiha in #8907 (b6014)View changes on GitHub
vuejs/core (vue)
v3.5.24Compare Source
Reverts
v3.5.23Compare Source
Bug Fixes
Configuration
📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) (UTC), 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.
This PR was generated by Mend Renovate. View the repository job log.