Skip to content

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

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/fumadocs-665eee3efa
Open

chore(deps): bump the fumadocs group across 1 directory with 3 updates#482
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/fumadocs-665eee3efa

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 4, 2026

Copy link
Copy Markdown
Contributor

Bumps the fumadocs group with 3 updates in the / directory: fumadocs-core, fumadocs-mdx and fumadocs-ui.

Updates fumadocs-core from 16.13.0 to 16.14.2

Release notes

Sourced from fumadocs-core's releases.

fumadocs@16.14.2

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

Fix crash in DynamicCodeBlock when options is undefined

DynamicCodeBlock read options.components unconditionally while building its Shiki config, even though options is optional on the public wrapper component. Passing an explicit options={undefined} (e.g. a value forwarded from another optional prop) crashed with Cannot read properties of undefined (reading 'components') instead of falling back to the default pre renderer.

options is now read with optional chaining, so an undefined options behaves the same as omitting the prop entirely.

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';
</tr></table> 

... (truncated)

Commits
  • 2b0f3f7 Version Packages (#3466)
  • 2569851 fix(ui): guard against undefined options in DynamicCodeBlock (#3465)
  • 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
  • Additional commits viewable in compare view

Updates fumadocs-mdx from 15.2.0 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.

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

Updates fumadocs-ui from 16.13.0 to 16.14.2

Release notes

Sourced from fumadocs-ui's releases.

fumadocs@16.14.2

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

Fix crash in DynamicCodeBlock when options is undefined

DynamicCodeBlock read options.components unconditionally while building its Shiki config, even though options is optional on the public wrapper component. Passing an explicit options={undefined} (e.g. a value forwarded from another optional prop) crashed with Cannot read properties of undefined (reading 'components') instead of falling back to the default pre renderer.

options is now read with optional chaining, so an undefined options behaves the same as omitting the prop entirely.

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';
</tr></table> 

... (truncated)

Commits
  • 2b0f3f7 Version Packages (#3466)
  • 2569851 fix(ui): guard against undefined options in DynamicCodeBlock (#3465)
  • 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
  • Additional commits viewable in compare view

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Aug 4, 2026
@cloudflare-workers-and-pages

cloudflare-workers-and-pages Bot commented Aug 4, 2026

Copy link
Copy Markdown

Deploying devdocs with  Cloudflare Pages  Cloudflare Pages

Latest commit: 80939d2
Status:🚫  Build failed.

View logs

@socket-security

socket-security Bot commented Aug 4, 2026

Copy link
Copy Markdown

Review the following changes in direct dependencies. Learn more about Socket for GitHub.

Diff Package Supply Chain
Security
Vulnerability Quality Maintenance License
Addedfumadocs-mdx@​15.2.2981007396100
Addedfumadocs-core@​16.14.2981007796100
Addedfumadocs-ui@​16.14.2981007796100

View full report

@cloudflare-workers-and-pages

cloudflare-workers-and-pages Bot commented Aug 4, 2026

Copy link
Copy Markdown

Deploying with  Cloudflare Workers  Cloudflare Workers

The latest updates on your project. Learn more about integrating Git with Workers.

Status Name Latest Commit Updated (UTC)
❌ Deployment failed
View logs
devdocs 80939d2 Aug 11 2026, 07:05 AM

@dependabot dependabot Bot changed the title chore(deps): bump the fumadocs group with 3 updates chore(deps): bump the fumadocs group across 1 directory with 3 updates Aug 8, 2026
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/fumadocs-665eee3efa branch 4 times, most recently from d398414 to 57d48ba Compare August 8, 2026 04:24
Bumps the fumadocs group with 3 updates in the / directory: [fumadocs-core](https://github.com/fuma-nama/fumadocs), [fumadocs-mdx](https://github.com/fuma-nama/fumadocs) and [fumadocs-ui](https://github.com/fuma-nama/fumadocs).


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

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

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

---
updated-dependencies:
- dependency-name: fumadocs-core
  dependency-version: 16.14.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: fumadocs
- dependency-name: fumadocs-mdx
  dependency-version: 15.2.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: fumadocs
- dependency-name: fumadocs-ui
  dependency-version: 16.14.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: fumadocs
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/fumadocs-665eee3efa branch from 57d48ba to 80939d2 Compare August 11, 2026 07:04
@dependabot @github

dependabot Bot commented on behalf of github Aug 11, 2026

Copy link
Copy Markdown
Contributor Author

Dependabot can't parse your pnpm-lock.yaml. Because of this, Dependabot cannot update this pull request.

@GildedRoach

Copy link
Copy Markdown
Collaborator

@dependabot recreate

@dependabot @github

dependabot Bot commented on behalf of github Aug 11, 2026

Copy link
Copy Markdown
Contributor Author

Dependabot can't parse your pnpm-lock.yaml. Because of this, Dependabot cannot update this pull request.

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 javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant