Skip to content

Commit

Permalink
Version Packages (#42)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] authored Nov 24, 2021
1 parent 2d12b92 commit 73752a4
Show file tree
Hide file tree
Showing 7 changed files with 24 additions and 32 deletions.
7 changes: 0 additions & 7 deletions .changeset/grumpy-toys-peel.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/itchy-snails-sleep.md

This file was deleted.

8 changes: 0 additions & 8 deletions .changeset/many-olives-eat.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/popular-peaches-shave.md

This file was deleted.

21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# graphql-executor

## 0.0.9

### Patch Changes

- 797ee218: Memoize field lists created by the collectFields utility function.

This allows functions that operate on these field lists to be memoized.

- 6bb42abe: Refactor mapAsyncIterator to use a Repeater implementation

This is a breaking change as the generator returned by mapAsyncIterator will now (correctly) not support concurrent next() and throw() calls. As the generator returned by calls to execute should rarely be used with throw(), this breaking change should have little impact.

- f6d0b735: Support incremental delivery with defer/stream directives

Port of https://github.com/graphql/graphql-js/pull/2839
defer/stream support is enabled by default, but can be disabled using the `disableIncremental` argument.

- 7aaffa24: BREAKING CHANGE: `execute` now executes subscriptions as subscriptions, not queries, unless the new `forceQueryAlgorithm` option is set to true. The `subscribe` function has been removed.

Executing a subscription with improper arguments now throws an error (rather than returning a promise that rejects with an error), aligning execution of subscriptions to that of queries and mutations.

## 0.0.8

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "graphql-executor",
"version": "0.0.8",
"version": "0.0.9",
"description": "A customizable GraphQL Spec compliant Executor class.",
"license": "MIT",
"main": "index",
Expand Down

0 comments on commit 73752a4

Please sign in to comment.