Skip to content

chore(deps): bump the fumadocs group across 1 directory with 2 updates - #141

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/bun/fumadocs-389b214161
Open

dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/bun/fumadocs-389b214161

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 15, 2026

Copy link
Copy Markdown
Contributor

Bumps the fumadocs group with 2 updates in the / directory: fumadocs-core and fumadocs-ui.

Updates fumadocs-core from 16.15.7 to 16.15.9

Release notes

Sourced from fumadocs-core's releases.

fumadocs@16.15.9

  • @​fumadocs/base-ui@​16.15.9
  • fumadocs-core@16.15.9
  • fumadocs-ui@16.15.9

getPageByUrl() on the loader

Look up a page by its URL:

source.getPageByUrl('/docs/getting-started');
source.getPageByUrl('/cn/docs/getting-started', 'cn');

Without the language argument every language is looked up, unlike getPageByHref() which resolves the default language only.

llms() renders pages

llms() used to build the llms.txt index only, turning a page into Markdown was left to your own getLLMText(). Pass renderPage and it covers both:

import { llms } from 'fumadocs-core/source';
export const docsLlms = llms(source, {
renderPage: async (page) => `# ${page.data.title} (${page.url})
${await page.data.getText('processed')}`,
});

  • page(page) renders one page, for the per-page Markdown route.
  • full(lang?) renders every page and joins them, for llms-full.txt.
// app/llms-full.txt/route.ts
export const GET = async () => new Response(await docsLlms.full());

Both methods exist only when renderPage is given, in types and at runtime. Fumadocs cannot know how your content source exposes Markdown: page.data.getText('processed') on Fumadocs MDX, page.data.content on @fumadocs/local-md.

fumadocs-core/mcp: docs tools for your MCP server

Register the docs tools on a server you own, rather than on a handler Fumadocs builds for you:

import { createMcpHandler, McpServer } from '@modelcontextprotocol/server';
import { registerSearchTool, registerSourceTools } from 'fumadocs-core/mcp';
import { createFromSource } from 'fumadocs-core/search/server';
import { docsLlms, source } from '@/lib/source';
</tr></table>

... (truncated)

Commits

Updates fumadocs-ui from 16.15.7 to 16.15.9

Release notes

Sourced from fumadocs-ui's releases.

fumadocs@16.15.9

  • @​fumadocs/base-ui@​16.15.9
  • fumadocs-core@16.15.9
  • fumadocs-ui@16.15.9

getPageByUrl() on the loader

Look up a page by its URL:

source.getPageByUrl('/docs/getting-started');
source.getPageByUrl('/cn/docs/getting-started', 'cn');

Without the language argument every language is looked up, unlike getPageByHref() which resolves the default language only.

llms() renders pages

llms() used to build the llms.txt index only, turning a page into Markdown was left to your own getLLMText(). Pass renderPage and it covers both:

import { llms } from 'fumadocs-core/source';
export const docsLlms = llms(source, {
renderPage: async (page) => `# ${page.data.title} (${page.url})
${await page.data.getText('processed')}`,
});

  • page(page) renders one page, for the per-page Markdown route.
  • full(lang?) renders every page and joins them, for llms-full.txt.
// app/llms-full.txt/route.ts
export const GET = async () => new Response(await docsLlms.full());

Both methods exist only when renderPage is given, in types and at runtime. Fumadocs cannot know how your content source exposes Markdown: page.data.getText('processed') on Fumadocs MDX, page.data.content on @fumadocs/local-md.

fumadocs-core/mcp: docs tools for your MCP server

Register the docs tools on a server you own, rather than on a handler Fumadocs builds for you:

import { createMcpHandler, McpServer } from '@modelcontextprotocol/server';
import { registerSearchTool, registerSourceTools } from 'fumadocs-core/mcp';
import { createFromSource } from 'fumadocs-core/search/server';
import { docsLlms, source } from '@/lib/source';
</tr></table>

... (truncated)

Commits

@dependabot dependabot Bot added dependencies javascript Pull requests that update javascript code labels Sep 15, 2026
@coderabbitai

coderabbitai Bot commented Sep 15, 2026

Copy link
Copy Markdown

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Advanced

Run ID: b0f77fa9-287d-4b2c-a40b-a711700f4a3e

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

Use the checkbox below for a quick retry:

  • 🔍 Trigger review

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

Bumps the fumadocs group with 2 updates in the / directory: [fumadocs-core](https://github.com/fuma-nama/fumadocs) and [fumadocs-ui](https://github.com/fuma-nama/fumadocs).


Updates `fumadocs-core` from 16.15.7 to 16.15.9
- [Release notes](https://github.com/fuma-nama/fumadocs/releases)
- [Commits](https://github.com/fuma-nama/fumadocs/compare/fumadocs@16.15.7...fumadocs@16.15.9)

Updates `fumadocs-ui` from 16.15.7 to 16.15.9
- [Release notes](https://github.com/fuma-nama/fumadocs/releases)
- [Commits](https://github.com/fuma-nama/fumadocs/compare/fumadocs@16.15.7...fumadocs@16.15.9)

---
updated-dependencies:
- dependency-name: fumadocs-core
  dependency-version: 16.15.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: fumadocs
- dependency-name: fumadocs-ui
  dependency-version: 16.15.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: fumadocs
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot changed the title chore(deps): bump the fumadocs group with 2 updates chore(deps): bump the fumadocs group across 1 directory with 2 updates Sep 15, 2026
@dependabot
dependabot Bot force-pushed the dependabot/bun/fumadocs-389b214161 branch from b3a64bc to e318ada Compare September 15, 2026 09:07
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants