@graphql-hive/gateway-runtime 2.3.5-alpha-bce2a850d06ae678548dd23c1ad27bbd012cf14d → 2.3.5-alpha-341f8ffd77382df8054427f7d1164b8a43b73654

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,18 +1,16 @@
1
1
  # @graphql-hive/gateway-runtime
2
2
 
3
- ## 2.3.5-alpha-bce2a850d06ae678548dd23c1ad27bbd012cf14d
3
+ ## 2.3.5-alpha-341f8ffd77382df8054427f7d1164b8a43b73654
4
4
  ### Patch Changes
5
5
 
6
6
 
7
7
 
8
- - [#1684](https://github.com/graphql-hive/gateway/pull/1684) [`6066dda`](https://github.com/graphql-hive/gateway/commit/6066dda4bb860694a813f48620443fb5bb956f65) Thanks [@dependabot](https://github.com/apps/dependabot)! - dependencies updates:
8
+ - [#1683](https://github.com/graphql-hive/gateway/pull/1683) [`160f928`](https://github.com/graphql-hive/gateway/commit/160f928c7e41ab62163325971c3ba5ae75da122d) Thanks [@dependabot](https://github.com/apps/dependabot)! - dependencies updates:
9
9
 
10
- - Updated dependency [`@whatwg-node/server@^0.10.17` ↗︎](https://www.npmjs.com/package/@whatwg-node/server/v/0.10.17) (from `^0.10.15`, in `dependencies`)
11
- - Updated dependencies [[`6066dda`](https://github.com/graphql-hive/gateway/commit/6066dda4bb860694a813f48620443fb5bb956f65), [`6066dda`](https://github.com/graphql-hive/gateway/commit/6066dda4bb860694a813f48620443fb5bb956f65)]:
12
- - @graphql-tools/executor-http@3.0.7-alpha-bce2a850d06ae678548dd23c1ad27bbd012cf14d
13
- - @graphql-tools/federation@4.2.3-alpha-bce2a850d06ae678548dd23c1ad27bbd012cf14d
10
+ - Updated dependency [`@graphql-hive/core@^0.13.1` ↗︎](https://www.npmjs.com/package/@graphql-hive/core/v/0.13.1) (from `^0.13.0`, in `dependencies`)
11
+ - Updated dependency [`@graphql-hive/yoga@^0.42.3` ↗︎](https://www.npmjs.com/package/@graphql-hive/yoga/v/0.42.3) (from `^0.42.2`, in `dependencies`)
12
+ - Updated dependencies []:
14
13
  - @graphql-mesh/hmac-upstream-signature@2.0.7
15
- - @graphql-mesh/fusion-runtime@1.5.1-alpha-bce2a850d06ae678548dd23c1ad27bbd012cf14d
16
14
 
17
15
  ## 2.3.4
18
16
  ### Patch Changes
package/dist/index.cjs CHANGED
@@ -555,6 +555,8 @@ function useHiveConsole({
555
555
  }) {
556
556
  const agent = {
557
557
  name: "hive-gateway",
558
+ version: globalThis.__VERSION__,
559
+ fetch,
558
560
  logger: logger.LegacyLogger.from(options.log),
559
561
  ...options.agent
560
562
  };
@@ -595,6 +597,7 @@ function getReportingPlugin(config, configContext, allowArbitraryDocuments = fal
595
597
  }
596
598
  return useHiveConsole({
597
599
  log: configContext.log.child("[useHiveConsole] "),
600
+ fetch: configContext.fetch,
598
601
  enabled: true,
599
602
  ...reporting,
600
603
  ...usage ? { usage } : {},
@@ -2415,7 +2418,9 @@ function createGatewayRuntime(config) {
2415
2418
  configContext.log.child("[hiveSupergraphFetcher] ")
2416
2419
  ),
2417
2420
  // @ts-expect-error - MeshFetch is not compatible with `typeof fetch`
2418
- fetchImplementation: configContext.fetch
2421
+ fetchImplementation: configContext.fetch,
2422
+ name: "hive-gateway",
2423
+ version: globalThis.__VERSION__
2419
2424
  });
2420
2425
  unifiedGraphFetcher = () => fetcher().then(({ supergraphSdl }) => supergraphSdl);
2421
2426
  } else if (config.supergraph.type === "graphos") {
package/dist/index.js CHANGED
@@ -554,6 +554,8 @@ function useHiveConsole({
554
554
  }) {
555
555
  const agent = {
556
556
  name: "hive-gateway",
557
+ version: globalThis.__VERSION__,
558
+ fetch,
557
559
  logger: LegacyLogger.from(options.log),
558
560
  ...options.agent
559
561
  };
@@ -594,6 +596,7 @@ function getReportingPlugin(config, configContext, allowArbitraryDocuments = fal
594
596
  }
595
597
  return useHiveConsole({
596
598
  log: configContext.log.child("[useHiveConsole] "),
599
+ fetch: configContext.fetch,
597
600
  enabled: true,
598
601
  ...reporting,
599
602
  ...usage ? { usage } : {},
@@ -2414,7 +2417,9 @@ function createGatewayRuntime(config) {
2414
2417
  configContext.log.child("[hiveSupergraphFetcher] ")
2415
2418
  ),
2416
2419
  // @ts-expect-error - MeshFetch is not compatible with `typeof fetch`
2417
- fetchImplementation: configContext.fetch
2420
+ fetchImplementation: configContext.fetch,
2421
+ name: "hive-gateway",
2422
+ version: globalThis.__VERSION__
2418
2423
  });
2419
2424
  unifiedGraphFetcher = () => fetcher().then(({ supergraphSdl }) => supergraphSdl);
2420
2425
  } else if (config.supergraph.type === "graphos") {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@graphql-hive/gateway-runtime",
3
- "version": "2.3.5-alpha-bce2a850d06ae678548dd23c1ad27bbd012cf14d",
3
+ "version": "2.3.5-alpha-341f8ffd77382df8054427f7d1164b8a43b73654",
4
4
  "type": "module",
5
5
  "repository": {
6
6
  "type": "git",
@@ -49,13 +49,13 @@
49
49
  "@envelop/disable-introspection": "^8.0.0",
50
50
  "@envelop/generic-auth": "^10.0.1",
51
51
  "@envelop/instrumentation": "^1.0.0",
52
- "@graphql-hive/core": "^0.13.0",
52
+ "@graphql-hive/core": "^0.13.1",
53
53
  "@graphql-hive/logger": "^1.0.8",
54
54
  "@graphql-hive/pubsub": "^2.1.1",
55
55
  "@graphql-hive/signal": "^2.0.0",
56
- "@graphql-hive/yoga": "^0.42.2",
56
+ "@graphql-hive/yoga": "^0.42.3",
57
57
  "@graphql-mesh/cross-helpers": "^0.4.10",
58
- "@graphql-mesh/fusion-runtime": "1.5.1-alpha-bce2a850d06ae678548dd23c1ad27bbd012cf14d",
58
+ "@graphql-mesh/fusion-runtime": "^1.5.0",
59
59
  "@graphql-mesh/hmac-upstream-signature": "^2.0.7",
60
60
  "@graphql-mesh/plugin-response-cache": "^0.104.18",
61
61
  "@graphql-mesh/transport-common": "^1.0.11",
@@ -64,8 +64,8 @@
64
64
  "@graphql-tools/batch-delegate": "^10.0.4",
65
65
  "@graphql-tools/delegate": "^11.1.2",
66
66
  "@graphql-tools/executor-common": "^1.0.4",
67
- "@graphql-tools/executor-http": "3.0.7-alpha-bce2a850d06ae678548dd23c1ad27bbd012cf14d",
68
- "@graphql-tools/federation": "4.2.3-alpha-bce2a850d06ae678548dd23c1ad27bbd012cf14d",
67
+ "@graphql-tools/executor-http": "^3.0.6",
68
+ "@graphql-tools/federation": "^4.2.2",
69
69
  "@graphql-tools/stitch": "^10.1.2",
70
70
  "@graphql-tools/utils": "^10.10.1",
71
71
  "@graphql-tools/wrap": "^11.0.4",
@@ -76,7 +76,7 @@
76
76
  "@types/node": "^24.10.0",
77
77
  "@whatwg-node/disposablestack": "^0.0.6",
78
78
  "@whatwg-node/promise-helpers": "^1.3.2",
79
- "@whatwg-node/server": "^0.10.17",
79
+ "@whatwg-node/server": "^0.10.15",
80
80
  "@whatwg-node/server-plugin-cookies": "^1.0.5",
81
81
  "graphql-ws": "^6.0.6",
82
82
  "graphql-yoga": "^5.16.2",
@@ -90,7 +90,7 @@
90
90
  "@types/html-minifier-terser": "^7.0.2",
91
91
  "@types/react": "^19",
92
92
  "@types/react-dom": "^19",
93
- "@whatwg-node/fetch": "^0.10.13",
93
+ "@whatwg-node/fetch": "^0.10.12",
94
94
  "fets": "^0.8.4",
95
95
  "graphql": "^16.12.0",
96
96
  "graphql-sse": "^2.6.0",