8000 fix(deps): update dependency fumadocs-core to v15 by renovate[bot] · Pull Request #283 · nexmoe/vscode-monitor-pro · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

fix(deps): update dependency fumadocs-core to v15 #283

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 G 8000 itHub”, 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 Jan 29, 2025

This PR contains the following updates:

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

Release Notes

fuma-nama/fumadocs (fumadocs-core)

v15.5.5

Compare Source

Patch Changes
  • 0d3f76b: Fix wrong indexing of file system

v15.5.4

Compare Source

Patch Changes
  • 35c3c0b: Support handling duplicated slugs and conflicts such as dir/index.mdx vs dir.mdx

v15.5.3

Compare Source

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

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

v15.4.2

Compare Source

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

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

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
  • 4ae7b4a: Support MDX in codeblock tab value

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

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

v15.2.6

Compare Source

Patch Changes
  • d49f9ae: Fix order of <I18nProvider />
  • b07e98c: fix loader().getNodePage() returning undefined for other locales
  • 3a4bd88: Fix wrong index files output in i18n page tree generation

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

v15.2.3

Compare Source

v15.2.2

Compare Source

Patch Changes
  • 0829544: deprecate blockScrollingWidth in favour of removeScrollOn

v15.2.1

Compare Source

v15.2.0

Compare Source

Minor Changes
  • 2fd325c: Enable lazy on rehypeCode by default
  • a7cf4fa: Support other frameworks via FrameworkProvider

v15.1.3

Compare Source

Patch Changes
  • b734f92: support mdxJsxFlowElement in remarkStructure

v15.1.2

Compare Source

Patch Changes
  • 3f580c4: Support directory-based i18n routing

v15.1.1

Compare Source

Patch Changes
  • c5add28: use internal store for Shiki highlighter instances
  • f3cde4f: Support markdown files with default local code in file name
  • 7c8a690: Improve file info interface
  • b812457: Remove Next.js usage from search server

v15.1.0

Compare Source

Minor Changes
  • f491f6f: Lazy build page tree by default
  • f491f6f: Support getPageByHref() on loader API
Patch Changes
  • f491f6f: Fix findNeighbour() doesn't exclude other nodes of another root

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
  • 72f79cf: Support Orama Cloud crawler index

v15.0.16

Compare Source

v15.0.15

Compare Source

Patch Changes
  • 9f6d39a: Fix peer deps
  • 2035cb1: remove hook-level cache from useDocsSearch()

v15.0.14

Compare Source

Patch Changes
  • 37dc0a6: Update image-size to v2
  • 796cc5e: Upgrade to Orama v3
  • 2cc0be5: Support to add custom serialization to remarkStructure via data._string

v15.0.13

Compare Source

v15.0.12

Compare Source

Patch Changes
  • 3534a10: Move fumadocs-core highlighting utils to fumadocs-core/highlight and fumadocs-core/highlight/client
  • 93952db: Generate a $id attribute to page tree nodes

v15.0.11

Compare Source

v15.0.10

Compare Source

Patch Changes
  • d95c21f: add initOrama option to static client

v15.0.9

Compare Source

v15.0.8

Compare Source

v15.0.7

Compare Source

Patch Changes
  • 5deaf40: Support icons in separators of meta.json

v15.0.6

Compare Source

Patch Changes
  • 08236e1: Support custom toc settings in headings
  • a06af26: Support pages without title

v15.0.5

Compare Source

v15.0.4

Compare Source

v15.0.3

Compare Source

v15.0.2

Compare Source

v15.0.1

Compare Source

v15.0.0

Compare Source

Minor Changes
  • 581f4a5: Support code block tabs without hardcoding <Tabs /> items

    migrate: Use the remarkCodeTab plugin.

    before:

    import { Tab, Tabs } from 'fumadocs-ui/components/tabs';
    
    <Tabs items={["Tab 1", "Tab 2"]}>
    
    ```ts tab
    console.log('A');
    ```
    
    ```ts tab
    console.log('B');
    ```
    
    </Tabs>

    after:

    import { Tab, Tabs } from 'fumadocs-ui/components/tabs';
    
    ```ts tab="Tab 1"
    console.log('A');
    ```
    
    ```ts tab="Tab 2"
    console.log('B');
    ```
Patch Changes
  • 5b8cca8: Fix remarkAdmonition missing some types from Docusaurus
  • a763058: Support reversed rest items in meta.json

v14.7.7

Compare Source

v14.7.6

Compare Source

Patch Changes

v14.7.5

Compare Source

Patch Changes
  • 777188b: [Page Tree Builder] Inline folders without children

v14.7.4

Compare Source

Patch Changes
  • bb73a72: Fix search params being ignored in middleware redirection
  • 69bd4fe: Support source.getPageTree() function

v14.7.3

Compare Source

Patch Changes

v14.7.2

Compare Source

Patch Changes
  • 14b280c: Revert default i18n config

v14.7.1

Compare Source

Patch Changes
  • 72dc093: Add chinese i18n configuration for Orama search if not specified

v14.7.0

Compare Source

Minor Changes
  • 97ed36c: Remove defaults from loader and deprecate rootDir options

v14.6.8

Compare Source

v14.6.7

Compare Source

Patch Changes

