Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 21, 2025

This PR contains the following updates:

Package Change Age Confidence
fumadocs-core (source) 15.6.12 -> 15.8.5 age confidence

Release Notes

fuma-nama/fumadocs (fumadocs-core)

v15.8.4

Compare Source

Patch Changes
  • ce2be59: Loader Plugin: support name & config options
  • 31b9494: Support multiple() for multiple sources in same loader()

v15.8.3

Compare Source

Patch Changes

v15.8.2

Compare Source

Patch Changes
  • ad9a004: Deprecate fumadocs-core/server export

    It will be removed on Fumadocs 16, as some APIs under the /server export are actually available (and even used) under browser environment.

    A more modularized design will be introduced over the original naming.

    • getGithubLastEdit: Moved to fumadocs-core/content/github.
    • getTableOfContents: Moved to fumadocs-core/content/toc.
    • PageTree and page tree utilities: Moved to fumadocs-core/page-tree.
    • TOCItemType, TableOfContents: Moved to fumadocs-core/toc.
    • createMetadataImage: Deprecated, use the Next.js Metadata API instead.
  • 90cf1fe: Support Negotiation API

  • 747bdbc: Support lucide react icons plugin for loader()

v15.8.1

Compare Source

Patch Changes
  • 71bce86: Make loader().getPages() to return pages from all languages when locale is not specified
  • f04547f: Publish plugins API on loader()

v15.8.0

Compare Source

Minor Changes
  • d1ae3e8: Move SortedResult and other search-related types to fumadocs-core/search

    This also exposed the search result highlighter API, you may now use it for highlighting results of your own search integration

    Old export will be kept until the next major release.

  • 51268ec: Breadcrumbs API: default includePage to false.

Patch Changes
  • 655bb46: [Internal] parseCodeBlockAttributes include null values, restrict rehype-code to only parse title and tab attributes.
  • 6548a59: Support breadcrumbs for Search API
  • 51268ec: Breadcrumbs API: Fix root folders being filtered when includeRoot is set to true.

v15.7.13

Compare Source

Patch Changes
  • Updated dependencies [982aed6]
    • fumadocs-core@​15.7.13

v15.7.12

Compare Source

Patch Changes
  • 846b28a: Support multiple codeblocks in same tab
  • 2b30315: Support mode option in search server

v15.7.11

Compare Source

Patch Changes
  • 9304db9: Improve type table spacing
  • dd7338b: Fix inline code styles
    • fumadocs-core@​15.7.11

v15.7.10

Compare Source

Patch Changes
  • Updated dependencies [c948f59]
    • fumadocs-core@​15.7.10

v15.7.9

Compare Source

Patch Changes
  • 45c7531: Type Table: Support displaying parameters & return types
  • 4082acc: Redesign Type Table
  • Updated dependencies [d135efd]
  • Updated dependencies [4082acc]
    • fumadocs-core@​15.7.9

v15.7.8

Compare Source

Patch Changes
  • ba3382f: Support link item properties in menu items
  • efba995: Enforce the use of --removed-body-scroll-bar-size to fixed elements
  • bec3b36: Use on-root: to apply CSS variables from child layout components
  • Updated dependencies [f65778d]
  • Updated dependencies [e4c12a3]
    • fumadocs-core@​15.7.8

v15.7.7

Compare Source

Patch Changes
  • Updated dependencies [0b53056]
  • Updated dependencies [3490285]
    • fumadocs-core@​15.7.7

v15.7.6

Compare Source

Patch Changes
  • dc6d8a0: unify sidebar tabs matching
    • fumadocs-core@​15.7.6

v15.7.5

Compare Source

Patch Changes
  • cedc494: Hotfix URL normalization logic
  • Updated dependencies [cedc494]
    • fumadocs-core@​15.7.5

v15.7.4

Compare Source

Patch Changes
  • 302cdc2: Use position: fixed for TOC
  • 02d3453: Make codeblocks flat & improve paddings
    • fumadocs-core@​15.7.4

v15.7.3

Compare Source

Patch Changes
  • f6de900: Add overscroll to sidebar viewports
  • Updated dependencies [6d97379]
  • Updated dependencies [e776ee5]
    • fumadocs-core@​15.7.3

v15.7.2

Compare Source

Patch Changes
  • Updated dependencies [88b5a4e]
  • Updated dependencies [039b24b]
  • Updated dependencies [08eee2b]
    • fumadocs-core@​15.7.2

v15.7.1

Compare Source

