Breaking Changes 🚨
Correct relative link in markdown without ./ prefix
Related PR: #2348
Markdown links without "./" prefix are now relative links, e.g: [subfolder](subfolder) is equal to [subfolder](./subfolder)
Before
[](installation) and [](installation.mdx) points to /installation.html, this behavior is strange ❌
After
[](installation) and [](installation.mdx) points to /guide/api/installation.html ✅
If you are updating to Rspress V2, don't worry, our friend markdown.checkDeadLinks which is also refactored can help us check and find these broken links 👬🏻
What's Changed
New Features 🎉
- feat(theme-default): support binary execution commands in
PackageManagerTabscomponent by @artus9033 in #2343 - feat(plugin-llms): multiple configuration for multiple llms.txt by @SoonIter in #2347
Bug Fixes 🐞
- fix(theme/dynamic-toc): remove comment for props replacing in SSG by @SoonIter in #2345
- fix(remarkNormalizeLink)!: support relative path subfolder which is equal to subfolder by @SoonIter in #2348
Document 📖
- docs: add deepwiki badge by @Timeless0911 in #2342
Other Changes
- refactor: move the RoutePath logic to RoutePage class by @SoonIter in #2334
- chore(deps): update all patch dependencies by @renovate in #2337
- chore(deps): update dependency rspress-plugin-sitemap to ^1.2.0 by @renovate in #2339
- chore(deps): update dependency zx to ^8.6.0 by @renovate in #2340
- refactor: move remark-check-deadlink to remark-normalize-link and fix plugin-llms with base usage by @SoonIter in #2335
- test(e2e): add dir link to check-dead-link by @SoonIter in #2344
- chore(cli): polish checkDeadLinks logs by @SoonIter in #2350
- Release v2.0.0-beta.19 by @SoonIter in #2351
New Contributors
- @artus9033 made their first contribution in #2343
Full Changelog: v2.0.0-beta.18...v2.0.0-beta.19