Skip to content

fix(deps): update all non-major dependencies#603

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/all-minor-patch
Open

fix(deps): update all non-major dependencies#603
renovate[bot] wants to merge 1 commit intomainfrom
renovate/all-minor-patch

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate bot commented Mar 24, 2026

This PR contains the following updates:

Package Change Age Confidence Type Update
@biomejs/biome (source) ^2.4.8^2.4.9 age confidence devDependencies patch
@microlink/react-json-view ^1.31.14^1.31.15 age confidence devDependencies patch
@modelcontextprotocol/ext-apps ^1.3.1^1.3.2 age confidence dependencies patch
@modelcontextprotocol/sdk (source) ^1.27.1^1.28.0 age confidence devDependencies minor
@modelcontextprotocol/sdk (source) ^1.27.1^1.28.0 age confidence dependencies minor
@oclif/core ^4.10.2^4.10.3 age confidence dependencies patch
@vitest/ui (source) ^4.1.1^4.1.2 age confidence devDependencies patch
alpic (source) ^1.101.0^1.103.0 age confidence devDependencies minor
aws-cdk (source) ^2.1113.0^2.1114.1 age confidence devDependencies minor
aws-cdk-lib (source) ^2.244.0^2.245.0 age confidence dependencies minor
giget ^3.1.2^3.2.0 age confidence dependencies minor
lucide-react (source) ^1.0.1^1.7.0 age confidence devDependencies minor
mintlify (source) ^4.2.447^4.2.458 age confidence devDependencies patch
node (source) >=24.14.0>=24.14.1 age confidence engines patch
node (source) >=20.20.1>=20.20.2 age confidence engines patch
pnpm (source) 10.32.110.33.0 age confidence packageManager minor
posthog-node (source) ^5.28.5^5.28.8 age confidence dependencies patch
react-resizable-panels (source) ^4.7.5^4.7.6 age confidence devDependencies patch
shadcn (source) ^4.1.0^4.1.1 age confidence devDependencies patch
vite (source) ^8.0.2^8.0.3 age confidence devDependencies patch
vite (source) ^8.0.2^8.0.3 age confidence dependencies patch
vitest (source) ^4.1.1^4.1.2 age confidence devDependencies patch

Release Notes

biomejs/biome (@​biomejs/biome)

v2.4.9

Compare Source

Patch Changes
  • #​9315 085d324 Thanks @​ematipico! - Added a new nursery CSS rule noDuplicateSelectors, 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:

    /* First selector */
    .x .y .z {
    }
    
    /* Second selector */
    .x {
      .y {
        .z {
        }
      }
    }
  • #​9567 b7ab931 Thanks @​ematipico! - Fixed #​7211: useOptionalChain now detects negated logical OR chains. The following code is now considered invalid:

    !foo || !foo.bar;
  • #​8670 607ebf9 Thanks @​tt-a1i! - Fixed #​8345: useAdjacentOverloadSignatures no 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.

    class Kek {
      static kek(): number {
        return 0;
      }
      another(): string {
        return "";
      }
      kek(): number {
        return 1;
      } // no longer reported as non-adjacent
    }
  • #​9476 97b80a8 Thanks @​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 0cd5298 Thanks @​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 unless linter.domains.react, linter.domains.qwik, or an explicit rule config also enables them, or their relative dependencies are installed.

  • #​9586 4cafb71 Thanks @​dyc3! - Fixed #​8828: Grit patterns using export { $foo } from $source now match named re-exports in JavaScript and TypeScript files.

  • #​9550 d4e3d6e Thanks @​dyc3! - Fixed #​9548: Biome now parses conditional expressions whose consequent is an arrow function returning a parenthesized object expression.

  • #​8696 a7c19cc Thanks @​Faizanq! - Fixed #​8685 where noUselessLoneBlockStatements would remove empty blocks containing comments. The rule now preserves these blocks since comments may contain important information like TODOs or commented-out code.

  • #​9557 6671ac5 Thanks @​datalek! - Fixed #​9557: Biome's LSP server no longer crashes on startup when used with editors that don't send workspaceFolders during initialization. This affected any LSP client that only sends rootUri, which is valid per the LSP specification.

  • #​9455 1710cf1 Thanks @​omar-y-abdi! - Fixed #​9174: useExpect now correctly rejects asymmetric matchers in Vitest or Jest like expect.stringContaining(), expect.objectContaining(), and utilities like expect.extend() that are not valid assertions. Previously these constructs caused false negatives, allowing tests without real assertions to pass the lint rule.

  • #​9584 956e367 Thanks @​ematipico! - Fixed a bug where Vue directive attribute values like v-bind:class="{'dynamic': true}" were incorrectly parsed as JavaScript statements instead of expressions. Object literals inside directive values like :class, v-if, and v-html are now correctly parsed as expressions, preventing spurious parse errors.

  • #​9474 e168494 Thanks @​ematipico! - Added the new nursery rule noUntrustedLicenses. 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 deny and allow are provided, deny takes 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 723798b Thanks @​ViniciusDev26! - Added an unsafe fix to useConsistentMethodSignatures that automatically converts between method-style and property-style signatures.

  • #​9555 8a3647b Thanks @​ematipico! - Fixed #188: the Biome Language Server no longer panics when open files change abruptly, such as during git branch checkouts.

  • #​9605 f65c637 Thanks @​ematipico! - Fixed #​9589. Now Biome correctly parses object expressions inside props and directives. The following code doesn't emit errors anymore:

    <style is:global define:vars={{ bgLight: light }}>
    <Component name={{ first, name }} />
  • #​9565 ccb249e Thanks @​eyupcanakman! - Fixed #​9505: noUselessStringConcat no 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 4d050df Thanks @​Netail! - Added the nursery rule noInlineStyles. The rule disallows the use of inline style attributes in HTML and the style prop in JSX, including React.createElement calls. Inline styles make code harder to maintain and can interfere with Content Security Policy.

  • #​9611 cddaa44 Thanks @​gaauwe! - Fixed a regression where Biome LSP could misread editor settings sent through workspace/didChangeConfiguration when the payload was wrapped in a top-level biome key. This caused requireConfiguration and related settings to be ignored in some editors.

microlinkhq/react-json-view (@​microlink/react-json-view)

v1.31.15

Compare Source

1.31.15 (2026-03-26)

modelcontextprotocol/ext-apps (@​modelcontextprotocol/ext-apps)

v1.3.2

Compare Source

modelcontextprotocol/typescript-sdk (@​modelcontextprotocol/sdk)

v1.28.0

Compare Source

What's Changed

New Contributors

Full Changelog: modelcontextprotocol/typescript-sdk@v1.27.1...v1.28.0

oclif/core (@​oclif/core)

v4.10.3

Compare Source

Bug Fixes
vitest-dev/vitest (@​vitest/ui)

v4.1.2

Compare Source

