Skip to content

chore(deps): update dependency @rspress/core to v2.0.15#215

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/rspress-core-2-x-lockfile
Open

chore(deps): update dependency @rspress/core to v2.0.15#215
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/rspress-core-2-x-lockfile

Conversation

@renovate

@renovate renovate Bot commented Mar 28, 2026

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
@rspress/core (source) 2.0.12.0.15 age confidence

Release Notes

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

v2.0.15

Compare Source

Highlights
🌙 themeConfig.darkMode supports default and forced values

You can now set the default or forced theme behavior directly via themeConfig.darkMode, instead of relying on window.RSPRESS_THEME. It accepts values like 'dark', 'light', 'auto', 'force-dark', and 'force-light'.

import { defineConfig } from '@​rspress/core';

export default defineConfig({
  themeConfig: {
    darkMode: 'force-dark',
  },
});
🔗 Markdown anchor link validation

Rspress now validates internal heading hash links during builds. Enable markdown.link.checkAnchors to catch broken anchors in same-page, relative, and absolute Markdown/MDX links.

import { defineConfig } from '@​rspress/core';

export default defineConfig({
  markdown: {
    link: {
      checkAnchors: true,
    },
  },
});
What's Changed
New Features 🎉
Performance 🚀
Bug Fixes 🐞
Refactor 🔨
Document 📖
Other Changes
New Contributors

Full Changelog: web-infra-dev/rspress@v2.0.14...v2.0.15

v2.0.14

Compare Source

What's Changed

New Features 🎉
Performance 🚀
Bug Fixes 🐞
Document 📖
Other Changes

New Contributors

Full Changelog: web-infra-dev/rspress@v2.0.13...v2.0.14

v2.0.13

Compare Source

What's Changed

🐛 Bug Fixes
🛠 Refactors
  • refactor(ssg-md): use import.meta env for SSG-MD and add snapshot tests by @​SoonIter in #​3406
📦 Chores & Dependencies

Full Changelog: web-infra-dev/rspress@v2.0.12...v2.0.13

v2.0.12

Compare Source

What's Changed

New Features 🎉
Bug Fixes 🐞
Document 📖
Other Changes

v2.0.11

Compare Source

What's Changed

New Features 🎉
  • feat(mdx/FileCodeblock): support file codeblock starts with / prefix by @​JounQin in #​3357
  • feat(theme): add BrowserOnly runtime component for sideEffects import and deprecate NoSSR by @​SoonIter in #​3360
Bug Fixes 🐞
  • fix(theme/Search): NFD normalization causes search to highlight wrong characters in Japanese or backtrack in an infinite loop by @​Quatton in #​3335
  • fix(ssg): experimentalWorker "Cannot find module '@​rspress/core/dist/entry/worker.js'" by @​SoonIter in #​3354
  • fix(theme/darkMode): restore auto appearance when toggle matches system theme by @​Copilot in #​3352
  • fix(plugin-preview & plugin-playground): react-router-dom peer compatibility by @​Copilot in #​3350
  • fix(theme/Prompt): avoid gradients in dark mode by @​SoonIter in #​3338
  • fix(layout): Fixed mobile doc layout menu showing unnecessarily by @​elliotcourant in #​3342
  • fix(core): preserve false ssg option by @​chenjiahan in #​3361
Other Changes

New Contributors

Full Changelog: web-infra-dev/rspress@v2.0.10...v2.0.11

v2.0.10

Compare Source

Highlights✨

Rspack 2.0 & Rsbuild 2.0 integrated 🦀

related PR: #​3322

Rspress v2.0.10 upgrades Rsbuild to 2.0.0, which means Rspress is now powered by the stable Rspack 2.0 toolchain. This keeps Rspress aligned with the latest Rstack ecosystem and brings the compiler improvements from Rspack 2.0 to every Rspress site.

See more 👉🏻 Rspack 2.0 and Rsbuild 2.0

New Prompt component 🤖

related PR: #​3325

Rspress now provides a built-in Prompt component from @rspress/core/theme, designed for AI-native documentation.

It helps authors present reusable, copyable agent instructions directly in MDX, with theme-ready styling and flexible custom content support.

20260428180332_rec_

See more 👉🏻 Prompt - Rspress doc components

What's Changed

New Features 🎉
Bug Fixes 🐞
Document 📖
Other Changes

New Contributors

Full Changelog: web-infra-dev/rspress@v2.0.9...v2.0.10

v2.0.9

Compare Source

