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 committed by Evans Hauser
parent 70a09df2c8
commit 8072312b99
No known key found for this signature in database
GPG key ID: 88AF586817F52EEC
2 changed files with 2 additions and 1 deletions

View file

@ -4,6 +4,7 @@ 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
* Remove tests and guaranteed support for Node 4 [PR #1024](https://github.com/apollographql/apollo-server/pull/1024)
### v1.3.6

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