fix(deps): update all non-major dependencies#603
Open
renovate[bot] wants to merge 1 commit intomainfrom
Open
Conversation
64c1a1a to
986f511
Compare
986f511 to
ccc0786
Compare
ccc0786 to
9757b2e
Compare
9757b2e to
54ae8ef
Compare
54ae8ef to
59e763d
Compare
59e763d to
7531ce6
Compare
7531ce6 to
aa1b2cb
Compare
aa1b2cb to
0f46d38
Compare
0f46d38 to
45a12bb
Compare
45a12bb to
56cb439
Compare
56cb439 to
3647286
Compare
3647286 to
df84369
Compare
df84369 to
6e36789
Compare
6e36789 to
1c08d32
Compare
1c08d32 to
4c5d023
Compare
4c5d023 to
fb2322c
Compare
fb2322c to
b1eed29
Compare
b1eed29 to
737b4ac
Compare
737b4ac to
b724578
Compare
b724578 to
d8ce026
Compare
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.8→^2.4.9^1.31.14→^1.31.15^1.3.1→^1.3.2^1.27.1→^1.28.0^1.27.1→^1.28.0^4.10.2→^4.10.3^4.1.1→^4.1.2^1.101.0→^1.103.0^2.1113.0→^2.1114.1^2.244.0→^2.245.0^3.1.2→^3.2.0^1.0.1→^1.7.0^4.2.447→^4.2.458>=24.14.0→>=24.14.1>=20.20.1→>=20.20.210.32.1→10.33.0^5.28.5→^5.28.8^4.7.5→^4.7.6^4.1.0→^4.1.1^8.0.2→^8.0.3^8.0.2→^8.0.3^4.1.1→^4.1.2Release Notes
biomejs/biome (@biomejs/biome)
v2.4.9Compare Source
Patch Changes
#9315
085d324Thanks @ematipico! - Added a new nursery CSS rulenoDuplicateSelectors, that disallows duplicate selector lists within the same at-rule context.For example, the following snippet triggers the rule because the second selector and the first selector are the same:
#9567
b7ab931Thanks @ematipico! - Fixed #7211:useOptionalChainnow detects negated logical OR chains. The following code is now considered invalid:#8670
607ebf9Thanks @tt-a1i! - Fixed #8345:useAdjacentOverloadSignaturesno longer reports false positives for static and instance methods with the same name. Static methods and instance methods are now treated as separate overload groups.#9476
97b80a8Thanks @masterkain! - Fixed#9475: Fixed a panic when Biome analyzed ambient TypeScript modules containing class constructor, getter, or setter signatures that reference local type aliases. Biome now handles these declarations without crashing during semantic analysis.#9553
0cd5298Thanks @dyc3! - Fixed a bug where enabling the rules of a whole group, would enable rules that belonged to a domain under the same group.For example,
linter.rules.correctness = "error"no longer enables React- or Qwik-specific correctness rules unlesslinter.domains.react,linter.domains.qwik, or an explicit rule config also enables them, or their relative dependencies are installed.#9586
4cafb71Thanks @dyc3! - Fixed #8828: Grit patterns usingexport { $foo } from $sourcenow match named re-exports in JavaScript and TypeScript files.#9550
d4e3d6eThanks @dyc3! - Fixed #9548: Biome now parses conditional expressions whose consequent is an arrow function returning a parenthesized object expression.#8696
a7c19ccThanks @Faizanq! - Fixed #8685 wherenoUselessLoneBlockStatementswould remove empty blocks containing comments. The rule now preserves these blocks since comments may contain important information like TODOs or commented-out code.#9557
6671ac5Thanks @datalek! - Fixed #9557: Biome's LSP server no longer crashes on startup when used with editors that don't sendworkspaceFoldersduring initialization. This affected any LSP client that only sendsrootUri, which is valid per the LSP specification.#9455
1710cf1Thanks @omar-y-abdi! - Fixed #9174:useExpectnow correctly rejects asymmetric matchers in Vitest or Jest likeexpect.stringContaining(),expect.objectContaining(), and utilities likeexpect.extend()that are not valid assertions. Previously these constructs caused false negatives, allowing tests without real assertions to pass the lint rule.#9584
956e367Thanks @ematipico! - Fixed a bug where Vue directive attribute values likev-bind:class="{'dynamic': true}"were incorrectly parsed as JavaScript statements instead of expressions. Object literals inside directive values like:class,v-if, andv-htmlare now correctly parsed as expressions, preventing spurious parse errors.#9474
e168494Thanks @ematipico! - Added the new nursery rulenoUntrustedLicenses. This rule disallows dependencies that ship with invalid licenses or licenses that don't meet the criteria of your project/organisation.The rule has the following options:
allow: a list of licenses that can be allowed. Useful to bypass possible invalid licenses from downstream dependencies.deny: a list of licenses that should trigger the rule. Useful to deny licenses that don't fit your project/organisation.When both
denyandalloware provided,denytakes precedence.requireOsiApproved: whether the licenses need to be approved by the Open Source Initiative.requireFsfLibre: whether the licenses need to be approved by the Free Software Foundation.#9544
723798bThanks @ViniciusDev26! - Added an unsafe fix touseConsistentMethodSignaturesthat automatically converts between method-style and property-style signatures.#9555
8a3647bThanks @ematipico! - Fixed#188: the Biome Language Server no longer panics when open files change abruptly, such as during git branch checkouts.#9605
f65c637Thanks @ematipico! - Fixed #9589. Now Biome correctly parses object expressions inside props and directives. The following code doesn't emit errors anymore:#9565
ccb249eThanks @eyupcanakman! - Fixed #9505:noUselessStringConcatno longer reports tagged template literals as useless string concatenations. Tagged templates invoke a function and can return non-string values, so combining them with+is not equivalent to a single template literal.#9534
4d050dfThanks @Netail! - Added the nursery rulenoInlineStyles. The rule disallows the use of inlinestyleattributes in HTML and thestyleprop in JSX, includingReact.createElementcalls. Inline styles make code harder to maintain and can interfere with Content Security Policy.#9611
cddaa44Thanks @gaauwe! - Fixed a regression where Biome LSP could misread editor settings sent throughworkspace/didChangeConfigurationwhen the payload was wrapped in a top-levelbiomekey. This causedrequireConfigurationand related settings to be ignored in some editors.microlinkhq/react-json-view (@microlink/react-json-view)
v1.31.15Compare Source
1.31.15 (2026-03-26)
modelcontextprotocol/ext-apps (@modelcontextprotocol/ext-apps)
v1.3.2Compare Source
modelcontextprotocol/typescript-sdk (@modelcontextprotocol/sdk)
v1.28.0Compare Source
What's Changed
New Contributors
Full Changelog: modelcontextprotocol/typescript-sdk@v1.27.1...v1.28.0
oclif/core (@oclif/core)
v4.10.3Compare Source
Bug Fixes
vitest-dev/vitest (@vitest/ui)
v4.1.2Compare Source
This release bumps Vitest's
flattedversion and removes version pinning to resolveflatted's CVE related issues (#9975).🐞 Bug Fixes
setupFilesfrom parent directory - by @hi-ogawa in #9960 (7aa93)toMatchScreenshotcan't capture a stable screenshot - by @macarie in #9847 (faace)coverageConfigDefaultsvalues and types - by @Arthie in #9940 (b3c99)View changes on GitHub
aws/aws-cdk-cli (aws-cdk)
v2.1114.1Compare Source
v2.1114.0Compare Source
2.1114.0 (2026-03-26)
Features
Bug Fixes
aws/aws-cdk (aws-cdk-lib)
v2.245.0Compare Source
Features
Bug Fixes
Alpha modules (2.245.0-alpha.0)
Features
unjs/giget (giget)
v3.2.0Compare Source
compare changes
🚀 Enhancements
git:provider with sparse cloning support (#211)🩹 Fixes
::subdir delimiter (#141)🏡 Chore
❤️ Contributors
lucide-icons/lucide (lucide-react)
v1.7.0: Version 1.7.0Compare Source
What's Changed
map-pin-searchicon by @TonySullivan in #4125New Contributors
Full Changelog: lucide-icons/lucide@1.6.0...1.7.0
v1.6.0: Version 1.6.0Compare Source
What's Changed
radio-officon by @kongsgard in #4138New Contributors
Full Changelog: lucide-icons/lucide@1.5.0...1.6.0
v1.5.0: Version 1.5.0Compare Source
What's Changed
beef-officon by @jguddas in #3816Full Changelog: lucide-icons/lucide@1.4.0...1.5.0
v1.4.0: Version 1.4.0Compare Source
What's Changed
sport-shoeicon by @Youya-ui in #3953New Contributors
Full Changelog: lucide-icons/lucide@1.3.0...1.4.0
v1.3.0: Version 1.3.0Compare Source
What's Changed
shield-cogicon by @KnarliX in #3902New Contributors
Full Changelog: lucide-icons/lucide@1.2.0...1.3.0
v1.2.0: Version 1.2.0Compare Source
What's Changed
line-styleicon by @dg-ac in #4030New Contributors
Full Changelog: lucide-icons/lucide@1.1.0...1.2.0
v1.1.0: Version 1.1.0Compare Source
What's Changed
lucide-react-nativeby @karsa-mistmere in #4199arrow-big-*icon by @jguddas in #3527signposticon by @jguddas in #3531circle-user-roundicon by @karsa-mistmere in #4165roadicon by @uibalint in #3014New Contributors
Full Changelog: lucide-icons/lucide@1.0.2...1.1.0
mintlify/mint (mintlify)
v4.2.458Compare Source
v4.2.457Compare Source
v4.2.456Compare Source
v4.2.455Compare Source
v4.2.454Compare Source
v4.2.453Compare Source
v4.2.452Compare Source
v4.2.451Compare Source
v4.2.450Compare Source
v4.2.449Compare Source
v4.2.448Compare Source
nodejs/node (node)
v24.14.1Compare Source
pnpm/pnpm (pnpm)
v10.33.0Compare Source
PostHog/posthog-js (posthog-node)
v5.28.8Compare Source
Patch Changes
4bdfdbc]:v5.28.7Compare Source
Patch Changes
8d34289]:v5.28.6Compare Source
Patch Changes
5784dcaThanks @marandaneto! - fix: captureException now uses distinctId from request context(2026-03-26)
bvaughn/react-resizable-panels (react-resizable-panels)
v4.7.6Compare Source
Panelaria-disabledattribute withdata-disabledshadcn-ui/ui (shadcn)
v4.1.1Compare Source
Patch Changes
12b49c986fcf7e6db9be7f515df6142f822f2236Thanks @shadcn! - fix packageManager in package.jsonvitejs/vite (vite)
v8.0.3Compare Source
Features
Bug Fixes
metaidentifier insideimport.metawhen a binding namedmetaexists (#22019) (cff5f0c)Miscellaneous Chores
Tests
getCssFilesForChunk(#22016) (43fbbf9)Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), 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.