Patch Changes
  • b4e6147: Fix sidebar & animation bugs
  • Updated dependencies [195b090]
  • Updated dependencies [e1c84a2]
    • fumadocs-core@​15.7.1

v15.7.0

Compare Source

Minor Changes
  • e785f98: Introduce page tree fallback API

    Page tree is a tree structure.

    Previously, when an item is excluded from page tree, it is isolated entirely that you cannot display it at all.

    With the new fallback API, isolated pages will go into fallback page tree instead:

    {
      "children": [
        {
          "type": "page",
          "name": "Introduction"
        }
      ],
      "fallback": {
        "children": [
          {
            "type": "page",
            "name": "Hidden Page"
          }
        ]
      }
    }

    Items in fallback are invisible unless you've opened its item.

  • 50eb07f: Support type-safe i18n config

    // lib/source.ts
    import { defineI18n } from 'fumadocs-core/i18n';
    
    export const i18n = defineI18n({
      defaultLanguage: 'en',
      languages: ['en', 'cn'],
    });
    // root layout
    import { defineI18nUI } from 'fumadocs-ui/i18n';
    import { i18n } from '@​/lib/i18n';
    
    const { provider } = defineI18nUI(i18n, {
      translations: {
        cn: {
          displayName: 'Chinese',
          search: 'Translated Content',
        },
        en: {
          displayName: 'English',
        },
      },
    });
    
    function RootLayout({ children }: { children: React.ReactNode }) {
      return <RootProvider i18n={provider(lang)}>{children}</RootProvider>;
    }

    Although optional, we highly recommend you to refactor the import to i18n middleware:

    // here!
    import { createI18nMiddleware } from 'fumadocs-core/i18n/middleware';
    import { i18n } from '@&#8203;/lib/i18n';
    
    export default createI18nMiddleware(i18n);
Patch Changes
  • b109d06: Redesign useShiki & <DynamicCodeBlock /> to use React 19 hooks
  • b99cf51: Shadcn UI theme: support sidebar specific colors
  • Updated dependencies [514052e]
  • Updated dependencies [e254c65]
  • Updated dependencies [ec75601]
  • Updated dependencies [e785f98]
  • Updated dependencies [0531bf4]
  • Updated dependencies [50eb07f]
  • Updated dependencies [67df155]
  • Updated dependencies [b109d06]
    • fumadocs-core@​15.7.0

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.

@renovate renovate bot force-pushed the renovate/fumadocs-core-15.x branch from 760aac7 to 41d9da7 Compare August 22, 2025 10:12
@renovate renovate bot changed the title fix(deps): update dependency fumadocs-core to v15.7.0 fix(deps): update dependency fumadocs-core to v15.7.1 Aug 22, 2025
Copy link

github-actions bot commented Aug 22, 2025

Build Status: Failed!

  • ❌ Build encountered errors
  • 🔍 Please check the workflow logs for details

📝 Latest commit: 658cf83
⏰ Updated: 2025-10-08 13:55:02 UTC

