Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Sep 8, 2025

Note: This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence Type Update
@microsoft/api-extractor (source) 7.55.1 -> 7.55.2 age confidence devDependencies patch
@radix-ui/react-label (source) ^2.1.7 -> ^2.1.8 age confidence dependencies patch
@radix-ui/react-slot (source) ^1.2.3 -> ^1.2.4 age confidence dependencies patch
@rslib/core (source) 0.18.0 -> 0.18.4 age confidence devDependencies patch
@rspress/core (source) 2.0.0-rc.0 -> 2.0.0-rc.2 age confidence devDependencies patch
@rspress/core (source) 2.0.0-rc.0 -> 2.0.0-rc.2 age confidence dependencies patch
@rspress/plugin-llms (source) 2.0.0-rc.0 -> 2.0.0-rc.2 age confidence devDependencies patch
@rstack-dev/doc-ui 1.12.0 -> 1.12.1 age confidence devDependencies patch
@rstest/core (source) 0.7.0 -> 0.7.3 age confidence devDependencies patch
@rstest/core (source) ^0.7.0 -> ^0.7.3 age confidence devDependencies patch
@tailwindcss/postcss (source) ^4.1.11 -> ^4.1.18 age confidence devDependencies patch
@types/mocha (source) 10.0.9 -> 10.0.10 age confidence devDependencies patch
@types/node (source) ^22.19.0 -> ^22.19.3 age confidence devDependencies patch
@typescript/native-preview (source) 7.0.0-dev.20250904.1 -> 7.0.0-dev.20251215.1 age confidence devDependencies patch
@vscode/test-cli 0.0.11 -> 0.0.12 age confidence devDependencies patch
esbuild 0.27.0 -> 0.27.1 age confidence devDependencies patch
esbuild ^0.27.0 -> ^0.27.1 age confidence devDependencies patch
go (source) 1.25 -> 1.25.5 age confidence golang patch
go (source) 1.25.0 -> 1.25.5 age confidence golang patch
go 1.25.0 -> 1.25.5 age confidence uses-with patch
lint-staged ^16.2.6 -> ^16.2.7 age confidence devDependencies patch
ovsx (source) ^0.10.5 -> ^0.10.7 age confidence devDependencies patch
rspress-plugin-sitemap ^1.2.0 -> ^1.2.1 age confidence devDependencies patch
swr (source) ^2.3.6 -> ^2.3.7 age confidence dependencies patch
tailwindcss (source) ^4.1.11 -> ^4.1.18 age confidence devDependencies patch
typescript (source) ^5.9.2 -> ^5.9.3 age confidence devDependencies patch

Release Notes

microsoft/rushstack (@​microsoft/api-extractor)

v7.55.2

Compare Source

Sat, 06 Dec 2025 01:12:28 GMT

Version update only

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

v1.2.4

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

v0.18.4

Compare Source

What's Changed

New Features 🎉
Bug Fixes 🐞
Other Changes

Full Changelog: web-infra-dev/rslib@v0.18.3...v0.18.4

v0.18.3

Compare Source

What's Changed

New Features 🎉
Bug Fixes 🐞
Other Changes

Full Changelog: web-infra-dev/rslib@v0.18.2...v0.18.3

v0.18.2

Compare Source

What's Changed

New Features 🎉
Bug Fixes 🐞
Other Changes

Full Changelog: web-infra-dev/rslib@v0.18.1...v0.18.2

v0.18.1

Compare Source

What's Changed

Bug Fixes 🐞
Document 📖
Other Changes

Full Changelog: web-infra-dev/rslib@v0.18.0...v0.18.1

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

v2.0.0-rc.2

Compare Source

Breaking Changes🚨
theme folder should use @rspress/core/theme-original

related PR: #​2860

In Rspress V1 document, @theme is the alias for rspress/theme, but @theme is an alias which points to theme/index.tsx and falls back to rspress/theme.

rspress/theme or @rspress/core/theme points to Rspress's theme-default, they are actually different things.

We standardize this behavior, which is the same as docusaurus.

  1. In docs directory, @theme or @rspress/core/theme should be used, which points to theme/index.tsx and falls back to theme-default

  2. In theme directory , @theme-original or @rspress/core/theme-original should be used, which always points to Rspress's theme-default, used for users to customize themes, which is very useful for users who publish npm theme packages.

 // theme/index.tsx
- import { Layout as BasicLayout } from 'rspress/theme'; // or @​rspress/core/theme
+ import { Layout } from '@​rspress/core/theme-original';

 const Layout = () => {
    return <BasicLayout {...} />
 }
 
 export { Layout }
