Skip to content

fix(deps): update dependency fumadocs-mdx to v14 - autoclosed#493

Closed
renovate[bot] wants to merge 1 commit intomainfrom
renovate/fumadocs-mdx-14.x
Closed

fix(deps): update dependency fumadocs-mdx to v14 - autoclosed#493
renovate[bot] wants to merge 1 commit intomainfrom
renovate/fumadocs-mdx-14.x

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) 13.0.8 -> 14.0.3 age confidence

Release Notes

fuma-nama/fumadocs (fumadocs-mdx)

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

Configuration

📅 Schedule: Branch creation - "on friday" in timezone Asia/Almaty, 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.

@vercel
Copy link

vercel bot commented Dec 5, 2025

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

Project Deployment Preview Comments Updated (UTC)
arkenv Error Error Dec 5, 2025 7:08pm

@changeset-bot
Copy link

changeset-bot bot commented Dec 5, 2025

⚠️ No Changeset found

Latest commit: 14fa9f2

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@coderabbitai
Copy link
Contributor

coderabbitai bot commented Dec 5, 2025

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


Comment @coderabbitai help to get the list of available commands and usage tips.

@github-actions github-actions bot added the www Improvements or additions to arkenv.js.org label Dec 5, 2025
@renovate renovate bot force-pushed the renovate/fumadocs-mdx-14.x branch from 19bd0ad to 27d4378 Compare December 5, 2025 11:21
@renovate renovate bot force-pushed the renovate/fumadocs-mdx-14.x branch from 27d4378 to 381ad72 Compare December 5, 2025 18:57
@renovate renovate bot force-pushed the renovate/fumadocs-mdx-14.x branch from 381ad72 to 14fa9f2 Compare December 5, 2025 19:00
@yamcodes yamcodes mentioned this pull request Dec 5, 2025
yamcodes added a commit that referenced this pull request Dec 5, 2025
Bump `fumadocs-mdx` to v14, and implement further alignment with [the
Fumadocs `next-mdx`
example](https://github.com/fuma-nama/fumadocs/tree/dev/examples/next-mdx)
to inadvertently solve [a build
issue](https://github.com/yamcodes/arkenv/actions/runs/19973075581/job/57282416908?pr=493)
that failed the checks for #493.

<!-- This is an auto-generated comment: release notes by coderabbit.ai
-->

## Summary by CodeRabbit

* **Chores**
  * Upgraded core build dependencies to the latest version.
* Refined internal module resolution configuration for improved build
compatibility.

<sub>✏️ Tip: You can customize this high-level summary in your review
settings.</sub>

<!-- end of auto-generated comment: release notes by coderabbit.ai -->

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
@yamcodes
Copy link
Owner

yamcodes commented Dec 5, 2025

Closed due to the merger of #499.

@yamcodes yamcodes closed this Dec 5, 2025
@renovate renovate bot changed the title fix(deps): update dependency fumadocs-mdx to v14 fix(deps): update dependency fumadocs-mdx to v14 - autoclosed Dec 5, 2025
@renovate renovate bot deleted the renovate/fumadocs-mdx-14.x branch December 5, 2025 20:38
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

www Improvements or additions to arkenv.js.org

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant