@graphql-mesh/transport-http-callback 0.5.6-rc-88d0f3811ad3f789d53b415d411064548cffff4f → 0.5.7-alpha-87050c23a001430abc3e710b2fd51af1f0150110

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -1,6 +1,17 @@
1
1
  # @graphql-mesh/transport-http-callback
2
2
 
3
- ## 0.5.6-rc-88d0f3811ad3f789d53b415d411064548cffff4f
3
+ ## 0.5.7-alpha-87050c23a001430abc3e710b2fd51af1f0150110
4
+
5
+ ### Patch Changes
6
+
7
+ - [#164](https://github.com/graphql-hive/gateway/pull/164) [`3f6d14a`](https://github.com/graphql-hive/gateway/commit/3f6d14a3904d6f5cf1f37df1f7a3eb761e0166d7) Thanks [@ardatan](https://github.com/ardatan)! - dependencies updates:
8
+
9
+ - 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`)
10
+
11
+ - Updated dependencies [[`3f6d14a`](https://github.com/graphql-hive/gateway/commit/3f6d14a3904d6f5cf1f37df1f7a3eb761e0166d7)]:
12
+ - @graphql-mesh/transport-common@0.7.16-alpha-87050c23a001430abc3e710b2fd51af1f0150110
13
+
14
+ ## 0.5.6
4
15
 
5
16
  ### Patch Changes
6
17
 
@@ -15,7 +26,7 @@
15
26
  - Updated dependency [`@graphql-mesh/utils@^0.103.0` ↗︎](https://www.npmjs.com/package/@graphql-mesh/utils/v/0.103.0) (from `^0.102.12`, in `dependencies`)
16
27
 
17
28
  - Updated dependencies [[`f32cb2a`](https://github.com/graphql-hive/gateway/commit/f32cb2a0289aa32e4811ced5dc1aac3efb0674f1), [`c0e189a`](https://github.com/graphql-hive/gateway/commit/c0e189ac83901da3a101f16f151e859ff7cca19f)]:
18
- - @graphql-mesh/transport-common@0.7.15-rc-88d0f3811ad3f789d53b415d411064548cffff4f
29
+ - @graphql-mesh/transport-common@0.7.15
19
30
 
20
31
  ## 0.5.5
21
32
 
package/dist/index.cjs CHANGED
@@ -96,7 +96,7 @@ var index = {
96
96
  `HTTP Callback Transport: \`location\` is missing in the transport entry!`
97
97
  );
98
98
  }
99
- const subFetchCall$ = utils.mapMaybePromise(
99
+ const subFetchCall$ = utils$1.mapMaybePromise(
100
100
  fetch$1(
101
101
  transportEntry.location,
102
102
  {
@@ -117,7 +117,7 @@ var index = {
117
117
  execReq.context,
118
118
  execReq.info
119
119
  ),
120
- (res) => utils.mapMaybePromise(res.text(), (resText) => {
120
+ (res) => utils$1.mapMaybePromise(res.text(), (resText) => {
121
121
  let resJson;
122
122
  try {
123
123
  resJson = JSON.parse(resText);
package/dist/index.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import { process } from '@graphql-mesh/cross-helpers';
2
2
  import { getInterpolatedHeadersFactory } from '@graphql-mesh/string-interpolation';
3
3
  import { defaultPrintFn } from '@graphql-mesh/transport-common';
4
- import { makeDisposable, mapMaybePromise } from '@graphql-mesh/utils';
5
- import { createGraphQLError } from '@graphql-tools/utils';
4
+ import { makeDisposable } from '@graphql-mesh/utils';
5
+ import { mapMaybePromise, createGraphQLError } from '@graphql-tools/utils';
6
6
  import { Repeater } from '@repeaterjs/repeater';
7
7
  import { crypto } from '@whatwg-node/fetch';
8
8
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@graphql-mesh/transport-http-callback",
3
- "version": "0.5.6-rc-88d0f3811ad3f789d53b415d411064548cffff4f",
3
+ "version": "0.5.7-alpha-87050c23a001430abc3e710b2fd51af1f0150110",
4
4
  "type": "module",
5
5
  "repository": {
6
6
  "type": "git",
@@ -44,10 +44,10 @@
44
44
  "dependencies": {
45
45
  "@graphql-mesh/cross-helpers": "^0.4.7",
46
46
  "@graphql-mesh/string-interpolation": "^0.5.6",
47
- "@graphql-mesh/transport-common": "^0.7.15-rc-88d0f3811ad3f789d53b415d411064548cffff4f",
47
+ "@graphql-mesh/transport-common": "^0.7.16-alpha-87050c23a001430abc3e710b2fd51af1f0150110",
48
48
  "@graphql-mesh/types": "^0.103.0",
49
49
  "@graphql-mesh/utils": "^0.103.0",
50
- "@graphql-tools/utils": "^10.5.6",
50
+ "@graphql-tools/utils": "^10.6.0",
51
51
  "@repeaterjs/repeater": "^3.0.6",
52
52
  "@whatwg-node/fetch": "^0.10.0",
53
53
  "tslib": "^2.4.0"