This release bumps Vitest's flatted version and removes version pinning to resolve flatted's CVE related issues (#​9975).

   🐞 Bug Fixes
    View changes on GitHub
aws/aws-cdk-cli (aws-cdk)

v2.1114.1

Compare Source

v2.1114.0

Compare Source

2.1114.0 (2026-03-26)

Features
Bug Fixes
aws/aws-cdk (aws-cdk-lib)

v2.245.0

Compare Source

Features
Bug Fixes

Alpha modules (2.245.0-alpha.0)

Features
  • s3tables-alpha: add support for partition spec, sort order, and table properties (#​36811) (2696cd1)
  • s3tables-alpha: add metrics configuration support for TableBucket (#​37275) (e8786f5)
  • s3tables-alpha: implement ITaggableV2 on TableBucket and Table L2 constructs (#​37277) (69c8944), closes #​33054
unjs/giget (giget)

v3.2.0

Compare Source

compare changes

🚀 Enhancements
  • git: provider with sparse cloning support (#​211)
🩹 Fixes
  • _utils: Move hyphens to start of character classes in parseGitURI regex (#​256)
  • cli: Prevent duplicate error messages (#​220)
  • gitlab: Support subgroups and :: subdir delimiter (#​141)
🏡 Chore
❤️ Contributors
lucide-icons/lucide (lucide-react)

v1.7.0: Version 1.7.0

Compare Source

What's Changed

New Contributors

Full Changelog: lucide-icons/lucide@1.6.0...1.7.0

v1.6.0: Version 1.6.0

Compare Source

What's Changed

New Contributors

Full Changelog: lucide-icons/lucide@1.5.0...1.6.0

v1.5.0: Version 1.5.0

Compare Source

What's Changed

Full Changelog: lucide-icons/lucide@1.4.0...1.5.0

v1.4.0: Version 1.4.0

Compare Source

What's Changed

New Contributors

Full Changelog: lucide-icons/lucide@1.3.0...1.4.0

v1.3.0: Version 1.3.0

Compare Source

What's Changed

New Contributors

Full Changelog: lucide-icons/lucide@1.2.0...1.3.0

v1.2.0: Version 1.2.0

Compare Source

What's Changed

New Contributors

Full Changelog: lucide-icons/lucide@1.1.0...1.2.0

v1.1.0: Version 1.1.0

Compare Source

What's Changed

New Contributors

Full Changelog: lucide-icons/lucide@1.0.2...1.1.0

mintlify/mint (mintlify)

v4.2.458

Compare Source

v4.2.457

Compare Source

v4.2.456

Compare Source

v4.2.455

Compare Source

v4.2.454

Compare Source

v4.2.453

Compare Source

v4.2.452

Compare Source

v4.2.451

Compare Source

v4.2.450

Compare Source

v4.2.449

Compare Source

v4.2.448

Compare Source

nodejs/node (node)

v24.14.1

Compare Source

pnpm/pnpm (pnpm)

v10.33.0

Compare Source

PostHog/posthog-js (posthog-node)

v5.28.8

Compare Source

Patch Changes

v5.28.7

Compare Source

Patch Changes

v5.28.6

Compare Source

Patch Changes
bvaughn/react-resizable-panels (react-resizable-panels)

v4.7.6

Compare Source

  • 698: Replace Panel aria-disabled attribute with data-disabled
shadcn-ui/ui (shadcn)

v4.1.1

Compare Source

Patch Changes
vitejs/vite (vite)

v8.0.3

Compare Source

Features
Bug Fixes
  • html: cache unfiltered CSS list to prevent missing styles across entries (#​22017) (5464190)
  • module-runner: handle non-ascii characters in base64 sourcemaps (#​21985) (77c95bf)
  • module-runner: skip re-import if the runner is closed (#​22020) (ee2c2cd)
  • optimizer: scan is not resolving sub path import if used in a glob import (#​22018) (ddfe20d)
  • ssr: ssrTransform incorrectly rewrites meta identifier inside import.meta when a binding named meta exists (#​22019) (cff5f0c)
Miscellaneous Chores
Tests

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.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 64c1a1a to 986f511 Compare March 24, 2026 21:44
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 986f511 to ccc0786 Compare March 25, 2026 02:07
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ccc0786 to 9757b2e Compare March 25, 2026 04:58
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 9757b2e to 54ae8ef Compare March 25, 2026 06:11
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 54ae8ef to 59e763d Compare March 25, 2026 10:36
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 59e763d to 7531ce6 Compare March 25, 2026 12:52
@renovate renovate bot changed the title chore(deps): update all non-major dependencies fix(deps): update all non-major dependencies Mar 25, 2026
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 7531ce6 to aa1b2cb Compare March 25, 2026 17:01
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from aa1b2cb to 0f46d38 Compare March 25, 2026 17:30
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 0f46d38 to 45a12bb Compare March 25, 2026 18:32
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 45a12bb to 56cb439 Compare March 25, 2026 19:27
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 56cb439 to 3647286 Compare March 25, 2026 22:07
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 3647286 to df84369 Compare March 26, 2026 09:07
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from df84369 to 6e36789 Compare March 26, 2026 11:05
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 6e36789 to 1c08d32 Compare March 26, 2026 15:36
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 1c08d32 to 4c5d023 Compare March 26, 2026 22:00
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants