Skip to content

Releases: timothyarmes/apongo

Bug fixes

29 Jan 07:49
Compare
Choose a tag to compare

Fixes another error (introduced in 2.0.1) related to removing empty objects.

2.0.1

28 Jan 11:12
Compare
Choose a tag to compare

Fixes an issue whereby a deep object fetch on a null object returned {} instead of null.

Dependency updates

25 Jun 13:01
Compare
Choose a tag to compare

Breaking change

Apongo now uses @graphql-tool/utils v6, which needs to be installed as a peer dependency.

1.2.0

08 Jun 10:11
Compare
Choose a tag to compare

Added sort and limit options to lookup, so that we can simulate a findOne

1.1.3

06 Mar 13:06
Compare
Choose a tag to compare

Bug fixes

Empty fields weren't always removed after a deep join

1.1.0

21 Feb 13:25
Compare
Choose a tag to compare

Breaking changes

A very small API change. Apongo now exports apongoDirectives rather than apongoDirective. Your code should be changed from:

const schema = makeExecutableSchema({
  ...
  schemaDirectives: { apongo: apongoDirective },
});

to

const schema = makeExecutableSchema({
  ...
  schemaDirectives: { ...apongoDirectives },
});

This modification removes any temptation to rename the directive, since its name is actually required to be apongo by the code base.

1.0.2

20 Feb 18:01
Compare
Choose a tag to compare

Fixes

  • Fixed an incorrect expectation of the JSON type.

Changes

  • Improved documentation
  • Added unit test framework with basic tests

1.0.1

18 Feb 12:42
Compare
Choose a tag to compare

Unfortunately 1.0.0 was released incorrectly and didn't work at all due to the GraphQL type declaration not
being exported.

This release fixes the issue and updates the documentation.