From b9c6f4cfa1ec914e469f2288d2a65adb3e8dc8db Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 20 Apr 2023 13:40:17 -0700 Subject: [PATCH] Version Packages (#7489) 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@4.7.0 ### Minor Changes - [#7504](https://github.com/apollographql/apollo-server/pull/7504) [`22a5be934`](https://github.com/apollographql/apollo-server/commit/22a5be9347bbdb6aef4c158f9c81d310308d02d4) Thanks [@mayakoneval](https://github.com/mayakoneval)! - In the Apollo Server Landing Page Local config, you can now opt out of the telemetry that Apollo Studio runs in the embedded Sandbox & Explorer landing pages. This telemetry includes Google Analytics for event tracking and Sentry for error tracking. Example of the new config option: const server = new ApolloServer({ typeDefs, resolvers, plugins: [ process.env.NODE_ENV === 'production' ? ApolloServerPluginLandingPageProductionDefault({ graphRef: 'my-graph-id@my-graph-variant', embed: { runTelemetry: false }, }) : ApolloServerPluginLandingPageLocalDefault({ embed: { runTelemetry: false }, }), ], }); ## @apollo/server-integration-testsuite@4.7.0 ### Patch Changes - [#7509](https://github.com/apollographql/apollo-server/pull/7509) [`5c20aa02e`](https://github.com/apollographql/apollo-server/commit/5c20aa02ebee6eaa39255e9db995fae0dd3fe0a0) Thanks [@renovate](https://github.com/apps/renovate)! - Update `graphql-http` dependency - [#7475](https://github.com/apollographql/apollo-server/pull/7475) [`b9ac2d6b2`](https://github.com/apollographql/apollo-server/commit/b9ac2d6b2ea19f7f838fa62b339dac2d3fefff62) Thanks [@renovate](https://github.com/apps/renovate)! - Update graphql-http dependency - Updated dependencies \[[`22a5be934`](https://github.com/apollographql/apollo-server/commit/22a5be9347bbdb6aef4c158f9c81d310308d02d4)]: - @apollo/server@4.7.0 Co-authored-by: github-actions[bot] --- .changeset/dirty-seals-breathe.md | 5 ---- .changeset/honest-donuts-sparkle.md | 30 -------------------- .changeset/nice-stingrays-yell.md | 5 ---- package-lock.json | 8 +++--- packages/integration-testsuite/CHANGELOG.md | 11 ++++++++ packages/integration-testsuite/package.json | 4 +-- packages/server/CHANGELOG.md | 31 +++++++++++++++++++++ packages/server/package.json | 2 +- 8 files changed, 49 insertions(+), 47 deletions(-) delete mode 100644 .changeset/dirty-seals-breathe.md delete mode 100644 .changeset/honest-donuts-sparkle.md delete mode 100644 .changeset/nice-stingrays-yell.md diff --git a/.changeset/dirty-seals-breathe.md b/.changeset/dirty-seals-breathe.md deleted file mode 100644 index d2b1363cfa5..00000000000 --- a/.changeset/dirty-seals-breathe.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@apollo/server-integration-testsuite': patch ---- - -Update `graphql-http` dependency diff --git a/.changeset/honest-donuts-sparkle.md b/.changeset/honest-donuts-sparkle.md deleted file mode 100644 index 4c625583c3f..00000000000 --- a/.changeset/honest-donuts-sparkle.md +++ /dev/null @@ -1,30 +0,0 @@ ---- -'@apollo/server': minor ---- - -In the Apollo Server Landing Page Local config, you can now opt out of the telemetry that Apollo Studio runs in the -embedded Sandbox & Explorer landing pages. This telemetry includes Google Analytics for event tracking and -Sentry for error tracking. - -Example of the new config option: - -``` -const server = new ApolloServer({ - typeDefs, - resolvers, - plugins: [ - process.env.NODE_ENV === 'production' - ? ApolloServerPluginLandingPageProductionDefault({ - graphRef: 'my-graph-id@my-graph-variant', - embed: { - runTelemetry: false - }, - }) - : ApolloServerPluginLandingPageLocalDefault({ - embed: { - runTelemetry: false - }, - }), - ], -}); -``` diff --git a/.changeset/nice-stingrays-yell.md b/.changeset/nice-stingrays-yell.md deleted file mode 100644 index 7105d60d3cc..00000000000 --- a/.changeset/nice-stingrays-yell.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@apollo/server-integration-testsuite': patch ---- - -Update graphql-http dependency diff --git a/package-lock.json b/package-lock.json index 79b15073647..000cce7024e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -14543,12 +14543,12 @@ }, "packages/integration-testsuite": { "name": "@apollo/server-integration-testsuite", - "version": "4.6.0", + "version": "4.7.0", "license": "MIT", "dependencies": { "@apollo/cache-control-types": "^1.0.2", "@apollo/client": "^3.6.9", - "@apollo/server": "4.6.0", + "@apollo/server": "4.7.0", "@apollo/server-plugin-landing-page-graphql-playground": "^4.0.0", "@apollo/usage-reporting-protobuf": "^4.1.0", "@apollo/utils.createhash": "^2.0.0", @@ -14589,7 +14589,7 @@ }, "packages/server": { "name": "@apollo/server", - "version": "4.6.0", + "version": "4.7.0", "license": "MIT", "dependencies": { "@apollo/cache-control-types": "^1.0.2", @@ -14866,7 +14866,7 @@ "requires": { "@apollo/cache-control-types": "^1.0.2", "@apollo/client": "^3.6.9", - "@apollo/server": "4.6.0", + "@apollo/server": "4.7.0", "@apollo/server-plugin-landing-page-graphql-playground": "^4.0.0", "@apollo/usage-reporting-protobuf": "^4.1.0", "@apollo/utils.createhash": "^2.0.0", diff --git a/packages/integration-testsuite/CHANGELOG.md b/packages/integration-testsuite/CHANGELOG.md index 10acf55c663..9bbd9365aea 100644 --- a/packages/integration-testsuite/CHANGELOG.md +++ b/packages/integration-testsuite/CHANGELOG.md @@ -1,5 +1,16 @@ # @apollo/server-integration-testsuite +## 4.7.0 + +### Patch Changes + +- [#7509](https://github.com/apollographql/apollo-server/pull/7509) [`5c20aa02e`](https://github.com/apollographql/apollo-server/commit/5c20aa02ebee6eaa39255e9db995fae0dd3fe0a0) Thanks [@renovate](https://github.com/apps/renovate)! - Update `graphql-http` dependency + +- [#7475](https://github.com/apollographql/apollo-server/pull/7475) [`b9ac2d6b2`](https://github.com/apollographql/apollo-server/commit/b9ac2d6b2ea19f7f838fa62b339dac2d3fefff62) Thanks [@renovate](https://github.com/apps/renovate)! - Update graphql-http dependency + +- Updated dependencies [[`22a5be934`](https://github.com/apollographql/apollo-server/commit/22a5be9347bbdb6aef4c158f9c81d310308d02d4)]: + - @apollo/server@4.7.0 + ## 4.6.0 ### Patch Changes diff --git a/packages/integration-testsuite/package.json b/packages/integration-testsuite/package.json index 9d2b9b771ac..739f8cfdc85 100644 --- a/packages/integration-testsuite/package.json +++ b/packages/integration-testsuite/package.json @@ -1,6 +1,6 @@ { "name": "@apollo/server-integration-testsuite", - "version": "4.6.0", + "version": "4.7.0", "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.2", "@apollo/client": "^3.6.9", - "@apollo/server": "4.6.0", + "@apollo/server": "4.7.0", "@apollo/server-plugin-landing-page-graphql-playground": "^4.0.0", "@apollo/utils.keyvaluecache": "^2.1.0", "@apollo/utils.createhash": "^2.0.0", diff --git a/packages/server/CHANGELOG.md b/packages/server/CHANGELOG.md index 4a30e41c673..5bd3bdec9e7 100644 --- a/packages/server/CHANGELOG.md +++ b/packages/server/CHANGELOG.md @@ -1,5 +1,36 @@ # @apollo/server +## 4.7.0 + +### Minor Changes + +- [#7504](https://github.com/apollographql/apollo-server/pull/7504) [`22a5be934`](https://github.com/apollographql/apollo-server/commit/22a5be9347bbdb6aef4c158f9c81d310308d02d4) Thanks [@mayakoneval](https://github.com/mayakoneval)! - In the Apollo Server Landing Page Local config, you can now opt out of the telemetry that Apollo Studio runs in the + embedded Sandbox & Explorer landing pages. This telemetry includes Google Analytics for event tracking and + Sentry for error tracking. + + Example of the new config option: + + ``` + const server = new ApolloServer({ + typeDefs, + resolvers, + plugins: [ + process.env.NODE_ENV === 'production' + ? ApolloServerPluginLandingPageProductionDefault({ + graphRef: 'my-graph-id@my-graph-variant', + embed: { + runTelemetry: false + }, + }) + : ApolloServerPluginLandingPageLocalDefault({ + embed: { + runTelemetry: false + }, + }), + ], + }); + ``` + ## 4.6.0 ### Minor Changes diff --git a/packages/server/package.json b/packages/server/package.json index e41a0148949..bddef808f9b 100644 --- a/packages/server/package.json +++ b/packages/server/package.json @@ -1,6 +1,6 @@ { "name": "@apollo/server", - "version": "4.6.0", + "version": "4.7.0", "description": "Core engine for Apollo GraphQL server", "type": "module", "main": "dist/cjs/index.js",