diff --git a/.changeset/gentle-badgers-itch.md b/.changeset/gentle-badgers-itch.md deleted file mode 100644 index 12f51721633..00000000000 --- 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 8df78046ac1..00000000000 --- 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 42cc7c8e20c..3c9390a3365 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 b9d9a18390e..4f9da1a973a 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 c30bb18ecb7..9cde9ef75bf 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 ddd10d013fe..775efe53373 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 7197e1e13b6..daf150cb702 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 1bb7788f889..4bd633dfa3e 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 0c6dccaa3ba..199e0ee5c17 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 08c8c5319b5..b7abd0b85d8 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 62f6d4c4c8e..c8e0d9549cc 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 c3efbd39200..2e3848bc9fc 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 ae1f09acbf8..025febaf8a3 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 60c262b4329..fffe3377fa9 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 3ece703a529..ab523c801cc 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 da80de37a2d..69940381753 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';