2016-07-05 15:01:49 -07:00
|
|
|
# Changelog
|
|
|
|
|
2016-07-29 10:20:29 -07:00
|
|
|
### vNEXT
|
|
|
|
* `ExpressApollo` exposes the response object to the server's options callback.
|
|
|
|
|
2016-07-05 15:12:24 -07:00
|
|
|
### v0.2.0
|
|
|
|
* Complete refactor of Apollo Server using TypeScript. PR [#41](https://github.com/apollostack/apollo-server/pull/41) including the following changes:
|
|
|
|
* Dropped express-graphql dependency
|
|
|
|
* Dropped support for GET requests, only POST requests are allowed now
|
|
|
|
* Split GraphiQL into a separate middleware
|
|
|
|
* Factored out core to support HAPI, Koa and connect implementations
|
|
|
|
* Added support for query batching
|
|
|
|
* Added support for query whitelisting / stored queries
|
|
|
|
* Removed body parsing from express integration. Body must be parsed outside of apollo now
|
|
|
|
* Added `formatRequest` and `formatResponse` functions to apollo options.
|
|
|
|
* Removed support for shorthand schema definitions, connectors and mocks (use `graphql-tools` instead)
|
2016-07-29 03:06:23 +02:00
|
|
|
* Added Koa integration (@HriBB in #59)
|
2016-07-28 20:19:39 -07:00
|
|
|
* Changed express integration to support connect as well (@helfer in #58)
|
2016-07-05 15:12:24 -07:00
|
|
|
|
2016-07-05 15:01:49 -07:00
|
|
|
|
|
|
|
### v0.1.5
|
|
|
|
* BUG: Fixed a spelling error with `tracer.submit()` from PR [#26]((https://github.com/apollostack/apollo-server/pull/26)
|
|
|
|
in PR [#31](https://github.com/apollostack/apollo-server/pull/31)
|
|
|
|
|
|
|
|
### v.0.1.4
|
|
|
|
|
|
|
|
* BUG: Fixed a bug with tracer mocks that would throw a TypeError when using Ava [#26](https://github.com/apollostack/apollo-server/pull/26)
|
|
|
|
|
|
|
|
### v0.1.3
|
|
|
|
|
|
|
|
* Updated graphql dependency to 0.6.0
|