Skip to content

chore(deps): update all non-major dependencies#364

Merged
chenjiahan merged 1 commit into
mainfrom
renovate/all-non-major
Nov 10, 2025
Merged

chore(deps): update all non-major dependencies#364
chenjiahan merged 1 commit into
mainfrom
renovate/all-non-major

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Nov 10, 2025

This PR contains the following updates:

Package Change Age Confidence
@biomejs/biome (source) ^2.3.2 -> ^2.3.4 age confidence
@module-federation/enhanced (source) ^0.21.2 -> ^0.21.3 age confidence
@module-federation/rsbuild-plugin (source) ^0.21.2 -> ^0.21.3 age confidence
@module-federation/storybook-addon (source) ^4.0.34 -> ^4.0.35 age confidence
@radix-ui/react-label (source) ^2.1.7 -> ^2.1.8 age confidence
@radix-ui/react-slot (source) ^1.2.3 -> ^1.2.4 age confidence
@rsbuild/core (source) ~1.6.0 -> ~1.6.3 age confidence
@rsbuild/core (source) ^1.6.0 -> ^1.6.3 age confidence
@rsbuild/plugin-react (source) ^1.4.1 -> ^1.4.2 age confidence
@rsbuild/plugin-react (source) 1.4.1 -> 1.4.2 age confidence
@rsdoctor/rspack-plugin (source) ^1.3.7 -> ^1.3.8 age confidence
@rslib/core (source) ^0.17.0 -> ^0.17.1 age confidence
@rspack/cli (source) 1.6.0 -> 1.6.1 age confidence
@rspack/core (source) 1.6.0 -> 1.6.1 age confidence
@rstest/core (source) ^0.6.1 -> ^0.6.3 age confidence
@rstest/core (source) 0.6.1 -> 0.6.3 age confidence
@storybook/addon-docs (source) ^10.0.2 -> ^10.0.6 age confidence
@storybook/addon-onboarding (source) ^10.0.2 -> ^10.0.6 age confidence
@storybook/react (source) ^10.0.2 -> ^10.0.6 age confidence
@storybook/vue3 (source) ^10.0.2 -> ^10.0.6 age confidence
@swc/core (source) ^1.14.0 -> ^1.15.1 age confidence
@typescript-eslint/eslint-plugin (source) ^8.46.2 -> ^8.46.3 age confidence
@typescript-eslint/parser (source) ^8.46.2 -> ^8.46.3 age confidence
@unocss/preset-attributify (source) ^66.5.4 -> ^66.5.5 age confidence
@unocss/preset-uno (source) ^66.5.4 -> ^66.5.5 age confidence
@unocss/webpack (source) ^66.5.4 -> ^66.5.5 age confidence
esbuild 0.25.12 -> 0.27.0 age confidence
eslint (source) ^9.39.0 -> ^9.39.1 age confidence
fastify (source) ^5.6.1 -> ^5.6.2 age confidence
lucide-react (source) ^0.552.0 -> ^0.553.0 age confidence
pnpm (source) 10.20.0 -> 10.21.0 age confidence
rspress (source) ^1.45.8 -> ^1.46.0 age confidence
storybook (source) ^10.0.2 -> ^10.0.6 age confidence
storybook-addon-rslib (source) ^2.1.3 -> ^2.1.4 age confidence
storybook-react-rsbuild (source) ^2.1.3 -> ^2.1.4 age confidence
storybook-vue3-rsbuild (source) ^2.1.3 -> ^2.1.4 age confidence
svelte (source) ^5.43.3 -> ^5.43.5 age confidence
tailwind-merge ^3.3.1 -> ^3.4.0 age confidence
tailwindcss (source) ^4.1.16 -> ^4.1.17 age confidence

Release Notes

biomejs/biome (@​biomejs/biome)

v2.3.4

Compare Source

Patch Changes
  • #​7989 4855c4a Thanks @​alissonlauffer! - Fixed a regression in Astro frontmatter parsing where comments inside quoted strings were incorrectly detected as actual comments. This caused the parser to prematurely terminate frontmatter parsing when encountering strings like const test = "//";.
    For example, the following Astro frontmatter now parses correctly:

    ---
    const test = "// not a real comment";
    ---
  • #​7968 0b28f5f Thanks @​denbezrukov! - Refactored formatter to use strict Token element for better performance. The new Token variant is optimized for static, ASCII-only text (keywords, operators, punctuation) with the following constraints:

    • ASCII only (no Unicode characters)
    • No newlines (\n, \r)
    • No tab characters (\t)

    This enables faster printing and fitting logic by using bulk string operations (push_str, len()) instead of character-by-character iteration with Unicode width calculations.

  • #​7941 19b8280 Thanks @​Conaclos! - Fixed #​7943. Rules' options are now properly merged with the inherited options from a shared configuration.

    This means that you can now override a specific option from a rule without resetting the other options to their default.

    Given the following shared configuration:

    {
      "linter": {
        "rules": {
          "style": {
            "useNamingConvention": {
              "level": "on",
              "options": {
                "strictCase": false,
                "conventions": [
                  {
                    "selector": { "kind": "variable", "scope": "global" },
                    "formats": ["CONSTANT_CASE"]
                  }
                ]
              }
            }
          }
        }
      }
    }

    And the user configuration that extends this shared configuration:

    {
      "extends": ["shared.json"],
      "linter": {
        "rules": {
          "style": {
            "useNamingConvention": {
              "level": "on",
              "options": { "strictCase": true }
            }
          }
        }
      }
    }

    The obtained merged configuration is now as follows:

    {
      "extends": ["shared.json"],
      "linter": {
        "rules": {
          "style": {
            "useNamingConvention": {
              "level": "on",
              "options": {
                "strictCase": true,
                "conventions": [
                  {
                    "selector": { "kind": "variable", "scope": "global" },
                    "formats": ["CONSTANT_CASE"]
                  }
                ]
              }
            }
          }
        }
      }
    }
  • #​7969 425963d Thanks @​ematipico! - Added support for the Svelte syntax {@​debug}. The Biome HTML parser is now able to parse and format the blocks:

    -{@​debug     foo,bar,    something}
    +{@​debug foo, bar, something}
  • #​7986 3256f82 Thanks @​lisiur! - Fixed #​7981. Now Biome correctly detects and parses lang='tsx' and lang='jsx' languages when used inside in .vue files, when .experimentalFullSupportEnabled is enabled.

  • #​7921 547c2da Thanks @​dyc3! - Fixed #​7854: The CSS parser, with tailwindDirectives enabled, will now parse @source inline("underline");.

  • #​7856 c9e20c3 Thanks @​Netail! - Added the nursery rule noContinue. Disallowing the usage of the continue statement, structured control flow statements such as if should be used instead.

    Invalid:

    let sum = 0,
      i;
    
    for (i = 0; i < 10; i++) {
      if (i >= 5) {
        continue;
      }
    
      sum += i;
    }

    Valid:

    let sum = 0,
      i;
    
    for (i = 0; i < 10; i++) {
      if (i < 5) {
        sum += i;
      }
    }

v2.3.3

Compare Source

Patch Changes
module-federation/core (@​module-federation/enhanced)

v0.21.3

Compare Source

Patch Changes
module-federation/core (@​module-federation/rsbuild-plugin)

v0.21.3

Compare Source

Patch Changes
module-federation/core (@​module-federation/storybook-addon)

v4.0.35

Patch Changes
radix-ui/primitives (@​radix-ui/react-slot)

v1.2.4

web-infra-dev/rsbuild (@​rsbuild/core)

v1.6.3

Compare Source

What's Changed

New Features 🎉
Bug Fixes 🐞
Refactor 🔨
Document 📖
Other Changes

New Contributors

Full Changelog: web-infra-dev/rsbuild@v1.6.2...v1.6.3

v1.6.2

Compare Source

What's Changed

New Features 🎉
Bug Fixes 🐞
Refactor 🔨
Document 📖
Other Changes

Full Changelog: web-infra-dev/rsbuild@v1.6.1...v1.6.2

v1.6.1

Compare Source

What's Changed

Bug Fixes 🐞
Document 📖
Other Changes

Full Changelog: web-infra-dev/rsbuild@v1.6.0...v1.6.1

web-infra-dev/rsdoctor (@​rsdoctor/rspack-plugin)

v1.3.8

Compare Source

What's Changed

New Features 🎉
Bug Fixes 🐞
Other Changes

Full Changelog: web-infra-dev/rsdoctor@v1.3.7...v1.3.8

web-infra-dev/rslib (@​rslib/core)

v0.17.1

Compare Source

What's Changed
New Features 🎉
Bug Fixes 🐞
Other Changes

Full Changelog: web-infra-dev/rslib@v0.17.0...v0.17.1

web-infra-dev/rspack (@​rspack/cli)

v1.6.1

Compare Source

What's Changed
Highlights 💡

In Rspack 1.6.1, the source map implementation in the rspack-sources crate has been optimized, improving source map generation performance by roughly 30%.

image
Performance Improvements ⚡
Bug Fixes 🐞
Refactor 🔨
Document Updates 📖
Other Changes

Full Changelog: web-infra-dev/rspack@v1.6.0...v1.6.1

Details

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: Enabled.

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-non-major branch from 191a0d9 to 6dbb1c3 Compare November 10, 2025 03:42
@chenjiahan chenjiahan merged commit 2dc6b3e into main Nov 10, 2025
4 checks passed
@chenjiahan chenjiahan deleted the renovate/all-non-major branch November 10, 2025 03:44
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.

1 participant