Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 3, 2025

Coming soon: The Renovate bot (GitHub App) will be renamed to Mend. PRs from Renovate will soon appear from 'Mend'. Learn more here.

This PR contains the following updates:

Package Change Age Confidence
fumadocs-core (source) ^15.0.11 -> ^15.8.1 age confidence

Release Notes

fuma-nama/fumadocs (fumadocs-core)

v15.8.1

Compare Source

Patch Changes
  • Updated dependencies [71bce86]
  • Updated dependencies [f04547f]
    • fumadocs-core@​15.8.1

v15.8.0

Compare Source

Patch Changes
  • 53a0635: Support custom action type search item in search dialog
  • 6548a59: Support breadcrumbs for Search API
  • Updated dependencies [655bb46]
  • Updated dependencies [d1ae3e8]
  • Updated dependencies [6548a59]
  • Updated dependencies [51268ec]
  • Updated dependencies [51268ec]
    • fumadocs-core@​15.8.0

v15.7.13

Compare Source

Patch Changes
  • 982aed6: Fix source.getPageByHref() return no result without explicit language

v15.7.12

Compare Source

Patch Changes
  • 846b28a: Support multiple codeblocks in same tab
  • Updated dependencies [846b28a]
  • Updated dependencies [2b30315]
    • fumadocs-core@​15.7.12

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
  • f65778d: Link improve external link detection by enabling it on any protocols
  • e4c12a3: Add framework adapters to optional peer deps

v15.7.7

Compare Source

Patch Changes
  • 0b53056: Support remarkMdxMermaid - convert mermaid codeblocks into <Mermaid /> component
  • 3490285: Support remarkMdxFiles - convert files codeblocks into <Files /> component

v15.7.6

Compare Source

v15.7.5

Compare Source

Patch Changes
  • cedc494: Hotfix URL normalization logic

v15.7.4

Compare Source

v15.7.3

Compare Source

Patch Changes
  • 6d97379: unify remark nodes parsing & improve types
  • e776ee5: Fix langAlias not being passed to Shiki rehype plugin

v15.7.2

Compare Source

Patch Changes
  • 88b5a4e: Fix duplicate pages in page tree when referencing subpage in meta.json and using ... or adding the subfolder again
  • 039b24b: Fix failed to update page tree from loader()
  • 08eee2b: [remark-npm] Enable npm install prefix fallback only on old alias

v15.7.1

Compare Source

Patch Changes
  • 195b090: Support a list of source for loader() API
  • e1c84a2: Support fallbackLanguage for loader() i18n API

v15.7.0

Compare Source

Minor Changes
  • 514052e: Include locale code into page.path

    Previously when i18n is enabled, page.path is not equal to the virtual file paths you passed into loader():

    const source = loader({
      source: {
        files: [
          {
            path: 'folder/index.cn.mdx',
            // ...
          },
        ],
      },
    });
    
    console.log(source.getPages('cn'));
    // path: folder/index.mdx

    This can be confusing, the only solution to obtain the original path was page.absolutePath.

    From now, the page.path will also include the locale code:

    const source = loader({
      source: {
        files: [
          {
            path: 'folder/index.cn.mdx',
            // ...
          },
        ],
      },
    });
    
    console.log(source.getPages('cn'));
    // path: folder/index.cn.mdx

    While this change doesn't affect intended API usages, it may lead to minor bugs when advanced usage/hacks involved around page.path.

  • 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.

  • 0531bf4: Introduce page tree transformer API

    You can now define page tree transformer.

    export const source = loader({
      // ...
      pageTree: {
        transformers: [
          {
            root(root) {
              return root;
            },
            file(node, file) {
              return node;
            },
            folder(node, dir, metaPath) {
              return node;
            },
            separator(node) {
              return node;
            },
          },
        ],
      },
    });
  • 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 '@&#8203;/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
  • e254c65: Simplify Source API storage management
  • ec75601: Support ReactNode for icons in page tree
  • 67df155: createFromSource support async buildIndex and Fumadocs MDX Async Mode
  • b109d06: Redesign useShiki & <DynamicCodeBlock /> to use React 19 hooks

