Skip to content

Conversation

@dependabot
Copy link
Contributor

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

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

Package From To
fumadocs-core 15.8.1 16.1.0
fumadocs-mdx 12.0.2 14.0.3
fumadocs-typescript 4.0.11 4.0.13
fumadocs-ui 15.8.5 16.1.0
next 15.5.4 16.0.4

Updates fumadocs-core from 15.8.1 to 16.1.0

Release notes

Sourced from fumadocs-core's releases.

fumadocs-core@16.1.0

Minor Changes

  • 15bd183: [Loader API] Default the type of plugins to LoaderPluginOption[]

    It should no longer enforce type checks on custom properties from your content source.

    For creating fully typed plugins (with custom properties), use the following pattern:

    import { loader } from 'fumadocs-core/source';
    import { docs } from 'fumadocs-mdx:collections/server';
    import { lucideIconsPlugin } from 'fumadocs-core/source/lucide-icons';
    export const source = loader(docs.toFumadocsSource(), {
    baseUrl: '/docs',
    plugins: ({ typedPlugin }) => [
    lucideIconsPlugin(),
    typedPlugin({
    // the plugin config
    }),
    ],
    });

  • 42ad84c: [Loader API] Refactor internal type parameters

    Internal types like ContentStorage, PageTreeTransformer now use a single Config extends SourceConfig generic parameter.

    It makes extending their parameters easier, this should not affect normal usages.

Patch Changes

  • 2e01720: [Loader API] Support calling loader().getPage(slugs) with URI encoded slugs

fumadocs-core@16.0.15

Patch Changes

  • fe380da: feat(waku): WakuLink component to use unstable_prefetchOnEnter for prefetch
  • ade44d0: feat: enhance framework providers to accept custom Link components

fumadocs-core@16.0.14

Patch Changes

  • c3b8474: hotfix Tanstack Router usePathname inconsistency due to useMatch on layout.

fumadocs-core@16.0.13

No release notes provided.

fumadocs-core@16.0.12

... (truncated)

Commits

Updates fumadocs-mdx from 12.0.2 to 14.0.3

Release notes

Sourced from fumadocs-mdx's releases.

fumadocs-mdx@14.0.3

Patch Changes

  • f362ea1: Fix Webpack warnings (they require absolute paths for dependencies)
  • Updated dependencies [fe380da]
  • Updated dependencies [ade44d0]
    • fumadocs-core@16.0.15

fumadocs-mdx@14.0.2

Patch Changes

  • 59743c0: Use remarkStructure().exportAs option to export structuredData
  • 59743c0: only provide CJS fallback for Next.js
  • Updated dependencies [c3b8474]
    • fumadocs-core@16.0.14

fumadocs-mdx@14.0.1

Patch Changes

  • 52dabc3: Support type-safe collection generation
    • fumadocs-core@16.0.13

fumadocs-mdx@14.0.0

Major Changes

  • 7b450d6: Change postInstall() signature to postInstall({ configPath, outDir, ... })

    This allows more options for postInstall command.

  • a312d3a: Replace getDefaultMDXOptions() with applyMdxPreset()

    This allows Fumadocs MDX to support more presets in the future, and adjust presets for dynamic mode.

    // source.config.ts
    import { defineCollections, applyMdxPreset } from 'fumadocs-mdx/config';
    import { myPlugin } from './remark-plugin';
    export const blog = defineCollections({
    type: 'doc',
    mdxOptions: applyMdxPreset({
    remarkPlugins: [myPlugin],
    // You can also pass a function to control the order of remark plugins.
    remarkPlugins: (v) => [myPlugin, ...v],
    }),
    });

  • bc93578: Replace lastModifiedTime option with lastModified plugin.

... (truncated)

Commits

Updates fumadocs-typescript from 4.0.11 to 4.0.13

Release notes

Sourced from fumadocs-typescript's releases.

fumadocs-typescript@4.0.13

