Skip to content
This repository has been archived by the owner on Dec 20, 2024. It is now read-only.

fix(deps): update dependency @guild-docs/client to v3 #252

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 8, 2022

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@guild-docs/client 1.3.2 -> 3.1.0 age adoption passing confidence

Release Notes

the-guild-org/the-guild-docs (@​guild-docs/client)

v3.1.0

Compare Source

3.1.0

Minor Changes
  • 7fd6c80: Change default text font to Inter and code to Menlo

v3.0.2

Compare Source

3.0.2

Patch Changes
  • c82e243: fix this weird thing that does not cause any runtime errors within the example app in this repo but breaks graphql-yoga.

    Original error

    Unhandled Runtime Error
    Error: Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got: object.
    
    Check the render method of `Giscus`.
    

v3.0.1

Compare Source

3.0.1

Patch Changes
  • ed86c4f: fix this weird thing that does not cause any runtime errors within the example app in this repo but breaks graphql-yoga.

    Original error

    Unhandled Runtime Error
    Error: Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got: object.
    
    Check the render method of `Pagination`.
    

v3.0.0

Compare Source

3.0.0

Major Changes
  • abd721f: move pagination to the end of the content instead of to the toc
Minor Changes
  • 8b6aef2: Edit on GitHub

    Now it's possible to add an "edit this page on GitHub" button.

    import Head from 'next/head';
    import type { GetStaticPaths, GetStaticProps } from 'next';
    import { DocsContent, DocsTOC, MDXPage, EditOnGitHubButton } from '@​guild-docs/client';
    import { MDXPaths, MDXProps } from '@​guild-docs/server';
    import { getRoutes } from '../../../routes';
    
    export default MDXPage(function PostPage({ content, TOC, MetaHead, BottomNavigation, sourceFilePath }) {
      return (
        <>
          <Head>{MetaHead}</Head>
          <DocsContent>{content}</DocsContent>
          <DocsTOC>
            <TOC />
            <BottomNavigation />
            <EditOnGitHubButton
              repo="the-guild-org/the-guild-docs"
              baseDir="examples/basic"
              branch="main"
              sourceFilePath={sourceFilePath}
            />
          </DocsTOC>
        </>
      );
    });
Patch Changes

v2.1.1

Compare Source

2.1.1

Patch Changes

v2.1.0

Compare Source

2.1.0

Minor Changes
  • c999a12: Introduce useGoogleAnalytics hook

v2.0.2

Compare Source

2.0.2

Patch Changes
  • 0df56e5: fix(esm): fix mermaid version and prevent further renovate auto updates

v2.0.1

Compare Source

2.0.1

Patch Changes
  • bfe8a83: Lazy load an image in NPMBadge component

v2.0.0

Compare Source

2.0.0

Major Changes
  • 228b9cf: Use MDX 2 🎉

    • Requires Next.js v12
    • Requires "@&#8203;mdx-js/react": "^2.0.0"
    • Removed support for remark-admonitions due to compatibility issues (and it stopped being maintained at April 28th, 2020)
Minor Changes
  • 228b9cf: feat(client): add support for mermaid-js
Patch Changes

v1.4.0

Compare Source

1.4.0

Minor Changes
  • a5804b8: New "giscus" integration, a comments system powered by GitHub Discussions.

    import Head from 'next/head';
    
    import { DocsContent, DocsTOC, MDXPage } from '@&#8203;guild-docs/client';
    import { MDXPaths, MDXProps } from '@&#8203;guild-docs/server';
    
    import { getRoutes } from '../../../routes';
    
    import type { GetStaticPaths, GetStaticProps } from 'next';
    
    export default MDXPage(
      function PostPage({ content, TOC, MetaHead, BottomNavigation }) {
        return (
          <>
            <Head>{MetaHead}</Head>
            <DocsContent>{content}</DocsContent>
            <DocsTOC>
              <TOC />
              <BottomNavigation />
            </DocsTOC>
          </>
        );
      },
      {
        giscus: {
          repo: '[ENTER_REPO_HERE]',
          repoId: '[ENTER REPO ID HERE]',
          category: '[ENTER CATEGORY NAME HERE]',
          categoryId: '[ENTER CATEGORY ID HERE]',
        },
      }
    );

    The configuration of Giscus has to be made following the https://giscus.app instructions:

    Giscus Configuration!

v1.3.4

Compare Source

1.3.4

Patch Changes

v1.3.3

Compare Source

1.3.3

Patch Changes

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 has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot added the dependencies Pull requests that update a dependency file label Jul 8, 2022
@renovate renovate bot force-pushed the renovate/guild-docs-client-3.x branch from 236442a to e7905b4 Compare November 20, 2022 13:56
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
dependencies Pull requests that update a dependency file
Development

Successfully merging this pull request may close these issues.

0 participants