Skip to content

fix(deps): update dependency fumadocs-ui to v15.5.1 #27

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 28, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
fumadocs-ui (source) 15.2.6 -> 15.5.1 age adoption passing confidence

Release Notes

fuma-nama/fumadocs (fumadocs-ui)

v15.5.1

Compare Source

Patch Changes
  • b4916d2: Move hide-if-empty component to Fumadocs Core

  • 8738b9c: Always encode generated slugs for non-ASCII characters in loader()

  • a66886b: Deprecate other parameters for useDocsSearch()

    The new usage passes options to a single object, improving the readability:

    import { useDocsSearch } from 'fumadocs-core/search/client';
    
    const { search, setSearch, query } = useDocsSearch({
      type: 'fetch',
      locale: 'optional',
      tag: 'optional',
      delayMs: 100,
      allowEmpty: false,
    });

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

v15.4.2

Compare Source

Patch Changes

v15.4.1

Compare Source

Patch Changes

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]

v15.3.4

Compare Source

Patch Changes

v15.3.3

Compare Source

Patch Changes
  • 4ae7b4a: Support MDX in codeblock tab value

v15.3.2

Compare Source

Patch Changes
  • c25d678: Support Shiki focus notation transformer by default

v15.3.1

Compare Source

Patch Changes

v15.3.0

Compare Source

Patch Changes
  • c05dc03: Improve error message of remark image

v15.2.15

Compare Source

Patch Changes
  • 50db874: Remove placeholder space for codeblocks
  • 79e75c3: Improve default MDX attribute indexing strategy for remarkStructure

v15.2.14

Compare Source

Patch Changes

v15.2.13

Compare Source

v15.2.12

Compare Source

Patch Changes
  • acff667: Deprecate createFromSource(source, pageToIndex, options)

    Migrate:

    import { source } from '@&#8203;/lib/source';
    import { createFromSource } from 'fumadocs-core/search/server';
    
    // from
    export const { GET } = createFromSource(
      source,
      (page) => ({
        title: page.data.title,
        description: page.data.description,
        url: page.url,
        id: page.url,
        structuredData: page.data.structuredData,
        // use your desired value, like page.slugs[0]
        tag: '<value>',
      }),
      {
        // options
      },
    );
    
    // to
    export const { GET } = createFromSource(source, {
      buildIndex(page) {
        return {
          title: page.data.title,
          description: page.data.description,
          url: page.url,
          id: page.url,
          structuredData: page.data.structuredData,
          // use your desired value, like page.slugs[0]
          tag: '<value>',
        };
      },
      // other options
    });

v15.2.11

Compare Source

Patch Changes
  • 07cd690: Support separators without name

v15.2.10

Compare Source

v15.2.9

Compare Source

v15.2.8

Compare Source

v15.2.7

Compare Source

Patch Changes
  • ec85a6c: support more options on remarkStructure
  • e1a61bf: Support remarkSteps plugin

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.

Copy link

netlify bot commented May 28, 2025

Deploy Preview for magenta-pie-0e591c failed. Why did it fail? →

Name Link
🔨 Latest commit 58ef5c2
🔍 Latest deploy log https://app.netlify.com/projects/magenta-pie-0e591c/deploys/68459e6e60f84900088c53a6

@renovate renovate bot force-pushed the renovate/fumadocs-ui-15.x branch 2 times, most recently from f59c597 to f444c56 Compare June 1, 2025 13:43
@renovate renovate bot changed the title fix(deps): update dependency fumadocs-ui to v15.4.2 fix(deps): update dependency fumadocs-ui to v15.5.0 Jun 1, 2025
@renovate renovate bot force-pushed the renovate/fumadocs-ui-15.x branch 4 times, most recently from 3fbeacc to d0f3d20 Compare June 5, 2025 16:05
@renovate renovate bot changed the title fix(deps): update dependency fumadocs-ui to v15.5.0 fix(deps): update dependency fumadocs-ui to v15.5.1 Jun 5, 2025
@renovate renovate bot force-pushed the renovate/fumadocs-ui-15.x branch from d0f3d20 to 58ef5c2 Compare June 8, 2025 14:30
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