bump version of subscriptions-transport-ws for graphiql

The newer subscription client has a more forgiving default ka timeout
This commit is contained in:
Seth Madison 2018-04-23 21:26:41 -07:00
parent dbda85e1d9
commit ba43643d1d
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