From 1bfcd54348112d1010ac8a973f9b2adca700c6ec Mon Sep 17 00:00:00 2001 From: Jesse Rosenberger Date: Tue, 8 Sep 2020 10:45:31 +0000 Subject: [PATCH] Update `graphql-playground-react` version. This includes the fix in https://github.com/apollographql/graphql-playground/commit/1c102692bfbb717688827204186c15cb92629b3a --- CHANGELOG.md | 2 ++ packages/apollo-server-core/src/playground.ts | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7f4e03a265d..acbf82a8ec4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,8 @@ The version headers in this history reflect the versions of Apollo Server itself > The changes noted within this `vNEXT` section have not been released yet. New PRs and commits which introduce changes should include an entry in this `vNEXT` section as part of their development. With few exceptions, the format of the entry should follow convention (i.e., prefix with package name, use markdown `backtick formatting` for package names and code, suffix with a link to the change-set à la `[PR #YYY](https://link/pull/YYY)`, etc.). When a release is being prepared, a new header will be (manually) created below and the appropriate changes within that release will be moved into the new section. +- Updated `graphql-playground-react` to 1.7.33 to include [an upstream fix](https://github.com/apollographql/graphql-playground/commit/1c102692bfbb717688827204186c15cb92629b3a). [PR #4550](https://github.com/apollographql/apollo-server/pull/4550) + ## v2.17.0 - subscriptions: Fix bug which prevented `installSubscriptionHandlers` from accepting a `websocket.Server` (as intended in [PR #1966](https://github.com/apollographql/apollo-server/pull/1966)) and also added support for other `http.Server` variations (e.g., Tls). [Issue #4198](https://github.com/apollographql/apollo-server/issues/4198) [PR #4200](https://github.com/apollographql/apollo-server/pull/4200) diff --git a/packages/apollo-server-core/src/playground.ts b/packages/apollo-server-core/src/playground.ts index 6495dda6d7d..668a6db789d 100644 --- a/packages/apollo-server-core/src/playground.ts +++ b/packages/apollo-server-core/src/playground.ts @@ -10,7 +10,7 @@ export { // This specifies the version of `graphql-playground-react` that will be served // from `graphql-playground-html`. It's passed to ``graphql-playground-html`'s // renderPlaygroundPage` via the integration packages' playground configuration. -const playgroundVersion = '1.7.32'; +const playgroundVersion = '1.7.33'; // https://stackoverflow.com/a/51365037 type RecursivePartial = {