Conversation
Up to standards ✅🟢 Issues
|
There was a problem hiding this comment.
Dependency Update Review
This PR updates Docusaurus and related packages in the directory. No previous review comments exist, so reviewing fresh.
Docusaurus 3.10.0 → 3.10.1 (patch) ✅
The patch release fixes a webpack bundler regression introduced by an upstream webpack breaking change. This is a safe, targeted bug fix — the right thing to pick up quickly.
docusaurus-plugin-llms ^0.3.1 → ^0.4.0 (minor — breaking change) ⚠️
This minor bump includes a breaking default behavior change worth noting:
** now defaults to **. All link URLs in the generated will now have
.mdappended (e.g.,/docs/intro.mdinstead of/docs/intro/).
The plugin is currently configured with no options in docs/docusaurus.config.ts:
plugins: [
'docusaurus-plugin-llms',
],This means the breaking change will take effect automatically. Whether this is fine depends on whether your deployment actually serves markdown at those .md URLs.
Docusaurus does support serving raw markdown files, so this is likely aligned with the llmstxt.org spec intent — pointing AI consumers to markdown content rather than HTML pages. If the .md URLs work on your deployed site (tunit.dev), this is a positive change for LLM discoverability.
Recommendation: If you want to be safe and preserve the old behavior explicitly until you verify the .md URLs work, you can pin the option:
plugins: [
['docusaurus-plugin-llms', { addMdExtension: false }],
],Otherwise, the update is fine to merge if you're comfortable with the llms.txt link format changing.
yarn.lock ✅
The lock file changes are consistent with the version bumps. Registry URLs also shifted from registry.npmjs.org to registry.yarnpkg.com for the Docusaurus entries — this is a cosmetic difference (both resolve to the same packages); likely just a different resolution endpoint being used now.
Overall: Safe to merge. The only item worth a quick sanity check is the addMdExtension default change and whether .md URLs resolve correctly on the deployed docs site.
There was a problem hiding this comment.
Dependency Update Review
This PR updates Docusaurus and related packages in the docs/ directory. No previous review comments exist, so reviewing fresh.
Docusaurus 3.10.0 → 3.10.1 (patch) ✅
The patch release fixes a webpack bundler regression introduced by an upstream webpack breaking change. This is a safe, targeted bug fix — the right thing to pick up quickly.
docusaurus-plugin-llms ^0.3.1 → ^0.4.0 (minor — breaking change) ⚠️
This minor bump includes a breaking default behavior change worth noting:
addMdExtensionnow defaults totrue. All link URLs in the generatedllms.txtwill now have.mdappended (e.g.,/docs/intro.mdinstead of/docs/intro/).
The plugin is currently configured with no options in docs/docusaurus.config.ts:
plugins: [
'docusaurus-plugin-llms',
],This means the breaking change will take effect automatically. Whether this is fine depends on whether your deployment actually serves markdown at those .md URLs.
Docusaurus does support serving raw markdown files, so this aligns with the llmstxt.org spec intent — pointing AI consumers to markdown content rather than HTML pages. If the .md URLs work on your deployed site (tunit.dev), this is a positive change for LLM discoverability.
Recommendation: If you want to preserve the old behavior explicitly until you verify the .md URLs work, you can pin the option:
plugins: [
['docusaurus-plugin-llms', { addMdExtension: false }],
],Otherwise, this is fine to merge if you're comfortable with the llms.txt link format changing.
yarn.lock ✅
The lock file changes are consistent with the version bumps. Registry URLs also shifted from registry.npmjs.org to registry.yarnpkg.com for the Docusaurus entries — this is cosmetic; both resolve to the same packages.
Overall: Safe to merge. The only item worth a quick sanity check is the addMdExtension default change and whether .md URLs resolve correctly on the deployed docs site.
This PR contains the following updates:
3.10.0→3.10.13.10.0→3.10.13.10.0→3.10.1^3.10.0→^3.10.13.10.0→3.10.13.10.0→3.10.1^0.3.1→^0.4.0Release Notes
facebook/docusaurus (@docusaurus/core)
v3.10.1Compare Source
🐛 Bug Fix
docusaurus-bundler🔧 Maintenance
docusaurusCommitters: 1
rachfop/docusaurus-plugin-llms (docusaurus-plugin-llms)
v0.4.0Compare Source
What's New
.mdto llms.txt link URLs — Per the llmstxt.org spec, links inllms.txtnow point to markdown versions of pages (e.g./docs/intro.mdinstead of/docs/intro/). (#38).mdxfiles starting withimportorexportstatements no longer use those lines as page descriptions. (#39)Breaking Change
addMdExtensiondefaults totrue. All link URLs in generatedllms.txtfiles will now have.mdappended. To preserve the previous behavior, setaddMdExtension: falsein your plugin config.Full Changelog: rachfop/docusaurus-plugin-llms@v0.3.1...v0.4.0
Configuration
📅 Schedule: (UTC)
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR has been generated by Mend Renovate.