chore(deps): update all non-major dependencies#1521
Merged
Timeless0911 merged 1 commit intomainfrom Mar 9, 2026
Merged
Conversation
Deploying rslib with
|
| Latest commit: |
7324b62
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://d4dfae53.rslib.pages.dev |
| Branch Preview URL: | https://renovate-all-non-major.rslib.pages.dev |
Timeless0911
approved these changes
Mar 9, 2026
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.66.10→^2.66.11^2.4.4→^2.4.6^2.29.8→^2.30.0^1.1.0→^1.1.1^0.2.0→^0.2.1^0.8.5→^0.9.0^4.0.0→^4.0.2^10.2.13→^10.2.16^10.2.13→^10.2.16^10.2.13→^10.2.16^10.2.13→^10.2.16^24.11.0→^24.12.07.0.0-dev.20260301.1→7.0.0-dev.20260308.1^0.14.0→^0.14.11.8.0→1.8.1^11.3.3→^11.3.4^20.7.0→^20.8.3^4.56.10→^4.56.1110.30.2→10.31.0>=10.30.2→>=10.31.0^3.0.0→^3.0.2^10.2.13→^10.2.16Release Notes
arco-design/arco-design (@arco-design/web-react)
v2.66.11Compare Source
💎 Enhancement
Tabscomponent scrolling performance; resolve scrolling stuttering.(#3131)🆕 Feature
Cascadercomponent.(#3146)Notification.useNotification.(#3145)Formcomponent to control the scrolling behavior.(#3144)Cascadercomponent supports quickly selecting the missing items when the default values are incomplete.(#3133)🐛 BugFix
Treecomponent loads data asynchronously.(#3142)Tooltipcomponent causes a white screen when rendering an array containing a single element wrapped by it.(#3141)TextAreacomponent becomes ineffective after switching to the disabled state.(#3140)Formcontains square brackets [], the value will be abnormally parsed into an object after calling getFieldsValue().(#3139)InputNumbercomponent is not updated in a timely manner after the value is changed in controlled mode.(#3138)InputTagcomponent allows clicking the tag close button to delete tags even when it is in the disabled state.(#3137)InputNumbercomponent inFormItemdo not take effect.(#3136)Formcomponent does not trigger the normalize function.(#3135)DatePickercomponent does not take effect.(#3134)Triggercomponent throws the error "Cannot read properties of undefined (reading 'className')" during runtime, which causes the page to crash.(#3132)💎 功能优化
Tabs组件滚动性能优化,避免滚动卡顿(#3131)🆕 功能升级
Cascader的 renderFormat 参数添加当前被选中的 options 信息(#3146)Notification.useNotification添加手动remove方法(#3145)Form组件validate方法新增noScrollToFirstError参数以控制滚动行为(#3144)Cascader组件在默认值不完整时支持快速选中缺少的项(#3133)🐛 问题修复
Tree组件异步加载数据后expandedKeys未生效问题(#3142)Tooltip组件包裹单个元素的数组时渲染白屏问题修复(#3141)TextArea组件切换disabled后autoSize失效问题修复(#3140)Form中field如果携带中括号[],调用getFieldsValue()后值会被异常解析成object(#3139)InputNumber受控模式下,value更新后,实际显示值更新不及时问题修复(#3138)InputTag组件在disabled状态下仍可点击tag close删除tag问题(#3137)FormItem中InputNumber组件的min/max校验规则不生效问题(#3136)Form中 form.setFieldValue不触发normalize函数的问题(#3135)DatePicker中timepickerProps配置了disableConfirm不生效(#3134)Trigger组件运行时报错 “Cannot read properties of undefined (reading 'className')”导致页面崩溃问题(#3132)biomejs/biome (@biomejs/biome)
v2.4.6Compare Source
Patch Changes
#9305
40869b5Thanks @ematipico! - Fixed #4946:noUnreachableno longer reports code insidefinallyblocks as unreachable when there is abreak,continue, orreturnin the correspondingtrybody.#9303
464910cThanks @ematipico! - Fixed #2786: The formatter no longer produces different output on subsequent runs when acaseclause has a trailing line comment followed by a single block statement.#9324
6294aa2Thanks @arendjr! - Fixed#7730:useAnchorContentnow recognises SolidJS'sinnerHTMLthe same way as React'sdangerouslySetInnerHTML.#9298
1003229Thanks @Netail! - Fixed#9296, so comments are moved along with the attributes in the useSortedAttributes assist rule code fix.#9329
855b451Thanks @dyc3! - Improved performance ofnoEmptyBlockStatements. The rule is now smarter about short-circuiting its logic.#9326
85dfe9bThanks @dyc3! - Improved performance fornoImportCyclesby explicitly excluding node_modules from the cycle detection. The performance improvement is directly proportional to how big your dependency tree is.#9323
d5ee469Thanks @ematipico! - Fixed #9217 and biomejs/biome-vscode#959, where the Biome language server didn't correctly resolve the editor settingconfigurationPathwhen the provided value is a relative path.#9302
86fbc70Thanks @sepagian! - Fixed #9300: Lowercase component member expressions like<form.Field>in Svelte and Astro files are now correctly formatted.v2.4.5Compare Source
Patch Changes
#9185
e43e730Thanks @dyc3! - Added the nursery ruleuseVueScopedStylesfor Vue SFCs. This rule enforces that<style>blocks have thescopedattribute (ormodulefor CSS Modules), preventing style leakage and conflicts between components.#9184
49c8fdeThanks @chocky335! - Improved plugin performance by batching all plugins into a single syntax visitor with a kind-to-plugin lookup map, reducing per-node dispatch overhead from O(N) to O(1) where N is the number of plugins.#9283
071c700Thanks @dyc3! - FixednoUndeclaredVariableserroneously flagging functions and variables defined in the<script setup>section of Vue SFCs.#9221
4612133Thanks @ematipico! - Fixed an issue where the JSON reporter didn't contain the duration of the command.#9294
1805c8fThanks @Netail! - Extra rule source reference.biome migrate eslintshould do a bit better detecting rules in your eslint configurations.#9178
101b3bbThanks @Bertie690! - Fixed #9172 and #9168:Biome now considers more constructs as valid test assertions.
Previously,
assert,expectTypeOfandassertTypewere not recognized as valid assertions by Biome's linting rules, producing false positives in
lint/nursery/useExpectand other similar rules.Now, these rules will no longer produce errors in test cases that used these constructs instead of
expect:#9173
32dad2dThanks @dyc3! - Added parsing support for Svelte's new comments-in-tags feature.The HTML parser will now accept JS style comments in tags in Svelte files.
#8952
1d2ca15Thanks @pkallos! - Added the nursery ruleuseNullishCoalescing. This rule suggests using the nullish coalescing operator (??) instead of logical OR (||) when the left operand may be nullish. This prevents bugs where falsy values like0,'', orfalseare incorrectly treated as missing. Addresses #8043#9243
1992a85Thanks @Netail! - Fixed #7813: improved the diagnostic of the ruleuseExhaustiveDependencies. The diagnostic now shows the name of the variable to add to the dependency array.#9063
3d0648fThanks @taga3s! - Added the nursery rulenoVueRefAsOperand. This rule disallows cases where a ref is used as an operand.The following code is now flagged:
#9273
f239e20Thanks @denbezrukov! - Fixed #9253: parsing of@container scroll-state(...)queries.#9259
96939c0Thanks @ematipico! - Fixed CSS formatter incorrectly collapsing selectors when a BOM (Byte Order Mark) character is present at the start of the file. The formatter now correctly preserves line breaks between comments and selectors in BOM-prefixed CSS files, matching Prettier's behavior.#9251
59e33fbThanks @ematipico! - Fixed #9249: The CSS formatter no longer incorrectly breaks ratio values (like1 / -1) across lines when followed by comments.#9284
ec3a17fThanks @denbezrukov! - Fixed #9253: removed false-positive diagnostics for valid@container/@supportsgeneral-enclosed queries.#9215
b2619a1Thanks @FrederickStempfle! - Fixed #9189:biome ciin GitHub Actions now correctly disables colors so that::error/::warningworkflow commands are not wrapped in ANSI escape codes.#9256
65ae4c1Thanks @ematipico! - Fixed JSON reporter escaping of special characters in diagnostic messages. The JSON reporter now properly escapes double quotes, backslashes, and control characters in error messages and advice text, preventing invalid JSON output when diagnostics contain these characters.#9223
5b9da81Thanks @ematipico! - Fixed an issue where the JSON reporter didn't write output to a file when--reporter-filewas specified. The output is now correctly written to the specified file instead of always going to stdout.#9154
c487e54Thanks @abossenbroek! - Fixed #9115: ThenoPlaywrightMissingAwaitrule no longer produces false positives on jest-dom matchers liketoBeVisible,toBeChecked,toHaveAttribute, etc. For matchers shared between Playwright and jest-dom, the rule now checks whetherexpect()'s argument is a Playwright locator or page object before flagging. Added semantic variable resolution so that extracted Playwright locators (e.g.const loc = page.locator('.item'); expect(loc).toBeVisible()) are still correctly flagged.#9269
33e5cdfThanks @dyc3! - Fixed a false positive wherenoUndeclaredVariablesreported bindings from Vue<script setup>as undeclared when used in<template>.This change ensures embedded bindings collected from script snippets (like imports and
defineModelresults) are respected by the rule.#9267
2c2e060Thanks @ematipico! - Fixed #9143 and #8849: ThenoUnresolvedImportsrule no longer reports false positives for several common patterns:node:fs,node:path,node:url, and other Node.js built-in modules with thenode:prefix are now accepted."typings"(instead of"types") inpackage.jsonnow resolve correctly.export { x as y } from "...") are now resolved correctly through the alias.export * as Ns from "...") are now recognized as own exports of the barrel module.#9254
f7bf12bThanks @ematipico! - Fixed #8842: The CSS formatter now correctly formats@container scroll-state()without adding an unwanted space between the function name and opening parenthesis.#9211
2d0b8e6Thanks @ematipico! - Fixed #7905. Improved the accuracy of type-aware lint rules when analyzing re-exported functions and values.Previously, when a binding was imported from another module, its type was not correctly inferred during the type analysis phase. This caused type-aware lint rules to fail to detect issues when working with re-exported imports.
The following rules now correctly handle re-exported imports:
useAwaitThenablenoFloatingPromisesnoMisusedPromisesuseArraySortCompareExample of now-working detection:
#8934
b49707cThanks @tim-we! - Fixed #8265: Biome now correctly detects test framework calls that use three arguments (label, options, callback) (e.g.,describe("foo", { retry: 2 }, () => {})). This fixes both formatting and thenoDuplicateTestHookslint rule for test frameworks like Vitest.#9191
688fd34Thanks @dyc3! - Fixed #9180: fixed a panic caused by an interaction betweennoRedundantUseStrictand the formatter#9048
9bbdf4dThanks @ff1451! - Added the nursery ruleuseNamedCaptureGroup.The rule enforces using named capture groups in regular expressions instead of numbered ones. It supports both regex literals and
RegExpconstructor calls.#9255
9b6685bThanks @ematipico! - Fixed#9234, where some nursery rules panicked when they were configured with the optionlevelwithout the correspondingoptions.#8968
a2b4494Thanks @LouisLau-art! - Fixed #8812:lint/suspicious/noArrayIndexKeywill now report index usage anywhere in JSXkeytemplate or binary expressions, not only in the last visited identifier.#9266
84935a4Thanks @dyc3! - Fixed #9250:noVueDuplicateKeyswill no longer flag keys underwatch, preventing false positives.#9056
1f2fe2eThanks @ruidosujeira! - Added the nursery ruleuseArraySometo prefer.some()over verbose existence checks likefilter(...).length > 0andfindIndex(...) !== -1, with suggestions forfind/findLastexistence checks. This also applies to ES2025 iterator helpers such asIterator.prototype.find.#9163
f87acf6Thanks @JUSTIVE! - Addedgraphqlto valid embedded graphql template tags inside JavaScript files, when the featurejavascript.experimentalEmbeddedSnippetsEnabledis enabled. This allows proper support for graphql tags used in RelayJS.Now, code snippets like the following are correctly formatted and limited:
#8773
6b01778Thanks @xcb3d! - Added the new nursery ruleuseUnicodeRegex.The rule enforces the use of the
uorvflag for regular expressions. This ensures proper handling of Unicode characters like emoji.changesets/changesets (@changesets/cli)
v2.30.0Compare Source
web-infra-dev/rsbuild (@rsbuild/plugin-babel)
v1.1.1Compare Source
What's Changed
New Features 🎉
Bug Fixes 🐞
*.svslte.tsfiles are transformed twice by @chenjiahan in #3920\nin error overlay messages by @ymq001 in #3944Document 📖
Other Changes
dts.buildby @chenjiahan in #3948New Contributors
Full Changelog: web-infra-dev/rsbuild@v1.1.0...v1.1.1
web-infra-dev/rstest (@rstest/adapter-rslib)
v0.2.1Compare Source
What's Changed
Bug Fixes 🐞
Full Changelog: web-infra-dev/rstest@v0.2.0...v0.2.1
shikijs/shiki (@shikijs/transformers)
v4.0.2Compare Source
🐞 Bug Fixes
View changes on GitHub
v4.0.1Compare Source
🐞 Bug Fixes
View changes on GitHub
storybookjs/storybook (@storybook/addon-docs)
v10.2.16Compare Source
definePreview({...}).type<T>()export default - #33885, thanks @copilot-swe-agent!v10.2.15Compare Source
v10.2.14Compare Source
storybookjs/storybook (@storybook/addon-onboarding)
v10.2.16Compare Source
10.2.16
v10.2.15Compare Source
10.2.15
v10.2.14Compare Source
10.2.14
microsoft/typescript-go (@typescript/native-preview)
v7.0.0-dev.20260308.1Compare Source
v7.0.0-dev.20260307.1Compare Source
v7.0.0-dev.20260306.1Compare Source
v7.0.0-dev.20260305.1Compare Source
v7.0.0-dev.20260304.1Compare Source
v7.0.0-dev.20260303.1Compare Source
v7.0.0-dev.20260302.1Compare Source
babel/babel-polyfills (babel-plugin-polyfill-corejs3)
v0.14.1Compare Source
rstackjs/create-rstack (create-rstack)
v1.8.1Compare Source
What's Changed
Full Changelog: rstackjs/create-rstack@v1.8.0...v1.8.1
jprichardson/node-fs-extra (fs-extra)
v11.3.4Compare Source
ensureSymlink/ensureSymlinkSyncwith a relativesrcPathwould fail if the symlink alreadyConfiguration
📅 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.