@renovate renovate bot force-pushed the renovate/fumadocs-core-15.x branch from 41d9da7 to 2b259ce Compare August 23, 2025 05:24
@renovate renovate bot changed the title fix(deps): update dependency fumadocs-core to v15.7.1 fix(deps): update dependency fumadocs-core to v15.7.2 Aug 24, 2025
@renovate renovate bot force-pushed the renovate/fumadocs-core-15.x branch 2 times, most recently from f7e49f1 to 78efd07 Compare August 27, 2025 07:35
@renovate renovate bot changed the title fix(deps): update dependency fumadocs-core to v15.7.2 fix(deps): update dependency fumadocs-core to v15.7.3 Aug 27, 2025
@renovate renovate bot force-pushed the renovate/fumadocs-core-15.x branch 2 times, most recently from 419251f to 2818e5f Compare August 28, 2025 07:20
@renovate renovate bot changed the title fix(deps): update dependency fumadocs-core to v15.7.3 fix(deps): update dependency fumadocs-core to v15.7.4 Aug 28, 2025
@renovate renovate bot force-pushed the renovate/fumadocs-core-15.x branch 2 times, most recently from 787002a to c62b7c7 Compare August 29, 2025 06:12
@renovate renovate bot changed the title fix(deps): update dependency fumadocs-core to v15.7.4 fix(deps): update dependency fumadocs-core to v15.7.5 Aug 29, 2025
@renovate renovate bot force-pushed the renovate/fumadocs-core-15.x branch 2 times, most recently from 45904d7 to dfd9e78 Compare August 31, 2025 09:14
@renovate renovate bot changed the title fix(deps): update dependency fumadocs-core to v15.7.5 fix(deps): update dependency fumadocs-core to v15.7.6 Aug 31, 2025
@renovate renovate bot force-pushed the renovate/fumadocs-core-15.x branch from dfd9e78 to d9a9217 Compare August 31, 2025 13:28
@renovate renovate bot changed the title fix(deps): update dependency fumadocs-core to v15.7.6 fix(deps): update dependency fumadocs-core to v15.7.7 Aug 31, 2025
@renovate renovate bot changed the title fix(deps): update dependency fumadocs-core to v15.7.7 fix(deps): update dependency fumadocs-core to v15.7.8 Sep 2, 2025
@renovate renovate bot force-pushed the renovate/fumadocs-core-15.x branch 4 times, most recently from c4ee244 to 0bb1338 Compare September 5, 2025 18:05
@renovate renovate bot changed the title fix(deps): update dependency fumadocs-core to v15.7.8 fix(deps): update dependency fumadocs-core to v15.7.9 Sep 5, 2025
@renovate renovate bot force-pushed the renovate/fumadocs-core-15.x branch from 0bb1338 to 3449910 Compare September 6, 2025 10:34
@renovate renovate bot changed the title fix(deps): update dependency fumadocs-core to v15.7.9 fix(deps): update dependency fumadocs-core to v15.7.10 Sep 6, 2025
@renovate renovate bot force-pushed the renovate/fumadocs-core-15.x branch 3 times, most recently from 2f2a138 to 635eaa4 Compare September 10, 2025 13:46
@renovate renovate bot changed the title fix(deps): update dependency fumadocs-core to v15.7.10 fix(deps): update dependency fumadocs-core to v15.7.11 Sep 10, 2025
@renovate renovate bot force-pushed the renovate/fumadocs-core-15.x branch 2 times, most recently from 7a4743c to 2c1edac Compare September 16, 2025 03:43
@renovate renovate bot changed the title fix(deps): update dependency fumadocs-core to v15.7.11 fix(deps): update dependency fumadocs-core to v15.7.12 Sep 16, 2025
@renovate renovate bot force-pushed the renovate/fumadocs-core-15.x branch from 2c1edac to f6690f7 Compare September 18, 2025 04:31
@renovate renovate bot changed the title fix(deps): update dependency fumadocs-core to v15.7.12 fix(deps): update dependency fumadocs-core to v15.7.13 Sep 19, 2025
@renovate renovate bot force-pushed the renovate/fumadocs-core-15.x branch 2 times, most recently from 36dc21e to a3af2ee Compare September 24, 2025 13:05
@renovate renovate bot changed the title fix(deps): update dependency fumadocs-core to v15.7.13 fix(deps): update dependency fumadocs-core to v15.8.0 Sep 24, 2025
@renovate renovate bot force-pushed the renovate/fumadocs-core-15.x branch 2 times, most recently from a4e7b0e to 0c32956 Compare September 27, 2025 13:53
@renovate renovate bot changed the title fix(deps): update dependency fumadocs-core to v15.8.0 fix(deps): update dependency fumadocs-core to v15.8.1 Sep 27, 2025
@renovate renovate bot force-pushed the renovate/fumadocs-core-15.x branch from 0c32956 to c1666d8 Compare October 1, 2025 20:43
@renovate renovate bot changed the title fix(deps): update dependency fumadocs-core to v15.8.1 fix(deps): update dependency fumadocs-core to v15.8.2 Oct 1, 2025
@renovate renovate bot force-pushed the renovate/fumadocs-core-15.x branch from c1666d8 to e656701 Compare October 3, 2025 12:56
@renovate renovate bot changed the title fix(deps): update dependency fumadocs-core to v15.8.2 fix(deps): update dependency fumadocs-core to v15.8.3 Oct 3, 2025
@renovate renovate bot force-pushed the renovate/fumadocs-core-15.x branch from e656701 to 40cd4f3 Compare October 6, 2025 16:22
@renovate renovate bot changed the title fix(deps): update dependency fumadocs-core to v15.8.3 fix(deps): update dependency fumadocs-core to v15.8.4 Oct 6, 2025
@renovate renovate bot force-pushed the renovate/fumadocs-core-15.x branch from 40cd4f3 to d80977b Compare October 8, 2025 13:53
@renovate renovate bot changed the title fix(deps): update dependency fumadocs-core to v15.8.4 fix(deps): update dependency fumadocs-core to v15.8.5 Oct 8, 2025
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