Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@graphql-markdown/docusaurus

Package Overview
Dependencies
Maintainers
0
Versions
41
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@graphql-markdown/docusaurus - npm Package Versions

1235

1.16.7

Diff

Changelog

Source

1.16.7 - 2023-03-28

What's Changed

:bug: Fix undefined on undeclared root type instead of empty object reported by @LunaticMuch in #802

This release has some significant code refactoring. If you experience regressions with this release, please report them.

edno
published 1.16.6 •

Changelog

Source

1.16.6 - 2023-02-12

What's Changed

:bug: Fix the support of skipDocDirective on fields, reported by @jroith in #777.

edno
published 1.16.5 •

Changelog

Source

1.16.5 - 2023-02-04

What's Changed

🐛 fix undefined css class on returned types and related types badges.

edno
published 1.16.4 •

Changelog

Source

1.16.4 - 2023-02-03

🤩 @carolstran fixed a long due DOM warning where class was used instead of className in React MDX component.

What's Changed

edno
published 1.16.3 •

Changelog

Source

1.16.3 - 2023-01-13

What's Changed

Fix issue on root scalar types null when using JSON schema loader by @melvey 🐛

edno
published 1.16.2 •

Changelog

Source

1.16.2 - 2023-01-07

What's Changed

  • :construction_worker: add custom workspace dep checker by @edno in #726
  • chore(deps): update dependency @graphql-tools/graphql-file-loader to v7.5.13 by @renovate in #730
  • chore(deps): update dependency prettier to v2.8.1 by @renovate in #731
  • 📦 npm(deps): Bump @graphql-tools/load from 7.8.6 to 7.8.8 by @dependabot in #733
  • 📦 npm(deps): Bump json5 from 1.0.1 to 1.0.2 by @dependabot in #743
  • 📦 npm(deps): Bump json5 from 1.0.1 to 1.0.2 by @dependabot in #747
  • chore(deps): update dependency prettier to v2.8.2 by @renovate in #748

Full Changelog: https://github.com/graphql-markdown/graphql-markdown/compare/1.16.1...1.16.2

[Changes][1.16.2]

<a id="1.16.1"></a>

edno
published 1.16.1 •

Changelog

Source

1.16.1 - 2022-11-28

💥 HOTFIX for release 1.16.0

See 1.16.0 release notes for changes.

edno
published 1.16.0 •

Changelog

Source

1.16.0 - 2022-11-28

DO NOT USE! Broken package @graphql-markdown/core@1.1.0 fixed with release 1.16.1

What's Changed

✨ Directives are now printed with on location information, eg:

directive @example on
  | FIELD
  | FRAGMENT_SPREAD
  | INLINE_FRAGMENT

🪄 Support excluding types by directive, see doc.

edno
published 1.15.1 •

Changelog

Source

@graphql-markdown/docusaurus@1.15.1

@graphql-markdown/docusaurus is now a micro package part of the graphql-markdown packages ecosystem ✨

‼️ Breaking changes ‼️

  • @graphql-tools/graphql-file-loader is no more a dependency and must be installed separately in your Docusaurus installation.

    npm i @graphql-tools/graphql-file-loader
    

    Explicitly declare the loader in your @graphql-markdown/docusaurus plugin configuration, see the doc.

    module.exports = {
     // ...
     plugins: [
       [
         "@graphql-markdown/docusaurus",
         {
           schema: "./schema/swapi.graphql",
           rootPath: "./docs", // docs will be generated under './docs/swapi' (rootPath/baseURL)
           baseURL: "swapi",
           homepage: "./docs/swapi.md",
           loaders: {
             GraphQLFileLoader: "@graphql-tools/graphql-file-loader" // local file schema
           }
         },
       ],
     ],
    };
    
  • diffMethod is now set to NONE (disabled) by default. If you miss it, see the doc.

edno
published 1.15.0 •

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc