Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Nov 16, 2025

This PR contains the following updates:

Package Change Age Confidence
fumadocs-mdx (source) 13.0.8 -> 14.0.0 age confidence

Release Notes

fuma-nama/fumadocs (fumadocs-mdx)

v14.0.0

Compare Source

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.

    If you've lastModifiedTime option enabled before, migrate to the plugin instead.

    // source.config.ts
    import { defineConfig } from 'fumadocs-mdx/config';
    import lastModified from 'fumadocs-mdx/plugins/last-modified';
    
    export default defineConfig({
      plugins: [lastModified()],
    });
  • 2f7e4d8: Drop support for multiple dir in same collection

    Consider using files instead for filtering files.

    // source.config.ts
    import { defineDocs } from 'fumadocs-mdx/config';
    
    export const docs = defineDocs({
      dir: 'content/guides',
      docs: {
        files: ['./i-love-fumadocs/**/*.{md,mdx}'],
      },
    });
  • a312d3a: No longer generate extractedReferences by default

    You can enable it from postprocess option.

    // source.config.ts
    import { defineDocs } from 'fumadocs-mdx/config';
    
    export const docs = defineDocs({
      docs: {
        postprocess: {
          extractLinkReferences: true,
        },
      },
    });
  • b963021: [Vite] rename generateIndexFile option to index

Patch Changes
  • 97722c6: Fix meta file validation on Bun.
  • b963021: [Internal] Make index-file a plugin and optimize re-generations.
  • Updated dependencies [c5c00e9]
    • fumadocs-core@​16.0.12

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@thenextlvl-net
Copy link

thenextlvl-net bot commented Nov 16, 2025

The preview deployment for docs failed. 🔴

Open Build Logs

Last updated at: 2025-11-16 12:48:25 CET

@renovate renovate bot force-pushed the renovate/major-fumadocs branch from bcd0e23 to 67a5e74 Compare November 16, 2025 12:48
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant