Update dependency @rspress/core to v2.0.21 - #13
Open
renovate[bot] wants to merge 1 commit into
Open
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
renovate
Bot
force-pushed
the
renovate/rspress-core-2.x-lockfile
branch
from
July 3, 2026 10:14
6841cfb to
6acea64
Compare
renovate
Bot
force-pushed
the
renovate/rspress-core-2.x-lockfile
branch
from
July 8, 2026 12:38
6acea64 to
fbab83b
Compare
renovate
Bot
force-pushed
the
renovate/rspress-core-2.x-lockfile
branch
from
July 12, 2026 09:39
fbab83b to
1b933eb
Compare
renovate
Bot
force-pushed
the
renovate/rspress-core-2.x-lockfile
branch
from
July 16, 2026 18:58
1b933eb to
21e1b26
Compare
renovate
Bot
force-pushed
the
renovate/rspress-core-2.x-lockfile
branch
from
July 17, 2026 11:07
21e1b26 to
1f48f35
Compare
renovate
Bot
force-pushed
the
renovate/rspress-core-2.x-lockfile
branch
from
July 20, 2026 20:08
1f48f35 to
e014cb8
Compare
renovate
Bot
force-pushed
the
renovate/rspress-core-2.x-lockfile
branch
from
July 24, 2026 15:51
e014cb8 to
d60d0a4
Compare
renovate
Bot
force-pushed
the
renovate/rspress-core-2.x-lockfile
branch
from
July 30, 2026 06:33
d60d0a4 to
37825db
Compare
renovate
Bot
force-pushed
the
renovate/rspress-core-2.x-lockfile
branch
from
July 30, 2026 21:30
37825db to
f6b102a
Compare
renovate
Bot
force-pushed
the
renovate/rspress-core-2.x-lockfile
branch
from
August 12, 2026 03:50
f6b102a to
b0bed7a
Compare
renovate
Bot
force-pushed
the
renovate/rspress-core-2.x-lockfile
branch
from
August 14, 2026 18:10
b0bed7a to
607e7c4
Compare
renovate
Bot
force-pushed
the
renovate/rspress-core-2.x-lockfile
branch
from
August 25, 2026 17:49
607e7c4 to
c19e3c1
Compare
renovate
Bot
force-pushed
the
renovate/rspress-core-2.x-lockfile
branch
from
August 27, 2026 15:01
c19e3c1 to
e670e03
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
2.0.14→2.0.21Release Notes
web-infra-dev/rspress (@rspress/core)
v2.0.21Compare Source
What's Changed
Bug Fixes 🐞
border-bottomlink underlines withtext-decorationby @SoonIter in #3631Other Changes
Full Changelog: web-infra-dev/rspress@v2.0.20...v2.0.21
v2.0.20Compare Source
Highlights
🧭 New Blog: How to build an Agent-friendly website
Can an AI agent find, read, and understand your documentation as easily as a human? This new guide shows how Rspress combines
llms.txt, SSG-MD,Accept: text/markdown, andinjectLlmsHintto build documentation for both humans and Agents—and how AFDocs makes the result measurable.Read the blog: How to build an Agent-friendly website
🔗 Normalize clean URLs before rendering
Static hosts can serve the same page through URLs such as
/guide,/guide.html,/guide/, and/guide/index.html. Rspress can now match the actual route first and normalize the browser address bar to the format selected byroute.cleanUrlsbefore the page renders:With this configuration,
/guide.htmlbecomes/guide, while/reference/index.htmlbecomes/reference/. Normalization useshistory.replaceState, does not reload the page, and preservesbase, query parameters, hashes, and existing history state.This is a browser-side fallback rather than an HTTP 301/308 redirect. Keep server or CDN redirects for canonical SEO behavior.
Documentation:
route.cleanUrlsRedirectBlog: The trailing slash problem in static sites
Related PR: #3571
What's Changed
New Features 🎉
Performance 🚀
Bug Fixes 🐞
Document 📖
Other Changes
New Contributors
Full Changelog: web-infra-dev/rspress@v2.0.19...v2.0.20
v2.0.19Compare Source
Highlights
🤖 Guide AI agents from generated Markdown
When SSG-MD is enabled, every generated Markdown page now starts with an agent-readable directive pointing to
llms.txt,llms-full.txt, and the Markdown version of the current page:> For AI agents: the complete documentation index is available at https://example.com/llms.txt, the full documentation bundle is available at https://example.com/llms-full.txt, and this page is available as Markdown at https://example.com/guide/index.md.This extends the existing HTML hint to Markdown output. Its URLs automatically respect
siteOrigin,base, locale, and version prefixes, helping agents discover the right machine-readable content from either format.Documentation: SSG-MD ·
injectLlmsHintRelated PR: #3544
🎨 Add icons to generated sidebars and navigation
Use
iconto display an image, inline SVG, emoji, external URL, or data URL before sidebar and navbar labels. Auto-generated sidebars support icons on groups, items, and section headers through_meta.jsonor page frontmatter, while navigation icons can be configured through_nav.jsonorthemeConfig.nav.For a local image, place it in
publicand reference it with an absolute path:[ { "type": "file", "name": "introduction", "label": "Introduction", "icon": "/icon.png", "tag": "new" } ]Icons render before the label, while an existing
tagremains on the right.Documentation: Sidebar icons and tags ·
nav·sidebarRelated PR: #3554
⚡ Speed up
lastUpdatedon large sitesRspress now resolves Git history for all documentation pages in one batched pass instead of spawning one
git logprocess per page. ExistinglastUpdatedconfiguration remains unchanged:In the PR benchmark, Rspress resolved metadata for its 208-page documentation site with two Git processes in about 300 ms. This avoids the process storms that could make large sites spend minutes resolving page metadata.
Documentation:
lastUpdatedRelated PR: #3545
What's Changed
New Features 🎉
Performance 🚀
Bug Fixes 🐞
route.localeRedirectby @SoonIter in #3534Refactor 🔨
Document 📖
Other Changes
Full Changelog: web-infra-dev/rspress@v2.0.18...v2.0.19
v2.0.18Compare Source
Highlights
🤖 Customize
llms.txtand Guide LLMs to MarkdownEnable
llmsto generatellms.txt,llms-full.txt, and a Markdown copy of every page. You can now usellms.llmsTxtto control the completellms.txtoutput with site metadata and navigation-ordered pages. Rspress also injects the following hidden hint into generated HTML pages so LLMs can discover these files:The hint is enabled by default. Use
injectLlmsHint: falseto disable it independently; the configuration below also shows how to customizellms.txt:Documentation: SSG-MD ·
injectLlmsHintRelated PRs: #3527 · #3526
🌍 Add Language Alternatives Automatically
For pages with existing translations, Rspress now adds reciprocal language links to
<head>, helping search engines send readers to the right language:Only translations that actually exist are included. Generated URLs automatically respect
base,siteOrigin, androute.cleanUrls.Documentation: Customizing head tags
Related PR: #3524
⚡ Start Loading Page Code Before Hydration
Each generated page now preloads its own async route chunk:
This lets the browser fetch the page code before the client runtime starts hydration, removing an extra network waterfall. Preload URLs support
base, CDN asset prefixes, andassetPrefix: 'auto'.Documentation: Customizing head tags
Related PR: #3518
What's Changed
New Features 🎉
startTransitionfor navigation and refactorpreconnectlogic 🔍 by @sanjaiyan-dev in #3508Performance 🚀
Bug Fixes 🐞
Refactor 🔨
Other Changes
New Contributors
Full Changelog: web-infra-dev/rspress@v2.0.17...v2.0.18
v2.0.17Compare Source
What's Changed
New Features 🎉
route.useTransitionsto opt-out startTransition navigation by @sanjaiyan-dev in #3479route.prefetchLinkby @SoonIter in #3506Bug Fixes 🐞
startTransitionin async behaviour 🔧 by @sanjaiyan-dev in #3503Other Changes
New Contributors
Full Changelog: web-infra-dev/rspress@v2.0.16...v2.0.17
v2.0.16Compare Source
What's Changed
New Features 🎉
Bug Fixes 🐞
Refactor 🔨
awaitnavigate and opt-in to routeruseTransition🧭 by @sanjaiyan-dev in #3476Document 📖
rspress-plugin-vizcommunity plugin by @elecmonkey in #3480Other Changes
New Contributors
Full Changelog: web-infra-dev/rspress@v2.0.15...v2.0.16
v2.0.15Compare Source
Highlights
🌙 Choose a default theme or disable switching
themeConfig.darkModecan now define both the initial theme and whether visitors may switch it. Use'dark','light', or'auto'to choose the default while keeping the theme switcher, or use aforce-*value to enforce that behavior and hide the switcher.Documentation:
themeConfig.darkModeRelated PR: #3473
🔗 Catch broken heading links during builds
Enable
markdown.link.checkAnchorsto fail the build when a same-page, relative, or absolute Markdown/MDX link points to a heading that does not exist. Known exceptions can be ignored withexcludes.Documentation:
markdown.link.checkAnchorsRelated PR: #3443
🔍 Exclude individual pages from built-in search
Add
search: falseto a page's frontmatter to keep utility, hidden, or duplicate pages out of the built-in search index without removing the page itself. This setting only affects Rspress's built-in search.Documentation: Frontmatter
searchRelated PR: #3456
What's Changed
New Features 🎉
themeConfig.darkModeset default values by @SoonIter in #3473Performance 🚀
Bug Fixes 🐞
__ReplaceElements" by @SoonIter in #3468--rp-c-linkand nav gap by @SoonIter in #3474Refactor 🔨
useLayoutEffectin useNavTransparent for performance🛠️ by @sanjaiyan-dev in #3475Document 📖
Other Changes
New Contributors
Full Changelog: web-infra-dev/rspress@v2.0.14...v2.0.15
Configuration
📅 Schedule: (UTC)
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.