Merge pull request #983 from PhiloInc/upgrade-subscription-transport-ws-for-graphiql

bump version of subscriptions-transport-ws for graphiql
This commit is contained in:
Hugh Willson 2018-05-11 05:26:29 -04:00 committed by GitHub
commit c5d0c43b55
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View file

@ -4,6 +4,8 @@ All of the packages in the `apollo-server` repo are released with the same versi
### vNEXT
* Upgrade `subscription-transport-ws` to 0.9.9 for Graphiql
### v1.3.6
* Recognize requests with Apollo Persisted Queries and return `PersistedQueryNotSupported` to the client instead of a confusing error. [PR #982](https://github.com/apollographql/apollo-server/pull/982)

View file

@ -34,7 +34,7 @@ export type GraphiQLData = {
// Current latest version of GraphiQL.
const GRAPHIQL_VERSION = '0.11.11';
const SUBSCRIPTIONS_TRANSPORT_VERSION = '0.8.2';
const SUBSCRIPTIONS_TRANSPORT_VERSION = '0.9.9';
// Ensures string values are safe to be used within a <script> tag.
// TODO: I don't think that's the right escape function