v14.6.6

Compare Source

v14.6.5

Compare Source

Patch Changes

v14.6.4

Compare Source

Patch Changes
  • b71064a: Support remark plugins & vfile input on getTableOfContents

v14.6.3

Compare Source

v14.6.2

Compare Source

Patch Changes
  • 2357d40: Fix typings of HighlightOptions

v14.6.1

Compare Source

v14.6.0

Compare Source

Minor Changes
  • bebb16b: Add support for pre-rendering to useShiki hook
  • 050b326: Support codeblock tab meta without value
Patch Changes
  • 4dfde6b: support additional components option of Orama search
  • 4766292: Support React 19

v14.5.6

Compare Source

Patch Changes
  • 9a18c14: Downgrade Orama to v2 to fix external tokenizers

v14.5.5

Compare Source

v14.5.4

Compare Source

v14.5.3

Compare Source

v14.5.2

Compare Source

v14.5.1

Compare Source

v14.5.0

Compare Source

v14.4.2

Compare Source

v14.4.1

Compare Source

v14.4.0

Compare Source

v14.3.1

Compare Source

v14.3.0

Compare Source

v14.2.1

Compare Source

Patch Changes
  • ca94bfd: Support sync usage of getTableOfContents

v14.2.0

Compare Source

Minor Changes
  • e248a0f: Support Orama Cloud integration

v14.1.1

Patch Changes
  • 1573d63: Support URL format publicDir in Remark Image plugin

v14.0.1

Compare Source

v14.0.0

Compare Source

Major Changes
  • e45bc67: Remove deprecated fumadocs-core/middleware export

    migrate: Use fumadocs-core/i18n.

  • d9e908e: Remove deprecated languages and defaultLanguage option from loader

    migrate: Use I18n config API

  • 9a0b09f: Change usage of useDocsSearch

    why: Allow static search

    migrate:

    Pass client option, it can be algolia, static, or fetch (default).

    import { useDocsSearch } from 'fumadocs-core/search/client';
    
    const { search,
    8000
     setSearch, query } = useDocsSearch({
      type: 'fetch',
      api: '/api/search', // optional
    });
  • 9a0b09f: Remove Algolia Search Client

    why: Replace by the new search client

    migrate:

    import { useDocsSearch } from 'fumadocs-core/search/client';
    
    const { search, setSearch, query } = useDocsSearch({
      type: 'algolia',
      index,
      ...searchOptions,
    });
  • 9a0b09f: Refactor import path of fumadocs-core/search-algolia/server to fumadocs-core/search/algolia

  • d9e908e: Improved usage for createI18nSearchAPI (replaced createI18nSearchAPIExperimental)

  • d9e908e: Replace fumadocs-core/search/shared with fumadocs-core/server

Minor Changes
  • d9e908e: Create search api from source (Support i18n without modifying search route handler)
  • 367f4c3: Support referencing original page/meta from page tree nodes
  • e1ee822: Support hast nodes in toc variable
  • 979e301: Replace flexearch with Orama
  • 979e301: Support static search (without server)
  • d9e908e: Support creating metadata API from sources
Patch Changes
  • f949520: Support Shiki diff transformer
  • e612f2a: Make compatible with Next.js 15
  • 8ef00dc: Apply hideLocale to Source getPage APIs
  • 15781f0: Fix breadcrumb empty when includePage isn't specified
  • be820c4: Bump deps

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 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
cloudflare-workers-and-pages bot commented Jan 29, 2025

Deploying vscode-monitor-pro with  Cloudflare Pages  Cloudflare Pages

Latest commit: 0344a30
Status:🚫  Build failed.

View logs

@renovate renovate bot force-pushed the renovate/fumadocs-core-15.x branch 10 times, most recently from db14c84 to 6675c32 Compare February 7, 2025 20:32
@renovate renovate bot force-pushed the renovate/fumadocs-core-15.x branch 8 times, most recently from a081f04 to 97a8a5c Compare February 14, 2025 15:24
@renovate renovate bot force-pushed the renovate/fumadocs-core-15.x branch 6 times, most recently from f719844 to f712847 Compare February 22, 2025 18:24
8000
@renovate renovate bot force-pushed the renovate/fumadocs-core-15.x branch 5 times, most recently from 57e5316 to 89dc9e9 Compare March 1, 2025 14:03
@renovate renovate bot force-pushed the renovate/fumadocs-core-15.x branch 6 times, most recently from 9bc87ef to 73e9427 Compare June 7, 2025 00:54
@renovate renovate bot force-pushed the renovate/fumadocs-core-15.x branch 9 times, most recently from 9c6be19 to f53a63d Compare June 17, 2025 03:44
@renovate renovate bot force-pushed the renovate/fumadocs-core-15.x branch 8 times, most recently from 4bbcc23 to 7dac18a Compare June 22, 2025 14:50
@renovate renovate bot force-pushed the renovate/fumadocs-core-15.x branch 5 times, most recently from 61e3e9f to d11154a Compare June 27, 2025 14:43
@renovate renovate bot force-pushed the renovate/fumadocs-core-15.x branch from d11154a to 0344a30 Compare June 28, 2025 00:56
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects 40AA
None yet
Development

Successfully merging this pull request may close these issues.

0 participants
0