Skip to content

Latest commit

 

History

History
53 lines (26 loc) · 2.64 KB

CHANGELOG.md

File metadata and controls

53 lines (26 loc) · 2.64 KB

Changelog

0.5.0 (2021-09-25)

⚠ BREAKING CHANGES

  • extensions: ExtensionObject.schema?: GraphQLSchema got replaced by ExtensionObject.typeDefs?: TypeSource.
  • extensions: ExtensionObject.resolvers?: any is now ExtensionObject.resolvers?: IResolvers. This shouldn't cause any breaking changes for working extensions, but narrows the type to only valid resolver functions, meaning invalid extensions could break from this change.

Features

  • extensions: ✨ Make onRemove callback function optional in ExtensionObject (ad1e44d)

Bug Fixes

  • extensions: 💥 Fix ExtensionObject.resolvers type (977d710)
  • extensions: 💥 Rename ExtensionObject.schema to ExtensionObject.typeDefs (977d710)

meta

0.4.0 (2021-09-25)

Features

  • ✨ Allow extension functions to be asynchronous (returning a Promise<ExtensionObject>) (a957259)

0.3.1 (2021-09-20)

Bug Fixes

  • 🔖 Re-release to ensure consistency across registries (6085013)

0.3.0 (2021-09-20)

Features

  • 🎉 Relaunch initial commit (dc6f69d)
  • Add types from the Extension API (43dcbce)
  • Update Extension API Types (13ad425)

Bug Fixes

  • extensions: 🚑 Fix wrong types and add missing docs to Extension API types (a4661d0)
  • Fix async problems in Extension API Types (3d0b6c6)