Skip to content

chore(deps): update fumadocs packages (major)#826

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/major-fumadocs-packages
Open

chore(deps): update fumadocs packages (major)#826
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/major-fumadocs-packages

Conversation

@renovate

@renovate renovate Bot commented Oct 22, 2025

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Type Update Change OpenSSF
fumadocs-mdx (source) dependencies major 13.0.815.0.7 OpenSSF Scorecard
fumadocs-typescript (source) dependencies major 4.0.145.2.6 OpenSSF Scorecard

Release Notes

fuma-nama/fumadocs (fumadocs-mdx)

v15.0.7

Compare Source

Patch Changes
  • 768b676: Standardize structuredData in page data
  • Updated dependencies [768b676]
    • fumadocs-core@​16.8.12

v15.0.6

Compare Source

Patch Changes

v15.0.5

Compare Source

Patch Changes
  • 1fb6a61: Support custom base directory for content sources

v15.0.4

Compare Source

Patch Changes
  • 819b6ec: Support Rolldown integration

v15.0.3

Compare Source

Patch Changes
  • 2569154: Pre-generate Vite config to prevent CJS compat issues
  • Updated dependencies [062beab]
  • Updated dependencies [505cfe0]
    • fumadocs-core@​16.8.10

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

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At 12:00 AM through 04:59 AM and 10:00 PM through 11:59 PM, Monday through Friday (* 0-4,22-23 * * 1-5)
    • Only on Sunday and Saturday (* * * * 0,6)
  • 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.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • 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 added the dependencies Dependency updates label Oct 22, 2025
@github-actions github-actions Bot added qa:running QA workflow is currently running qa:failed QA workflow failed status:ready-for-review Pull request is ready for review and removed qa:running QA workflow is currently running labels Oct 22, 2025

@cubic-dev-ai cubic-dev-ai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No issues found across 2 files

@renovate renovate Bot force-pushed the renovate/major-fumadocs-packages branch from 4683135 to 36bbd4a Compare October 23, 2025 04:32
@github-actions github-actions Bot added qa:running QA workflow is currently running qa:failed QA workflow failed and removed qa:failed QA workflow failed qa:running QA workflow is currently running labels Oct 23, 2025
@renovate renovate Bot force-pushed the renovate/major-fumadocs-packages branch from 36bbd4a to e7183e6 Compare October 23, 2025 11:37
@github-actions github-actions Bot added qa:running QA workflow is currently running qa:failed QA workflow failed and removed qa:failed QA workflow failed qa:running QA workflow is currently running labels Oct 23, 2025
@renovate renovate Bot force-pushed the renovate/major-fumadocs-packages branch from e7183e6 to 46bbdb1 Compare October 23, 2025 15:58
@github-actions github-actions Bot added qa:running QA workflow is currently running qa:failed QA workflow failed and removed qa:failed QA workflow failed qa:running QA workflow is currently running labels Oct 23, 2025
@renovate renovate Bot force-pushed the renovate/major-fumadocs-packages branch from 46bbdb1 to 190a8b2 Compare October 25, 2025 18:48
@github-actions github-actions Bot added qa:running QA workflow is currently running qa:failed QA workflow failed and removed qa:failed QA workflow failed qa:running QA workflow is currently running labels Oct 25, 2025
@renovate renovate Bot force-pushed the renovate/major-fumadocs-packages branch from 190a8b2 to 7a3ce46 Compare October 26, 2025 19:32
@github-actions github-actions Bot added qa:running QA workflow is currently running and removed qa:failed QA workflow failed qa:running QA workflow is currently running labels Oct 26, 2025
@renovate renovate Bot force-pushed the renovate/major-fumadocs-packages branch from c1a33f6 to 38bef0d Compare November 1, 2025 11:35
@github-actions github-actions Bot added qa:running QA workflow is currently running qa:failed QA workflow failed and removed qa:failed QA workflow failed qa:running QA workflow is currently running labels Nov 1, 2025
@renovate renovate Bot force-pushed the renovate/major-fumadocs-packages branch from 38bef0d to 719381b Compare November 3, 2025 07:58
@github-actions github-actions Bot added qa:running QA workflow is currently running qa:failed QA workflow failed and removed qa:failed QA workflow failed qa:running QA workflow is currently running labels Nov 3, 2025
@renovate renovate Bot force-pushed the renovate/major-fumadocs-packages branch from 719381b to fe7241e Compare November 4, 2025 07:56
@github-actions github-actions Bot added qa:running QA workflow is currently running qa:failed QA workflow failed and removed qa:failed QA workflow failed qa:running QA workflow is currently running labels Nov 4, 2025
@renovate renovate Bot force-pushed the renovate/major-fumadocs-packages branch from fe7241e to f03ed52 Compare November 4, 2025 08:44
@github-actions github-actions Bot added qa:running QA workflow is currently running qa:failed QA workflow failed and removed qa:failed QA workflow failed qa:running QA workflow is currently running labels Nov 4, 2025
@renovate renovate Bot force-pushed the renovate/major-fumadocs-packages branch from f03ed52 to ca6dfcc Compare November 7, 2025 17:41
@github-actions github-actions Bot added qa:running QA workflow is currently running qa:failed QA workflow failed and removed qa:failed QA workflow failed qa:running QA workflow is currently running labels Nov 7, 2025
Comment thread bun.lock
Comment on lines 813 to 819

