From 02dfacef90ada3ce9af31b438c0b55c75c300d1f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 20 Dec 2024 06:04:20 +0000 Subject: [PATCH] chore(release): update monorepo packages versions --- ...h_plugin-opentelemetry-352-dependencies.md | 9 ---- .changeset/forty-timers-fly.md | 10 ---- .changeset/fuzzy-eels-obey.md | 7 --- .changeset/gorgeous-bananas-brake.md | 29 ------------ .changeset/sixty-rice-give.md | 5 -- packages/fusion-runtime/CHANGELOG.md | 9 ++++ packages/fusion-runtime/package.json | 2 +- packages/gateway/CHANGELOG.md | 19 ++++++++ packages/gateway/package.json | 2 +- packages/plugins/opentelemetry/CHANGELOG.md | 13 +++++ packages/plugins/opentelemetry/package.json | 2 +- packages/plugins/prometheus/CHANGELOG.md | 7 +++ packages/plugins/prometheus/package.json | 2 +- packages/runtime/CHANGELOG.md | 47 +++++++++++++++++++ packages/runtime/package.json | 2 +- 15 files changed, 100 insertions(+), 65 deletions(-) delete mode 100644 .changeset/@graphql-mesh_plugin-opentelemetry-352-dependencies.md delete mode 100644 .changeset/forty-timers-fly.md delete mode 100644 .changeset/fuzzy-eels-obey.md delete mode 100644 .changeset/gorgeous-bananas-brake.md delete mode 100644 .changeset/sixty-rice-give.md diff --git a/.changeset/@graphql-mesh_plugin-opentelemetry-352-dependencies.md b/.changeset/@graphql-mesh_plugin-opentelemetry-352-dependencies.md deleted file mode 100644 index 10f0f5e0..00000000 --- a/.changeset/@graphql-mesh_plugin-opentelemetry-352-dependencies.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -'@graphql-mesh/plugin-opentelemetry': patch ---- - -dependencies updates: - -- Updated dependency [`@opentelemetry/exporter-trace-otlp-grpc@^0.57.0` ↗︎](https://www.npmjs.com/package/@opentelemetry/exporter-trace-otlp-grpc/v/0.57.0) (from `^0.56.0`, in `dependencies`) -- Updated dependency [`@opentelemetry/exporter-trace-otlp-http@^0.57.0` ↗︎](https://www.npmjs.com/package/@opentelemetry/exporter-trace-otlp-http/v/0.57.0) (from `^0.56.0`, in `dependencies`) -- Updated dependency [`@opentelemetry/instrumentation@^0.57.0` ↗︎](https://www.npmjs.com/package/@opentelemetry/instrumentation/v/0.57.0) (from `^0.56.0`, in `dependencies`) diff --git a/.changeset/forty-timers-fly.md b/.changeset/forty-timers-fly.md deleted file mode 100644 index f09ce73c..00000000 --- a/.changeset/forty-timers-fly.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -'@graphql-mesh/fusion-runtime': patch -'@graphql-hive/gateway': patch -'@graphql-hive/gateway-runtime': patch ---- - -Fix the bug on setting the default polling interval to 10 seconds -So by default, the gateway will poll the schema every 10 seconds, and update the schema if it has changed. - -This PR also contains improvements on logging about polling \ No newline at end of file diff --git a/.changeset/fuzzy-eels-obey.md b/.changeset/fuzzy-eels-obey.md deleted file mode 100644 index 6b51b86e..00000000 --- a/.changeset/fuzzy-eels-obey.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'@graphql-hive/gateway': patch ---- - -Respect both registry token from CLI arguments and the configuration in the \`gateway.config\` - -User can provide the token in the CLI arguments, and have some registry configuration in \`gateway.config\` \ No newline at end of file diff --git a/.changeset/gorgeous-bananas-brake.md b/.changeset/gorgeous-bananas-brake.md deleted file mode 100644 index 4e08a077..00000000 --- a/.changeset/gorgeous-bananas-brake.md +++ /dev/null @@ -1,29 +0,0 @@ ---- -'@graphql-hive/gateway-runtime': patch ---- - -Better messages on debug logs of readiness check endpoint; - -Before; -On successful readiness check, the gateway was logging the following message: -``` -Readiness check passed: Supergraph loaded -``` -Because this makes the users think it was just loaded. -After; -On successful readiness check, the gateway will log the following message: -``` -Readiness check passed because supergraph has been loaded already -``` - -On failed readiness check, the gateway was logging the following message: -Before; -``` -Readiness check failed: Supergraph not loaded -``` -It should make the users think it was not loaded or there is an issue with the supergraph. - -After; -``` -Readiness check failed because supergraph has not been loaded yet or failed to load -``` \ No newline at end of file diff --git a/.changeset/sixty-rice-give.md b/.changeset/sixty-rice-give.md deleted file mode 100644 index 62c383eb..00000000 --- a/.changeset/sixty-rice-give.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@graphql-hive/gateway-runtime': patch ---- - -`token` doesn't need to be required for Hive reporting in the configuration because it can be provided by the arguments diff --git a/packages/fusion-runtime/CHANGELOG.md b/packages/fusion-runtime/CHANGELOG.md index 2d61b551..f0de6f9c 100644 --- a/packages/fusion-runtime/CHANGELOG.md +++ b/packages/fusion-runtime/CHANGELOG.md @@ -1,5 +1,14 @@ # @graphql-mesh/fusion-runtime +## 0.10.23 + +### Patch Changes + +- [#357](https://github.com/graphql-hive/gateway/pull/357) [`8b64103`](https://github.com/graphql-hive/gateway/commit/8b64103324d82c4934ff459ea644276bafbcda17) Thanks [@ardatan](https://github.com/ardatan)! - Fix the bug on setting the default polling interval to 10 seconds + So by default, the gateway will poll the schema every 10 seconds, and update the schema if it has changed. + + This PR also contains improvements on logging about polling + ## 0.10.22 ### Patch Changes diff --git a/packages/fusion-runtime/package.json b/packages/fusion-runtime/package.json index 4dfcddc3..5e71a755 100644 --- a/packages/fusion-runtime/package.json +++ b/packages/fusion-runtime/package.json @@ -1,6 +1,6 @@ { "name": "@graphql-mesh/fusion-runtime", - "version": "0.10.22", + "version": "0.10.23", "type": "module", "description": "Runtime for GraphQL Mesh Fusion Supergraph", "repository": { diff --git a/packages/gateway/CHANGELOG.md b/packages/gateway/CHANGELOG.md index bfb7984b..52f34a00 100644 --- a/packages/gateway/CHANGELOG.md +++ b/packages/gateway/CHANGELOG.md @@ -1,5 +1,24 @@ # @graphql-hive/gateway +## 1.7.2 + +### Patch Changes + +- [#357](https://github.com/graphql-hive/gateway/pull/357) [`8b64103`](https://github.com/graphql-hive/gateway/commit/8b64103324d82c4934ff459ea644276bafbcda17) Thanks [@ardatan](https://github.com/ardatan)! - Fix the bug on setting the default polling interval to 10 seconds + So by default, the gateway will poll the schema every 10 seconds, and update the schema if it has changed. + + This PR also contains improvements on logging about polling + +- [#342](https://github.com/graphql-hive/gateway/pull/342) [`2f59fce`](https://github.com/graphql-hive/gateway/commit/2f59fce8aece4a326b20d4a9db2ee53773675e70) Thanks [@ardatan](https://github.com/ardatan)! - Respect both registry token from CLI arguments and the configuration in the \`gateway.config\` + + User can provide the token in the CLI arguments, and have some registry configuration in \`gateway.config\` + +- Updated dependencies [[`7a1877a`](https://github.com/graphql-hive/gateway/commit/7a1877a66de082d5a0e4a17d1a715c10773abd77), [`8b64103`](https://github.com/graphql-hive/gateway/commit/8b64103324d82c4934ff459ea644276bafbcda17), [`122c013`](https://github.com/graphql-hive/gateway/commit/122c0133bea6137b1760b4af064de9aeba53bcc5), [`2f59fce`](https://github.com/graphql-hive/gateway/commit/2f59fce8aece4a326b20d4a9db2ee53773675e70)]: + - @graphql-mesh/plugin-opentelemetry@1.3.30 + - @graphql-hive/gateway-runtime@1.4.2 + - @graphql-mesh/hmac-upstream-signature@1.2.17 + - @graphql-mesh/plugin-prometheus@1.3.18 + ## 1.7.1 ### Patch Changes diff --git a/packages/gateway/package.json b/packages/gateway/package.json index f5325ed0..dd2bccb5 100644 --- a/packages/gateway/package.json +++ b/packages/gateway/package.json @@ -1,6 +1,6 @@ { "name": "@graphql-hive/gateway", - "version": "1.7.1", + "version": "1.7.2", "type": "module", "repository": { "type": "git", diff --git a/packages/plugins/opentelemetry/CHANGELOG.md b/packages/plugins/opentelemetry/CHANGELOG.md index 05544254..d564935f 100644 --- a/packages/plugins/opentelemetry/CHANGELOG.md +++ b/packages/plugins/opentelemetry/CHANGELOG.md @@ -1,5 +1,18 @@ # @graphql-mesh/plugin-opentelemetry +## 1.3.30 + +### Patch Changes + +- [#352](https://github.com/graphql-hive/gateway/pull/352) [`7a1877a`](https://github.com/graphql-hive/gateway/commit/7a1877a66de082d5a0e4a17d1a715c10773abd77) Thanks [@renovate](https://github.com/apps/renovate)! - dependencies updates: + + - Updated dependency [`@opentelemetry/exporter-trace-otlp-grpc@^0.57.0` ↗︎](https://www.npmjs.com/package/@opentelemetry/exporter-trace-otlp-grpc/v/0.57.0) (from `^0.56.0`, in `dependencies`) + - Updated dependency [`@opentelemetry/exporter-trace-otlp-http@^0.57.0` ↗︎](https://www.npmjs.com/package/@opentelemetry/exporter-trace-otlp-http/v/0.57.0) (from `^0.56.0`, in `dependencies`) + - Updated dependency [`@opentelemetry/instrumentation@^0.57.0` ↗︎](https://www.npmjs.com/package/@opentelemetry/instrumentation/v/0.57.0) (from `^0.56.0`, in `dependencies`) + +- Updated dependencies [[`8b64103`](https://github.com/graphql-hive/gateway/commit/8b64103324d82c4934ff459ea644276bafbcda17), [`122c013`](https://github.com/graphql-hive/gateway/commit/122c0133bea6137b1760b4af064de9aeba53bcc5), [`2f59fce`](https://github.com/graphql-hive/gateway/commit/2f59fce8aece4a326b20d4a9db2ee53773675e70)]: + - @graphql-hive/gateway-runtime@1.4.2 + ## 1.3.29 ### Patch Changes diff --git a/packages/plugins/opentelemetry/package.json b/packages/plugins/opentelemetry/package.json index 77cd1626..7ce04157 100644 --- a/packages/plugins/opentelemetry/package.json +++ b/packages/plugins/opentelemetry/package.json @@ -1,6 +1,6 @@ { "name": "@graphql-mesh/plugin-opentelemetry", - "version": "1.3.29", + "version": "1.3.30", "type": "module", "repository": { "type": "git", diff --git a/packages/plugins/prometheus/CHANGELOG.md b/packages/plugins/prometheus/CHANGELOG.md index 9bbb7a69..63c8c9f1 100644 --- a/packages/plugins/prometheus/CHANGELOG.md +++ b/packages/plugins/prometheus/CHANGELOG.md @@ -1,5 +1,12 @@ # @graphql-mesh/plugin-prometheus +## 1.3.18 + +### Patch Changes + +- Updated dependencies [[`8b64103`](https://github.com/graphql-hive/gateway/commit/8b64103324d82c4934ff459ea644276bafbcda17), [`122c013`](https://github.com/graphql-hive/gateway/commit/122c0133bea6137b1760b4af064de9aeba53bcc5), [`2f59fce`](https://github.com/graphql-hive/gateway/commit/2f59fce8aece4a326b20d4a9db2ee53773675e70)]: + - @graphql-hive/gateway-runtime@1.4.2 + ## 1.3.17 ### Patch Changes diff --git a/packages/plugins/prometheus/package.json b/packages/plugins/prometheus/package.json index d27cba10..2e6e3348 100644 --- a/packages/plugins/prometheus/package.json +++ b/packages/plugins/prometheus/package.json @@ -1,6 +1,6 @@ { "name": "@graphql-mesh/plugin-prometheus", - "version": "1.3.17", + "version": "1.3.18", "type": "module", "repository": { "type": "git", diff --git a/packages/runtime/CHANGELOG.md b/packages/runtime/CHANGELOG.md index 6b8ea602..49cab29f 100644 --- a/packages/runtime/CHANGELOG.md +++ b/packages/runtime/CHANGELOG.md @@ -1,5 +1,52 @@ # @graphql-hive/gateway-runtime +## 1.4.2 + +### Patch Changes + +- [#357](https://github.com/graphql-hive/gateway/pull/357) [`8b64103`](https://github.com/graphql-hive/gateway/commit/8b64103324d82c4934ff459ea644276bafbcda17) Thanks [@ardatan](https://github.com/ardatan)! - Fix the bug on setting the default polling interval to 10 seconds + So by default, the gateway will poll the schema every 10 seconds, and update the schema if it has changed. + + This PR also contains improvements on logging about polling + +- [#356](https://github.com/graphql-hive/gateway/pull/356) [`122c013`](https://github.com/graphql-hive/gateway/commit/122c0133bea6137b1760b4af064de9aeba53bcc5) Thanks [@ardatan](https://github.com/ardatan)! - Better messages on debug logs of readiness check endpoint; + + Before; + On successful readiness check, the gateway was logging the following message: + + ``` + Readiness check passed: Supergraph loaded + ``` + + Because this makes the users think it was just loaded. + After; + On successful readiness check, the gateway will log the following message: + + ``` + Readiness check passed because supergraph has been loaded already + ``` + + On failed readiness check, the gateway was logging the following message: + Before; + + ``` + Readiness check failed: Supergraph not loaded + ``` + + It should make the users think it was not loaded or there is an issue with the supergraph. + + After; + + ``` + Readiness check failed because supergraph has not been loaded yet or failed to load + ``` + +- [#342](https://github.com/graphql-hive/gateway/pull/342) [`2f59fce`](https://github.com/graphql-hive/gateway/commit/2f59fce8aece4a326b20d4a9db2ee53773675e70) Thanks [@ardatan](https://github.com/ardatan)! - `token` doesn't need to be required for Hive reporting in the configuration because it can be provided by the arguments + +- Updated dependencies [[`8b64103`](https://github.com/graphql-hive/gateway/commit/8b64103324d82c4934ff459ea644276bafbcda17)]: + - @graphql-mesh/fusion-runtime@0.10.23 + - @graphql-mesh/hmac-upstream-signature@1.2.17 + ## 1.4.1 ### Patch Changes diff --git a/packages/runtime/package.json b/packages/runtime/package.json index 14e66a6b..867ddefb 100644 --- a/packages/runtime/package.json +++ b/packages/runtime/package.json @@ -1,6 +1,6 @@ { "name": "@graphql-hive/gateway-runtime", - "version": "1.4.1", + "version": "1.4.2", "type": "module", "repository": { "type": "git",