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.14.1
fumadocs-mdx 12.0.2 15.2.2
fumadocs-typescript 4.0.11 5.3.0
fumadocs-ui 15.8.5 16.14.1
next 15.5.22 16.3.0

Updates fumadocs-core from 15.8.1 to 16.14.1

Release notes

Sourced from fumadocs-core's releases.

fumadocs@16.14.1

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

Fix unusable tokenizer search option

The search engine rejects a language alongside a custom tokenizer, since the tokenizer carries its own. Both search entry points supplied one unconditionally — createDB/createDBSimple through a destructuring default that language: undefined could not suppress, and createI18nSearchAPI by hardcoding multilingual after the spread — so passing tokenizer always threw NO_LANGUAGE_WITH_CUSTOM_TOKENIZER at index-build time. On i18n sources there was no call that worked at all.

language is now omitted when a tokenizer is present (from either tokenizer or components.tokenizer), and i18n servers no longer overwrite a caller-supplied language. Attaching a stemmer to the default multilingual segmentation works as documented:

import { stemmer } from '@zbsearch/stemmers/english';
createFromSource(source, {
tokenizer: { language: 'multilingual', stemming: true, stemmer },
});

fumadocs@16.14.0

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

Replace Orama with ZBSearch, zero-config i18n search

The built-in search engine moved from @orama/orama to ZBSearch, a near drop-in successor. All module paths and APIs are unchanged, and search now works with every language out of the box: the new default multilingual mode uses Unicode word segmentation, so i18n search needs zero config.

import { createFromSource } from 'fumadocs-core/search/server';
// no localeMap, no @orama/tokenizers, CJK included
export const { GET } = createFromSource(source);

All locales now share a single search database — results are filtered by the locale of your pages at query time. Same for static mode:

import { staticClient } from 'fumadocs-core/search/client/orama-static';
const client = staticClient({ locale });

Renames

  • oramaStaticClientstaticClient (old name kept as deprecated alias)
  • initOramainitDB, it now creates a ZBSearch instance and is optional — the exported data restores the tokenizer on load

Deprecated

... (truncated)

