Skip to content

chore(docs-deps): bump the fumadocs group across 1 directory with 5 updates - #444

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/docs/main/fumadocs-2704084233
Open

chore(docs-deps): bump the fumadocs group across 1 directory with 5 updates#444
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/docs/main/fumadocs-2704084233

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Nov 25, 2025

Copy link
Copy Markdown
Contributor

Bumps the fumadocs group with 5 updates in the /docs directory:

Package From To
fumadocs-core 15.8.1 16.15.4
fumadocs-mdx 12.0.2 15.4.0
fumadocs-typescript 4.0.11 5.3.0
fumadocs-ui 15.8.5 16.15.4
next 15.5.24 16.3.3

Updates fumadocs-core from 15.8.1 to 16.15.4

Release notes

Sourced from fumadocs-core's releases.

fumadocs@16.15.4

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

Fix Next.js <Link> not scrolling to top under docs layouts

The page container rendered <main style="display: contents">, which Next.js' scroll handler treats as a hidden element: display: contents generates no box, so its getBoundingClientRect() is all-zero, indistinguishable from display: none. The handler skips it (and the sticky TOC siblings) without ever descending into children, dropping the scroll-to-top on navigation entirely.

The <main> element in Docs, Notebook and Flux page containers is now a real grid item (display: grid; grid-area: main) wrapping the unchanged #nd-page article, which centers via the grid instead of mx-auto. Rendering is identical, but if your custom CSS has element rules on main that were previously inert, they now apply.

fumadocs@16.15.3

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

Fix duplicated search result for pages whose description repeats in the content

Pages generated by Fumadocs OpenAPI emit the operation description as both the page description and a content section, so every endpoint page listed the same line twice in the search dialog. Search indexing now skips the page description when an identical content record exists, keeping the record with the heading anchor.

Fix #3509

Remark LLMs: export a component with output: "function"

With output: "function", _markdown becomes a component instead of a string: Markdown content is still stringified at compile time, while JSX elements stay as JSX, receiving their original props.

// fumadocs-mdx collection config
postprocess: {
  includeProcessedMarkdown: { output: 'function' },
},

Render it with renderToMarkdown from fumadocs-core/server. Elements resolve from props.components: a component can call asMarkdown() to output its own Markdown form, other components (including missing ones) are serialized as JSX syntax.

import { renderToMarkdown } from 'fumadocs-core/server';
const { _markdown: Content } = await page.data.load();
const text = await renderToMarkdown(<Content components={getMDXComponents()} />);

getText('processed') keeps working: it renders the component for you, with an optional components map:

const text = await page.data.getText('processed', { components: getMDXComponents() });

Supported in bundler collections with both compilers, and in dynamic: true collections & @fumadocs/satteri/local-md with the Sätteri compiler.

... (truncated)

