Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Nov 17, 2025

This PR contains the following updates:

Package Change Age Confidence
@arco-design/web-react (source) ^2.66.7 -> ^2.66.8 age confidence
@biomejs/biome (source) ^2.3.4 -> ^2.3.5 age confidence
@microsoft/api-extractor (source) ^7.54.0 -> ^7.55.0 age confidence
@module-federation/enhanced (source) ^0.21.3 -> ^0.21.4 age confidence
@module-federation/rsbuild-plugin (source) ^0.21.3 -> ^0.21.4 age confidence
@module-federation/storybook-addon (source) ^4.0.35 -> ^4.0.36 age confidence
@rsbuild/plugin-typed-css-modules ^1.1.1 -> ^1.2.0 age confidence
@rspress/core (source) 2.0.0-beta.35 -> 2.0.0-rc.0 age confidence
@rspress/plugin-algolia (source) 2.0.0-beta.35 -> 2.0.0-rc.0 age confidence
@rspress/plugin-llms (source) 2.0.0-beta.35 -> 2.0.0-rc.0 age confidence
@rspress/plugin-rss (source) 2.0.0-beta.35 -> 2.0.0-rc.0 age confidence
@rspress/plugin-sitemap (source) 2.0.0-beta.35 -> 2.0.0-rc.0 age confidence
@rspress/plugin-twoslash (source) 2.0.0-beta.35 -> 2.0.0-rc.0 age confidence
@rstest/core (source) ^0.6.3 -> ^0.6.5 age confidence
@types/node (source) ^24.10.0 -> ^24.10.1 age confidence
@types/react (source) ^19.2.2 -> ^19.2.5 age confidence
@types/react-dom (source) ^19.2.2 -> ^19.2.3 age confidence
@typescript/native-preview (source) 7.0.0-dev.20251109.1 -> 7.0.0-dev.20251116.1 age confidence
create-rstack 1.7.6 -> 1.7.7 age confidence
memfs ^4.50.0 -> ^4.51.0 age confidence
nx (source) ^22.0.2 -> ^22.0.3 age confidence
storybook-addon-rslib (source) ^2.1.4 -> ^2.1.5 age confidence
storybook-react-rsbuild (source) ^2.1.4 -> ^2.1.5 age confidence
storybook-vue3-rsbuild (source) ^2.1.4 -> ^2.1.5 age confidence
vitest (source) ^4.0.8 -> ^4.0.9 age confidence
vue-tsc (source) ^3.1.3 -> ^3.1.4 age confidence

Release Notes

arco-design/arco-design (@​arco-design/web-react)

v2.66.8

Compare Source

biomejs/biome (@​biomejs/biome)

v2.3.5

Compare Source

Patch Changes
  • #​8023 96f3e77 Thanks @​ematipico! - Added support Svelte syntax {@​html}. Biome now is able to parse and format the Svelte syntax {@​html}:

    -{@​html   'div'}
    +{@​html 'div'}

    The contents of the expressions inside the {@&#8203;html <expression>} aren't formatted yet.

  • #​8058 5f68bcc Thanks @​ematipico! - Fixed a bug where the Biome Language Server would enable its project file watcher even when no project rules were enabled.

    Now the watching of nested configuration files and nested ignore files is delegated to the editor, if their LSP spec supports it.

  • #​8023 96f3e77 Thanks @​ematipico! - Added support Svelte syntax {@&#8203;render}. Biome now is able to parse and format the Svelte syntax {@&#8203;render}:

    -{@&#8203;render   sum(1, 2)   }
    +{@&#8203;render sum(1, 2)}

    The contents of the expressions inside the {@&#8203;render <expression>} aren't formatted yet.

  • #​8006 f0612a5 Thanks @​Bertie690! - Updated documentation and diagnostic for lint/complexity/noBannedTypes. The rule should have a more detailed description and diagnostic error message.

  • #​8039 da70d8b Thanks @​PFiS1737! - Biome now keeps a blank line after the frontmatter section in Astro files.

  • #​8042 b7efa6f Thanks @​dyc3! - The CSS Parser, with tailwindDirectives enabled, will now accept at rules like @media and @supports in @custom-variant shorthand syntax.

  • #​8064 3ff9d45 Thanks @​dibashthapa! - Fixed #​7967: Fixed the issue with support for advanced SVG props

  • #​8023 96f3e77 Thanks @​ematipico! - Added support Svelte syntax {@&#8203;attach}. Biome now is able to parse and format the Svelte syntax {@&#8203;attach}:

    -<div {@&#8203;attach    myAttachment   }>...</div>
    +<div {@&#8203;attach myAttachment}>...</div>

    The contents of the expressions inside the {@&#8203;attach <expression>} aren't formatted yet.

  • #​8001 6e8a50e Thanks @​ematipico! - Added support Svelte syntax {#key}. Biome now is able to parse and format the Svelte syntax {#key}:

    -{#key   expression} <div></div> {/key}
    +{#key expression}
    +  <div></div>
    +{/key}

    The contents of the expressions inside the {#key <expression>} aren't formatted yet.

  • #​8023 96f3e77 Thanks @​ematipico! - Added support Svelte syntax {@&#8203;const}. Biome now is able to parse and format the Svelte syntax {@&#8203;const}:

    -{@&#8203;const   name = value}
    +{@&#8203;const name = value}

    The contents of the expressions inside the {@&#8203;const <expression>} aren't formatted yet.

  • #​8044 8f77d4a Thanks @​Netail! - Corrected rule source references. biome migrate eslint should do a bit better detecting rules in your eslint configurations.

  • #​8065 1a2d1af Thanks @​Netail! - Added the nursery rule useArraySortCompare. Require Array#sort and Array#toSorted calls to always provide a compareFunction.

    Invalid:

    const array = [];
    array.sort();

    Valid:

    const array = [];
    array.sort((a, b) => a - b);
  • #​7673 a3a713d Thanks @​dyc3! - The HTML parser is now able to parse vue directives. This enables us to write/port Vue lint rules that require inspecting the <template> section. However, this more complex parsing may result in parsing errors where there was none before. For those of you that have opted in to the experimental support (aka experimentalFullSupportEnabled), we greatly appreciate your help testing this out, and your bug reports.

  • #​8031 fa6798a Thanks @​ematipico! - Added support for the Svelte syntax {#if}{/if}. The Biome HTML parser is now able to parse and format the {#if}{/if} blocks:

    <!-- if / else-if / else -->
    {#if porridge.temperature > 100}
    -<p>too hot!</p>
    +  <p>too hot!</p>
    {:else if 80 > porridge.temperature}
    -<p>too cold!</p>
    +  <p>too cold!</p>
    {:else if 100 > porridge.temperature}
    -<p>too too cold!</p>
    +  <p>too too cold!</p>
    {:else}
    -<p>just right!</p>
    +  <p>just right!</p>
    {/if}
  • #​8041 beeb7bb Thanks @​dyc3! - The CSS parser, with tailwindDirectives enabled, will now accept lists of selectors in @custom-variant shorthand syntax.

    @&#8203;custom-variant cell (th:has(&), td:has(&));
  • #​8028 c09e45c Thanks @​fmajestic! - The GitLab reporter now outputs format errors.

  • #​8037 78011b1 Thanks @​PFiS1737! - indentScriptAndStyle no longer indents the frontmatter in Astro files.

  • #​8009 6374b1f Thanks @​tmcw! - Fixed an edge case in the useArrowFunction rule.

    The rule no longer emits diagnostics for or offers to fix functions that reference
    the arguments object,
    because that object is undefined for arrow functions.

    Valid example:

    // Valid: this function cannot be transformed into an arrow function because
    // arguments is not defined for arrow functions.
    const getFirstArg = function () {
      return arguments[0];
    };
microsoft/rushstack (@​microsoft/api-extractor)

v7.55.0

Compare Source

Wed, 12 Nov 2025 01:12:56 GMT

Minor changes
  • Bump the @microsoft/tsdoc dependency to ~0.16.0.
  • Bump the @microsoft/tsdoc-config dependency to ~0.18.0.
module-federation/core (@​module-federation/enhanced)

v0.21.4

Compare Source

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

v0.21.4

Compare Source

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

v4.0.36

Patch Changes
rspack-contrib/rsbuild-plugin-typed-css-modules (@​rsbuild/plugin-typed-css-modules)

v1.2.0

Compare Source

What's Changed

Full Changelog: rspack-contrib/rsbuild-plugin-typed-css-modules@v1.1.1...v1.2.0

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

v0.6.5

Compare Source

What's Changed
New Features 🎉
Bug Fixes 🐞
  • fix: should get project's tsconfigPath correctly by @​9aoy in #​687
  • fix(vscode-extension): import rstest error on windows by @​9aoy in #​693
Document 📖
  • docs: update testNamePattern configuration details by @​9aoy in #​690
Other Changes
  • chore: no need to run files when run list filesOnly by @​9aoy in #​689
  • chore: only render status in tty context by @​9aoy in #​692
  • chore(vscode-extension): update default test file glob pattern by @​9aoy in #​694
New Contributors

Full Changelog: web-infra-dev/rstest@v0.6.4...v0.6.5

v0.6.4

Compare Source

What's Changed
New Features 🎉
Other Changes

Full Changelog: web-infra-dev/rstest@v0.6.3...v0.6.4

microsoft/typescript-go (@​typescript/native-preview)

v7.0.0-dev.20251116.1

Compare Source

v7.0.0-dev.20251115.1

Compare Source

v7.0.0-dev.20251114.1

Compare Source

v7.0.0-dev.20251113.1

Compare Source

v7.0.0-dev.20251112.1

Compare Source

v7.0.0-dev.20251111.1

Compare Source

v7.0.0-dev.20251110.1

Compare Source

rspack-contrib/create-rstack (create-rstack)

v1.7.7

Compare Source

What's Changed

New Contributors

Full Changelog: rspack-contrib/create-rstack@v1.7.6...v1.7.7

streamich/memfs (memfs)

v4.51.0

Compare Source

Features
nrwl/nx (nx)

v22.0.3

Compare Source

22.0.3 (2025-11-10)

🚀 Features
  • core: batch hash tasks without custom hashers (#​33327)
  • core: add OSC 9;4 progress indicator support to TUI (#​33325)
  • core: disable interactivity by default for run-one task outputs in tui (#​33358)
  • gradle: use gitignore to determine dependant task output files (#​33402)
  • maven: upgrade to version 0.0.8 with automated migration (#​33315)
  • maven: add ci-workflow generator (#​33346)
  • maven: bump version from 0.0.8 to 0.0.9 (#​33405)
  • misc: remove CI investigation recommendations from agent rules (#​33309)
  • vite: add vitest 4 to peerDep range to prevent conflicts (#​33394)
🩹 Fixes
  • core: also look in .nx installation when reading nx.json extends (#​33306)
  • core: handle various directories when importing prettier (#​33383)
  • core: prevent args from being split by spaces when executing through nx wrapper (#​33362)
  • core: correctly identify local workspace dependencies on windows (#​33408)
  • maven: resolve maven dependencies from project roots (#​33313)
  • maven: set migration version to 22.1.0-beta.4 (#​33345)
  • maven: forward parameters through target dependencies (#​33365)
  • module-federation: update @​module-federation packages to fix Koa vulnerability (#​33285, #​33380)
  • nextjs: ensure eslint-config-next matches Next.js 14 and 15 versions (#​30259, #​30258, #​30257)
  • nx-dev: fix GitHub star button styling in mobile view (#​33385)
  • testing: use .cts config files for Jest 30+ to fix __dirname issues (#​33349, #​32236)
  • vite: prevent race-condition when importing @​vitejs/plugin-vue (#​33307)
❤️ Thank You
rspack-contrib/storybook-rsbuild (storybook-addon-rslib)

v2.1.5

Compare Source

   🐞 Bug Fixes
    View changes on GitHub
vitest-dev/vitest (vitest)

v4.0.9

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
vuejs/language-tools (vue-tsc)

v3.1.4

Compare Source

Bug Fixes
  • fix(language-service): prevent auto-insertion of html snippets in template interpolation (#​5744) - Thanks to @​serkodev!
  • fix(language-service): strip interpolations from document passed to html service - Thanks to @​KazariEX!
  • fix(language-core): report unused @ts-expect-error directive on components with loose props checks (#​5750) - Thanks to @​serkodev and @​KazariEX!
  • fix(language-core): respect directive comments before v-else (#​5753) - Thanks to @​serkodev and @​KazariEX!
Other Changes
  • refactor(language-core): re-implement component references by codegen (#​5736) - Thanks to @​KazariEX!
  • refactor(language-core): simplify calculation of full interpolation content - Thanks to @​KazariEX!

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.


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

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

@netlify
Copy link

netlify bot commented Nov 17, 2025

Deploy Preview for rslib ready!

Name Link
🔨 Latest commit ae25f1a
🔍 Latest deploy log https://app.netlify.com/projects/rslib/deploys/691a7e3016a32c00087eb6f0
😎 Deploy Preview https://deploy-preview-1338--rslib.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify project configuration.

@Timeless0911 Timeless0911 merged commit 3ea0364 into main Nov 17, 2025
26 of 27 checks passed
@Timeless0911 Timeless0911 deleted the renovate/all-non-major branch November 17, 2025 03:26
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.

2 participants