Commits
  • c2ce5cb Version Packages (#3463)
  • 19e269e chore: drop typescript 7
  • eacc5e1 fix(graphql): no dropped optional arguments in playground
  • 2452e01 fix(core): fix unusable tokenizer search option
  • cc694a1 chore: bump deps
  • 7c31d84 Merge pull request #3457 from fuma-nama/tegami/version-packages
  • c6aa185 fix(graphql): migrate deprecated APIs of graphql v18
  • 5b2a798 docs: drop mcp-handler
  • 9ad3757 chore: bump deps
  • 15ea7ea docs: document GraphQL options
  • 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.2.2

Release notes

Sourced from fumadocs-mdx's releases.

fumadocs-mdx@15.2.2

Support thenable Next.js config

Allow the promises to be awaited.

fumadocs-mdx@15.2.1

Support simpler fumadocsMdx vite plugin usage

Use the fumadocsMdx method instead for better syntax around macro usage.

Support browser helpers for Macro API

Use preload & lazy body renderer on non-rsc environment.

fumadocs-mdx@15.2.0

Support Macro API

Use fumadocs-mdx/macro to define collections, and enable the macro-style API from bundler plugin (e.g. createMDX) using the include option.

fumadocs-mdx@15.1.1

Migrate from js-yaml to yaml

fumadocs-mdx@15.1.0

Default to Base UI

Internal packages & templates now use Base UI rather than Radix UI.

fumadocs-mdx@15.0.13

Require collection query param at regex matching

Instead of passing through all JSON/YAML files, the meta loader now requires collection query param to be triggered.

Commits
  • 1025ff3 Version Packages (#3451)
  • 5f1a185 fix(mdx): support thenable Next.js config
  • 81c88c6 Version Packages (#3445)
  • 4108f03 chore: fix example builds
  • a279c17 fix(mdx): workaround for base ui issues
  • f29a484 refactor(*): migrate non-rsc examples to macro api
  • f845513 feat(mdx): browser helpers for macro
  • e0d374c refactor(*): migrate examples & docs to macro API
  • 4047bf7 feat(mdx): improve vite plugin usage
  • b1636d5 chore: bump deps
  • 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

Release notes

Sourced from fumadocs-typescript's releases.

fumadocs-typescript@5.3.0

Default to Base UI

Internal packages & templates now use Base UI rather than Radix UI.

fumadocs-typescript@5.2.7

Migrate to cnfast

Drop tailwind-merge.

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.14.1

Release notes

Sourced from fumadocs-ui's releases.

fumadocs@16.14.1

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

Fix unusable tokenizer search option

The search engine rejects a language alongside a custom tokenizer, since the tokenizer carries its own. Both search entry points supplied one unconditionally — createDB/createDBSimple through a destructuring default that language: undefined could not suppress, and createI18nSearchAPI by hardcoding multilingual after the spread — so passing tokenizer always threw NO_LANGUAGE_WITH_CUSTOM_TOKENIZER at index-build time. On i18n sources there was no call that worked at all.

language is now omitted when a tokenizer is present (from either tokenizer or components.tokenizer), and i18n servers no longer overwrite a caller-supplied language. Attaching a stemmer to the default multilingual segmentation works as documented:

import { stemmer } from '@zbsearch/stemmers/english';
createFromSource(source, {
tokenizer: { language: 'multilingual', stemming: true, stemmer },
});

fumadocs@16.14.0

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

Replace Orama with ZBSearch, zero-config i18n search

The built-in search engine moved from @orama/orama to ZBSearch, a near drop-in successor. All module paths and APIs are unchanged, and search now works with every language out of the box: the new default multilingual mode uses Unicode word segmentation, so i18n search needs zero config.

import { createFromSource } from 'fumadocs-core/search/server';
// no localeMap, no @orama/tokenizers, CJK included
export const { GET } = createFromSource(source);

All locales now share a single search database — results are filtered by the locale of your pages at query time. Same for static mode:

import { staticClient } from 'fumadocs-core/search/client/orama-static';
const client = staticClient({ locale });

Renames

  • oramaStaticClientstaticClient (old name kept as deprecated alias)
  • initOramainitDB, it now creates a ZBSearch instance and is optional — the exported data restores the tokenizer on load

Deprecated

... (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.22 to 16.3.0

Release notes

Sourced from next's releases.

v16.3.0

Core Changes

  • Update vendored lodash to 4.17.23 to fix CVE-2025-13465: #91558
  • Fix invalid HTML response for route-level RSC requests in deployment adapter: #91541
  • Normalize encoded dynamic placeholders in app routes: #91603
  • Fix(pages-router): restore Content-Length and ETag for /_next/data/ JSON responses: #90304
  • Update tokio from 1.43.0 to 1.47.3: #90945
  • [turbopack] Simplify snapshotting logic: #91178
  • Turbopack: enable server HMR for app route handlers: #91466
  • turbo-tasks-backend: batch find_and_schedule_dirty using for_each_task_meta: #91497
  • [turbopack] Use bail! instead of panic! for duplicate module ident error: #91636
  • Skip loadBindings() Lightning CSS check during next start: #91538
  • turbo-tasks-backend: batch schedule dirty tasks in aggregation_update: #91461
  • Turbopack: Add importModule() support to webpack loaders: #89630
  • turbo-persistence: fix mmap page alignment and improve error context in MetaFile::open_internal: #91640
  • turbopack-css: demote recoverable CSS parse warnings to Warning severity: #91524
  • feat(node-streams): add config flag, define-env, and env precedence test: #90427
  • Rename /_next/webpack-hmr to /_next/hmr: #91415
  • Add per-slot error attribution for instant validation using slot markers and config depth preference: #91610
  • Handle encoded params further: #91627
  • [turbopack] Respect {eval:true} in worker_threads constructors: #91666
  • Fix missing route in otel spans without base-server: #91665
  • [turbopack] Optimize compaction cpu usage: #91468
  • Fix layout segment optimization: move app-page imports to server-utility transition: #91701
  • Fix server actions in standalone mode with cacheComponents: #91711
  • turbo-persistence: remove Unmergeable mmap advice: #91713
  • turbopack: move "compact database" tracing span to backend layer: #91693
  • Turbopack: lazy require metadata and handle TLA: #91705
  • Fix adapter outputs for dynamic metadata routes: #91680
  • Turbopack: fix webpack loader runner layer: #91727
  • [turbopack] Remove incorrect debug_assert in try_read_task_cell: #91699
  • Add module count field to module graph tracing spans: #91697
  • turbopack-cli: add --persistent-caching flag for filesystem-backed cache: #91657
  • Turbopack: pull in updated vercel/nft tests: #91651
  • [turbopack] Improve regressed build speed on cross-compiled MUSL: #91477
  • [Segment Bundling] [Scaffolding] Ensure inlining hint correctness: #91320
  • [Segment Bundling] [Scaffolding] Track which segments can be omitted from prefetch: #91438
  • Avoid deprecated TS node10 moduleResolution defaults: #91847
  • [turbopack] Rebuild the docker build scripts: #91799
  • Fix TS6 baseUrl deprecation for extended tsconfig: #91855
  • Add next internal post-build CLI command for Turbopack database compaction: #91336
  • Turbopack: Define Effect as a trait instead of a closure: #89080
  • Turbopack: Implement TraceRawVcs and NonLocalValue correctly for Effects: #89133
  • turbo-tasks-backend: improve print_cache_item_size instrumentation: #91742
  • Turbopack: switch from base40 to base38 hash encoding (remove ~ and . from charset): #91832
  • Use charCodeAt for normalizePathTrailingSlash: #91380
  • Turbopack: Only patch lockfile when bindings fails to load: #91379
  • [create-next-app] Skip interactive prompts when CLI flags are provided: #91840
  • [devtools] Make instant navs panel draggable: #91914
  • [Segment Bundling] Bundle static prefetches based on size: #91439

... (truncated)

Commits

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
…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.14.1` |
| [fumadocs-mdx](https://github.com/fuma-nama/fumadocs) | `12.0.2` | `15.2.2` |
| [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.14.1` |
| [next](https://github.com/vercel/next.js) | `15.5.22` | `16.3.0` |



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

Updates `fumadocs-mdx` from 12.0.2 to 15.2.2
- [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.2.2)

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.14.1
- [Release notes](https://github.com/fuma-nama/fumadocs/releases)
- [Commits](https://github.com/fuma-nama/fumadocs/commits/fumadocs@16.14.1)

Updates `next` from 15.5.22 to 16.3.0
- [Release notes](https://github.com/vercel/next.js/releases)
- [Commits](vercel/next.js@v15.5.22...v16.3.0)

---
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 7aea87f to b64d79c Compare August 10, 2026 10:45
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