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

Commit 78810be

Browse files
author
Daniel Rinehart
committed
prep-0.9.2
1 parent 339981b commit 78810be

File tree

3 files changed

+18
-5
lines changed

3 files changed

+18
-5
lines changed

.npmignore

+12-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,12 @@
1-
dist/test
2-
src
1+
.github/
2+
.gitmodules
3+
.idea/
4+
.travis.yml
5+
.vscode/
6+
coverage/
7+
dist/test/
8+
docs/
9+
npm-debug.log.*
10+
package-lock.json
11+
src/
12+
yarn.lock

CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
# Changelog
22

33
### vNEXT
4-
- fix(isPromise): Made checks for promises in server.ts loose to allow for augmented and polyfilled promises.
4+
5+
### 0.9.2
6+
- fix format of keep alive message sent to legacy clients. [PR #297](https://github.com/apollographql/subscriptions-transport-ws/pull/297)
7+
- 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)
58

69
### 0.9.1
710
- 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)

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "subscriptions-transport-ws",
3-
"version": "0.9.1",
3+
"version": "0.9.2",
44
"description": "A websocket transport for GraphQL subscriptions",
55
"main": "dist/index.js",
66
"browser": "dist/client.js",
@@ -26,7 +26,7 @@
2626
"posttest": "npm run lint",
2727
"lint": "tslint --format stylish --project ./tsconfig.json",
2828
"watch": "tsc -w",
29-
"testonly": "mocha --reporter spec --full-trace \"./dist/test/**/*.js\"",
29+
"testonly": "mocha --reporter spec --full-trace ./dist/test/**/*.js",
3030
"coverage": "node ./node_modules/istanbul/lib/cli.js cover _mocha -- --full-trace ./dist/test/tests.js",
3131
"postcoverage": "remap-istanbul --input coverage/coverage.raw.json --type lcovonly --output coverage/lcov.info",
3232
"browser-compile": "webpack --config \"./unpkg-webpack.config.js\"",

0 commit comments

Comments
 (0)