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

WIP: Graphql Transport WS Protocol #108

Merged
merged 17 commits into from
May 14, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
98a7f52
feat(NA): new protocol supporting queries, mutations and subscription…
mistic Apr 13, 2017
7b19459
feat(NA): applied changes according pull request review.
mistic Apr 19, 2017
062d1d9
feat(NA): graphql transport ws protocol with executor.
mistic Apr 26, 2017
c2a1988
refact(NA): merge with last changes on master.
mistic May 2, 2017
3a6e984
feat(NA): changes according pull request reviews. test(NA): refactori…
mistic May 5, 2017
4879dfc
refact(NA): move todo of validation errors and changing method that g…
mistic May 10, 2017
0228ed2
refact(NA): removed unused test.
mistic May 10, 2017
126ab39
fix(NA): env check on helpers function.
mistic May 11, 2017
c8c7f71
refact(NA): remove some types due to lint errors.
mistic May 11, 2017
da9a67e
feat(NA): completely legacy support onSubscribe.
mistic May 11, 2017
72ad3f2
fix(NA): removed unused src glob from lint task.
mistic May 11, 2017
5cf552a
fix(NA): mapping between old and new error spec in connection_error o…
mistic May 11, 2017
79855df
fix(NA): add mock subscription to pre register opId before onOperation
mistic May 11, 2017
642d71e
refact(NA): change signature of onConnect so it dont break the old api.
mistic May 11, 2017
f71bee1
fix(NA): apply some changes to old tests. fix(NA): redesign onConnect…
mistic May 10, 2017
6b33b99
Merge branch 'graphql-transport-ws-protocol' into graphql-transport-w…
mistic May 11, 2017
a854e33
feat(NA): added support into server executor for graphql-js subscribe.
mistic May 11, 2017
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ coverage
typings
npm-debug.log
browser/
.idea/
.vscode/
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@

- Enabled Greenkeeper and updated dependencies, includes major version bump of ws [PR #90](https://github.com/apollographql/subscriptions-transport-ws/pull/90)

### 0.6.0
- Protocol update to support queries, mutations and also subscriptions. [PR #108](https://github.com/apollographql/subscriptions-transport-ws/pull/108)
- Added support in the server for GraphQL Executor. [PR #108](https://github.com/apollographql/subscriptions-transport-ws/pull/108)
- Added support in the server executor for `graphql-js subscribe`. [PR #846](https://github.com/graphql/graphql-js/pull/846)

### 0.5.5

- Remove dependency on `graphql-tag/printer` per [graphql-tag#54](https://github.com/apollographql/graphql-tag/issues/54) [PR #98](https://github.com/apollographql/subscriptions-transport-ws/pull/98)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"pretest": "npm run compile",
"test": "npm run testonly --",
"posttest": "npm run lint",
"lint": "tslint --type-check --project ./tsconfig.json ./src/**/*.ts",
"lint": "tslint --type-check --project ./tsconfig.json",
"watch": "tsc -w",
"testonly": "mocha --reporter spec --full-trace ./dist/test/tests.js",
"coverage": "node ./node_modules/istanbul/lib/cli.js cover _mocha -- --full-trace ./dist/test/tests.js",
Expand Down
Loading