- export * from 'rspress/theme' // or @&#8203;rspress/core/theme
+ export * from '@&#8203;rspress/core/theme-original';
Merge @theme-assets to @theme

Before

We have a separate entry for exporting @​theme-assets

import { SvgWrapper } from '@&#8203;theme'
import SearchSvg from '@&#8203;theme-assets/Search';

<SvgWrapper icon={SearchSvg} />

After

@theme-assets has been removed. Icons are exported from @theme and prefixed with Icon, for example: IconSearch

import { SvgWrapper, IconSearch } from '@&#8203;theme';

<SvgWrapper icon={IconSearch} />
                   ^? type Icon = React.FC<React.SVGProps<SVGSVGElement>> | string;
Refactor @rspress/plugin-preview and simplify usage

related PR: #​2806

Before: Required declarations in both config file and MDX file.

pluginPreview({
  previewMode: 'iframe',
  iframeOptions: { position: 'fixed' },
});
```tsx preview

```

After: Only declare in the MDX file.

```tsx preview="iframe-fixed"

```
What's Changed
New Features 🎉
Performance 🚀
  • perf(theme/useWindowSize): optimize useWindowSize with debounce to reduce resize handler calls by @​Copilot in #​2849
Bug Fixes 🐞
Document 📖
Other Changes
New Contributors

Full Changelog: web-infra-dev/rspress@v2.0.0-rc.1...v2.0.0-rc.2

v2.0.0-rc.1

Compare Source

What's Changed
New Features 🎉
  • feat(theme): add transition isPending UI to Sidebar by @​SoonIter in #​2778
  • feat(plugin-twoslash): Make it possible to configure compilerOptions for TypeScript in twoslash by @​Karibash in #​2773
Bug Fixes 🐞
Other Changes

Full Changelog: web-infra-dev/rspress@v2.0.0-rc.0...v2.0.0-rc.1

rspack-contrib/rstack-doc-ui (@​rstack-dev/doc-ui)

v1.12.1

Compare Source

What's Changed

New Contributors

Full Changelog: rspack-contrib/rstack-doc-ui@v1.12.0...v1.12.1

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

v0.7.3

Compare Source

What's Changed

New Features 🎉
Document 📖
Other Changes

New Contributors

Full Changelog: web-infra-dev/rstest@v0.7.2...v0.7.3

v0.7.2

Compare Source

What's Changed

New Features 🎉
Bug Fixes 🐞
Other Changes

Full Changelog: web-infra-dev/rstest@v0.7.1...v0.7.2

v0.7.1

Compare Source

What's Changed

New Features 🎉
  • feat: support output test files in ES module format by @​9aoy in #​735
Performance 🚀
  • perf: fix sourcemap performance degradation in browser environment by @​9aoy in #​743
Bug Fixes 🐞
  • fix: should not throw error when undefined module is mocked by @​9aoy in #​740
  • fix: not exit with code 1 when unexpectedly exited during teardown by @​9aoy in #​741
Document 📖

Full Changelog: web-infra-dev/rstest@v0.7.0...v0.7.1

tailwindlabs/tailwindcss (@​tailwindcss/postcss)

v4.1.18

Compare Source

