From 5ab08c18d32d225ff9f9b147811994e32216a101 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 2 May 2023 11:43:33 -0700 Subject: [PATCH] Version Packages (#7541) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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.7.1 ### Patch Changes - Updated dependencies \[[`5d3c45be9`](https://github.com/apollographql/apollo-server/commit/5d3c45be9d871ac1ccc2e5cce70fcd60591f39a4)]: - @apollo/server@4.7.1 ## @apollo/server@4.7.1 ### Patch Changes - [#7539](https://github.com/apollographql/apollo-server/pull/7539) [`5d3c45be9`](https://github.com/apollographql/apollo-server/commit/5d3c45be9d871ac1ccc2e5cce70fcd60591f39a4) + [#7540](https://github.com/apollographql/apollo-server/pull/7540) [`42897532b`](https://github.com/apollographql/apollo-server/commit/42897532b5b7f691883988a149156a3294ed5404)Thanks [@mayakoneval](https://github.com/mayakoneval)! - 🐛 Bug Fix for Apollo Server Landing Pages on Safari. A Content Security Policy was added to our landing page html so that Safari can run the inline scripts we use to call the Embedded Sandbox & Explorer. Co-authored-by: github-actions[bot] --- .changeset/fuzzy-icons-beam.md | 2 -- .changeset/sweet-planets-hang.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 +- 7 files changed, 20 insertions(+), 14 deletions(-) delete mode 100644 .changeset/fuzzy-icons-beam.md delete mode 100644 .changeset/sweet-planets-hang.md diff --git a/.changeset/fuzzy-icons-beam.md b/.changeset/fuzzy-icons-beam.md deleted file mode 100644 index a845151cc84..00000000000 --- a/.changeset/fuzzy-icons-beam.md +++ /dev/null @@ -1,2 +0,0 @@ ---- ---- diff --git a/.changeset/sweet-planets-hang.md b/.changeset/sweet-planets-hang.md deleted file mode 100644 index 5d2cd5d9563..00000000000 --- a/.changeset/sweet-planets-hang.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@apollo/server': patch ---- - -🐛 Bug Fix for Apollo Server Landing Pages on Safari. A Content Security Policy was added to our landing page html so that Safari can run the inline scripts we use to call the Embedded Sandbox & Explorer. diff --git a/package-lock.json b/package-lock.json index 5b3fda9f8bb..92ce34985ef 100644 --- a/package-lock.json +++ b/package-lock.json @@ -14564,12 +14564,12 @@ }, "packages/integration-testsuite": { "name": "@apollo/server-integration-testsuite", - "version": "4.7.0", + "version": "4.7.1", "license": "MIT", "dependencies": { "@apollo/cache-control-types": "^1.0.2", "@apollo/client": "^3.6.9", - "@apollo/server": "4.7.0", + "@apollo/server": "4.7.1", "@apollo/server-plugin-landing-page-graphql-playground": "^4.0.0", "@apollo/usage-reporting-protobuf": "^4.1.0", "@apollo/utils.createhash": "^2.0.0", @@ -14610,7 +14610,7 @@ }, "packages/server": { "name": "@apollo/server", - "version": "4.7.0", + "version": "4.7.1", "license": "MIT", "dependencies": { "@apollo/cache-control-types": "^1.0.2", @@ -14887,7 +14887,7 @@ "requires": { "@apollo/cache-control-types": "^1.0.2", "@apollo/client": "^3.6.9", - "@apollo/server": "4.7.0", + "@apollo/server": "4.7.1", "@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 9bbd9365aea..f035204a6d0 100644 --- a/packages/integration-testsuite/CHANGELOG.md +++ b/packages/integration-testsuite/CHANGELOG.md @@ -1,5 +1,12 @@ # @apollo/server-integration-testsuite +## 4.7.1 + +### Patch Changes + +- Updated dependencies [[`5d3c45be9`](https://github.com/apollographql/apollo-server/commit/5d3c45be9d871ac1ccc2e5cce70fcd60591f39a4)]: + - @apollo/server@4.7.1 + ## 4.7.0 ### Patch Changes diff --git a/packages/integration-testsuite/package.json b/packages/integration-testsuite/package.json index 739f8cfdc85..09421aefb3c 100644 --- a/packages/integration-testsuite/package.json +++ b/packages/integration-testsuite/package.json @@ -1,6 +1,6 @@ { "name": "@apollo/server-integration-testsuite", - "version": "4.7.0", + "version": "4.7.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.2", "@apollo/client": "^3.6.9", - "@apollo/server": "4.7.0", + "@apollo/server": "4.7.1", "@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 5bd3bdec9e7..759a794925e 100644 --- a/packages/server/CHANGELOG.md +++ b/packages/server/CHANGELOG.md @@ -1,5 +1,11 @@ # @apollo/server +## 4.7.1 + +### Patch Changes + +- [#7539](https://github.com/apollographql/apollo-server/pull/7539) [`5d3c45be9`](https://github.com/apollographql/apollo-server/commit/5d3c45be9d871ac1ccc2e5cce70fcd60591f39a4) Thanks [@mayakoneval](https://github.com/mayakoneval)! - 🐛 Bug Fix for Apollo Server Landing Pages on Safari. A Content Security Policy was added to our landing page html so that Safari can run the inline scripts we use to call the Embedded Sandbox & Explorer. + ## 4.7.0 ### Minor Changes diff --git a/packages/server/package.json b/packages/server/package.json index bddef808f9b..721f070578b 100644 --- a/packages/server/package.json +++ b/packages/server/package.json @@ -1,6 +1,6 @@ { "name": "@apollo/server", - "version": "4.7.0", + "version": "4.7.1", "description": "Core engine for Apollo GraphQL server", "type": "module", "main": "dist/cjs/index.js",