Skip to content

fix(deps): update dependency fumadocs-ui to v15.5.3 #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

Closed
wants to merge 1 commit into 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.3 age adoption passing confidence

Release Notes

fuma-nama/fumadocs (fumadocs-ui)

v15.5.3

Compare Source

Patch Changes

v15.5.2

Compare Source

Patch Changes
  • 7a45921: Add absolutePath and path properties to pages, mark file as deprecated
  • 1b7bc4b: Add @types/react to optional peer dependency to avoid version conflict in monorepos

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

v15.4.2

Compare Source

Patch Changes
  • 0ab6c7f: Improve performance by using shallow compare on useOnChange by default

v15.4.1

Compare Source

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
  • 1b999eb: Introduce <Markdown /> component
  • 7d78bc5: Improve createRelativeLink and getPageByHref for i18n usage

v15.3.4

Compare Source

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

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

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
  • 6ea1718: Fix type inference for pageTree.attachFile in loader()

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

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 a533e9b
🔍 Latest deploy log https://app.netlify.com/projects/magenta-pie-0e591c/deploys/68505124ad022300080986d0

@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 5 times, most recently from 2fd522e to 0834e0b Compare June 13, 2025 13:36
@renovate renovate bot changed the title fix(deps): update dependency fumadocs-ui to v15.5.1 fix(deps): update dependency fumadocs-ui to v15.5.2 Jun 14, 2025
@renovate renovate bot force-pushed the renovate/fumadocs-ui-15.x branch from 0834e0b to 4b0d89f Compare June 14, 2025 04:43
@renovate renovate bot changed the title fix(deps): update dependency fumadocs-ui to v15.5.2 fix(deps): update dependency fumadocs-ui to v15.5.3 Jun 16, 2025
@renovate renovate bot force-pushed the renovate/fumadocs-ui-15.x branch from 4b0d89f to a533e9b Compare June 16, 2025 17:15
@renovate renovate bot deleted the renovate/fumadocs-ui-15.x branch June 16, 2025 17:21
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.

1 participant