@graphql-tools/executor-http
Advanced tools
Comparing version 1.1.10-alpha-e42f414cb8b2f7e9db4c6de2c4f2405fbf925a19 to 1.1.10-alpha-e4c8b5a21a33e9c5e432cf88ae5390c8d4d64c4a
# @graphql-tools/executor-http | ||
## 1.1.10-alpha-e42f414cb8b2f7e9db4c6de2c4f2405fbf925a19 | ||
## 1.1.10-alpha-e4c8b5a21a33e9c5e432cf88ae5390c8d4d64c4a | ||
### Patch Changes | ||
- [#98](https://github.com/graphql-hive/gateway/pull/98) [`359bced`](https://github.com/graphql-hive/gateway/commit/359bceddbf1c8d0c71b7fe557454ead5ed4e2764) Thanks [@ardatan](https://github.com/ardatan)! - Bun support by using native Bun API whenever possible | ||
- [#164](https://github.com/graphql-hive/gateway/pull/164) [`310613d`](https://github.com/graphql-hive/gateway/commit/310613d68d1df3e2bceafbd0730084a4c83527bf) Thanks [@ardatan](https://github.com/ardatan)! - dependencies updates: | ||
- Updated dependency [`@graphql-tools/utils@^10.6.0` ↗︎](https://www.npmjs.com/package/@graphql-tools/utils/v/10.6.0) (from `^10.5.6`, in `dependencies`) | ||
- [#98](https://github.com/graphql-hive/gateway/pull/98) [`697308d`](https://github.com/graphql-hive/gateway/commit/697308df3b2dd96f28dc65a5f5361a911077e022) Thanks [@ardatan](https://github.com/ardatan)! - Bun support by using native Bun API whenever possible | ||
## 1.1.9 | ||
@@ -10,0 +14,0 @@ |
@@ -1,2 +0,2 @@ | ||
import { isAsyncIterable, isPromise, inspect, mapAsyncIterator, mergeIncrementalResult, memoize1, createGraphQLError, getOperationASTFromRequest } from '@graphql-tools/utils'; | ||
import { isAsyncIterable, isPromise, fakePromise, inspect, mapAsyncIterator, mergeIncrementalResult, memoize1, getOperationASTFromRequest, createGraphQLError } from '@graphql-tools/utils'; | ||
import { File, FormData, TextDecoder, fetch } from '@whatwg-node/fetch'; | ||
@@ -73,3 +73,3 @@ import { ValueOrPromise } from 'value-or-promise'; | ||
const chunks = []; | ||
return Promise.resolve().then(async () => { | ||
return fakePromise(void 0).then(async () => { | ||
for await (const chunk of stream) { | ||
@@ -76,0 +76,0 @@ if (chunk) { |
{ | ||
"name": "@graphql-tools/executor-http", | ||
"version": "1.1.10-alpha-e42f414cb8b2f7e9db4c6de2c4f2405fbf925a19", | ||
"version": "1.1.10-alpha-e4c8b5a21a33e9c5e432cf88ae5390c8d4d64c4a", | ||
"type": "module", | ||
@@ -42,3 +42,3 @@ "description": "A set of utils for faster development of GraphQL tools", | ||
"dependencies": { | ||
"@graphql-tools/utils": "^10.5.6", | ||
"@graphql-tools/utils": "^10.6.0", | ||
"@repeaterjs/repeater": "^3.0.4", | ||
@@ -45,0 +45,0 @@ "@whatwg-node/fetch": "^0.10.0", |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
62596
Updated@graphql-tools/utils@^10.6.0