"chevrotain-allstar": ["chevrotain-allstar@0.3.1", "", { "dependencies": { "lodash-es": "^4.17.21" }, "peerDependencies": { "chevrotain": "^11.0.0" } }, "sha512-b7g+y9A0v4mxCW1qUhf3BSVPg+/NvGErk/dOkrDaHA0nQIQGAtrOjlX//9OQtRlSCy+x9rfB5N8yC71lH1nvMw=="],

"chokidar": ["chokidar@4.0.3", "", { "dependencies": { "readdirp": "^4.0.1" } }, "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA=="],
"chokidar": ["chokidar@5.0.0", "", { "dependencies": { "readdirp": "^5.0.0" } }, "sha512-TQMmc3w+5AxjpL8iIiwebF73dRDF4fBIieAqGn9RGCWaEVwQ6Fb2cGe31Yns0RRIzii5goJ1Y7xbMwo1TxMplw=="],

"class-variance-authority": ["class-variance-authority@0.7.1", "", { "dependencies": { "clsx": "^2.1.1" } }, "sha512-Ka+9Trutv7G8M6WT6SeiRWz792K5qEqIGEGzXKhAE6xOWAY6pPH8U+9IY3oCMv6kqTmLsv7Xh/2w2RigkePMsg=="],

This comment was marked as outdated.

Comment thread bun.lock
Comment on lines 815 to 821

"chevrotain-allstar": ["chevrotain-allstar@0.3.1", "", { "dependencies": { "lodash-es": "^4.17.21" }, "peerDependencies": { "chevrotain": "^11.0.0" } }, "sha512-b7g+y9A0v4mxCW1qUhf3BSVPg+/NvGErk/dOkrDaHA0nQIQGAtrOjlX//9OQtRlSCy+x9rfB5N8yC71lH1nvMw=="],

"chokidar": ["chokidar@4.0.3", "", { "dependencies": { "readdirp": "^4.0.1" } }, "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA=="],
"chokidar": ["chokidar@5.0.0", "", { "dependencies": { "readdirp": "^5.0.0" } }, "sha512-TQMmc3w+5AxjpL8iIiwebF73dRDF4fBIieAqGn9RGCWaEVwQ6Fb2cGe31Yns0RRIzii5goJ1Y7xbMwo1TxMplw=="],

"class-variance-authority": ["class-variance-authority@0.7.1", "", { "dependencies": { "clsx": "^2.1.1" } }, "sha512-Ka+9Trutv7G8M6WT6SeiRWz792K5qEqIGEGzXKhAE6xOWAY6pPH8U+9IY3oCMv6kqTmLsv7Xh/2w2RigkePMsg=="],

This comment was marked as outdated.

Comment thread package.json Outdated
"fumadocs-core": "16.3.2",
"fumadocs-mdx": "13.0.8",
"fumadocs-typescript": "4.0.14",
"fumadocs-mdx": "14.2.2",

This comment was marked as outdated.

Comment thread package.json Outdated
"fumadocs-mdx": "13.0.8",
"fumadocs-typescript": "4.0.14",
"fumadocs-mdx": "14.2.3",
"fumadocs-typescript": "5.0.0",

This comment was marked as outdated.

@socket-security

socket-security Bot commented Apr 1, 2026

Copy link
Copy Markdown

Review the following changes in direct dependencies. Learn more about Socket for GitHub.

Diff Package Supply Chain
Security
Vulnerability Quality Maintenance License
Updatedfumadocs-typescript@​4.0.14 ⏵ 5.2.698 +11007196 +3100
Updatedfumadocs-mdx@​13.0.8 ⏵ 14.3.19810072 -296 +1100

View full report

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Dependency updates qa:running QA workflow is currently running status:ready-for-review Pull request is ready for review

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants