Skip to content
This repository has been archived by the owner on Apr 14, 2023. It is now read-only.

Commit

Permalink
Merge pull request #308 from apollographql/prep-0.9.2
Browse files Browse the repository at this point in the history
prep-0.9.2
  • Loading branch information
NeoPhi authored Dec 1, 2017
2 parents 339981b + 78810be commit d11465a
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 5 deletions.
14 changes: 12 additions & 2 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,12 @@
dist/test
src
.github/
.gitmodules
.idea/
.travis.yml
.vscode/
coverage/
dist/test/
docs/
npm-debug.log.*
package-lock.json
src/
yarn.lock
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
# Changelog

### vNEXT
- fix(isPromise): Made checks for promises in server.ts loose to allow for augmented and polyfilled promises.

### 0.9.2
- fix format of keep alive message sent to legacy clients. [PR #297](https://github.com/apollographql/subscriptions-transport-ws/pull/297)
- fix(isPromise): Made checks for promises in server.ts loose to allow for augmented and polyfilled promises. [PR #304](https://github.com/apollographql/subscriptions-transport-ws/pull/304)

### 0.9.1
- docs(KEEP_ALIVE): Updated protocol docs to explain the correct server implementation of `GQL_CONNECTION_INIT`, `GQL_CONNECTION_ACK` and `GQL_CONNECTION_KEEP_ALIVE` [PR #279](https://github.com/apollographql/subscriptions-transport-ws/pull/279)
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "subscriptions-transport-ws",
"version": "0.9.1",
"version": "0.9.2",
"description": "A websocket transport for GraphQL subscriptions",
"main": "dist/index.js",
"browser": "dist/client.js",
Expand All @@ -26,7 +26,7 @@
"posttest": "npm run lint",
"lint": "tslint --format stylish --project ./tsconfig.json",
"watch": "tsc -w",
"testonly": "mocha --reporter spec --full-trace \"./dist/test/**/*.js\"",
"testonly": "mocha --reporter spec --full-trace ./dist/test/**/*.js",
"coverage": "node ./node_modules/istanbul/lib/cli.js cover _mocha -- --full-trace ./dist/test/tests.js",
"postcoverage": "remap-istanbul --input coverage/coverage.raw.json --type lcovonly --output coverage/lcov.info",
"browser-compile": "webpack --config \"./unpkg-webpack.config.js\"",
Expand Down

0 comments on commit d11465a

Please sign in to comment.