Fixed
  • Ensure validation of source(…) happens relative to the file it is in (#​19274)
  • Include filename and line numbers in CSS parse errors (#​19282)
  • Skip comments in Ruby files when checking for class names (#​19243)
  • Skip over arbitrary property utilities with a top-level ! in the value (#​19243)
  • Support environment API in @tailwindcss/vite (#​18970)
  • Preserve case of theme keys from JS configs and plugins (#​19337)
  • Write source maps correctly on the CLI when using --watch (#​19373)
  • Handle special defaults (like ringColor.DEFAULT) in JS configs (#​19348)
  • Improve backwards compatibility for content theme key from JS configs (#​19381)
  • Upgrade: Handle future and experimental config keys (#​19344)
  • Try to canonicalize any arbitrary utility to a bare value (#​19379)
  • Validate candidates similarly to Oxide (#​19397)
  • Canonicalization: combine text-* and leading-* classes (#​19396)
  • Correctly handle duplicate CLI arguments (#​19416)
  • Don’t emit color-mix fallback rules inside @keyframes (#​19419)
  • CLI: Don't hang when output is /dev/stdout (#​19421)

v4.1.17

Compare Source

Fixed
  • Substitute @variant inside legacy JS APIs (#​19263)
  • Prevent occasional crash on Windows when loaded into a worker thread (#​19242)

v4.1.16

Compare Source

Fixed
  • Discard candidates with an empty data type (#​19172)
  • Fix canonicalization of arbitrary variants with attribute selectors (#​19176)
  • Fix invalid colors due to nested & (#​19184)
  • Improve canonicalization for & > :pseudo and & :pseudo arbitrary variants (#​19178)

v4.1.15

Compare Source

Fixed
  • Fix Safari devtools rendering issue due to color-mix fallback (#​19069)
  • Suppress Lightning CSS warnings about :deep, :slotted, and :global (#​19094)
  • Fix resolving theme keys when starting with the name of another theme key in JS configs and plugins (#​19097)
  • Allow named groups in combination with not-*, has-*, and in-* (#​19100)
  • Prevent important utilities from affecting other utilities (#​19110)
  • Don’t index into strings with the theme(…) function (#​19111)
  • Fix parsing issue when \t is used in at-rules (#​19130)
  • Upgrade: Canonicalize utilities containing 0 values (#​19095)
  • Upgrade: Migrate deprecated break-words to wrap-break-word (#​19157)
Changed

v4.1.14

Compare Source

Fixed
  • Handle ' syntax in ClojureScript when extracting classes (#​18888)
  • Handle @variant inside @custom-variant (#​18885)
  • Merge suggestions when using @utility (#​18900)
  • Ensure that file system watchers created when using the CLI are always cleaned up (#​18905)
  • Do not generate grid-column utilities when configuring grid-column-start or grid-column-end (#​18907)
  • Do not generate grid-row utilities when configuring grid-row-start or grid-row-end (#​18907)
  • Prevent duplicate CSS when overwriting a static utility with a theme key (#​18056)
  • Show Lightning CSS warnings (if any) when optimizing/minifying (#​18918)
  • Use default export condition for @tailwindcss/vite (#​18948)
  • Re-throw errors from PostCSS nodes (#​18373)
  • Detect classes in markdown inline directives (#​18967)
  • Ensure files with only @theme produce no output when built (#​18979)
  • Support Maud templates when extracting classes (#​18988)
  • Upgrade: Do not migrate variant = 'outline' during upgrades ([#​18922](https://redirect.github.com/tailwindlabs/tail

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.

@renovate
Copy link
Contributor Author

renovate bot commented Sep 8, 2025

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: go.sum
Command failed: go get -t ./...
go: downloading github.com/fatih/color v1.18.0
go: downloading github.com/microsoft/typescript-go v0.0.0-20250829050502-5d1d69a77a4c
go: downloading golang.org/x/sys v0.35.0
go: downloading github.com/bmatcuk/doublestar/v4 v4.9.1
go: downloading github.com/go-json-experiment/json v0.0.0-20250811204210-4789234c3ea1
go: downloading golang.org/x/sync v0.16.0
go: downloading golang.org/x/text v0.28.0
go: downloading gotest.tools/v3 v3.5.2
go: downloading github.com/tailscale/hujson v0.0.0-20250605163823-992244df8c5a
go: downloading golang.org/x/tools v0.35.0
go: downloading github.com/mattn/go-colorable v0.1.13
go: downloading github.com/mattn/go-isatty v0.0.20
go: downloading github.com/dlclark/regexp2 v1.11.5
go: downloading github.com/google/go-cmp v0.7.0
go: downloading github.com/zeebo/xxh3 v1.0.2
go: downloading golang.org/x/mod v0.26.0
go: downloading github.com/klauspost/cpuid/v2 v2.0.9
go: module . listed in go.work file requires go >= 1.25.5, but go.work lists go 1.25.0; to update it:
	go work use

@netlify
Copy link

netlify bot commented Sep 8, 2025

Deploy Preview for rslint failed. Why did it fail? →

Name Link
🔨 Latest commit cfd6b3c
🔍 Latest deploy log https://app.netlify.com/projects/rslint/deploys/693fded8de6e2f0008521c06

@renovate renovate bot force-pushed the renovate/all-patch branch 17 times, most recently from 7f814fd to 5f48ff2 Compare September 15, 2025 06:02
@renovate renovate bot force-pushed the renovate/all-patch branch 9 times, most recently from 3baabe0 to afed9df Compare September 22, 2025 10:03
@renovate renovate bot force-pushed the renovate/all-patch branch 2 times, most recently from c0b4eb7 to fa10b5f Compare September 23, 2025 09:54
@renovate renovate bot force-pushed the renovate/all-patch branch 18 times, most recently from 86f2b9f to 242bfa7 Compare December 9, 2025 09:25
@renovate renovate bot force-pushed the renovate/all-patch branch 10 times, most recently from e2dd30f to e550d9a Compare December 15, 2025 04:40
@renovate renovate bot force-pushed the renovate/all-patch branch from e550d9a to cfd6b3c Compare December 15, 2025 10:11
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