From 0bd846b2dfa477d8683e5d7a29920e838ced8bb9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 10 Feb 2025 10:07:51 +0000 Subject: [PATCH] chore(release): update monorepo packages versions --- .changeset/gentle-badgers-itch.md | 10 ---------- .changeset/strange-shrimps-battle.md | 6 ------ packages/libraries/apollo/CHANGELOG.md | 16 ++++++++++++++++ packages/libraries/apollo/package.json | 2 +- packages/libraries/apollo/src/version.ts | 2 +- packages/libraries/cli/CHANGELOG.md | 20 ++++++++++++++++++++ packages/libraries/cli/package.json | 2 +- packages/libraries/core/CHANGELOG.md | 10 ++++++++++ packages/libraries/core/package.json | 2 +- packages/libraries/core/src/version.ts | 2 +- packages/libraries/envelop/CHANGELOG.md | 16 ++++++++++++++++ packages/libraries/envelop/package.json | 2 +- packages/libraries/envelop/src/version.ts | 2 +- packages/libraries/yoga/CHANGELOG.md | 16 ++++++++++++++++ packages/libraries/yoga/package.json | 2 +- packages/libraries/yoga/src/version.ts | 2 +- 16 files changed, 87 insertions(+), 25 deletions(-) delete mode 100644 .changeset/gentle-badgers-itch.md delete mode 100644 .changeset/strange-shrimps-battle.md diff --git a/.changeset/gentle-badgers-itch.md b/.changeset/gentle-badgers-itch.md deleted file mode 100644 index 12f5172163..0000000000 --- a/.changeset/gentle-badgers-itch.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -'@graphql-hive/core': minor -'@graphql-hive/apollo': minor -'@graphql-hive/cli': minor -'@graphql-hive/envelop': minor -'@graphql-hive/yoga': minor ---- - -Include and log a `x-request-id` header for all requests sent to the Hive API. This helps users to -share more context with Hive staff when encountering errors. diff --git a/.changeset/strange-shrimps-battle.md b/.changeset/strange-shrimps-battle.md deleted file mode 100644 index 8df78046ac..0000000000 --- a/.changeset/strange-shrimps-battle.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'@graphql-hive/cli': patch ---- - -Show correct error message when attempting a schema check on a federation project without the -`--service` paramater. diff --git a/packages/libraries/apollo/CHANGELOG.md b/packages/libraries/apollo/CHANGELOG.md index 42cc7c8e20..3c9390a336 100644 --- a/packages/libraries/apollo/CHANGELOG.md +++ b/packages/libraries/apollo/CHANGELOG.md @@ -1,5 +1,21 @@ # @graphql-hive/apollo +## 0.37.0 + +### Minor Changes + +- [#6488](https://github.com/graphql-hive/console/pull/6488) + [`f7d65fe`](https://github.com/graphql-hive/console/commit/f7d65feb5aaf4f4f86dfc0fe5df3ea4c3df1d7a8) + Thanks [@n1ru4l](https://github.com/n1ru4l)! - Include and log a `x-request-id` header for all + requests sent to the Hive API. This helps users to share more context with Hive staff when + encountering errors. + +### Patch Changes + +- Updated dependencies + [[`f7d65fe`](https://github.com/graphql-hive/console/commit/f7d65feb5aaf4f4f86dfc0fe5df3ea4c3df1d7a8)]: + - @graphql-hive/core@0.9.0 + ## 0.36.5 ### Patch Changes diff --git a/packages/libraries/apollo/package.json b/packages/libraries/apollo/package.json index b9d9a18390..4f9da1a973 100644 --- a/packages/libraries/apollo/package.json +++ b/packages/libraries/apollo/package.json @@ -1,6 +1,6 @@ { "name": "@graphql-hive/apollo", - "version": "0.36.5", + "version": "0.37.0", "type": "module", "description": "GraphQL Hive + Apollo Server", "repository": { diff --git a/packages/libraries/apollo/src/version.ts b/packages/libraries/apollo/src/version.ts index c30bb18ecb..9cde9ef75b 100644 --- a/packages/libraries/apollo/src/version.ts +++ b/packages/libraries/apollo/src/version.ts @@ -1 +1 @@ -export const version = '0.36.5'; +export const version = '0.37.0'; diff --git a/packages/libraries/cli/CHANGELOG.md b/packages/libraries/cli/CHANGELOG.md index ddd10d013f..775efe5337 100644 --- a/packages/libraries/cli/CHANGELOG.md +++ b/packages/libraries/cli/CHANGELOG.md @@ -1,5 +1,25 @@ # @graphql-hive/cli +## 0.48.0 + +### Minor Changes + +- [#6488](https://github.com/graphql-hive/console/pull/6488) + [`f7d65fe`](https://github.com/graphql-hive/console/commit/f7d65feb5aaf4f4f86dfc0fe5df3ea4c3df1d7a8) + Thanks [@n1ru4l](https://github.com/n1ru4l)! - Include and log a `x-request-id` header for all + requests sent to the Hive API. This helps users to share more context with Hive staff when + encountering errors. + +### Patch Changes + +- [#6483](https://github.com/graphql-hive/console/pull/6483) + [`39eac03`](https://github.com/graphql-hive/console/commit/39eac0315c8ecb4fb55364d62c300f34dd5fdcab) + Thanks [@n1ru4l](https://github.com/n1ru4l)! - Show correct error message when attempting a schema + check on a federation project without the `--service` paramater. +- Updated dependencies + [[`f7d65fe`](https://github.com/graphql-hive/console/commit/f7d65feb5aaf4f4f86dfc0fe5df3ea4c3df1d7a8)]: + - @graphql-hive/core@0.9.0 + ## 0.47.0 ### Minor Changes diff --git a/packages/libraries/cli/package.json b/packages/libraries/cli/package.json index 7197e1e13b..daf150cb70 100644 --- a/packages/libraries/cli/package.json +++ b/packages/libraries/cli/package.json @@ -1,6 +1,6 @@ { "name": "@graphql-hive/cli", - "version": "0.47.0", + "version": "0.48.0", "description": "A CLI util to manage and control your GraphQL Hive", "repository": { "type": "git", diff --git a/packages/libraries/core/CHANGELOG.md b/packages/libraries/core/CHANGELOG.md index 1bb7788f88..4bd633dfa3 100644 --- a/packages/libraries/core/CHANGELOG.md +++ b/packages/libraries/core/CHANGELOG.md @@ -1,5 +1,15 @@ # @graphql-hive/core +## 0.9.0 + +### Minor Changes + +- [#6488](https://github.com/graphql-hive/console/pull/6488) + [`f7d65fe`](https://github.com/graphql-hive/console/commit/f7d65feb5aaf4f4f86dfc0fe5df3ea4c3df1d7a8) + Thanks [@n1ru4l](https://github.com/n1ru4l)! - Include and log a `x-request-id` header for all + requests sent to the Hive API. This helps users to share more context with Hive staff when + encountering errors. + ## 0.8.4 ### Patch Changes diff --git a/packages/libraries/core/package.json b/packages/libraries/core/package.json index 0c6dccaa3b..199e0ee5c1 100644 --- a/packages/libraries/core/package.json +++ b/packages/libraries/core/package.json @@ -1,6 +1,6 @@ { "name": "@graphql-hive/core", - "version": "0.8.4", + "version": "0.9.0", "type": "module", "repository": { "type": "git", diff --git a/packages/libraries/core/src/version.ts b/packages/libraries/core/src/version.ts index 08c8c5319b..b7abd0b85d 100644 --- a/packages/libraries/core/src/version.ts +++ b/packages/libraries/core/src/version.ts @@ -1 +1 @@ -export const version = '0.8.4'; +export const version = '0.9.0'; diff --git a/packages/libraries/envelop/CHANGELOG.md b/packages/libraries/envelop/CHANGELOG.md index 62f6d4c4c8..c8e0d9549c 100644 --- a/packages/libraries/envelop/CHANGELOG.md +++ b/packages/libraries/envelop/CHANGELOG.md @@ -1,5 +1,21 @@ # @graphql-hive/envelop +## 0.34.0 + +### Minor Changes + +- [#6488](https://github.com/graphql-hive/console/pull/6488) + [`f7d65fe`](https://github.com/graphql-hive/console/commit/f7d65feb5aaf4f4f86dfc0fe5df3ea4c3df1d7a8) + Thanks [@n1ru4l](https://github.com/n1ru4l)! - Include and log a `x-request-id` header for all + requests sent to the Hive API. This helps users to share more context with Hive staff when + encountering errors. + +### Patch Changes + +- Updated dependencies + [[`f7d65fe`](https://github.com/graphql-hive/console/commit/f7d65feb5aaf4f4f86dfc0fe5df3ea4c3df1d7a8)]: + - @graphql-hive/core@0.9.0 + ## 0.33.13 ### Patch Changes diff --git a/packages/libraries/envelop/package.json b/packages/libraries/envelop/package.json index c3efbd3920..2e3848bc9f 100644 --- a/packages/libraries/envelop/package.json +++ b/packages/libraries/envelop/package.json @@ -1,6 +1,6 @@ { "name": "@graphql-hive/envelop", - "version": "0.33.13", + "version": "0.34.0", "type": "module", "description": "GraphQL Hive + GraphQL Envelop", "repository": { diff --git a/packages/libraries/envelop/src/version.ts b/packages/libraries/envelop/src/version.ts index ae1f09acbf..025febaf8a 100644 --- a/packages/libraries/envelop/src/version.ts +++ b/packages/libraries/envelop/src/version.ts @@ -1 +1 @@ -export const version = '0.33.13'; +export const version = '0.34.0'; diff --git a/packages/libraries/yoga/CHANGELOG.md b/packages/libraries/yoga/CHANGELOG.md index 60c262b432..fffe3377fa 100644 --- a/packages/libraries/yoga/CHANGELOG.md +++ b/packages/libraries/yoga/CHANGELOG.md @@ -1,5 +1,21 @@ # @graphql-hive/yoga +## 0.40.0 + +### Minor Changes + +- [#6488](https://github.com/graphql-hive/console/pull/6488) + [`f7d65fe`](https://github.com/graphql-hive/console/commit/f7d65feb5aaf4f4f86dfc0fe5df3ea4c3df1d7a8) + Thanks [@n1ru4l](https://github.com/n1ru4l)! - Include and log a `x-request-id` header for all + requests sent to the Hive API. This helps users to share more context with Hive staff when + encountering errors. + +### Patch Changes + +- Updated dependencies + [[`f7d65fe`](https://github.com/graphql-hive/console/commit/f7d65feb5aaf4f4f86dfc0fe5df3ea4c3df1d7a8)]: + - @graphql-hive/core@0.9.0 + ## 0.39.4 ### Patch Changes diff --git a/packages/libraries/yoga/package.json b/packages/libraries/yoga/package.json index 3ece703a52..ab523c801c 100644 --- a/packages/libraries/yoga/package.json +++ b/packages/libraries/yoga/package.json @@ -1,6 +1,6 @@ { "name": "@graphql-hive/yoga", - "version": "0.39.4", + "version": "0.40.0", "type": "module", "description": "GraphQL Hive + GraphQL Yoga", "repository": { diff --git a/packages/libraries/yoga/src/version.ts b/packages/libraries/yoga/src/version.ts index da80de37a2..6994038175 100644 --- a/packages/libraries/yoga/src/version.ts +++ b/packages/libraries/yoga/src/version.ts @@ -1 +1 @@ -export const version = '0.39.4'; +export const version = '0.40.0';