Skip to content

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

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

dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/fumadocs-874133fdd0

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps the fumadocs group with 4 updates in the / directory: fumadocs-core, fumadocs-epub, fumadocs-openapi and fumadocs-ui.

Updates fumadocs-core from 16.9.1 to 16.15.8

Release notes

Sourced from fumadocs-core's releases.

fumadocs@16.15.8

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

Fix Tabs reverting to the hash target after a tab click

The hash-to-tab logic of Tabs ran on every render instead of only on mount and hashchange, because the effect depended on a useEffectEvent callback, which is not referentially stable.

fumadocs@16.15.7

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

Async _fd_prepare hook for Shiki transformers

rehype-code awaits transformer._fd_prepare(code, options) on every transformer before highlighting a code block. Transformers can run async work (or coalesce work across the code blocks being highlighted concurrently) and serve it from the synchronous Shiki hooks afterwards.

fumadocs@16.15.6

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

Replace cnfast with cn

Internal refactor only.

fumadocs@16.15.5

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

Root types: version your docs with root: "<type>"

root in meta.json now accepts a string, the type of root folder. Root folders of the same type under the same parent are interchangeable, which is how you keep multiple versions of the same docs in one site:

{
  "title": "1.0.0",
  "root": "version"
}
{
  "title": "2.0.0",
  "root": "version"
}

... (truncated)

Commits

Updates fumadocs-epub from 1.1.0 to 1.2.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

Updates fumadocs-openapi from 10.9.0 to 11.4.1

Release notes

Sourced from fumadocs-openapi's releases.

fumadocs-openapi@11.4.1

Replace cnfast with cn

Internal refactor only.

fumadocs-openapi@11.4.0

Support installing the API playground via Fumadocs CLI

npx @fumadocs/cli add fumadocs/openapi/playground

Use it with the playground.provider and playground.render options, see Customise UI.

Pass full props to schemaUI.render

It now receives the same props as the built-in Schema UI (including renderMarkdown and renderCodeblock), so a customised Schema UI can act as a drop-in replacement:

schemaUI: {
  render: (props) => <Schema {...props} />,
},

New exports

  • OpenAPI schema types from fumadocs-openapi (e.g. OperationObject, HttpMethods).
  • useRenderContext, useServerContext and useOperationContext from fumadocs-openapi/ui.

fumadocs-openapi@11.3.5

Fix OpenAPI 3.0 example in external files crashing OpenAPIPage

The version upgrader ran after external documents were embedded under x-ext, where it can no longer classify schemas by their JSON path: a schema-level example from an external 3.0 file became an Example Object map instead of the JSON Schema examples array, crashing the schema UI with schema.examples is not iterable.

Each document is now upgraded before bundling embeds it. This also honors the external file's own declared OpenAPI version, so a 3.0 file referenced from a 3.1 document is upgraded too (previously it was skipped entirely).

Support OpenAPI 3.2 tag hierarchy in groupBy: 'tag'

generateFiles now follows the tag hierarchy introduced in OpenAPI 3.2: a tag with a parent becomes a folder nested inside its parent tag's folder (including the generated meta.json), and tags with a kind other than nav no longer form groups, matching their intent (e.g. badge).

Operations referencing undeclared tags or having no tags are no longer dropped silently, which previously could produce an empty output directory. Undeclared tags now form their own group, and untagged operations are grouped under an unknown folder with a warning.

fumadocs-openapi@11.3.4

Support HTTP Basic client authentication in OAuth password flow

Some OAuth servers require client credentials in an HTTP Basic Authorization header instead of the request body. The password flow dialog now offers a Client Authentication select to choose between the two methods, as described in RFC 6749, section 2.3.1.

Fix #3506

fumadocs-openapi@11.3.3

... (truncated)

Commits

Updates fumadocs-ui from 16.9.1 to 16.15.8

Release notes

Sourced from fumadocs-ui's releases.

fumadocs@16.15.8

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

Fix Tabs reverting to the hash target after a tab click

The hash-to-tab logic of Tabs ran on every render instead of only on mount and hashchange, because the effect depended on a useEffectEvent callback, which is not referentially stable.

fumadocs@16.15.7

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

Async _fd_prepare hook for Shiki transformers

rehype-code awaits transformer._fd_prepare(code, options) on every transformer before highlighting a code block. Transformers can run async work (or coalesce work across the code blocks being highlighted concurrently) and serve it from the synchronous Shiki hooks afterwards.

fumadocs@16.15.6

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

Replace cnfast with cn

Internal refactor only.

fumadocs@16.15.5

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

Root types: version your docs with root: "<type>"

root in meta.json now accepts a string, the type of root folder. Root folders of the same type under the same parent are interchangeable, which is how you keep multiple versions of the same docs in one site:

{
  "title": "1.0.0",
  "root": "version"
}
{
  "title": "2.0.0",
  "root": "version"
}

... (truncated)

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

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


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

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

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

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

---
updated-dependencies:
- dependency-name: fumadocs-core
  dependency-version: 16.15.8
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: fumadocs
- dependency-name: fumadocs-epub
  dependency-version: 1.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: fumadocs
- dependency-name: fumadocs-openapi
  dependency-version: 11.4.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: fumadocs
- dependency-name: fumadocs-ui
  dependency-version: 16.15.8
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: fumadocs
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Sep 12, 2026
@dependabot
dependabot Bot requested a review from BunsDev as a code owner September 12, 2026 01:27
@vercel

vercel Bot commented Sep 12, 2026

Copy link
Copy Markdown

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated
coven-docs Error Error Sep 12, 2026 1:28am UTC

Request Review

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