From 268687db591fed8293eeded1546ae2f8e6f2b6a7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 18 Apr 2024 10:26:56 -0500 Subject: [PATCH] Version Packages (#7873) This PR was opened by the [Changesets release](https://github.com/changesets/action) GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated. # Releases ## @apollo/server-integration-testsuite@4.10.4 ### Patch Changes - Updated dependencies \[[`18a3827`](https://github.com/apollographql/apollo-server/commit/18a3827d63c3916f6aaccbc4bdef3e0d550d91a7)]: - @apollo/server@4.10.4 ## @apollo/server@4.10.4 ### Patch Changes - [#7871](https://github.com/apollographql/apollo-server/pull/7871) [`18a3827`](https://github.com/apollographql/apollo-server/commit/18a3827d63c3916f6aaccbc4bdef3e0d550d91a7) Thanks [@tninesling](https://github.com/tninesling)! - Subscription heartbeats are initialized prior to awaiting subscribe(). This allows long-running setup to happen in the returned Promise without the subscription being terminated prior to resolution. Co-authored-by: github-actions[bot] --- .changeset/angry-carrots-allow.md | 5 ----- package-lock.json | 8 ++++---- packages/integration-testsuite/CHANGELOG.md | 7 +++++++ packages/integration-testsuite/package.json | 4 ++-- packages/server/CHANGELOG.md | 6 ++++++ packages/server/package.json | 2 +- 6 files changed, 20 insertions(+), 12 deletions(-) delete mode 100644 .changeset/angry-carrots-allow.md diff --git a/.changeset/angry-carrots-allow.md b/.changeset/angry-carrots-allow.md deleted file mode 100644 index dddaf64d617..00000000000 --- a/.changeset/angry-carrots-allow.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@apollo/server": patch ---- - -Subscription heartbeats are initialized prior to awaiting subscribe(). This allows long-running setup to happen in the returned Promise without the subscription being terminated prior to resolution. diff --git a/package-lock.json b/package-lock.json index ac0cda4831c..a28a9cb448a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -14638,12 +14638,12 @@ }, "packages/integration-testsuite": { "name": "@apollo/server-integration-testsuite", - "version": "4.10.3", + "version": "4.10.4", "license": "MIT", "dependencies": { "@apollo/cache-control-types": "^1.0.3", "@apollo/client": "^3.6.9", - "@apollo/server": "4.10.3", + "@apollo/server": "4.10.4", "@apollo/usage-reporting-protobuf": "^4.1.1", "@apollo/utils.createhash": "^2.0.0", "@apollo/utils.keyvaluecache": "^2.1.0", @@ -14727,7 +14727,7 @@ }, "packages/server": { "name": "@apollo/server", - "version": "4.10.3", + "version": "4.10.4", "license": "MIT", "dependencies": { "@apollo/cache-control-types": "^1.0.3", @@ -15017,7 +15017,7 @@ "requires": { "@apollo/cache-control-types": "^1.0.3", "@apollo/client": "^3.6.9", - "@apollo/server": "4.10.3", + "@apollo/server": "4.10.4", "@apollo/usage-reporting-protobuf": "^4.1.1", "@apollo/utils.createhash": "^2.0.0", "@apollo/utils.keyvaluecache": "^2.1.0", diff --git a/packages/integration-testsuite/CHANGELOG.md b/packages/integration-testsuite/CHANGELOG.md index a1ce0c6f9ad..35c0389a324 100644 --- a/packages/integration-testsuite/CHANGELOG.md +++ b/packages/integration-testsuite/CHANGELOG.md @@ -1,5 +1,12 @@ # @apollo/server-integration-testsuite +## 4.10.4 + +### Patch Changes + +- Updated dependencies [[`18a3827`](https://github.com/apollographql/apollo-server/commit/18a3827d63c3916f6aaccbc4bdef3e0d550d91a7)]: + - @apollo/server@4.10.4 + ## 4.10.3 ### Patch Changes diff --git a/packages/integration-testsuite/package.json b/packages/integration-testsuite/package.json index 442a951914d..a65453fa849 100644 --- a/packages/integration-testsuite/package.json +++ b/packages/integration-testsuite/package.json @@ -1,6 +1,6 @@ { "name": "@apollo/server-integration-testsuite", - "version": "4.10.3", + "version": "4.10.4", "description": "Test suite for Apollo Server integrations", "main": "dist/index.js", "types": "dist/index.d.ts", @@ -28,7 +28,7 @@ "dependencies": { "@apollo/cache-control-types": "^1.0.3", "@apollo/client": "^3.6.9", - "@apollo/server": "4.10.3", + "@apollo/server": "4.10.4", "@apollo/usage-reporting-protobuf": "^4.1.1", "@apollo/utils.createhash": "^2.0.0", "@apollo/utils.keyvaluecache": "^2.1.0", diff --git a/packages/server/CHANGELOG.md b/packages/server/CHANGELOG.md index 828e67f885d..9af52617a0e 100644 --- a/packages/server/CHANGELOG.md +++ b/packages/server/CHANGELOG.md @@ -1,5 +1,11 @@ # @apollo/server +## 4.10.4 + +### Patch Changes + +- [#7871](https://github.com/apollographql/apollo-server/pull/7871) [`18a3827`](https://github.com/apollographql/apollo-server/commit/18a3827d63c3916f6aaccbc4bdef3e0d550d91a7) Thanks [@tninesling](https://github.com/tninesling)! - Subscription heartbeats are initialized prior to awaiting subscribe(). This allows long-running setup to happen in the returned Promise without the subscription being terminated prior to resolution. + ## 4.10.3 ### Patch Changes diff --git a/packages/server/package.json b/packages/server/package.json index 2be570aa435..8b274f10bbf 100644 --- a/packages/server/package.json +++ b/packages/server/package.json @@ -1,6 +1,6 @@ { "name": "@apollo/server", - "version": "4.10.3", + "version": "4.10.4", "description": "Core engine for Apollo GraphQL server", "type": "module", "main": "dist/cjs/index.js",