Skip to content

Latest commit

 

History

History
234 lines (156 loc) · 8.47 KB

CHANGELOG.md

File metadata and controls

234 lines (156 loc) · 8.47 KB

2.3.1

  • Dependency updates

2.3.0

  • Support Logo and Favicon Base64 embedding, as well as URL specification. #807

2.2.1

  • Fix publishing and installation process. #876

2.2.0

  • Fix/add support for EnumValues.
  • Non-zero exit code when there's an error.
  • Fix scrollspy issue. #852 Thanks @MarcEspiard
  • Dependency updates.

2.1.1

  • Fix cross-OS bug where rm was used. #837
  • Dependency updates

2.1.0

  • Add support for inputValueDeprecation
  • Dependency updates

2.0.9

  • Add info.contact.url to the templates

2.0.8

  • Dependency updates

2.0.7

  • Dependency updates

2.0.6

  • Dependency updates

2.0.5

  • Remove foundation-sites dependency

2.0.4

  • Update dependencies.
  • Fix typos in documentation.

2.0.3

  • Bugfix: dynamic import on Windows machines: #627
  • Update dependencies.

2.0.2

  • Exit with an explicit 0 code when no need to build vendor packages. #606

2.0.1

  • All lifecycle scripts only use npm (never yarn).

2.0.0

  • BREAKING CHANGE: Drops support for Node 12. Requires Node >=14.
  • BREAKING CHANGE: Requires npm >= 7.
  • BREAKING CHANGE: The run and loadData commands are now asynchronous and return a promise.
  • Fixes myriad bugs.
  • Adds better support for various example generation scenarios.
  • BREAKING CHANGE: Subscriptions are now listed under Operations, immediately after Queries and Mutations, in the default theme.
  • BREAKING CHANGE: No external fonts can be loaded in the included themes, so the loadExternalFont option was removed.
  • config yaml will have environment variable substitution performed.
  • config yaml can now be specified as a CLI option (-c or --config), instead of only as the first argument.
  • Themes written as ESM/.mjs modules are now supported.
  • BREAKING CHANGE: Accessibility improvements for <h> tags deeper than <h6> using the aria-level attribute.
  • embeddable, oneFile and targetDir are now options that can be specified in the config yaml (previously was only CLI).
  • targetDir can be set to null in order to not write any output to a user directory.
  • BREAKING CHANGE: headers CLI option is now -H instead of -A
  • Moves a number of unmaintained Grunt dependencies "in-house" so that they can be updated for vulnerabilities and bugs.
  • BREAKING CHANGE: Dropped support for accidental queryNameStategy option. 🤦
  • BREAKING CHANGE: Expects node 16 when cloning and developing on this repo.

1.5.9

  • Updated dependencies.

1.5.8

  • Add option to disable 3rd party font request in some built-in themes via the loadExternalFont option. #556

1.5.7

  • Default a few deconstructed object params to be an empty object. #553
  • Fix bug where config and SDL files were not being properly watched in some cases. #554
  • Fix bug, now allow anything but undefined to be used as an example. #547

1.5.6

  • Re-publish after some reverts

1.5.5

  • Dependency updates
  • Last LTS for 1.x and Node 12

1.5.4

  • Dependency updates
  • Option to have run resolve with an object containing the outputs. #497

1.5.3

  • Dependency updates
  • Better support for parsing @spectaql directive options. #462 Thanks @kylebjordahl

1.5.2

  • Add option to remove unused types.
  • Updated microfiber to add support for usage of INTERFACES to count as usage of the types that implement them.

1.5.1

  • Dependency updates
  • Added examples and better support for various things in the metadata.json file, as well as examples.

1.5.0

  • Support for metadata via the @spectaql directive. #439

1.4.2

  • Dependency updates
  • Accessibility improvements. #397

1.4.1

1.4.0

  • Add support for inline fragments for Union queries. #407

1.3.0

  • Add (back) support for Interfaces.
  • Dependency updates to remove warnings.

1.2.4

  • Handles defaults with enumerated types better. #400

1.2.3

  • Checks for "lengthy" fields on a Type when determining how to handle fragmentation and expansion in example queries. #385

1.2.2

  • Added displayAllServers option. #381
  • Added errorOnInterpolationReferenceNotFound option. #380

1.2.1

  • Added logoHeightPx and removed logoMaxHeightPx.

1.2.0

  • Added a custom.scss file to the default theme to allow for simple theme customizations to easily get ohter CSS updates.
  • Added a logoMaxHeightPx option to set the logo's max-height property.
  • Added scrollPaddingTopPx option to set the scroll-padding-top property for when there's a Nav bar situation.

1.1.5

  • CSS will be concatenated with SpectaQL's css coming before other CSS. #353

1.1.4

  • Re-published from borked publish of 1.1.3

1.1.3

  • Updated dependencies.
  • Fixed bug where List return type for Query or Mutation was not working properly. #342
  • Fixed navigation bug. #343

1.1.2

  • Fixed mismatched header tags
  • Fixed name of queryNameStrategy options

1.1.1

  • Added augmentData to exports.
  • Updated dependencies.

1.1.0

  • Added option for "fieldExpansionDepth". #302

1.0.14

  • Bug fix: scrolling issues in Firefox. #299

1.0.12

  • Update microfiber to include bugfix.

1.0.11

  • Bug fix: Windows absolute path bug. #288

1.0.10

  • Dependency updates

1.0.9

  • Bug fixes: Overflow text. SVG logos. Slow resize. #286

1.0.8

  • Add support for query name strategies. #282
  • Bug fix: support examples from metatdata for Scalars. #283
  • Bug fix: themeDir from CLI support. #284
  • Bug fix: Reference interpolation. #285

1.0.7

  • Lots of dependency updates.

1.0.6

  • Add some basic support for Headers in the server info area.
  • Bug fix: Examples array problem. #265

1.0.1-1.0.5

  • Bug fix: Bad path resolution. #258
  • Bug fix: Bad path resolution. #257
  • Bad publish of 1.0.3.
  • Bug fix: Put back Glob support for multiple GraphQL files.
  • Bug fix: GraphQL Scalar example bug. #262

spectaql was in a "beta" state in all versions before 1.0.0. If you were using a version before 1.0.0 you will want to have a look at these breaking changes that may impact you.

Some notable additions/enhancements to 1.0.0 are:

  • When used in a node project, there are a few more exports now:
    • run: same as the default export that will build everything if you pass it sane options.
    • parseCliOptions: used to parse the CLI arguments into sane arguments to be passed to run.
    • loadData: bascially does all the processing that SpectaQL would do with gathering and processing the data right up to the point where SpectaQL would start to generate the HTML, etc.
    • buildSchemas: Does a bit less than loadData in that it will take the provided options and return an augmented Introspection Query Response as well as a GraphQL Schema instance.
    • Choose from several built-in "themes", tweak the default theme, or completely change things up with your own theme! See the /examples/themes/README.md for more.