chore(deps): update all non-major dependencies #5
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.1.1->^2.1.4^1.2.1->^1.2.2^1.53.2->^1.54.2^1.4.2->^1.4.15^0.10.4->^0.11.2^22.15.34->^22.17.1^0.16.4->^0.16.10^0.16.4->^0.16.1018->18.20.8^1.53.2->^1.54.2^2.13.0->^2.13.1^5.7.3->^5.9.2^5.8.3->^5.9.2Release Notes
biomejs/biome (@biomejs/biome)
v2.1.4Compare Source
Patch Changes
#7121
b9642abThanks @arendjr! - Fixed #7111: Imported symbols using aliases are now correctly recognised.#7103
80515ecThanks @omasakun! - Fixed #6933 and #6994.When the values of private member assignment expressions, increment expressions, etc. are used, those private members are no longer marked as unused.
#6887
0cc38f5Thanks @ptkagori! - Added thenoQwikUseVisibleTaskrule to Qwik.This rule is intended for use in Qwik applications to warn about the use of
useVisibleTask$()functions which require careful consideration before use.Invalid:
Valid:
#7084
50ca155Thanks @ematipico! - Added the new nursery rulenoUnnecessararyConditions, which detects whenever some conditions don'tchange during the life cycle of the program, and truthy or false, hence deemed redundant.
For example, the following snippets will trigger the rule:
#6887
0cc38f5Thanks @ptkagori! - Added theuseImageSizerule to Biome.The
useImageSizerule enforces the use of width and height attributes on<img>elements for performance reasons. This rule is intended to prevent layout shifts and improve Core Web Vitals by ensuring images have explicit dimensions.Invalid:
Valid:
#6887
0cc38f5Thanks @ptkagori! - Added theuseAnchorHrefrule to Biome.The
useAnchorHrefrule enforces the presence of anhrefattribute on<a>elements in JSX. This rule is intended to ensure that anchor elements are always valid and accessible.Invalid:
Valid:
#7100
29fcb05Thanks @Jayllyz! - Added the rulenoNonNullAssertedOptionalChain.This rule prevents the use of non-null assertions (
!) immediately after optional chaining expressions (?.). Optional chaining is designed to safely handle nullable values by returningundefinedwhen the chain encountersnullorundefined. Using a non-null assertion defeats this purpose and can lead to runtime errors.#7129
9f4538aThanks @drwpow! - Removed option, combobox, listbox roles from useSemanticElements suggestions#7106
236deaaThanks @arendjr! - Fixed #6985: Inference of return types no longer mistakenly picks up return types of nested functions.#7102
d3118c6Thanks @omasakun! - Fixed #7101:noUnusedPrivateClassMembersnow handles members declared as part of constructor arguments:privatemodifier and makes it a plain method argument.noUnusedFunctionParameter.#7104
5395297Thanks @harxki! - Reverting to prevent regressions around ref handling#7143
1a6933aThanks @siketyan! - Fixed #6799: ThenoImportCyclesrule now ignores type-only imports if the newignoreTypesoption is enabled (enabled by default).#7099
6cc84cbThanks @arendjr! - Fixed #7062: Biome now correctly considers extended configs when determining the mode for the scanner.#6887
0cc38f5Thanks @ptkagori! - Added theuseQwikClasslistrule to Biome.This rule is intended for use in Qwik applications to encourage the use of the built-in
classprop (which accepts a string, object, or array) instead of theclassnamesutility library.Invalid:
Valid:
#7019
57c15e6Thanks @fireairforce! - Added support in the JS parser forimport source(a stage3 proposal). The syntax looks like:#7053
655049eThanks @jakeleventhal! - Added theuseConsistentTypeDefinitionsrule.This rule enforces consistent usage of either
interfaceortypefor object type definitions in TypeScript.The rule accepts an option to specify the preferred style:
interface(default): Prefer usinginterfacefor object type definitionstype: Prefer usingtypefor object type definitionsExamples:
The rule will automatically fix simple cases where conversion is straightforward.
web-infra-dev/rsbuild (@rsbuild/core)
v1.4.15Compare Source
What's Changed
New Features 🎉
actionoption torsbuild.initConfigsby @colinaaa in https://github.com/web-infra-dev/rsbuild/pull/5753Bug Fixes 🐞
Refactor 🔨
Document 📖
Other Changes
Full Changelog: web-infra-dev/rsbuild@v1.4.14...v1.4.15
web-infra-dev/rslib (@rslib/core)
v0.11.2Compare Source
What's Changed
Trusted Publishing
All Rslib npm packages are now published based on npm's trusted publishing, making Rslib's npm packages more secure and transparent.
See:
Document 📖
Other Changes
Full Changelog: web-infra-dev/rslib@v0.11.1...v0.11.2
v0.11.1Compare Source
What's Changed
New Features 🎉
dts.aliasby @Timeless0911 in https://github.com/web-infra-dev/rslib/pull/1135Bug Fixes 🐞
Other Changes
Full Changelog: web-infra-dev/rslib@v0.11.0...v0.11.1
v0.11.0Compare Source
Breaking changes 🚨
redirect.asset
Boolean values are no longer supported for
redirect.asset, see the documentation of redirect.asset for more details. (#1119)Please note the following changes that may require adjustments to your configurations:
export default defineConfig({ lib: [ { redirect: { - asset: true, + asset: { + path: true, + extension: true, + }, }, }, ], });export default defineConfig({ lib: [ { redirect: { - asset: false, + asset: { + path: false, + extension: false, + }, }, }, ], });What's Changed
New Features 🎉
redirect.asset.pathandredirect.asset.extensionby @Timeless0911 in https://github.com/web-infra-dev/rslib/pull/1119Bug Fixes 🐞
dts.buildis true by @Timeless0911 in https://github.com/web-infra-dev/rslib/pull/1120Other Changes
Full Changelog: web-infra-dev/rslib@v0.10.6...v0.11.0
actions/node-versions (node)
v18.20.8: 18.20.8Compare Source
Node.js 18.20.8
v18.20.7: 18.20.7Compare Source
Node.js 18.20.7
v18.20.6: 18.20.6Compare Source
Node.js 18.20.6
v18.20.5: 18.20.5Compare Source
Node.js 18.20.5
v18.20.4: 18.20.4Compare Source
Node.js 18.20.4
v18.20.3: 18.20.3Compare Source
Node.js 18.20.3
v18.20.2: 18.20.2Compare Source
Node.js 18.20.2
v18.20.1: 18.20.1Compare Source
Node.js 18.20.1
v18.20.0: 18.20.0Compare Source
Node.js 18.20.0
v18.19.1: 18.19.1Compare Source
Node.js 18.19.1
v18.19.0: 18.19.0Compare Source
Node.js 18.19.0
v18.18.2: 18.18.2Compare Source
Node.js 18.18.2
v18.18.1: 18.18.1Compare Source
Node.js 18.18.1
v18.18.0: 18.18.0Compare Source
Node.js 18.18.0
v18.17.1: 18.17.1Compare Source
Node.js 18.17.1
v18.17.0: 18.17.0Compare Source
Node.js 18.17.0
v18.16.1: 18.16.1Compare Source
Node.js 18.16.1
v18.16.0: 18.16.0Compare Source
Node.js 18.16.0
v18.15.0: 18.15.0Compare Source
Node.js 18.15.0
v18.14.2: 18.14.2Compare Source
Node.js 18.14.2
v18.14.1: 18.14.1Compare Source
Node.js 18.14.1
v18.14.0: 18.14.0Compare Source
Node.js 18.14.0
v18.13.0: 18.13.0Compare Source
Node.js 18.13.0
v18.12.1: 18.12.1Compare Source
Node.js 18.12.1
v18.12.0: 18.12.0Compare Source
Node.js 18.12.0
v18.11.0: 18.11.0Compare Source
Node.js 18.11.0
v18.10.0: 18.10.0Compare Source
Node.js 18.10.0
v18.9.1: 18.9.1Compare Source
Node.js 18.9.1
v18.9.0: 18.9.0Compare Source
Node.js 18.9.0
v18.8.0: 18.8.0Compare Source
Node.js 18.8.0
v18.7.0: 18.7.0Compare Source
Node.js 18.7.0
v18.6.0: 18.6.0Compare Source
Node.js 18.6.0
v18.5.0: 18.5.0Compare Source
Node.js 18.5.0
v18.4.0: 18.4.0Compare Source
Node.js 18.4.0
v18.3.0: 18.3.0Compare Source
Node.js 18.3.0
v18.2.0: 18.2.0Compare Source
Node.js 18.2.0
v18.1.0: 18.1.0Compare Source
Node.js 18.1.0
Configuration
📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, on day 1 of the month ( * 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.