From e8c00a72e9ea750a29a8d517b7171300df589ccc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 24 Aug 2023 12:17:44 -0700 Subject: [PATCH] Version Packages (#7702) 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.9.2 ### Patch Changes - Updated dependencies \[[`62e7d940d`](https://github.com/apollographql/apollo-server/commit/62e7d940de025f21e89c60404bce0dddac84ed6c)]: - @apollo/server@4.9.2 ## @apollo/server@4.9.2 ### Patch Changes - [#7699](https://github.com/apollographql/apollo-server/pull/7699) [`62e7d940d`](https://github.com/apollographql/apollo-server/commit/62e7d940de025f21e89c60404bce0dddac84ed6c) Thanks [@trevor-scheer](https://github.com/trevor-scheer)! - Fix error path attachment for list items Previously, when errors occurred while resolving a list item, the trace builder would fail to place the error at the correct path and just default to the root node with a warning message: > `Could not find node with path x.y.1, defaulting to put errors on root node.` This change places these errors at their correct paths and removes the log. Co-authored-by: github-actions[bot] --- .changeset/gentle-cycles-look.md | 11 ----------- package-lock.json | 8 ++++---- packages/integration-testsuite/CHANGELOG.md | 7 +++++++ packages/integration-testsuite/package.json | 4 ++-- packages/server/CHANGELOG.md | 12 ++++++++++++ packages/server/package.json | 2 +- 6 files changed, 26 insertions(+), 18 deletions(-) delete mode 100644 .changeset/gentle-cycles-look.md diff --git a/.changeset/gentle-cycles-look.md b/.changeset/gentle-cycles-look.md deleted file mode 100644 index dbce17eb5a8..00000000000 --- a/.changeset/gentle-cycles-look.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -'@apollo/server': patch ---- - -Fix error path attachment for list items - -Previously, when errors occurred while resolving a list item, the trace builder would fail to place the error at the correct path and just default to the root node with a warning message: - -> `Could not find node with path x.y.1, defaulting to put errors on root node.` - -This change places these errors at their correct paths and removes the log. diff --git a/package-lock.json b/package-lock.json index 8b20bc83898..6f32c6d27df 100644 --- a/package-lock.json +++ b/package-lock.json @@ -14472,12 +14472,12 @@ }, "packages/integration-testsuite": { "name": "@apollo/server-integration-testsuite", - "version": "4.9.1", + "version": "4.9.2", "license": "MIT", "dependencies": { "@apollo/cache-control-types": "^1.0.3", "@apollo/client": "^3.6.9", - "@apollo/server": "4.9.1", + "@apollo/server": "4.9.2", "@apollo/usage-reporting-protobuf": "^4.1.1", "@apollo/utils.createhash": "^2.0.0", "@apollo/utils.keyvaluecache": "^2.1.0", @@ -14562,7 +14562,7 @@ }, "packages/server": { "name": "@apollo/server", - "version": "4.9.1", + "version": "4.9.2", "license": "MIT", "dependencies": { "@apollo/cache-control-types": "^1.0.3", @@ -14845,7 +14845,7 @@ "requires": { "@apollo/cache-control-types": "^1.0.3", "@apollo/client": "^3.6.9", - "@apollo/server": "4.9.1", + "@apollo/server": "4.9.2", "@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 01818a1dc7b..18b74523e30 100644 --- a/packages/integration-testsuite/CHANGELOG.md +++ b/packages/integration-testsuite/CHANGELOG.md @@ -1,5 +1,12 @@ # @apollo/server-integration-testsuite +## 4.9.2 + +### Patch Changes + +- Updated dependencies [[`62e7d940d`](https://github.com/apollographql/apollo-server/commit/62e7d940de025f21e89c60404bce0dddac84ed6c)]: + - @apollo/server@4.9.2 + ## 4.9.1 ### Patch Changes diff --git a/packages/integration-testsuite/package.json b/packages/integration-testsuite/package.json index 72cc7ae6124..6d17af3a943 100644 --- a/packages/integration-testsuite/package.json +++ b/packages/integration-testsuite/package.json @@ -1,6 +1,6 @@ { "name": "@apollo/server-integration-testsuite", - "version": "4.9.1", + "version": "4.9.2", "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.9.1", + "@apollo/server": "4.9.2", "@apollo/utils.keyvaluecache": "^2.1.0", "@apollo/utils.createhash": "^2.0.0", "@apollo/usage-reporting-protobuf": "^4.1.1", diff --git a/packages/server/CHANGELOG.md b/packages/server/CHANGELOG.md index 38137fc7077..4fd2dd8d24b 100644 --- a/packages/server/CHANGELOG.md +++ b/packages/server/CHANGELOG.md @@ -1,5 +1,17 @@ # @apollo/server +## 4.9.2 + +### Patch Changes + +- [#7699](https://github.com/apollographql/apollo-server/pull/7699) [`62e7d940d`](https://github.com/apollographql/apollo-server/commit/62e7d940de025f21e89c60404bce0dddac84ed6c) Thanks [@trevor-scheer](https://github.com/trevor-scheer)! - Fix error path attachment for list items + + Previously, when errors occurred while resolving a list item, the trace builder would fail to place the error at the correct path and just default to the root node with a warning message: + + > `Could not find node with path x.y.1, defaulting to put errors on root node.` + + This change places these errors at their correct paths and removes the log. + ## 4.9.1 ### Patch Changes diff --git a/packages/server/package.json b/packages/server/package.json index b554cb372c3..0628efeb90d 100644 --- a/packages/server/package.json +++ b/packages/server/package.json @@ -1,6 +1,6 @@ { "name": "@apollo/server", - "version": "4.9.1", + "version": "4.9.2", "description": "Core engine for Apollo GraphQL server", "type": "module", "main": "dist/cjs/index.js",