New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@graphql-markdown/printer-legacy

Package Overview
Dependencies
Maintainers
0
Versions
37
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@graphql-markdown/printer-legacy - npm Package Versions

134

1.6.0

Diff
edno
published 1.6.0 •

Changelog

Source

1.6.0 - 2021-11-16

This version comes with a new feature for grouping documentation using GraphQL directives, by @coder2034. You can read more about it in the documentation, and you can see a demo here.

edno
published 1.5.3 •

Changelog

Source

1.5.3 - 2021-10-24

🔴 The package is missing assets/generated.md, this can be fixed using the homepage option and downloading the missing file here. (#371)

edno
published 1.5.2 •
edno
published 1.5.1 •

Changelog

Source

1.5.1 - 2021-10-19

edno
published 1.5.0 •

Changelog

Source

1.5.0 - 2021-10-09

💥 BREAKING CHANGE💥

Starting version 1.5.0, docusaurus2-graphql-doc-generator only provides graphql-file-loader document loader out-of-the-box. Thus, by default, the schema default loading expects a local GraphQL schema definition file (*.graphql).

See loaders option documentation in README file.

For a full compatibility with previous versions, add the following packages to your Docusaurus project:

yarn add @graphql-tools/url-loader @graphql-tools/json-file-loader

Once installed, you can declare both loaders into docusaurus2-graphql-doc-generator configuration:

plugins: [
  [
    '@edno/docusaurus2-graphql-doc-generator',
    {
      //... existing configuration
      loaders: {
        UrlLoader: "@graphql-tools/url-loader",
        JsonFileLoader: "@graphql-tools/json-file-loader"
      }
    },
  ],
]

Note, you don't need to re-declare graphql-file-loader since it is provided out-of-the-box.

Why this change?

There are several reasons behing this change:

  • Reducing dependencies footprint and management
  • More flexibility as more GraphQL document loaders become available
  • Preparation work for version 2.0

Other changes

More dependencies removed: moment, chalk (replaced by picocolors), colors (replaced by picocolors).

[Changes][1.5.0]

<a id="1.4.3"></a>

edno
published 1.5.0-next.0 •
edno
published 1.4.3 •

Changelog

Source

1.4.3 - 2021-10-04

Technical maintenance:

  • Improve devx (CI, testing)
  • Update dependencies
  • Remove extra files from package (reduced size by about 5kB)

[Changes][1.4.3]

<a id="1.4.2"></a>

edno
published 1.4.2 •

Changelog

Source

1.4.2 - 2021-09-09

Reduce the size of the package from 348 kB to 44.6 kB.

[Changes][1.4.2]

<a id="1.4.1"></a>

edno
published 1.4.1 •

Changelog

Source

1.4.1 - 2021-09-06

Fix issues with Windows OS (#201, #287, #288).

[Changes][1.4.1]

<a id="1.4.0"></a>

edno
published 1.4.0 •

Changelog

Source

1.4.0 - 2021-08-15

@jineshshah36 spotted a bug (#234) and submitted a fix that was worth another release 😃

  • Fix default value handling for Int when not set (#235 by @jineshshah36)

  • Upgrade graphql-tools to version 7.

[Changes][1.4.0]

<a id="1.3.1"></a>