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.17.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
@rsbuild/plugin-sass (source) ^1.4.0^1.4.1 age confidence devDependencies patch
@rspress/core (source) 2.0.0-rc.02.0.0-rc.7 age confidence devDependencies patch
@rspress/core (source) 2.0.0-rc.02.0.0-rc.7 age confidence dependencies patch
@rspress/plugin-llms (source) 2.0.0-rc.02.0.0-rc.7 age confidence devDependencies patch
@rstack-dev/doc-ui 1.12.01.12.3 age confidence devDependencies patch
@tailwindcss/postcss (source) ^4.1.11^4.1.18 age confidence devDependencies patch
@types/mocha (source) 10.0.910.0.10 age confidence devDependencies patch
@types/node (source) ^22.19.0^22.19.7 age confidence devDependencies patch
@typescript/native-preview (source) 7.0.0-dev.20250904.17.0.0-dev.20260124.1 age confidence devDependencies patch
@vscode/test-cli 0.0.110.0.12 age confidence devDependencies patch
esbuild 0.27.00.27.2 age confidence devDependencies patch
esbuild ^0.27.0^0.27.2 age confidence devDependencies patch
github.com/bmatcuk/doublestar/v4 v4.9.1v4.9.2 age confidence require patch
go (source) 1.251.25.6 age confidence golang patch
go (source) 1.25.01.25.6 age confidence golang patch
go 1.25.01.25.6 age confidence uses-with patch
lint-staged ^16.2.6^16.2.7 age confidence devDependencies patch
ovsx (source) ^0.10.5^0.10.8 age confidence devDependencies patch
prebundle 1.6.01.6.2 age confidence devDependencies patch
rsbuild-plugin-google-analytics ^1.0.4^1.0.5 age confidence devDependencies patch
rsbuild-plugin-open-graph ^1.1.0^1.1.2 age confidence devDependencies patch
rspress-plugin-sitemap ^1.2.0^1.2.1 age confidence devDependencies patch
swr (source) ^2.3.6^2.3.8 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/rspress (@​rspress/core)

v2.0.0-rc.7

Compare Source

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

Full Changelog: web-infra-dev/rspress@v2.0.0-rc.6...v2.0.0-rc.7

v2.0.0-rc.6

Compare Source

What's Changed
New Features 🎉
Performance 🚀
Bug Fixes 🐞
  • fix(theme): fix inline code style in Callout when code is direct child of content by @​SoonIter in #​2997
  • fix(config/types): defineConfig should support asyncFn by @​SoonIter in #​3000
  • fix(core): improve i18n missing keys warning with configuration hints by @​SoonIter in #​3030
  • fix(ssg): collapse experimentalExcludeRoutePaths log when too many routes are ignored by @​SoonIter in #​3032
Document 📖
Other Changes

Full Changelog: web-infra-dev/rspress@v2.0.0-rc.5...v2.0.0-rc.6

v2.0.0-rc.5

Compare Source

What's Changed
New Features 🎉
  • feat(theme): support clickable badge in HomeHero by @​SoonIter in #​2969
  • feat(ssg-md): add SSG-MD support to OverviewGroup and FallbackHeading components (Vibe Kanban) by @​SoonIter in #​2966
Bug Fixes 🐞
Document 📖
Other Changes

Full Changelog: web-infra-dev/rspress@v2.0.0-rc.4...v2.0.0-rc.5

v2.0.0-rc.4

Compare Source

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

Full Changelog: web-infra-dev/rspress@v2.0.0-rc.3...v2.0.0-rc.4

v2.0.0-rc.3

Compare Source

Highlights ✨
🆕️ Support common tags

related PR: #​2879

You can use it in the frontmatter, and it also supports customization:

---
tag: new, experimental, ejectable
---
image
🌏 Enable text-autospace: normal; by default

related PR: #​2920

The text-autospace CSS property allows you to specify the space applied between Chinese/Japanese/Korean (CJK) and non-CJK characters.

/* If you don't like it, you can cancel it via `:root { text-autospace: unset; }` */
:root {
   text-autospace: normal;
}
What's Changed
New Features 🎉
Bug Fixes 🐞
Document 📖
Other Changes

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

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

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 artifacts 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/fxamacker/cbor/v2 v2.9.0
go: downloading github.com/bmatcuk/doublestar/v4 v4.9.2
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/x448/float16 v0.8.4
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.6, but go.work lists go 1.25.0; to update it:
	go work use

File name: shim/ls/go.sum
Command failed: go get -t ./...
go: github.com/microsoft/typescript-go/shim/ls imports
	github.com/microsoft/typescript-go/internal/ls/lsconv: cannot find module providing package github.com/microsoft/typescript-go/internal/ls/lsconv

@netlify
Copy link

netlify bot commented Sep 8, 2025

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

Name Link
🔨 Latest commit e2c7211
🔍 Latest deploy log https://app.netlify.com/projects/rslint/deploys/697494b794e16c000828d539

@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 9 times, most recently from b4fd0b3 to 2af6d9f Compare January 4, 2026 09:18
@renovate renovate bot force-pushed the renovate/all-patch branch 10 times, most recently from 03cae5d to 5bfa500 Compare January 11, 2026 09:03
@renovate renovate bot force-pushed the renovate/all-patch branch from 5bfa500 to 896edae Compare January 20, 2026 20:12
@cloudflare-workers-and-pages
Copy link

cloudflare-workers-and-pages bot commented Jan 20, 2026

Deploying rslint with  Cloudflare Pages  Cloudflare Pages

Latest commit: e2c7211
Status:🚫  Build failed.

View logs

@renovate renovate bot force-pushed the renovate/all-patch branch 7 times, most recently from 3f9ca69 to f8b91ce Compare January 23, 2026 22:44
@renovate renovate bot force-pushed the renovate/all-patch branch from f8b91ce to e2c7211 Compare January 24, 2026 09:45
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