v15.6.12

Compare Source

v15.6.11

Compare Source

v15.6.10

Compare Source

Patch Changes
  • 569bc26: Improve remark-image: (1) append public URL to output src if it is a URL. (2) ignore if failed to obtain SVG size.

  • 817c237: Support search result highlighting.

    Result nodes now have a contentWithHighlights property, you can render it with custom renderer, or a default one provided on Fumadocs UI.

v15.6.9

Compare Source

Patch Changes
  • 0ab2cdd: remove waku & tanstack peer dependency temporarily (see #​2144)

v15.6.8

Compare Source

Patch Changes
  • fumadocs-core@​15.6.8

v15.6.7

Compare Source

Patch Changes
  • e9fef34: Move sidebar toolbar to top on mobile view
  • d4a9037: improve codeblock diff styles
  • Updated dependencies [6fa1442]
    • fumadocs-core@​15.6.7

v15.6.6

Compare Source

Patch Changes
  • 1b0e9d5: Add mixedbread integration

v15.6.5

Compare Source

Patch Changes
  • Updated dependencies [658fa96]
    • fumadocs-core@​15.6.5

v15.6.4

Compare Source

Patch Changes
  • dca17d7: Improve search dialog consistency
    • fumadocs-core@​15.6.4

v15.6.3

Compare Source

Patch Changes
  • a2d7940: Fix layout: remove reserved sidebar space when sidebar is disabled in DocsLayout
    • fumadocs-core@​15.6.3

v15.6.2

Compare Source

Patch Changes
  • 1e50889: Fix mobile sidebar trigger visibility when sidebar is disabled
  • 353c139: Callout add fallback icons
  • 5844c6f: no longer sort type table properties by default
    • fumadocs-core@​15.6.2

v15.6.1

Compare Source

Patch Changes
  • Updated dependencies [1a902ff]
    • fumadocs-core@​15.6.1

v15.6.0

Compare Source

Minor Changes
  • f8d1709: Redesigned Codeblock Tabs

    Instead of relying on Tabs component, it supports a dedicated tabs component for codeblocks:

    <CodeBlockTabs>
      <CodeBlockTabsList>
        <CodeBlockTabsTrigger value="value">Name</CodeBlockTabsTrigger>
      </CodeBlockTabsList>
      <CodeBlockTab value="value" asChild>
        <CodeBlock>...</CodeBlock>
      </CodeBlockTab>
    </CodeBlockTabs>

    The old usage is not deprecated, you can still use them while Fumadocs' remark plugins will generate codeblock tabs using the new way.

Patch Changes
  • bf15617: Fix Notebook layout minor UI inconsistency
  • Updated dependencies [d0f8a15]
  • Updated dependencies [84918b8]
  • Updated dependencies [f8d1709]
    • fumadocs-core@​15.6.0

v15.5.5

Compare Source

Patch Changes
  • e9b1c9c: Support rainbowColors API in <Banner /> component
  • d5c9b11: Fix Notebook Layout tab mode navbar cannot handle nested tabs
  • Updated dependencies [0d3f76b]
    • fumadocs-core@​15.5.5

v15.5.4

Compare Source

Patch Changes
  • 4a1d3cf: Reduce sidebar intensity
  • 58b7596: Fix copying line breaks with Twoslash codeblocks
  • Updated dependencies [35c3c0b]
    • fumadocs-core@​15.5.4

v15.5.3

Compare Source

Patch Changes
  • Updated dependencies [7d1ac21]
    • fumadocs-core@​15.5.3

v15.5.2

Compare Source

Patch Changes
  • b675728: Redesign search dialog style
  • 1b7bc4b: Add @types/react to optional peer dependency to avoid version conflict in monorepos
  • 82fc4c8: Avoid direct update to passed props.
  • Updated dependencies [7a45921]
  • Updated dependencies [1b7bc4b]
    • fumadocs-core@​15.5.2

v15.5.1

Compare Source

Patch Changes
  • b4916d2: Move hide-if-empty component to Fumadocs Core
  • 68526ea: Redesign fumadocs-ui/components/dialog/search usage to make it composable, and mark it as stable API.
  • Updated dependencies [b4916d2]
  • Updated dependencies [8738b9c]
  • Updated dependencies [a66886b]
    • fumadocs-core@​15.5.1

v15.5.0

Compare Source

Minor Changes
  • 589d101: Move TOC closer to page body on larger viewports

    Changed layout positioning, all layout components now use fixed position.

    This may impact sites that:

    • using custom styling on Fumadocs layouts.
    • added a custom footer (see below).

    For custom footer, make sure to add them into <DocsLayout /> instead:

    <DocsLayout>
      {children}
      <div className="h-[400px] bg-fd-secondary">Hello World</div>
    </DocsLayout>
Patch Changes
  • 50f8f7f: Update Home Layout navbar design
  • 697d5b4: Support specifying a custom value for Accordion
    • fumadocs-core@​15.5.0

v15.4.2

Compare Source

Patch Changes
  • Updated dependencies [0ab6c7f]
    • fumadocs-core@​15.4.2

v15.4.1

Compare Source

Patch Changes
  • e72b7b4: hotfix: production source map being ignored
    • fumadocs-core@​15.4.1

v15.4.0

Compare Source

Minor Changes
  • 961b67e: Bump algolia search to v5

    This also introduced changes to some APIs since algoliasearch v4 and v5 has many differences.

    Now we highly recommend to pass an index name to sync():

    import { algoliasearch } from 'algoliasearch';
    import { sync } from 'fumadocs-core/search/algolia';
    const client = algoliasearch('id', 'key');
    
    void sync(client, {
      indexName: 'document',
      documents: records,
    });

    For search client, pass them to searchOptions:

    'use client';
    
    import { liteClient } from 'algoliasearch/lite';
    import type { SharedProps } from 'fumadocs-ui/components/dialog/search';
    import SearchDialog from 'fumadocs-ui/components/dialog/search-algolia';
    
    const client = liteClient(appId, apiKey);
    
    export default function CustomSearchDialog(props: SharedProps) {
      return (
        <SearchDialog
          searchOptions={{
            client,
            indexName: 'document',
          }}
          {...props}
          showAlgolia
        />
      );
    }
Patch Changes
  • 092fd04: Fallback to dangerouslySetInnerHTML for inlined scripts for backward compatibility
  • 7d78bc5: Improve createRelativeLink and getPageByHref for i18n usage
  • Updated dependencies [1b999eb]
  • Updated dependencies [961b67e]
  • Updated dependencies [7d78bc5]
    • fumadocs-core@​15.4.0

v15.3.4

Compare Source

Patch Changes
  • e0c2a92: Improve UI consistency
  • 71fc1a5: Mount all children of tabs by default
    • fumadocs-core@​15.3.4

v15.3.3

Compare Source

Patch Changes
  • 05b3bd9: [Internal] require TagsListItem to be used with TagsList
  • 39bf088: Support usage with Tabs in primitive way
  • e955a98: Hotfix problems with HideIfEmpty
  • Updated dependencies [4ae7b4a]
    • fumadocs-core@​15.3.3

v15.3.2

Compare Source

Patch Changes
  • 1753cf1: Fix navbar external items and nav menu scroll
  • 9b38baf: add success type to callout
  • 8e862e5: Use native scroll bar for codeblocks and some elements for better performance
  • ac0ab12: Improve performance by reducing usage of @radix-ui/react-scroll-area
  • c25d678: Support Shiki focus notation transformer by default
  • Updated dependencies [c25d678]
    • fumadocs-core@​15.3.2

v15.3.1

Compare Source

Patch Changes
  • 3372792: Support line numbers in codeblock
  • Updated dependencies [3372792]
    • fumadocs-core@​15.3.1

v15.3.0

Compare Source

Minor Changes
  • 52b5ad8: Redesign mobile sidebar

    Mobile sidebar is now a separate component from the desktop one, with its own id nd-sidebar-mobile.

    note to advanced use cases: Fumadocs UI now stopped using fumadocs-core/sidebar, avoid using the primitive directly as provider is not used.

Patch Changes
  • abce713: Adjust design (Accordion, Tabs, border color of themes)
  • Updated dependencies [c05dc03]
    • fumadocs-core@​15.3.0

v15.2.15

Compare Source

Patch Changes
  • 50db874: Remove placeholder space for codeblocks
  • Updated dependencies [50db874]
  • Updated dependencies [79e75c3]
    • fumadocs-core@​15.2.15

v15.2.14

Compare Source

Patch Changes
  • Updated dependencies [6ea1718]
    • fumadocs-core@​15.2.14

v15.2.13

Compare Source

Patch Changes
  • b433d93: Recommend using custom button/link instead for edit on GitHub button
  • 1e07ed8: Support disabling codeblock styles with .not-fumadocs-codeblock
    • fumadocs-core@​15.2.13

v15.2.12

Compare Source

Patch Changes
  • b68bb51: Fix sidebar legacy behaviours
  • 127e681: Fix Notebook layout ignores themeSwitch and sidebar.collapsible on nav mode
  • Updated dependencies [acff667]
    • fumadocs-core@​15.2.12

v15.2.11

Compare Source

Patch Changes
  • d4d1ba7: Fix sidebar collapsible control search button still visible with search disabled
  • 4e62b41: Bundle lucide-react as part of library
  • 07cd690: Support separators without name
  • Updated dependencies [07cd690]
    • fumadocs-core@​15.2.11

v15.2.10

Compare Source

Patch Changes
  • 3a5595a: Support deprecated properties in Type Table
  • 8c9fc1f: Fix callout margin
    • fumadocs-core@​15.2.10

v15.2.9

Compare Source

Patch Changes
  • e72af4b: Improve layout
  • ea0f468: Fix relative file href with hash
  • 7f3c30e: Add shadcn.css preset
    • fumadocs-core@​15.2.9

v15.2.8

Compare Source

Patch Changes
  • 4fad539: fix TOC relative position
  • a673ef4: Make @source in global.css optional
    • fumadocs-core@​15.2.8

v15.2.7

Compare Source

Patch Changes
  • eb18da9: Support searchToggle option to customise search toggle
  • 085e39f: Fix inline code issues
  • 4d50bcf: fix banner overlapping with collapsible control
  • Updated dependencies [ec85a6c]
  • Updated dependencies [e1a61bf]
    • fumadocs-core@​15.2.7

v15.2.6

Compare Source

Patch Changes

v15.2.5

Compare Source

Patch Changes
  • Updated dependencies [c66ed79]
    • fumadocs-core@​15.2.5

v15.2.4

Compare Source

Patch Changes
  • 1057957: Fix type problems on dynamic codeblock
  • Updated dependencies [1057957]
    • fumadocs-core@​15.2.4

v15.2.3

Compare Source

Patch Changes
  • 5e4e9ec: Deprecate I18nProvider in favour of <RootProvider /> i18n prop
  • 293178f: revert framework migration on i18n provider
    • fumadocs-core@​15.2.3

v15.2.2

Compare Source

Patch Changes
  • 0829544: Remove unused registry files from dist
  • Updated dependencies [0829544]
    • fumadocs-core@​15.2.2

v15.2.1

Compare Source

Patch Changes
  • 22aeafb: Improve Tree context performance
    • fumadocs-core@​15.2.1

v15.2.0

Compare Source

Patch Changes
  • c5af09f: UI: Use text.previousPage for previous page navigation
  • Updated dependencies [2fd325c]
  • Updated dependencies [a7cf4fa]
    • fumadocs-core@​15.2.0

v15.1.3

Compare Source

Patch Changes
  • Updated dependencies [b734f92]
    • fumadocs-core@​15.1.3

v15.1.2

Compare Source

Patch Changes
  • 44d5acf: Improve sidebar UI
  • Updated dependencies [3f580c4]
    • fumadocs-core@​15.1.2

v15.1.1

Compare Source

Patch Changes
  • Updated dependencies [c5add28]
  • Updated dependencies [f3cde4f]
  • Updated dependencies [7c8a690]
  • Updated dependencies [b812457]
    • fumadocs-core@​15.1.1

v15.1.0

Compare Source

Patch Changes
  • Updated dependencies [f491f6f]
  • Updated dependencies [f491f6f]
  • Updated dependencies [f491f6f]
    • fumadocs-core@​15.1.0

v15.0.18

Compare Source

Patch Changes
  • e7e2a2a: Support createRelativeLink component factory for using relative file paths in href
    • fumadocs-core@​15.0.18

v15.0.17

Compare Source

Patch Changes
  • b790699: Support themeSwitch option in layouts to customise theme switch
  • Updated dependencies [72f79cf]
    • fumadocs-core@​15.0.17

v15.0.16

Compare Source

Patch Changes
  • fumadocs-core@​15.0.16

v15.0.15

Compare Source

Patch Changes
  • 0e5e14d: Use container media queries on Cards
  • Updated dependencies [9f6d39a]
  • Updated dependencies [2035cb1]
    • fumadocs-core@​15.0.15

v15.0.14

Compare Source

Patch Changes
  • 6bc033a: Display humanized stars number to GitHub info component
  • Updated dependencies [37dc0a6]
  • Updated dependencies [796cc5e]
  • Updated dependencies [2cc0be5]
    • fumadocs-core@​15.0.14

v15.0.13

Compare Source

Patch Changes
  • 7608f4e: Support showing optional properties on TypeTable
  • 89ff3ae: Support GithubInfo component
  • 16c8944: Fix Tailwind CSS utilities
    • fumadocs-core@​15.0.13

v15.0.12

Compare Source

Patch Changes
  • 3534a10: Move fumadocs-core highlighting utils to fumadocs-core/highlight and fumadocs-core/highlight/client
  • ecacb53: Improve performance
  • Updated dependencies [3534a10]
  • Updated dependencies [93952db]
    • fumadocs-core@​15.0.12

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

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.

Copy link

vercel bot commented Aug 3, 2025

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

Project Deployment Preview Comments Updated (UTC)
ui-www Error Error Sep 27, 2025 1:45pm

@renovate renovate bot force-pushed the renovate/fumadocs-core-15.x branch from 9df340e to e8b5b79 Compare August 4, 2025 15:33
@renovate renovate bot changed the title fix(deps): update dependency fumadocs-core to ^15.6.8 fix(deps): update dependency fumadocs-core to ^15.6.9 Aug 4, 2025
@renovate renovate bot force-pushed the renovate/fumadocs-core-15.x branch from e8b5b79 to 2d5768d Compare August 4, 2025 17:29
@renovate renovate bot force-pushed the renovate/fumadocs-core-15.x branch from 2d5768d to 01bd7b3 Compare August 4, 2025 21:21
@renovate renovate bot force-pushed the renovate/fumadocs-core-15.x branch from 01bd7b3 to 5fd5572 Compare August 5, 2025 00:25
@renovate renovate bot force-pushed the renovate/fumadocs-core-15.x branch from 5fd5572 to 36c4a08 Compare August 5, 2025 09:59
@renovate renovate bot force-pushed the renovate/fumadocs-core-15.x branch from 36c4a08 to e3de0e5 Compare August 5, 2025 21:15
@renovate renovate bot force-pushed the renovate/fumadocs-core-15.x branch from e3de0e5 to c464957 Compare August 6, 2025 02:29
@renovate renovate bot force-pushed the renovate/fumadocs-core-15.x branch from c464957 to a859d47 Compare August 7, 2025 01:39
@renovate renovate bot force-pushed the renovate/fumadocs-core-15.x branch from a859d47 to f13d968 Compare August 7, 2025 16:26
@renovate renovate bot force-pushed the renovate/fumadocs-core-15.x branch from f13d968 to b2352c4 Compare August 8, 2025 13:14
@renovate renovate bot force-pushed the renovate/fumadocs-core-15.x branch from b2352c4 to 6a3db28 Compare August 8, 2025 17:14
@renovate renovate bot force-pushed the renovate/fumadocs-core-15.x branch from 6a3db28 to 2a3f6dd Compare August 8, 2025 21:30
@renovate renovate bot force-pushed the renovate/fumadocs-core-15.x branch from 2a3f6dd to 0f78312 Compare August 9, 2025 00:50
@renovate renovate bot force-pushed the renovate/fumadocs-core-15.x branch from 0f78312 to 8db74e6 Compare August 9, 2025 05:14
@renovate renovate bot changed the title fix(deps): update dependency fumadocs-core to ^15.7.4 fix(deps): update dependency fumadocs-core to ^15.7.6 Aug 31, 2025
@renovate renovate bot force-pushed the renovate/fumadocs-core-15.x branch from 8d72452 to 37f132b Compare August 31, 2025 14:43
@renovate renovate bot changed the title fix(deps): update dependency fumadocs-core to ^15.7.6 fix(deps): update dependency fumadocs-core to ^15.7.7 Aug 31, 2025
@renovate renovate bot force-pushed the renovate/fumadocs-core-15.x branch from 37f132b to 1730b0c Compare September 2, 2025 12:31
@renovate renovate bot changed the title fix(deps): update dependency fumadocs-core to ^15.7.7 fix(deps): update dependency fumadocs-core to ^15.7.8 Sep 2, 2025
@renovate renovate bot force-pushed the renovate/fumadocs-core-15.x branch from 1730b0c to 2393c42 Compare September 5, 2025 17:38
@renovate renovate bot changed the title fix(deps): update dependency fumadocs-core to ^15.7.8 fix(deps): update dependency fumadocs-core to ^15.7.9 Sep 5, 2025
@renovate renovate bot force-pushed the renovate/fumadocs-core-15.x branch from 2393c42 to 69d1a7e Compare September 6, 2025 13:00
@renovate renovate bot changed the title fix(deps): update dependency fumadocs-core to ^15.7.9 fix(deps): update dependency fumadocs-core to ^15.7.10 Sep 6, 2025
@renovate renovate bot force-pushed the renovate/fumadocs-core-15.x branch from 69d1a7e to 4bade44 Compare September 10, 2025 13:59
@renovate renovate bot changed the title fix(deps): update dependency fumadocs-core to ^15.7.10 fix(deps): update dependency fumadocs-core to ^15.7.11 Sep 10, 2025
@renovate renovate bot force-pushed the renovate/fumadocs-core-15.x branch from 4bade44 to 0ff412c Compare September 15, 2025 19:51
@renovate renovate bot changed the title fix(deps): update dependency fumadocs-core to ^15.7.11 fix(deps): update dependency fumadocs-core to ^15.7.12 Sep 15, 2025
@renovate renovate bot force-pushed the renovate/fumadocs-core-15.x branch from 0ff412c to fd934c8 Compare September 19, 2025 12:55
@renovate renovate bot changed the title fix(deps): update dependency fumadocs-core to ^15.7.12 fix(deps): update dependency fumadocs-core to ^15.7.13 Sep 19, 2025
@renovate renovate bot force-pushed the renovate/fumadocs-core-15.x branch from fd934c8 to 261ef4b Compare September 24, 2025 13:15
@renovate renovate bot changed the title fix(deps): update dependency fumadocs-core to ^15.7.13 fix(deps): update dependency fumadocs-core to ^15.8.0 Sep 24, 2025
@renovate renovate bot force-pushed the renovate/fumadocs-core-15.x branch from 261ef4b to 3f13ed9 Compare September 27, 2025 13:44
@renovate renovate bot changed the title fix(deps): update dependency fumadocs-core to ^15.8.0 fix(deps): update dependency fumadocs-core to ^15.8.1 Sep 27, 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