Skip to content

chore(deps): bump fumadocs-core from 16.11.1 to 16.14.2 in /apps/docs-next - #1396

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/apps/docs-next/fumadocs-core-16.14.0
Open

chore(deps): bump fumadocs-core from 16.11.1 to 16.14.2 in /apps/docs-next#1396
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/apps/docs-next/fumadocs-core-16.14.0

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps fumadocs-core from 16.11.1 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

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Aug 6, 2026
@dependabot
dependabot Bot requested a review from EmersonBraun as a code owner August 6, 2026 20:35
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Aug 6, 2026
@dependabot dependabot Bot changed the title chore(deps): bump fumadocs-core from 16.11.1 to 16.14.0 in /apps/docs-next chore(deps): bump fumadocs-core from 16.11.1 to 16.14.2 in /apps/docs-next Aug 11, 2026
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/apps/docs-next/fumadocs-core-16.14.0 branch from 281dbab to 8e08ff8 Compare August 11, 2026 14:34
Bumps [fumadocs-core](https://github.com/fuma-nama/fumadocs) from 16.11.1 to 16.14.2.
- [Release notes](https://github.com/fuma-nama/fumadocs/releases)
- [Commits](https://github.com/fuma-nama/fumadocs/compare/fumadocs@16.11.1...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
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/apps/docs-next/fumadocs-core-16.14.0 branch from 8e08ff8 to 6e24be0 Compare August 11, 2026 14:54
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.

0 participants