@graphql-hive/gateway-runtime 2.4.0-alpha-886461fbb345099a8fc7f572ceb5fbd67da736cb → 2.4.0-alpha-905497611eff623b4c782baf8e5a2d3f3aa2446e
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 +16 -5
- package/dist/index.cjs +2 -3
- package/dist/index.js +2 -3
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
# @graphql-hive/gateway-runtime
|
|
2
2
|
|
|
3
|
-
## 2.4.0-alpha-
|
|
3
|
+
## 2.4.0-alpha-905497611eff623b4c782baf8e5a2d3f3aa2446e
|
|
4
4
|
### Minor Changes
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
- [#1636](https://github.com/graphql-hive/gateway/pull/1636) [`
|
|
8
|
+
- [#1636](https://github.com/graphql-hive/gateway/pull/1636) [`837d0dd`](https://github.com/graphql-hive/gateway/commit/837d0ddf477e0171f455633f47867c2a1e30d586) Thanks [@EmrysMyrddin](https://github.com/EmrysMyrddin)! - Expose GraphQLError as OpenTelemetry Events.
|
|
9
9
|
|
|
10
10
|
Errors contains in the result of a graphql operation are now reported as standalone OpenTelemetry
|
|
11
11
|
Events (name `graphql.error`) instead of OpenTelemetry Exceptions.
|
|
@@ -27,12 +27,23 @@
|
|
|
27
27
|
|
|
28
28
|
|
|
29
29
|
|
|
30
|
-
- [#1636](https://github.com/graphql-hive/gateway/pull/1636) [`
|
|
30
|
+
- [#1636](https://github.com/graphql-hive/gateway/pull/1636) [`1495bd9`](https://github.com/graphql-hive/gateway/commit/1495bd90d9603bb1c66676a2d31990b16c3f3c4d) Thanks [@EmrysMyrddin](https://github.com/EmrysMyrddin)! - dependencies updates:
|
|
31
31
|
|
|
32
32
|
- Updated dependency [`graphql-yoga@^5.17.0` ↗︎](https://www.npmjs.com/package/graphql-yoga/v/5.17.0) (from `^5.16.2`, in `dependencies`)
|
|
33
|
-
|
|
34
|
-
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
- [#1747](https://github.com/graphql-hive/gateway/pull/1747) [`8fdaef5`](https://github.com/graphql-hive/gateway/commit/8fdaef56d70998dacaed829c278fa7079062ad67) Thanks [@dependabot](https://github.com/apps/dependabot)! - dependencies updates:
|
|
36
|
+
|
|
37
|
+
- Updated dependency [`@graphql-hive/core@^0.18.0` ↗︎](https://www.npmjs.com/package/@graphql-hive/core/v/0.18.0) (from `^0.15.1`, in `dependencies`)
|
|
38
|
+
- Updated dependency [`@graphql-hive/yoga@^0.46.0` ↗︎](https://www.npmjs.com/package/@graphql-hive/yoga/v/0.46.0) (from `^0.43.1`, in `dependencies`)
|
|
39
|
+
- Updated dependencies [[`1495bd9`](https://github.com/graphql-hive/gateway/commit/1495bd90d9603bb1c66676a2d31990b16c3f3c4d), [`da8b8e3`](https://github.com/graphql-hive/gateway/commit/da8b8e3f3545487249b11c6577e3889f68527249)]:
|
|
40
|
+
- @graphql-mesh/fusion-runtime@1.6.2-alpha-905497611eff623b4c782baf8e5a2d3f3aa2446e
|
|
41
|
+
- @graphql-tools/delegate@12.0.2-alpha-905497611eff623b4c782baf8e5a2d3f3aa2446e
|
|
35
42
|
- @graphql-mesh/hmac-upstream-signature@2.0.8
|
|
43
|
+
- @graphql-tools/batch-delegate@10.0.8-alpha-905497611eff623b4c782baf8e5a2d3f3aa2446e
|
|
44
|
+
- @graphql-tools/federation@4.2.6-alpha-905497611eff623b4c782baf8e5a2d3f3aa2446e
|
|
45
|
+
- @graphql-tools/stitch@10.1.6-alpha-905497611eff623b4c782baf8e5a2d3f3aa2446e
|
|
46
|
+
- @graphql-tools/wrap@11.1.2-alpha-905497611eff623b4c782baf8e5a2d3f3aa2446e
|
|
36
47
|
|
|
37
48
|
## 2.3.7
|
|
38
49
|
### Patch Changes
|
package/dist/index.cjs
CHANGED
|
@@ -578,6 +578,7 @@ function useHiveConsole({
|
|
|
578
578
|
}
|
|
579
579
|
return yoga.useHive({
|
|
580
580
|
debug: isDebug(),
|
|
581
|
+
logger: options.log,
|
|
581
582
|
...options,
|
|
582
583
|
enabled: !!enabled,
|
|
583
584
|
token,
|
|
@@ -2090,9 +2091,7 @@ function createGatewayRuntime(config) {
|
|
|
2090
2091
|
const fetcher = core$1.createSchemaFetcher({
|
|
2091
2092
|
endpoint,
|
|
2092
2093
|
key,
|
|
2093
|
-
logger:
|
|
2094
|
-
configContext.log.child("[hiveSchemaFetcher] ")
|
|
2095
|
-
)
|
|
2094
|
+
logger: configContext.log.child("[hiveSchemaFetcher] ")
|
|
2096
2095
|
});
|
|
2097
2096
|
schemaFetcher = function fetchSchemaFromCDN() {
|
|
2098
2097
|
pausePolling2();
|
package/dist/index.js
CHANGED
|
@@ -577,6 +577,7 @@ function useHiveConsole({
|
|
|
577
577
|
}
|
|
578
578
|
return useHive({
|
|
579
579
|
debug: isDebug(),
|
|
580
|
+
logger: options.log,
|
|
580
581
|
...options,
|
|
581
582
|
enabled: !!enabled,
|
|
582
583
|
token,
|
|
@@ -2089,9 +2090,7 @@ function createGatewayRuntime(config) {
|
|
|
2089
2090
|
const fetcher = createSchemaFetcher({
|
|
2090
2091
|
endpoint,
|
|
2091
2092
|
key,
|
|
2092
|
-
logger:
|
|
2093
|
-
configContext.log.child("[hiveSchemaFetcher] ")
|
|
2094
|
-
)
|
|
2093
|
+
logger: configContext.log.child("[hiveSchemaFetcher] ")
|
|
2095
2094
|
});
|
|
2096
2095
|
schemaFetcher = function fetchSchemaFromCDN() {
|
|
2097
2096
|
pausePolling2();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@graphql-hive/gateway-runtime",
|
|
3
|
-
"version": "2.4.0-alpha-
|
|
3
|
+
"version": "2.4.0-alpha-905497611eff623b4c782baf8e5a2d3f3aa2446e",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -49,26 +49,26 @@
|
|
|
49
49
|
"@envelop/disable-introspection": "^9.0.0",
|
|
50
50
|
"@envelop/generic-auth": "^11.0.0",
|
|
51
51
|
"@envelop/instrumentation": "^1.0.0",
|
|
52
|
-
"@graphql-hive/core": "^0.
|
|
52
|
+
"@graphql-hive/core": "^0.18.0",
|
|
53
53
|
"@graphql-hive/logger": "^1.0.9",
|
|
54
54
|
"@graphql-hive/pubsub": "^2.1.1",
|
|
55
55
|
"@graphql-hive/signal": "^2.0.0",
|
|
56
|
-
"@graphql-hive/yoga": "^0.
|
|
56
|
+
"@graphql-hive/yoga": "^0.46.0",
|
|
57
57
|
"@graphql-mesh/cross-helpers": "^0.4.10",
|
|
58
|
-
"@graphql-mesh/fusion-runtime": "1.6.2-alpha-
|
|
58
|
+
"@graphql-mesh/fusion-runtime": "1.6.2-alpha-905497611eff623b4c782baf8e5a2d3f3aa2446e",
|
|
59
59
|
"@graphql-mesh/hmac-upstream-signature": "^2.0.8",
|
|
60
60
|
"@graphql-mesh/plugin-response-cache": "^0.104.18",
|
|
61
61
|
"@graphql-mesh/transport-common": "^1.0.12",
|
|
62
62
|
"@graphql-mesh/types": "^0.104.16",
|
|
63
63
|
"@graphql-mesh/utils": "^0.104.16",
|
|
64
|
-
"@graphql-tools/batch-delegate": "
|
|
65
|
-
"@graphql-tools/delegate": "
|
|
64
|
+
"@graphql-tools/batch-delegate": "10.0.8-alpha-905497611eff623b4c782baf8e5a2d3f3aa2446e",
|
|
65
|
+
"@graphql-tools/delegate": "12.0.2-alpha-905497611eff623b4c782baf8e5a2d3f3aa2446e",
|
|
66
66
|
"@graphql-tools/executor-common": "^1.0.5",
|
|
67
67
|
"@graphql-tools/executor-http": "^3.0.7",
|
|
68
|
-
"@graphql-tools/federation": "
|
|
69
|
-
"@graphql-tools/stitch": "
|
|
68
|
+
"@graphql-tools/federation": "4.2.6-alpha-905497611eff623b4c782baf8e5a2d3f3aa2446e",
|
|
69
|
+
"@graphql-tools/stitch": "10.1.6-alpha-905497611eff623b4c782baf8e5a2d3f3aa2446e",
|
|
70
70
|
"@graphql-tools/utils": "^10.10.3",
|
|
71
|
-
"@graphql-tools/wrap": "
|
|
71
|
+
"@graphql-tools/wrap": "11.1.2-alpha-905497611eff623b4c782baf8e5a2d3f3aa2446e",
|
|
72
72
|
"@graphql-yoga/plugin-apollo-usage-report": "^0.12.0",
|
|
73
73
|
"@graphql-yoga/plugin-csrf-prevention": "^3.16.2",
|
|
74
74
|
"@graphql-yoga/plugin-defer-stream": "^3.16.2",
|
|
@@ -98,7 +98,7 @@
|
|
|
98
98
|
"pkgroll": "2.21.4",
|
|
99
99
|
"react": "^19.2.0",
|
|
100
100
|
"react-dom": "^19.2.0",
|
|
101
|
-
"tsx": "4.
|
|
101
|
+
"tsx": "4.21.0"
|
|
102
102
|
},
|
|
103
103
|
"sideEffects": false
|
|
104
104
|
}
|