Skip to content

Releases: apollographql/graphql-subscriptions

3.0.0

11 Nov 21:51
d74107c
Compare
Choose a tag to compare

Breaking Changes

  • Replaced iterall with native Symbol.asyncIterator. PubSubEngine.asyncIterator is now PubSubEngine.asyncIterableIterator by @n1ru4l in #232

Other Changes

Full Changelog: v2.0.0...v3.0.0

2.0.0

23 Nov 02:04
Compare
Choose a tag to compare
  • Support graphql@16; does not support graphql older than 15.7.2.

1.1.0

02 Apr 16:26
Compare
Choose a tag to compare
  • Fix #132 - withFilter was previously always passing undefined as its first argument to the filterFn.
  • Partially attempt to fix #143 - try to reduce occurrence of certain memory leaks with the built-in PubSubEngine implementation.
  • Replaced eventEmitterAsyncIterator with default generic AsyncIterator named PubSubAsyncIterator. extends PubSubEngine automatically uses generic implementation. No breaking changes for those who continue to use implements PubSubEngine. See PR #78.

1.0.0

26 Sep 02:20
87b8d8e
Compare
Choose a tag to compare

Breaking Change

Updates

  • Bump versions of various devDependencies to fix security issues, use
    newer tslint config.
    @grantwwu in #163
  • Allows graphql 14 as a peer dep, forces graphql 14 as a dev dep, and
    has been updated to use @types/graphql 14.
    @hwillson in #172

0.5.8

22 Feb 12:43
ae033f9
Compare
Choose a tag to compare

0.5.8

  • Bump iterall version

0.5.5

21 Nov 16:49
e57f4eb
Compare
Choose a tag to compare

0.5.5

  • FilterFn can return a Promise
  • Allow passing in a custom EventEmitter to PubSub

0.5.4

06 Oct 17:29
Compare
Choose a tag to compare

0.5.4

  • Better define withFilter return type PR #111

0.5.3

28 Sep 22:32
Compare
Choose a tag to compare

0.5.3

  • Require iterall ^1.1.3 to address unhandled exceptions

0.5.2

27 Sep 20:22
Compare
Choose a tag to compare

0.5.2

  • Require iterall ^1.1.2 to address memory leak [Issue #97] (#97)
  • Remove @types/graphql dependency. [PR #105] (#105)

0.5.1

19 Sep 13:24
Compare
Choose a tag to compare

0.5.1

  • withFilter now called with (rootValue, args, context, info) [PR #103] (#103)