Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented May 25, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
fumadocs-core (source) 15.3.4 -> 15.4.2 age adoption passing confidence

Release Notes

fuma-nama/fumadocs (fumadocs-core)

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

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 01f74af to bfc2209 Compare May 26, 2025 12:10
@renovate renovate bot changed the title fix(deps): update dependency fumadocs-core to v15.4.0 fix(deps): update dependency fumadocs-core to v15.4.1 May 26, 2025
@renovate renovate bot force-pushed the renovate/fumadocs-core-15.x branch from bfc2209 to 8357f92 Compare May 26, 2025 15:58
@renovate renovate bot changed the title fix(deps): update dependency fumadocs-core to v15.4.1 fix(deps): update dependency fumadocs-core to v15.4.2 May 27, 2025
@renovate renovate bot force-pushed the renovate/fumadocs-core-15.x branch from 8357f92 to 8497730 Compare May 27, 2025 20:21
@LuggaPugga LuggaPugga merged commit d0c2436 into main May 28, 2025
2 checks passed
@LuggaPugga LuggaPugga deleted the renovate/fumadocs-core-15.x branch May 28, 2025 10:41
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.

2 participants