@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 +7 -0
- package/dist/index.cjs +4 -1
- package/dist/index.js +4 -1
- package/package.json +1 -1
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
|
|
818
|
+
return promiseHelpers.handleMaybePromise(
|
|
819
|
+
() => inflightRequest,
|
|
820
|
+
structuredClone
|
|
821
|
+
);
|
|
819
822
|
}
|
|
820
823
|
return promiseHelpers.handleMaybePromise(
|
|
821
824
|
() => serializeFn(),
|
package/dist/index.js
CHANGED
package/package.json
CHANGED