Patch Changes

  • ca09b6a: Core: Support accessing MDX plugins separately at fumadocs-core/mdx-plugins/*
  • Updated dependencies [bc97236]
  • Updated dependencies [ca09b6a]
  • Updated dependencies [c0df2c4]
  • Updated dependencies [117ad86]
    • fumadocs-core@16.0.8
    • fumadocs-ui@16.0.8

fumadocs-typescript@4.0.12

Patch Changes

  • 5210f18: Support Fumadocs 16 in peerDependencies.
  • Updated dependencies [1494340]
  • Updated dependencies [230c6bf]
  • Updated dependencies [851897c]
  • Updated dependencies [de0ce6d]
  • Updated dependencies [4049ccc]
  • Updated dependencies [0ed0ca6]
  • Updated dependencies [429c41a]
  • Updated dependencies [5210f18]
  • Updated dependencies [cbc93e9]
  • Updated dependencies [42f09c3]
  • Updated dependencies [55afd8a]
  • Updated dependencies [5966e23]
    • fumadocs-ui@16.0.0
    • fumadocs-core@16.0.0
Commits

Updates fumadocs-ui from 15.8.5 to 16.1.0

Release notes

Sourced from fumadocs-ui's releases.

fumadocs-ui@16.1.0

Patch Changes

  • Updated dependencies [2e01720]
  • Updated dependencies [15bd183]
  • Updated dependencies [42ad84c]
    • fumadocs-core@16.1.0

fumadocs-ui@16.0.15

Patch Changes

  • 40d9b75: Add 'idea' callout type
  • ade44d0: feat: enhance framework providers to accept custom Link components
  • Updated dependencies [fe380da]
  • Updated dependencies [ade44d0]
    • fumadocs-core@16.0.15

fumadocs-ui@16.0.14

Patch Changes

  • Updated dependencies [c3b8474]
    • fumadocs-core@16.0.14

fumadocs-ui@16.0.13

Patch Changes

  • 88dae4d: Reduce px usage
    • fumadocs-core@16.0.13

fumadocs-ui@16.0.12

Patch Changes

  • Updated dependencies [c5c00e9]
    • fumadocs-core@16.0.12

fumadocs-ui@16.0.11

Patch Changes

  • 00058c8: Drop framework-side createContext
  • Updated dependencies [ff68f69]
  • Updated dependencies [00058c8]
    • fumadocs-core@16.0.11

fumadocs-ui@16.0.10

Patch Changes

  • 112e8d9: Support CalloutContainer, CalloutTitle and CalloutDescription components.

    They're now MDX components included by default.

... (truncated)

Commits

Updates next from 15.5.4 to 16.0.4

Release notes

Sourced from next's releases.

v16.0.4

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

Core Changes

  • fix: Rename proxy.js to middleware.js in NFT file (#86214)
  • fix: prevent fetch abort errors propagating to user error boundaries (#86277)
  • Turbopack: fix passing project options from napi (#86256)

Credits

Huge thanks to @​devjiwonchoi, @​sokra and @​ztanner for helping!

v16.0.3

Core Changes

  • fix: Rspack throw error when using ForceCompleteRuntimePlugin: #85221
  • fix: build CLI output not displaying Proxy (Middleware) when nodejs runtime: #85403
  • fix: staleTimes.static should consistently enforce a 30s minimum: #85479
  • [turbopack] fix build of empty entries of pages: #84873
  • Cache the head separately from the route tree: #84724
  • Allow inspecting dev server on default port with next dev --inspect: #85037
  • Avoid proxying React modules through workUnitStore: #85486
  • fix: redirect should always return updated router state: #85533
  • Upgrade React from b4455a6e-20251027 to 4f931700-20251029: #85518
  • [turbopack] Move generation of cacheLife types out of the webpack plugin and into the dev bundler directly: #85539
  • Ensure user-space stack frame for 'use cache' in page/layout component: #85519
  • Update parallel routes in build-complete: #85546
  • fully remove clientSegmentCache flag: #85541
  • [turbopack] Support relative paths in turbopack source maps.: #85146
  • Release unnecessary memory on hydration finish: #84967
  • Preserve interception markers in parameter types: #85526
  • move segment cache entries to top level segment-cache dir: #85542
  • Upgrade React from 4f931700-20251029 to 561ee24d-20251101: #85670
  • [devtools] Remove title from preferences: #85698
  • Update font data: #85708
  • Don't invalidate hot reloader excessively during dev server boot: #85732
  • [codemod] fix: next-lint-to-eslint-cli did not handle 'next' plugin: #85749
  • Upgrade React from 561ee24d-20251101 to 67f7d47a-20251103: #85762
  • Tracing: Fix memory leak in span map: #85529
  • Fix documentation typo in refresh function: #85696
  • fix: eslint-config-next types was exporting to dist/src: #85768
  • Upgrade React from 67f7d47a-20251103 to f646e8ff-20251104: #85772
  • remove unused RSC payload property: #85746
  • [runtime prefetching]: fix runtime prefetching when deployed: #85595
  • Turbopack: next build --analyze: #85197
  • Build: Log amount of workers during static generation: #85706
  • Upgrade React from f646e8ff-20251104 to dd048c3b-20251105: #85819
  • Sync devFallbackParams when generateStaticParams change: #85741

... (truncated)

Commits

You can trigger a rebase of this PR 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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @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

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 2 times, most recently from 33874c7 to 54b3cf9 Compare January 5, 2026 10:42
…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.1.0` |
| [fumadocs-mdx](https://github.com/fuma-nama/fumadocs) | `12.0.2` | `14.0.3` |
| [fumadocs-typescript](https://github.com/fuma-nama/fumadocs) | `4.0.11` | `4.0.13` |
| [fumadocs-ui](https://github.com/fuma-nama/fumadocs) | `15.8.5` | `16.1.0` |
| [next](https://github.com/vercel/next.js) | `15.5.4` | `16.0.4` |



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

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

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

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

Updates `next` from 15.5.4 to 16.0.4
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](vercel/next.js@v15.5.4...v16.0.4)

---
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 54b3cf9 to 58fd640 Compare January 5, 2026 10:44
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