@graphql-tools/executor-http 3.1.3 → 3.1.4-rc-d84778d5559ccf59980323b1d6c6d1f6d2be929b

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # @graphql-tools/executor-http
2
2
 
3
+ ## 3.1.4-rc-d84778d5559ccf59980323b1d6c6d1f6d2be929b
4
+ ### Patch Changes
5
+
6
+
7
+
8
+ - [#2194](https://github.com/graphql-hive/gateway/pull/2194) [`f9d2f0e`](https://github.com/graphql-hive/gateway/commit/f9d2f0ea9e7f172b8270c17961a98bc52a7ba49d) Thanks [@ManrajSingh6](https://github.com/ManrajSingh6)! - Prevent reusing the cached inflight requests
9
+
3
10
  ## 3.1.3
4
11
  ### Patch Changes
5
12
 
package/dist/index.cjs CHANGED
@@ -815,7 +815,10 @@ function buildHTTPExecutor(options) {
815
815
  });
816
816
  }
817
817
  }
818
- return inflightRequest;
818
+ return promiseHelpers.handleMaybePromise(
819
+ () => inflightRequest,
820
+ structuredClone
821
+ );
819
822
  }
820
823
  return promiseHelpers.handleMaybePromise(
821
824
  () => serializeFn(),
package/dist/index.js CHANGED
@@ -813,7 +813,10 @@ function buildHTTPExecutor(options) {
813
813
  });
814
814
  }
815
815
  }
816
- return inflightRequest;
816
+ return handleMaybePromise(
817
+ () => inflightRequest,
818
+ structuredClone
819
+ );
817
820
  }
818
821
  return handleMaybePromise(
819
822
  () => serializeFn(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@graphql-tools/executor-http",
3
- "version": "3.1.3",
3
+ "version": "3.1.4-rc-d84778d5559ccf59980323b1d6c6d1f6d2be929b",
4
4
  "type": "module",
5
5
  "description": "A set of utils for faster development of GraphQL tools",
6
6
  "repository": {