What's Changed

New Features 🎉
Performance 🚀
Bug Fixes 🐞
Document 📖
Other Changes

Full Changelog: web-infra-dev/rspress@v2.0.8...v2.0.9

v2.0.8

Compare Source

What's Changed

New Features 🎉
Bug Fixes 🐞
Document 📖
Other Changes

Full Changelog: web-infra-dev/rspress@v2.0.7...v2.0.8

v2.0.7

Compare Source

Highlights ✨

📦 Code Block Fold

related PR: #​3241, #​3251 | doc: Code folding - rspress.rs

You can now use ```tsx fold to make long code blocks collapsed by default, allowing readers to expand them on demand. The code block will be collapsed to a default height of 300px with an expand button at the bottom. You can also customize the collapsed height via the height attribute.

```tsx fold
// long code block content, collapsed by default
```

```tsx fold height="200"
// custom collapsed height (200px)
```

🤖 rspress-custom-theme Skill for AI

related PR: #​3253 | doc: AI

Added the rspress-custom-theme skill to the AI guide page. This skill helps AI tools understand how to customize Rspress themes, making it easier to build custom theme components with AI assistance.

One prompt → a complete themed docs site & custom home pages ✨

npx skills add rstackjs/agent-skills --skill rspress-custom-theme
RspressV2Promo.mp4

rspress-custom-theme skill👇
🔗https://github.com/rstackjs/agent-skills#rspress-custom-theme
🔗 https://rspress.rs/guide/start/ai

Here are the two themes generated 👇

🖤 rspress-theme-clarity: http://github.com/SoonIter/rspress-theme-clarity
🔶 rspress-theme-noir: https://github.com/SoonIter/rspress-theme-noir

What's Changed

New Features 🎉

Bug Fixes 🐞
Document 📖
Other Changes

New Contributors

Full Changelog: web-infra-dev/rspress@v2.0.6...v2.0.7

v2.0.6

Compare Source

What's Changed

New Features 🎉
Bug Fixes 🐞
  • fix(custom-head/frontmatter): frontmatter og:title and description priority over Rspress's own default tags by @​SoonIter in #​3215
  • fix(llms): ensure llms.txt ordering respects _meta.json by @​Timeless0911 in #​3218
  • fix(theme/llmsUI): add LLMS clipboard fallback for HTTP pages by @​Copilot in #​3237
  • fix(auto-nav-sidebar/tag): preserve tag field for dir sidebar items without index file by @​SoonIter in #​3236
  • fix(theme/search): reset selected suggestion to first when search query changes by @​buyfakett in #​3227
Document 📖
Other Changes

Full Changelog: web-infra-dev/rspress@v2.0.5...v2.0.6

v2.0.5

Compare Source

Highlights ✨

🌏 CJK-Friendly Emphasis

related PR: #​3201

Thanks to @​tats-u for integrating his remark-cjk-friendly and remark-cjk-friendly-gfm-strikethrough remark plugins into Rspress as a built-in feature.

CommonMark/GFM has a spec-level issue: bold and emphasis break near CJK characters in certain cases. These remark plugins fix the parsing to handle CJK punctuation correctly.

Enabled by default. Opt out with markdown.cjkFriendlyEmphasis = false.

Source:

**中文文本(带括号)。**这句子继续也没问题。

This should render as bold, but most Markdown renderers outputs raw ** markers.

✅: 中文文本(带括号)。 这句子继续也没问题。

❌: **中文文本(带括号)。**这句子继续也没问题。

image

What's Changed

New Features 🎉
Bug Fixes 🐞
Document 📖
Other Changes

Note

PR body was truncated to here.


Configuration

📅 Schedule: (in timezone America/New_York)

  • Branch creation
    • Between 12:00 AM and 03:59 AM, only on Monday (* 0-3 * * 1)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • 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 enabled auto-merge (squash) March 28, 2026 01:30
@github-actions

github-actions Bot commented Mar 28, 2026

Copy link
Copy Markdown

🚀 Preview Environment Ready!

Name Status URL
zephyr-cloud-docs ✅ Active https://zackary-chapple-15345-zephyr-cloud-docs-zephyr-do-d1e55fd... ↗

Details:

  • Latest Commit: 2979d3b
  • Updated at: 7/2/2026, 2:56:00 PM

@renovate renovate Bot force-pushed the renovate/rspress-core-2-x-lockfile branch from c6ebacb to 3a37b6d Compare March 28, 2026 09:17
@renovate renovate Bot changed the title chore(deps): update dependency @rspress/core to v2.0.6 chore(deps): update dependency @rspress/core to v2.0.7 Mar 28, 2026
@renovate renovate Bot force-pushed the renovate/rspress-core-2-x-lockfile branch 3 times, most recently from c5a1668 to 0af33d6 Compare April 3, 2026 13:35
@renovate renovate Bot changed the title chore(deps): update dependency @rspress/core to v2.0.7 chore(deps): update dependency @rspress/core to v2.0.8 Apr 3, 2026
@renovate renovate Bot force-pushed the renovate/rspress-core-2-x-lockfile branch 3 times, most recently from a609059 to 7d5e8fa Compare April 9, 2026 17:07
@renovate renovate Bot force-pushed the renovate/rspress-core-2-x-lockfile branch from 7d5e8fa to 6b95e6b Compare April 13, 2026 17:45
@renovate renovate Bot changed the title chore(deps): update dependency @rspress/core to v2.0.8 chore(deps): update dependency @rspress/core to v2.0.9 Apr 13, 2026
@renovate renovate Bot force-pushed the renovate/rspress-core-2-x-lockfile branch 3 times, most recently from ee6dfe1 to 7fff8b0 Compare April 30, 2026 00:03
@renovate renovate Bot force-pushed the renovate/rspress-core-2-x-lockfile branch from 7fff8b0 to 3cfa2a1 Compare May 1, 2026 14:02
@renovate renovate Bot changed the title chore(deps): update dependency @rspress/core to v2.0.9 chore(deps): update dependency @rspress/core to v2.0.10 May 1, 2026
@renovate renovate Bot force-pushed the renovate/rspress-core-2-x-lockfile branch 2 times, most recently from d257f3e to 02d49ad Compare May 12, 2026 11:56
@renovate renovate Bot force-pushed the renovate/rspress-core-2-x-lockfile branch from 02d49ad to a651d58 Compare May 14, 2026 13:58
@renovate renovate Bot changed the title chore(deps): update dependency @rspress/core to v2.0.10 chore(deps): update dependency @rspress/core to v2.0.11 May 14, 2026
@renovate renovate Bot force-pushed the renovate/rspress-core-2-x-lockfile branch 2 times, most recently from efdeb76 to f81d416 Compare May 22, 2026 15:01
@renovate renovate Bot changed the title chore(deps): update dependency @rspress/core to v2.0.11 chore(deps): update dependency @rspress/core to v2.0.12 May 22, 2026
@renovate renovate Bot force-pushed the renovate/rspress-core-2-x-lockfile branch 2 times, most recently from 60d2196 to 81992d9 Compare May 29, 2026 05:08
@renovate renovate Bot changed the title chore(deps): update dependency @rspress/core to v2.0.12 chore(deps): update dependency @rspress/core to v2.0.13 May 29, 2026
@renovate renovate Bot force-pushed the renovate/rspress-core-2-x-lockfile branch from 81992d9 to d56e04b Compare June 1, 2026 22:59
@renovate renovate Bot force-pushed the renovate/rspress-core-2-x-lockfile branch 2 times, most recently from cbf4565 to 7c33e4a Compare June 11, 2026 06:07
@renovate renovate Bot changed the title chore(deps): update dependency @rspress/core to v2.0.13 chore(deps): update dependency @rspress/core to v2.0.14 Jun 11, 2026
@renovate renovate Bot force-pushed the renovate/rspress-core-2-x-lockfile branch from 7c33e4a to 6b8bf34 Compare June 11, 2026 15:07
@renovate renovate Bot force-pushed the renovate/rspress-core-2-x-lockfile branch 2 times, most recently from 0e655f7 to 54ff1e2 Compare June 21, 2026 00:15
@renovate renovate Bot force-pushed the renovate/rspress-core-2-x-lockfile branch from 54ff1e2 to 433b7aa Compare June 28, 2026 12:30
@renovate renovate Bot changed the title chore(deps): update dependency @rspress/core to v2.0.14 chore(deps): update dependency @rspress/core to v2.0.15 Jun 28, 2026
@renovate renovate Bot force-pushed the renovate/rspress-core-2-x-lockfile branch from 433b7aa to b6e1d48 Compare June 29, 2026 13:22
@renovate renovate Bot force-pushed the renovate/rspress-core-2-x-lockfile branch from b6e1d48 to 2979d3b Compare July 2, 2026 14:54
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants