From 2e66002b9ea29fd4d9ddbe4842bb32352b271558 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 5 Mar 2024 12:16:04 -0800 Subject: [PATCH] Version Packages (#7844) 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.1 ### Patch Changes - Updated dependencies \[[`72f568e`](https://github.com/apollographql/apollo-server/commit/72f568edd512a865e37e4777bf16a319433ca5ba)]: - @apollo/server@4.10.1 ## @apollo/server@4.10.1 ### Patch Changes - [#7843](https://github.com/apollographql/apollo-server/pull/7843) [`72f568e`](https://github.com/apollographql/apollo-server/commit/72f568edd512a865e37e4777bf16a319433ca5ba) Thanks [@bscherlein](https://github.com/bscherlein)! - Improves timing of the `willResolveField` end hook on fields which return Promises resolving to Arrays. This makes the use of the `setCacheHint` method more reliable. Co-authored-by: github-actions[bot] --- .changeset/long-crabs-reply.md | 5 ----- .changeset/loud-oranges-melt.md | 2 -- 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 +- 7 files changed, 20 insertions(+), 14 deletions(-) delete mode 100644 .changeset/long-crabs-reply.md delete mode 100644 .changeset/loud-oranges-melt.md diff --git a/.changeset/long-crabs-reply.md b/.changeset/long-crabs-reply.md deleted file mode 100644 index 79fc2cb0132..00000000000 --- a/.changeset/long-crabs-reply.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@apollo/server": patch ---- - -Improves timing of the `willResolveField` end hook on fields which return Promises resolving to Arrays. This makes the use of the `setCacheHint` method more reliable. diff --git a/.changeset/loud-oranges-melt.md b/.changeset/loud-oranges-melt.md deleted file mode 100644 index a845151cc84..00000000000 --- a/.changeset/loud-oranges-melt.md +++ /dev/null @@ -1,2 +0,0 @@ ---- ---- diff --git a/package-lock.json b/package-lock.json index 41e66be7377..6990a79fe95 100644 --- a/package-lock.json +++ b/package-lock.json @@ -14624,12 +14624,12 @@ }, "packages/integration-testsuite": { "name": "@apollo/server-integration-testsuite", - "version": "4.10.0", + "version": "4.10.1", "license": "MIT", "dependencies": { "@apollo/cache-control-types": "^1.0.3", "@apollo/client": "^3.6.9", - "@apollo/server": "4.10.0", + "@apollo/server": "4.10.1", "@apollo/usage-reporting-protobuf": "^4.1.1", "@apollo/utils.createhash": "^2.0.0", "@apollo/utils.keyvaluecache": "^2.1.0", @@ -14713,7 +14713,7 @@ }, "packages/server": { "name": "@apollo/server", - "version": "4.10.0", + "version": "4.10.1", "license": "MIT", "dependencies": { "@apollo/cache-control-types": "^1.0.3", @@ -15003,7 +15003,7 @@ "requires": { "@apollo/cache-control-types": "^1.0.3", "@apollo/client": "^3.6.9", - "@apollo/server": "4.10.0", + "@apollo/server": "4.10.1", "@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 8792cc44503..222dea45270 100644 --- a/packages/integration-testsuite/CHANGELOG.md +++ b/packages/integration-testsuite/CHANGELOG.md @@ -1,5 +1,12 @@ # @apollo/server-integration-testsuite +## 4.10.1 + +### Patch Changes + +- Updated dependencies [[`72f568e`](https://github.com/apollographql/apollo-server/commit/72f568edd512a865e37e4777bf16a319433ca5ba)]: + - @apollo/server@4.10.1 + ## 4.10.0 ### Minor Changes diff --git a/packages/integration-testsuite/package.json b/packages/integration-testsuite/package.json index b6e67e805be..4bafff6deae 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.0", + "version": "4.10.1", "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.0", + "@apollo/server": "4.10.1", "@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 65cdf64997f..2a15519d3db 100644 --- a/packages/server/CHANGELOG.md +++ b/packages/server/CHANGELOG.md @@ -1,5 +1,11 @@ # @apollo/server +## 4.10.1 + +### Patch Changes + +- [#7843](https://github.com/apollographql/apollo-server/pull/7843) [`72f568e`](https://github.com/apollographql/apollo-server/commit/72f568edd512a865e37e4777bf16a319433ca5ba) Thanks [@bscherlein](https://github.com/bscherlein)! - Improves timing of the `willResolveField` end hook on fields which return Promises resolving to Arrays. This makes the use of the `setCacheHint` method more reliable. + ## 4.10.0 ### Minor Changes diff --git a/packages/server/package.json b/packages/server/package.json index f7c8c00a525..f3169e33864 100644 --- a/packages/server/package.json +++ b/packages/server/package.json @@ -1,6 +1,6 @@ { "name": "@apollo/server", - "version": "4.10.0", + "version": "4.10.1", "description": "Core engine for Apollo GraphQL server", "type": "module", "main": "dist/cjs/index.js",