Skip to content

Update dependency fumadocs-mdx to v15#313

Open
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/fumadocs-mdx-15.x
Open

Update dependency fumadocs-mdx to v15#313
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/fumadocs-mdx-15.x

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented May 7, 2026

This PR contains the following updates:

Package Change Age Confidence
fumadocs-mdx (source) ^13.0.0^15.0.0 age confidence

Release Notes

fuma-nama/fumadocs (fumadocs-mdx)

v15.0.4

Compare Source

Patch Changes
  • c892bd9: Improve DocsCategory cards
  • c892bd9: Always show copy button on codeblocks on touch devices
    • fumadocs-core@​15.0.4

v15.0.3

Compare Source

Patch Changes
  • 47171db: UI: fix ocean theme
    • fumadocs-core@​15.0.3

v15.0.2

Patch Changes
  • 298ac97: fix compatibility issues with Vite RSC
  • b212481: remove vitefu from inline deps

v15.0.1

Patch Changes
  • 421166a: Fix border styles
    • fumadocs-core@​15.0.1

v15.0.0

Compare Source

Major Changes
  • 3de9dfe: Require ESM for next.config

    Modern Node.js now supports next.config.mts format, compatibility layer is no longer needed.

  • 3de9dfe: Raise minimum fumadocs-core version to 16.7.0

Patch Changes
  • 5745fcf: Support better Node.js loader registry
    • fumadocs-core@​16.8.8

v14.3.2

Patch Changes
  • 79d3209: Deprecate forwarded schemas at fumadocs-mdx/config, recommend fumadocs-core/source/schema instead.
  • Updated dependencies [79d3209]
    • fumadocs-core@​16.8.5

v14.3.0

Compare Source

Minor Changes
  • fa9f678: Make Next.js config ESM only

    Newer Next.js supported .mts extension for Next.js config files, see Next.js docs for more info.

v14.2.14

Compare Source

Patch Changes
  • eb62304: Make mdx-remote optional for dynamic mode
  • Updated dependencies [e1567e2]
  • Updated dependencies [9a200c8]
  • Updated dependencies [c731a92]
  • Updated dependencies [a4189ce]
    • fumadocs-core@​16.7.15

v14.2.13

Compare Source

Patch Changes

v14.2.12

Compare Source

Patch Changes

v14.2.11

Compare Source

Patch Changes
  • 3144149: Fix dynamic index generation so generated dynamic.ts imports node:path and passes lazy entries to create.doc() / create.docs() as arrays.
  • Updated dependencies [f45d703]
  • Updated dependencies [45aa454]
    • fumadocs-core@​16.7.0

v14.2.10

Compare Source

Patch Changes
  • c2678c0: Improve llms.txt generation via remark-llms plugin
  • Updated dependencies [c2678c0]
  • Updated dependencies [417f07a]
  • Updated dependencies [bb07706]
  • Updated dependencies [f065406]
    • fumadocs-core@​16.6.17

v14.2.9

Compare Source

Patch Changes

v14.2.8

Patch Changes
  • 1a614de: enforce MDX stringifier by default
  • Updated dependencies [1a614de]
  • Updated dependencies [6ab6692]
    • fumadocs-core@​16.6.5

v14.2.4

Compare Source

Patch Changes

v14.2.3

Compare Source

Patch Changes
  • 3a8b9b0: support Vite 8 moduleType option
    • fumadocs-core@​16.4.1

v14.2.2

Compare Source

Patch Changes
  • 2de6151: add @types/react to peer dep
    • fumadocs-core@​16.3.2

v14.2.1

Compare Source

Patch Changes

v14.2.0

Compare Source

Minor Changes
  • 8ce2c70: Add VS Code-style #region / #endregion support to for code files

v14.1.1

Compare Source

Patch Changes
  • adaf9ae: hotfix Windows path escape

v14.1.0

Compare Source

Minor Changes
  • fc0e3db: Support Workspaces API [Experimental]
Patch Changes
  • Updated dependencies [ef8eb6c]
  • Updated dependencies [e0c4c3a]
  • Updated dependencies [4e2bca7]
    • fumadocs-core@​16.2.3

v14.0.4

Compare Source

Patch Changes
  • f59339b: Fix last-modified plugin date checking
    • fumadocs-core@​16.2.0

v14.0.3

Compare Source

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

v14.0.2

Compare Source

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

v14.0.1

Compare Source

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

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

v13.0.8

Compare Source

Patch Changes
  • 58bf979: [Bun Loader] Support dynamic require of meta files
  • Updated dependencies [ff68f69]
  • Updated dependencies [00058c8]
    • fumadocs-core@​16.0.11

v13.0.7

Compare Source

Patch Changes
  • 30b1b11: Temporary workaround for vite:json plugin conflicts
  • Updated dependencies [733b01e]
    • fumadocs-core@​16.0.10

v13.0.6

Compare Source

Patch Changes
  • 40176ce: Support disableMetaFile option in Bun plugin
    • fumadocs-core@​16.0.9

v13.0.5

Compare Source

Patch Changes
  • ad38466: add support next.config.mts for mdx

v13.0.4

Patch Changes
  • 27fc4ed: [Internal] improve mutability of LoadedConfig for plugins
  • f5bc4aa: Fix Bun missing query strings
  • 61b90c8: Always transform meta files in collection, this includes runtime loaders like Node.js and Bun.
  • d1e43f4: Support re-generating index file when using runtime: bun | node
  • Updated dependencies [f97cd1e]
  • Updated dependencies [f7e15e2]
    • fumadocs-core@​16.0.7

v13.0.2

Compare Source

Patch Changes
  • ee4ad3d: Always format file paths into POSIX for Vite

v13.0.1

Compare Source

Patch Changes
  • 56332df: Support plugins in Webpack loader environment: now plugins can apply changes on MDX options too.
  • 91add4f: Plugin json-schema: support inserting $schema to JSON files
  • cffd4c2: Lazy update index files on Next.js
    • fumadocs-core@​16.0.3

Configuration

📅 Schedule: (UTC)

  • 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 is behind base branch, 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.

@cloudflare-workers-and-pages
Copy link
Copy Markdown

cloudflare-workers-and-pages Bot commented May 7, 2026

Deploying website with  Cloudflare Pages  Cloudflare Pages

Latest commit: f68704e
Status:🚫  Build failed.

View logs

@renovate renovate Bot force-pushed the renovate/fumadocs-mdx-15.x branch 3 times, most recently from 6e77a76 to 947559d Compare May 11, 2026 17:35
@renovate renovate Bot force-pushed the renovate/fumadocs-mdx-15.x branch from 947559d to f68704e Compare May 12, 2026 16:00
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.

0 participants