Commits
  • 7d6fb97 Merge pull request #3516 from fuma-nama/tegami/version-packages
  • 2d4706f chore: bump deps
  • e616cb3 fix(ui): improve solar theme on new \<main> container
  • 19442a3 feat(openapi): support 3.2 tag group
  • a9054b3 fix(openapi): also upgrade the external documents
  • dbf0f12 fix(ui): Next.js auto-scroll bug
  • 5cd7b69 Merge pull request #3510 from fuma-nama/tegami/version-packages
  • 814559b docs: introduce React Markdown Components
  • b4d689d refactor(core(: rename options
  • eefd3e0 feat(satteri): show the type table as a table in markdown form
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for fumadocs-core since your current version.


Updates fumadocs-mdx from 12.0.2 to 15.4.0

Release notes

Sourced from fumadocs-mdx's releases.

fumadocs-mdx@15.4.0

Remark LLMs: export a component with output: "function"

With output: "function", _markdown becomes a component instead of a string: Markdown content is still stringified at compile time, while JSX elements stay as JSX, receiving their original props.

// fumadocs-mdx collection config
postprocess: {
  includeProcessedMarkdown: { output: 'function' },
},

Render it with renderToMarkdown from fumadocs-core/server. Elements resolve from props.components: a component can call asMarkdown() to output its own Markdown form, other components (including missing ones) are serialized as JSX syntax.

import { renderToMarkdown } from 'fumadocs-core/server';
const { _markdown: Content } = await page.data.load();
const text = await renderToMarkdown(<Content components={getMDXComponents()} />);

getText('processed') keeps working: it renders the component for you, with an optional components map:

const text = await page.data.getText('processed', { components: getMDXComponents() });

Supported in bundler collections with both compilers, and in dynamic: true collections & @fumadocs/satteri/local-md with the Sätteri compiler.

fumadocs-mdx@15.3.1

Scope lastModified git log to the content directory

git log is scoped to the collection's content directory instead of buffering the repository's entire history in every worker.

Fix Vite dev server crash on declaration-only dependencies

The injected Vite config no longer pre-bundles packages without runtime JavaScript, such as @types/mdx. Pre-bundling them made esbuild parse .d.ts files and fail on imports that only exist in type space, crashing the dev server.

Encode import.meta.glob query values

The Vite codegen passed the query to import.meta.glob as an object, letting the bundler serialize it. Rolldown inlines the values as-is, so a macro id such as src/lib/source.ts#docs left an unescaped / in the content file's module id and relative imports from that module (e.g. images from ![Banner](https://github.com/fuma-nama/fumadocs/blob/HEAD/logo.png)) failed to resolve, since the importer's directory is derived from the raw id.

The query is now serialized (and percent-encoded) by Fumadocs itself, matching what the Node.js codegen already did.

fumadocs-mdx@15.3.0

Sätteri 0.10

@fumadocs/satteri now requires satteri ^0.10.3, and the plugins were rewritten on its new capabilities:

  • Exports (frontmatter, toc, structuredData, …) are emitted by an after document hook instead of an anchor marker appended to the source, so plugins no longer see (or need to skip) the anchor node.

... (truncated)

Commits
  • 5cd7b69 Merge pull request #3510 from fuma-nama/tegami/version-packages
  • 814559b docs: introduce React Markdown Components
  • b4d689d refactor(core(: rename options
  • eefd3e0 feat(satteri): show the type table as a table in markdown form
  • 49afb7d docs: support .md apart from .mdx suffix
  • 399bea9 feat(mdx,satteri): support dynamic markdown renderer on remark-llms plugin
  • 7eef0d8 feat(core): React Markdown Component
  • 3d07ef5 fix(core): duplicated record when indexing
  • 0687a8b Version Packages (#3507)
  • cc53d34 internal(core): drop negotiator
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for fumadocs-mdx since your current version.


Updates fumadocs-typescript from 4.0.11 to 5.3.0

Commits
  • 9a26903 Version Packages
  • 3e33f43 perf(satteri): reduce clones
  • 3597c9d perf(satteri): persist results
  • 0f389cf feat(satteri): decouple imports/exports from compile()
  • 4611f97 feat(satteri): full rehype-toc functionality
  • d095300 fix(satteri): workaround common issues
  • 0297e25 configure pretrust
  • 02c242b chore(satteri): clean code
  • 3d80b8b fix(mdx): ensure satteri integration is optional
  • 0ec19af feat(satteri): more tests & move remark-include
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for fumadocs-typescript since your current version.


Updates fumadocs-ui from 15.8.5 to 16.15.4

Release notes

Sourced from fumadocs-ui's releases.

fumadocs@16.15.4

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

Fix Next.js <Link> not scrolling to top under docs layouts

The page container rendered <main style="display: contents">, which Next.js' scroll handler treats as a hidden element: display: contents generates no box, so its getBoundingClientRect() is all-zero, indistinguishable from display: none. The handler skips it (and the sticky TOC siblings) without ever descending into children, dropping the scroll-to-top on navigation entirely.

The <main> element in Docs, Notebook and Flux page containers is now a real grid item (display: grid; grid-area: main) wrapping the unchanged #nd-page article, which centers via the grid instead of mx-auto. Rendering is identical, but if your custom CSS has element rules on main that were previously inert, they now apply.

fumadocs@16.15.3

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

Fix duplicated search result for pages whose description repeats in the content

Pages generated by Fumadocs OpenAPI emit the operation description as both the page description and a content section, so every endpoint page listed the same line twice in the search dialog. Search indexing now skips the page description when an identical content record exists, keeping the record with the heading anchor.

Fix #3509

Remark LLMs: export a component with output: "function"

With output: "function", _markdown becomes a component instead of a string: Markdown content is still stringified at compile time, while JSX elements stay as JSX, receiving their original props.

// fumadocs-mdx collection config
postprocess: {
  includeProcessedMarkdown: { output: 'function' },
},

Render it with renderToMarkdown from fumadocs-core/server. Elements resolve from props.components: a component can call asMarkdown() to output its own Markdown form, other components (including missing ones) are serialized as JSX syntax.

import { renderToMarkdown } from 'fumadocs-core/server';
const { _markdown: Content } = await page.data.load();
const text = await renderToMarkdown(<Content components={getMDXComponents()} />);

getText('processed') keeps working: it renders the component for you, with an optional components map:

const text = await page.data.getText('processed', { components: getMDXComponents() });

Supported in bundler collections with both compilers, and in dynamic: true collections & @fumadocs/satteri/local-md with the Sätteri compiler.

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for fumadocs-ui since your current version.


Updates next from 15.5.24 to 16.3.3

Release notes

Sourced from next's releases.

v16.3.3

This release contains security fixes for the following advisories:

Critical:

v16.3.2

[!NOTE] This release is backporting bug fixes. It does not include all pending features/changes on canary.

Core Changes

  • [backport] Scope app-entry export validation to files inside the app directory (#97357)
  • [backport] Fix catch-all index page being served for every other slug (#97416)
  • [16.3] Turbopack: don't trace embedded WASM loader helpers (#97353) (#97463)
  • [16.3] Turbopack: retain conditions when replacing resolve request keys (#97453)
  • [16.3.x] Fix Turbopack worker chunk loading with asset prefix (#97419)
  • [16.3.x] Authenticate Turborepo remote caching with OIDC instead of a static PAT (#97603)

Credits

Huge thanks to @​lubieowoce, @​unstubbable, @​timneutkens, @​mischnic, and @​eps1lon for helping!

v16.3.1

What's Changed

Full Changelog: vercel/next.js@v16.3.0...v16.3.1

... (truncated)

Commits
  • a9a1cb7 v16.3.3
  • 968b9fc [16.3.x] Fix ISR misses with backslashes in segments when deployed on Windows
  • 3a15b4a [16.3.x] [next/image]: disable avif image optimization
  • 7378b51 Backport/docs fixes 16.3 (#97649)
  • 528c1cd [16.3.x] Stop generating error codes (#97780)
  • d0ac882 v16.3.2
  • 81deb92 [16.3.x] Authenticate Turborepo remote caching with OIDC instead of a static ...
  • cd714d9 [16.3.x] Fix Turbopack worker chunk loading with asset prefix (#97419)
  • 5ac2327 [16.3] Turbopack: retain conditions when replacing resolve request keys (#97453)
  • 0ccb3e7 [16.3] Turbopack: don't trace embedded WASM loader helpers (#97353) (#97463)
  • Additional commits viewable in compare view

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

@dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label Nov 25, 2025
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/docs/main/fumadocs-2704084233 branch 4 times, most recently from 91f4144 to 5de046f Compare December 8, 2025 10:23
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/docs/main/fumadocs-2704084233 branch 3 times, most recently from 423b729 to 5660703 Compare December 15, 2025 10:18
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/docs/main/fumadocs-2704084233 branch from 5660703 to e5fba15 Compare December 22, 2025 10:20
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/docs/main/fumadocs-2704084233 branch 3 times, most recently from 54b3cf9 to 58fd640 Compare January 5, 2026 10:44
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/docs/main/fumadocs-2704084233 branch 2 times, most recently from 9730956 to c1020fb Compare January 19, 2026 12:17
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/docs/main/fumadocs-2704084233 branch 3 times, most recently from b5750fb to 79a4d56 Compare January 26, 2026 11:52
@unknownskl

Copy link
Copy Markdown
Owner

@dependabot rebase

@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/docs/main/fumadocs-2704084233 branch 2 times, most recently from 61200f2 to c38350e Compare May 25, 2026 16:27
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/docs/main/fumadocs-2704084233 branch 3 times, most recently from 47192cc to 0fd6cbc Compare June 8, 2026 10:44
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/docs/main/fumadocs-2704084233 branch 2 times, most recently from 9b76348 to 9c57d45 Compare June 22, 2026 10:44
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/docs/main/fumadocs-2704084233 branch 2 times, most recently from ccbea16 to 27f5f11 Compare June 29, 2026 10:44
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/docs/main/fumadocs-2704084233 branch 2 times, most recently from fc560b5 to 6828d4b Compare July 6, 2026 10:44
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/docs/main/fumadocs-2704084233 branch from 6828d4b to cbb6606 Compare July 13, 2026 10:44
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/docs/main/fumadocs-2704084233 branch 2 times, most recently from 4f1e5ac to bdb800a Compare July 27, 2026 10:44
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/docs/main/fumadocs-2704084233 branch from bdb800a to 7aea87f Compare August 3, 2026 10:44
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/docs/main/fumadocs-2704084233 branch 2 times, most recently from b64d79c to e286e29 Compare August 17, 2026 10:44
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/docs/main/fumadocs-2704084233 branch from e286e29 to aac6367 Compare August 24, 2026 10:44
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/docs/main/fumadocs-2704084233 branch from aac6367 to ff42642 Compare August 31, 2026 10:45
…pdates

Bumps the fumadocs group with 5 updates in the /docs directory:

| Package | From | To |
| --- | --- | --- |
| [fumadocs-core](https://github.com/fuma-nama/fumadocs) | `15.8.1` | `16.15.4` |
| [fumadocs-mdx](https://github.com/fuma-nama/fumadocs) | `12.0.2` | `15.4.0` |
| [fumadocs-typescript](https://github.com/fuma-nama/fumadocs) | `4.0.11` | `5.3.0` |
| [fumadocs-ui](https://github.com/fuma-nama/fumadocs) | `15.8.5` | `16.15.4` |
| [next](https://github.com/vercel/next.js) | `15.5.24` | `16.3.3` |



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

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

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

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

Updates `next` from 15.5.24 to 16.3.3
- [Release notes](https://github.com/vercel/next.js/releases)
- [Commits](vercel/next.js@v15.5.24...v16.3.3)

---
updated-dependencies:
- dependency-name: fumadocs-core
  dependency-version: 16.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: fumadocs
- dependency-name: fumadocs-mdx
  dependency-version: 14.0.3
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: fumadocs
- dependency-name: fumadocs-typescript
  dependency-version: 4.0.13
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: fumadocs
- dependency-name: fumadocs-ui
  dependency-version: 16.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: fumadocs
- dependency-name: next
  dependency-version: 16.0.4
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: fumadocs
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/docs/main/fumadocs-2704084233 branch from ff42642 to 76de29f Compare August 31, 2026 10:47
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant