Skip to content

Releases: miragejs/graphql

Release v0.1.13

30 Jul 12:05
Compare
Choose a tag to compare

This release fixes a bug when resolving list type fields that have a POJO parent.

CHANGELOG

  • #43 [BUGFIX] Fix issue with resolving list types when parent is a POJO
  • #40 [MAINTENANCE] Bumps glob-parent from 5.1.1 to 5.1.2

Release v0.1.12

04 Jun 11:19
Compare
Choose a tag to compare

This release includes a number of dependency updates for security reasons.

CHANGELOG

  • #32 [MAINTENANCE] Bump y18n from 4.0.0 to 4.0.1
  • #36 [MAINTENANCE] Bump lodash from 4.17.19 to 4.17.21
  • #37 [MAINTENANCE] Bump hosted-git-info from 2.8.8 to 2.8.9
  • #38 [MAINTENANCE] Bump browserslist from 4.12.0 to 4.16.6
  • #39 [MAINTENANCE] Bump ws from 7.3.0 to 7.4.6

Release v0.1.11

19 Feb 21:16
Compare
Choose a tag to compare

This release includes a change to the way we create Mirage models. It separates the function that creates Mirage models from the function that registers them. The intention is to allow for things like code generators to import the create model function.

CHANGELOG

  • #30 [ENHANCEMENT] Add ability to create POJO with model info from GraphQL schema

Release v0.1.10

17 Jan 10:11
Compare
Choose a tag to compare

This release upgrades a dependency that had a security vulnerability.

CHANGELOG

  • #28 [MAINTENANCE] Upgrade Jest to 26.6.3

Release v0.1.9

13 Nov 21:44
Compare
Choose a tag to compare

This release fixes a bug with the TypeScript build output regarding resolver arguments.

CHANGELOG

  • #26 [BUGFIX] Update resolver definitions for correct typescript compile

Release v0.1.8

21 Oct 11:47
Compare
Choose a tag to compare

This release fixes a major issue with parsing GraphQL schema passed into request handlers.

CHANGELOG

  • #24 [BUGFIX] Fix issue with parsing GraphQL schemas

Release v0.1.7

20 Oct 16:22
Compare
Choose a tag to compare

This release includes 2 enhancements. It adds the request object from Mirage to the GraphQL resolver context and also adds a TypeScript build to the package distribution.

CHANGELOG

  • #22 [ENHANCEMENT] Add request from Mirage to resolver context
  • #23 [ENHANCEMENT] Basic TypeScript typings

Release v0.1.6

05 Oct 20:01
Compare
Choose a tag to compare

This release fixes an issue when auto-resolving mutations where nullable input types weren't properly identified for create and update type mutations.

CHANGELOG

  • #21 [BUGFIX] Fix getting variable types in auto-mutation resolver

Release v0.1.5

02 Oct 19:19
Compare
Choose a tag to compare

This release fixes a couple of issues:

  • #16, #18 Related union type records were not resolved correctly.
  • #19 There was no filtering of has-many related records.

CHANGELOG

  • #20 [BUGFIX] Fix related record filtering/fix union resolution

Release v0.1.4

25 Sep 15:27
Compare
Choose a tag to compare

This release adds a totalCount field to Relay connections.

CHANGELOG

  • #17 [FEATURE] Add totalCount field to relay connection