chore(deps): update all non-major dependencies#347
Merged
Conversation
chenjiahan
approved these changes
Sep 15, 2025
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.2.3->^2.2.4^0.18.4->^0.19.1^0.18.4->^0.19.1^1.5.4->^1.5.61.5.2->1.5.31.5.2->1.5.3^1.5.0->^1.5.10.3.2->0.3.4^0.15.3->^0.15.4^22.18.1->^22.18.3^19.1.12->^19.1.13^8.42.0->^8.43.0^8.42.0->^8.43.0^0.542.0->^0.544.0^0.52.2->^0.53.015.5.2->15.5.315.5.2->15.5.310.15.1->10.16.110.27.1->10.27.2^10.27.1->^10.27.2^1.45.3->^1.45.5^19.5.0->^19.6.0Release Notes
biomejs/biome (@biomejs/biome)
v2.2.4Compare Source
Patch Changes
#7453
aa8cea3Thanks @arendjr! - Fixed #7242: Aliases specified inpackage.json'simportssection now support having multiple targets as part of an array.#7454
ac17183Thanks @arendjr! - Greatly improved performance ofnoImportCyclesby eliminating allocations.In one repository, the total runtime of Biome with only
noImportCyclesenabled went from ~23s down to ~4s.#7447
7139aadThanks @rriski! - Fixes #7446. The GritQL$...spread metavariable now correctly matches members in object literals, aligning its behavior with arrays and function calls.#6710
98cf9afThanks @arendjr! - Fixed #4723: Type inference now recognisesindex signatures and their accesses when they are being indexed as a string.
Example
#7415
d042f18Thanks @qraqras! - Fixed #7212, now theuseOptionalChainrule recognizes optional chaining usingtypeof(e.g.,typeof foo !== 'undefined' && foo.bar).#7419
576baf4Thanks @Conaclos! - Fixed #7323.noUnusedPrivateClassMembersno longer reports as unused TypeScriptprivatemembers if the rule encounters a computed access onthis.In the following example,
memberas previously reported as unused. It is no longer reported.351bccdThanks @ematipico! - Added the new nursery lint rulenoJsxLiterals, which disallows the use of string literals inside JSX.The rule catches these cases:
#7406
b906112Thanks @mdevils! - Fixed an issue (#6393) where the useHookAtTopLevel rule reported excessive diagnostics for nested hook calls.The rule now reports only the offending top-level call site, not sub-hooks of composite hooks.
#7461
ea585a9Thanks @arendjr! - Improved performance ofnoPrivateImportsby eliminating allocations.In one repository, the total runtime of Biome with only
noPrivateImportsenabled went from ~3.2s down to ~1.4s.351bccdThanks @ematipico! - Fixed #7411. The Biome Language Server had a regression where opening an editor with a file already open wouldn't load the project settings correctly.#7142
53ff5aeThanks @Netail! - Added the new nursery rulenoDuplicateDependencies, which verifies that no dependencies are duplicated between thebundledDependencies,bundleDependencies,dependencies,devDependencies,overrides,optionalDependencies, andpeerDependenciessections.For example, the following snippets will trigger the rule:
{ "dependencies": { "foo": "" }, "devDependencies": { "foo": "" } }{ "dependencies": { "foo": "" }, "optionalDependencies": { "foo": "" } }{ "dependencies": { "foo": "" }, "peerDependencies": { "foo": "" } }351bccdThanks @ematipico! - Fixed #3824. Now the option CLI--coloris correctly applied to logging too.module-federation/core (@module-federation/enhanced)
v0.19.1What's Changed
New Features 🎉
Bug Fixes 🐞
addQueryoption in retry-plugin query parameters will accumulating across retries by @danpeen in #4055Document 📖
Other Changes
New Contributors
Full Changelog: module-federation/core@v0.18.4...0.19.1
web-infra-dev/rsbuild (@rsbuild/core)
v1.5.6Compare Source
What's Changed
Bug Fixes 🐞
Document 📖
Other Changes
Full Changelog: web-infra-dev/rsbuild@v1.5.5...v1.5.6
v1.5.5Compare Source
What's Changed
New Features 🎉
Performance 🚀
Bug Fixes 🐞
Refactor 🔨
Document 📖
Other Changes
f28e40cby @renovate[bot] in #6078New Contributors
Full Changelog: web-infra-dev/rsbuild@v1.5.4...v1.5.5
web-infra-dev/rspack (@rspack/cli)
v1.5.3Compare Source
Highlights 💡
Advanced tree-shaking
Rspack v1.5.3 ships advanced tree-shaking for dynamic imports via member expression analysis.
Ongoing improvements are in progress, and upcoming releases will continue to improve static analysis to cover more syntax patterns, such as
dynamic importwith a subsequent.then().What's Changed
Performance Improvements ⚡
New Features 🎉
ModuleFederationPluginby @CPunishhttps://github.com/web-infra-dev/rspack/pull/11558/11558postprocessandResolvedRequesttoBrowserHttpImportEsmPluginby @CPunishhttps://github.com/web-infra-dev/rspack/pull/11571/11571Bug Fixes 🐞
jsc.output.charsetin swc loader by @CPunishhttps://github.com/web-infra-dev/rspack/pull/11568/11568moduleidentifier as normal by @fi3ewohttps://github.com/web-infra-dev/rspack/pull/11588/11588Refactor 🔨
Document Updates 📖
Other Changes
New Contributors
Full Changelog: web-infra-dev/rspack@v1.5.2...v1.5.3
rspack-contrib/rspack-plugin-react-refresh (@rspack/plugin-react-refresh)
v1.5.1Compare Source
What's Changed
document.bodyby @stormslowly in #52New Contributors
Full Changelog: rstackjs/rspack-plugin-react-refresh@v1.5.0...v1.5.1
web-infra-dev/rstest (@rstest/core)
v0.3.4Compare Source
What's Changed
Bug Fixes 🐞
Full Changelog: web-infra-dev/rstest@v0.3.3...v0.3.4
v0.3.3Compare Source
What's Changed
Bug Fixes 🐞
node_modulesby @9aoy in #547rsto global API by @9aoy in #551onTestFinished/onTestFailedto global APIs by @9aoy in #552Document 📖
Other Changes
Full Changelog: web-infra-dev/rstest@v0.3.2...v0.3.3
facebook/stylex (@stylexjs/stylex)
v0.15.4Compare Source
processStylexRules.positionTry, and '0' values invalid-stylesESLint rule.defineConstsfor dynamic styles..transformedfile extension for preresolved variables.typescript-eslint/typescript-eslint (@typescript-eslint/eslint-plugin)
v8.43.0Compare Source
🚀 Features
🩹 Fixes
❤️ Thank You
You can read about our versioning strategy and releases on our website.
typescript-eslint/typescript-eslint (@typescript-eslint/parser)
v8.43.0Compare Source
This was a version bump only for parser to align it with other projects, there were no code changes.
You can read about our versioning strategy and releases on our website.
lucide-icons/lucide (lucide-react)
v0.544.0: Version 0.544.0Compare Source
What's Changed
ev-chargericon by @UsamaKhan in #2781New Contributors
Full Changelog: lucide-icons/lucide@0.543.0...0.544.0
v0.543.0: Version 0.543.0Compare Source
What's Changed
churchicon by @karsa-mistmere in #2971messages-squareby @jamiemlaw in #3529bugicons by @jamiemlaw in #3574panel-top-bottom-dashedicon by @jguddas in #3584message-square-quoteicon by @jguddas in #3550shipmetadata by @jguddas in #3559id-card-lanyardmetadata by @jguddas in #3534calendar-cogicon by @jguddas in #3583house-hearticon by @danielbayley in #3239Full Changelog: lucide-icons/lucide@0.542.0...0.543.0
microsoft/monaco-editor (monaco-editor)
v0.53.0Compare Source
New Features
Breaking Changes
vercel/next.js (next)
v15.5.3Compare Source
Core Changes
Credits
Huge thanks to @bgub for helping!
pnpm/pnpm (pnpm)
v10.16.1Compare Source
Patch Changes
v10.16.0Compare Source
Minor Changes
There have been several incidents recently where popular packages were successfully attacked. To reduce the risk of installing a compromised version, we are introducing a new setting that delays the installation of newly released dependencies. In most cases, such attacks are discovered quickly and the malicious versions are removed from the registry within an hour.
The new setting is called
minimumReleaseAge. It specifies the number of minutes that must pass after a version is published before pnpm will install it. For example, settingminimumReleaseAge: 1440ensures that only packages released at least one day ago can be installed.If you set
minimumReleaseAgebut need to disable this restriction for certain dependencies, you can list them under theminimumReleaseAgeExcludesetting. For instance, with the following configuration pnpm will always install the latest version of webpack, regardless of its release time:Related issue: #9921.
Added support for
finders#9946.In the past,
pnpm listandpnpm whycould only search for dependencies by name (and optionally version). For example:prints the chain of dependencies to any installed instance of
minimist:What if we want to search by other properties of a dependency, not just its name? For instance, find all packages that have
react@17in their peer dependencies?This is now possible with "finder functions". Finder functions can be declared in
.pnpmfile.cjsand invoked with the--find-by=<function name>flag when runningpnpm listorpnpm why.Let's say we want to find any dependencies that have React 17 in peer dependencies. We can add this finder to our
.pnpmfile.cjs:Now we can use this finder function by running:
pnpm will find all dependencies that have this React in peer dependencies and print their exact locations in the dependency graph.
It is also possible to print out some additional information in the output by returning a string from the finder. For example, with the following finder:
Every matched package
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.