diff --git a/.changeset/cyan-ears-shout.md b/.changeset/cyan-ears-shout.md deleted file mode 100644 index 1e016cc557..0000000000 --- a/.changeset/cyan-ears-shout.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'hive': patch ---- - -Standardize the design and content of all email templates for consistency. diff --git a/.changeset/honest-apples-tap.md b/.changeset/honest-apples-tap.md deleted file mode 100644 index 2839e41293..0000000000 --- a/.changeset/honest-apples-tap.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'hive': patch ---- - -Adds ability to all services to write a heap dump to a disk when SIGUSR1 signal is received diff --git a/.changeset/light-llamas-divide.md b/.changeset/light-llamas-divide.md deleted file mode 100644 index 3e762f5d34..0000000000 --- a/.changeset/light-llamas-divide.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'@graphql-hive/apollo': patch ---- - -Prevent GraphQL document with selection set not satisfiable by the server to cause unhandled -rejections for Apollo Server v3 (see https://github.com/graphql-hive/console/pull/4958 and https://github.com/graphql-hive/console/issues/4935). diff --git a/.changeset/wicked-plants-float.md b/.changeset/wicked-plants-float.md deleted file mode 100644 index 13b33ff94e..0000000000 --- a/.changeset/wicked-plants-float.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'hive': patch ---- - -Consolidates email templating logic into the `emails` service. diff --git a/deployment/CHANGELOG.md b/deployment/CHANGELOG.md index e827e70a11..1055d74361 100644 --- a/deployment/CHANGELOG.md +++ b/deployment/CHANGELOG.md @@ -1,5 +1,24 @@ # hive +## 5.1.3 + +### Patch Changes + +- [#6553](https://github.com/graphql-hive/console/pull/6553) + [`f0fe03c`](https://github.com/graphql-hive/console/commit/f0fe03c9464815b5f11b8e4715f0182959e8d363) + Thanks [@kamilkisiela](https://github.com/kamilkisiela)! - Standardize the design and content of + all email templates for consistency. + +- [#6571](https://github.com/graphql-hive/console/pull/6571) + [`bf06e94`](https://github.com/graphql-hive/console/commit/bf06e94f5f115770f229b0b6e9961a44f057fa4d) + Thanks [@kamilkisiela](https://github.com/kamilkisiela)! - Adds ability to all services to write a + heap dump to a disk when SIGUSR1 signal is received + +- [#6542](https://github.com/graphql-hive/console/pull/6542) + [`719e3e6`](https://github.com/graphql-hive/console/commit/719e3e68643c673c5539cc18b68772661e52a857) + Thanks [@kamilkisiela](https://github.com/kamilkisiela)! - Consolidates email templating logic + into the `emails` service. + ## 5.1.2 ### Patch Changes diff --git a/deployment/package.json b/deployment/package.json index f4d0960e1f..141b993b19 100644 --- a/deployment/package.json +++ b/deployment/package.json @@ -1,6 +1,6 @@ { "name": "hive", - "version": "5.1.2", + "version": "5.1.3", "private": true, "scripts": { "generate": "tsx generate.ts", diff --git a/packages/libraries/apollo/CHANGELOG.md b/packages/libraries/apollo/CHANGELOG.md index ec9312ee1c..c2c6a7ae25 100644 --- a/packages/libraries/apollo/CHANGELOG.md +++ b/packages/libraries/apollo/CHANGELOG.md @@ -1,5 +1,16 @@ # @graphql-hive/apollo +## 0.37.2 + +### Patch Changes + +- [#6539](https://github.com/graphql-hive/console/pull/6539) + [`a9fc409`](https://github.com/graphql-hive/console/commit/a9fc40920b50d13b8725bb4b424fc3c24d76b7af) + Thanks [@tmair](https://github.com/tmair)! - Prevent GraphQL document with selection set not + satisfiable by the server to cause unhandled rejections for Apollo Server v3 (see + https://github.com/graphql-hive/console/pull/4958 and + https://github.com/graphql-hive/console/issues/4935). + ## 0.37.1 ### Patch Changes diff --git a/packages/libraries/apollo/package.json b/packages/libraries/apollo/package.json index c1cd5b0cb7..dcbb475ade 100644 --- a/packages/libraries/apollo/package.json +++ b/packages/libraries/apollo/package.json @@ -1,6 +1,6 @@ { "name": "@graphql-hive/apollo", - "version": "0.37.1", + "version": "0.37.2", "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 8684a9ba9e..e1df6ff8ec 100644 --- a/packages/libraries/apollo/src/version.ts +++ b/packages/libraries/apollo/src/version.ts @@ -1 +1 @@ -export const version = '0.37.1'; +export const version = '0.37.2';