Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Dec 5, 2025

This PR contains the following updates:

Package Change Age Confidence
fumadocs-mdx (source) ^12.0.3 -> ^14.2.2 age confidence

Release Notes

fuma-nama/fumadocs (fumadocs-mdx)

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

v13.0.0

Compare Source

Major Changes
  • 8d0c164: Move createMDXSource and resolveFiles from fumadocs-mdx to fumadocs-mdx/runtime/next

  • 3caa5cd: Vite: move source.generated.ts to .source/index.ts

    Why:

    • with Fumadocs MDX Plugins, we want to unify the output directory across Vite & Next.js.
    • source.generated.ts looks ugly compared by .source.

    Migrate:

    • run dev server/typegen to generate a .source folder.
    • import it over the original source.generated.ts.
    • note that both docs and create-fumadocs-app are updated to .source folder.
Minor Changes
  • 29ce826: Support JSON Schema plugin (fumadocs-mdx/plugins/json-schema)

  • 3caa5cd: Support Plugins API

    Fumadocs MDX is mostly a bundler plugin meant to be used with tools like Vite and Turbopack.

    With Fumadocs MDX Plugins, you can extend Fumadocs MDX without worrying the underlying bundler.
    It is designed for:

    • Generate files from config (e.g. types, index files, JSON schemas)
    • Modify received config
Patch Changes
  • 81fa875: Fix includeProcessedMarkdown cannot stringify MDX nodes
  • 575cfb8: Include unravel plugin into remark-include parsing step, this ensures the parsed results are consistent with normal MDX.js processor output.
  • 1f1c787: Add useContent API to client loader for avoiding Lint errors
  • 9051574: Support postprocess.includeMDAST option
  • a5df956: Support runtime: bun and runtime: node in Vite index file generation
  • 5210f18: Support Fumadocs 16 in peerDependencies.
  • Updated dependencies [230c6bf]
  • Updated dependencies [851897c]
  • Updated dependencies [4049ccc]
  • Updated dependencies [429c41a]
  • Updated dependencies [5210f18]
  • Updated dependencies [cbc93e9]
  • Updated dependencies [42f09c3]
  • Updated dependencies [55afd8a]
  • Updated dependencies [5210f18]

Configuration

📅 Schedule: Branch creation - "after 10:00 before 19:00 every weekday except after 13:00 before 14:00" in timezone Europe/Berlin, 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.

@renovate renovate bot requested a review from prisis as a code owner December 5, 2025 13:11
@github-actions
Copy link

github-actions bot commented Dec 5, 2025

Thank you for following the naming conventions! 🙏

@netlify
Copy link

netlify bot commented Dec 5, 2025

Deploy Preview for visulima-com failed.

Name Link
🔨 Latest commit 44cc47a
🔍 Latest deploy log https://app.netlify.com/projects/visulima-com/deploys/694bb72344a3a300084e7b8f

@renovate renovate bot force-pushed the renovate/fumadocs-mdx-14.x branch 3 times, most recently from 26d87a7 to 0b3573b Compare December 9, 2025 13:47
@renovate renovate bot force-pushed the renovate/fumadocs-mdx-14.x branch 2 times, most recently from ad48d49 to 0e32e81 Compare December 23, 2025 17:32
BREAKING CHANGE: updated dependencies to major versions
@renovate renovate bot force-pushed the renovate/fumadocs-mdx-14.x branch from 0e32e81 to 44cc47a Compare December 24, 2025 09:49
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant