Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Nov 3, 2025

This PR contains the following updates:

Package Change Age Confidence
@biomejs/biome (source) ^2.3.1 -> ^2.3.2 age confidence
@rspress/core (source) ^2.0.0-beta.34 -> ^2.0.0-beta.35 age confidence
@types/web ^0.0.283 -> ^0.0.288 age confidence
create-rstack 1.7.0 -> 1.7.1 age confidence
nx (source) 21.6.6 -> 21.6.8 age confidence
solid-js (source) ^1.9.9 -> ^1.9.10 age confidence

Release Notes

biomejs/biome (@​biomejs/biome)

v2.3.2

Compare Source

Patch Changes
  • #​7859 c600618 Thanks @​Netail! - Added the nursery rule noIncrementDecrement, disallows the usage of the unary operators ++ and --.

  • #​7901 0d17b05 Thanks @​ematipico! - Fixed #​7837, where Biome couldn't properly parse text expressions that contained nested curly brackets. This was breaking parsing in Astro and Svelte files.

  • #​7874 e617d36 Thanks @​Bertie690! - Fixed #​7230: noUselessStringConcat no longer emits false positives for multi-line strings with leading + operators.

    Previously, the rule did not check for leading newlines on the + operator, emitting false positives if one occurred at the start of a line.
    Notably, formatting with operatorLinebreak="before" would move the + operators to the start of lines automatically, resulting in spurious errors whenever a multi-line string was used.

    Now, the rule correctly detects and ignores multi-line concatenations with leading operators as well, working regardless of the setting of operatorLinebreak.

    Example

    // The following code used to error if the `+` operators were at the start of lines (as opposed to the end).
    // Now, the rule correctly recognizes this as a stylistic concatenation and ignores it.
    const reallyLongStringThatShouldNotError =
      "Lorem ipsum dolor sit amet consectetur adipiscing elit." +
      "Quisque faucibus ex sapien vitae pellentesque sem placerat." +
      "In id cursus mi pretium tellus duis convallis." +
      "Tempus leo eu aenean sed diam urna tempor. Pulvinar vivamus fringilla";
  • #​7786 33ffcd5 Thanks @​daivinhtran! - Fixed #​7601: Properly match Grit plugin's code snippet with only one child.

  • #​7901 0d17b05 Thanks @​ematipico! - Fixed #​7837, where Biome Language Server panicked when opening HTML-ish files when the experimental full support is enabled.

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

v2.0.0-beta.35

Compare Source

What's Changed
New Features 🎉
  • feat(theme): add prop dlx to PackageManagerTabs for npx pnpm dlx etc by @​Nsttt in #​2623
  • feat(auto-nav-sidebar): add new type: "dir-section-header" by @​SoonIter in #​2643
  • chore: cherry-pick ssg-md to beta.34 in #​2680
Bug Fixes 🐞
  • fix(auto-nav-sidebar): should extract tag and fix the chunks word break by @​SoonIter in #​2652
Document 📖
Other Changes
New Contributors

Full Changelog: v2.0.0-beta.34...v2.0.0-beta.35

microsoft/TypeScript-DOM-Lib-Generator (@​types/web)

v0.0.288

Compare Source

asynciterable.d.ts

No changes

index.d.ts

No changes

iterable.d.ts

No changes

ts5.5/asynciterable.d.ts

No changes

ts5.5/index.d.ts

No changes

ts5.5/iterable.d.ts

No changes

ts5.6/asynciterable.d.ts

No changes

ts5.6/index.d.ts

No changes

ts5.6/iterable.d.ts

No changes

ts5.9/asynciterable.d.ts

No changes

ts5.9/index.d.ts

No changes

ts5.9/iterable.d.ts

No changes

v0.0.287

Compare Source

asynciterable.d.ts

No changes

index.d.ts

No changes

iterable.d.ts

No changes

ts5.5/asynciterable.d.ts

No changes

ts5.5/index.d.ts

No changes

ts5.5/iterable.d.ts

No changes

ts5.6/asynciterable.d.ts

No changes

ts5.6/index.d.ts

No changes

ts5.6/iterable.d.ts

No changes

ts5.9/asynciterable.d.ts

No changes

ts5.9/index.d.ts

No changes

ts5.9/iterable.d.ts

No changes

v0.0.286

Compare Source

asynciterable.d.ts

No changes

index.d.ts

No changes

iterable.d.ts

No changes

ts5.5/asynciterable.d.ts

No changes

ts5.5/index.d.ts

No changes

ts5.5/iterable.d.ts

No changes

ts5.6/asynciterable.d.ts

No changes

ts5.6/index.d.ts

No changes

ts5.6/iterable.d.ts

No changes

ts5.9/asynciterable.d.ts

No changes

ts5.9/index.d.ts

No changes

ts5.9/iterable.d.ts

No changes

v0.0.285

Compare Source

asynciterable.d.ts

No changes

index.d.ts

No changes

iterable.d.ts

No changes

ts5.5/asynciterable.d.ts

No changes

ts5.5/index.d.ts

No changes

ts5.5/iterable.d.ts

No changes

ts5.6/asynciterable.d.ts

No changes

ts5.6/index.d.ts

No changes

ts5.6/iterable.d.ts

No changes

ts5.9/asynciterable.d.ts

No changes

ts5.9/index.d.ts

No changes

ts5.9/iterable.d.ts

No changes

v0.0.284

Compare Source

asynciterable.d.ts

No changes

index.d.ts

No changes

iterable.d.ts

No changes

ts5.5/asynciterable.d.ts

No changes

ts5.5/index.d.ts

No changes

ts5.5/iterable.d.ts

No changes

ts5.6/asynciterable.d.ts

No changes

ts5.6/index.d.ts

No changes

ts5.6/iterable.d.ts

No changes

ts5.9/asynciterable.d.ts

No changes

ts5.9/index.d.ts

No changes

ts5.9/iterable.d.ts

No changes

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

v1.7.1

Compare Source

What's Changed

Full Changelog: rspack-contrib/create-rstack@v1.7.0...v1.7.1

nrwl/nx (nx)

v21.6.8

Compare Source

21.6.8 (2025-10-30)
🚀 Features
  • bundling: add excludeFromExternal option to esbuild executor (#​32980)
❤️ Thank You

v21.6.7

Compare Source

21.6.7 (2025-10-28)

🚀 Features
  • gradle: add custom installation path to options (#​33187)
🩹 Fixes
  • core: improve db connection initialization and error messages (#​33054, #​28640, #​30856, #​32894)
  • core: do not remove wal files manually for existing databases (#​33143)
  • core: revert changes to the db connection initialization (#​33156)
  • core: continue execution when cloud client is unavailable (#​33214)
  • core: prevent error message containing [object Object] for invalid {workspaceRoot} placement (#​33203)
  • core: ensure daemon writes project graph cache to disk consistently (#​33217)
  • core: add accept header to http remote cache get (#​33093, #​33092)
  • core: prevent undefined importer crash in pnpm lockfile parsing (#​33223)
  • misc: handle null exit codes from crashed child processes (#​33163, #​29204)
❤️ Thank You

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 3, 2025

Deploy Preview for rspress-v2 ready!

Name Link
🔨 Latest commit 55faff1
🔍 Latest deploy log https://app.netlify.com/projects/rspress-v2/deploys/69081bdab7b40e000856e742
😎 Deploy Preview https://deploy-preview-2706--rspress-v2.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 91415e8 into main Nov 3, 2025
9 checks passed
@Timeless0911 Timeless0911 deleted the renovate/all-patch branch November 3, 2025 03:32
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