2018-12-17 17:02:18 -06:00
# master
2020-12-10 00:06:03 -06:00
- Compatibility with the latest `juniper` .
2021-01-15 23:54:43 -06:00
# [[0.6.1] 2021-01-15](https://github.com/graphql-rust/juniper/releases/tag/juniper_warp-0.6.1)
- Compatibility with the latest `juniper` .
2020-12-10 00:06:03 -06:00
# [[0.6.0] 2020-12-09](https://github.com/graphql-rust/juniper/releases/tag/juniper_warp-0.6.0)
2019-05-12 01:51:28 -05:00
- Compatibility with the latest `juniper` .
2020-04-10 00:35:30 -05:00
- Changed the implementation place of GraphQLBatchRequest and GraphQLBatchResponse in `juniper_warp`
to `juniper` to be reused in other http integrations, since this implementation was private.
2019-07-29 10:12:47 -05:00
2020-03-18 22:31:36 -05:00
## Breaking Changes
2020-05-08 11:00:49 -05:00
- Update `playground_filter` to support subscription endpoint URLs.
- Update `warp` to 0.2.
2020-03-18 22:31:36 -05:00
- Rename synchronous `execute` to `execute_sync` , add asynchronous `execute`
2020-05-08 11:00:49 -05:00
- `juniper_warp::graphiql_filter` now requires a second parameter for subscriptions.
- `make_graphql_filter` and `make_graphql_filter_sync` now ignore POST HTTP requests with no or invalid `Content-Type` header.
2020-03-18 22:31:36 -05:00
2019-12-16 23:57:17 -06:00
# [[0.5.2] 2019-12-16](https://github.com/graphql-rust/juniper/releases/tag/juniper_warp-0.5.2)
- Compatibility with the latest `juniper` .
2019-11-06 02:37:35 -06:00
# [[0.5.1] 2019-10-24](https://github.com/graphql-rust/juniper/releases/tag/juniper_warp-0.5.1)
- Compatibility with the latest `juniper` .
2019-09-29 21:11:04 -05:00
# [[0.5.0] 2019-09-29](https://github.com/graphql-rust/juniper/releases/tag/juniper_warp-0.5.0)
- Compatibility with the latest `juniper` .
2019-07-29 10:12:47 -05:00
# [[0.4.1] 2019-07-29](https://github.com/graphql-rust/juniper/releases/tag/juniper_warp-0.4.1)
- Compatibility with the latest `juniper` .
2018-12-17 17:02:18 -06:00
2019-07-19 16:27:08 -05:00
# [[0.4.0] 2019-07-19](https://github.com/graphql-rust/juniper/releases/tag/juniper_warp-0.4.0)
- Compatibility with the latest `juniper` .
2019-05-16 21:14:16 -05:00
# [[0.3.0] 2019-05-16](https://github.com/graphql-rust/juniper/releases/tag/juniper_warp-0.3.0)
- Compatibility with the latest `juniper` .
2018-12-17 17:02:18 -06:00
# [0.2.0] 2018-12-17
2018-10-27 20:45:47 -05:00
2018-10-27 21:00:32 -05:00
- **[Breaking Change]** The minimum required `warp` version is now `0.1.8` .
2018-12-17 17:02:18 -06:00
2018-10-27 21:00:32 -05:00
[#271 ](https://github.com/graphql-rust/juniper/pull/271 )
2018-10-27 20:45:47 -05:00
2018-10-27 21:00:32 -05:00
- **[Breaking Change]** The `graphql_handler` and `graphiql_handler` functions have been renamed to`graphql_filter` and `graphiql_filter` respectively.
2018-12-17 17:02:18 -06:00
2018-10-27 21:00:32 -05:00
[#267 ](https://github.com/graphql-rust/juniper/pull/267 )
2018-12-17 17:02:18 -06:00
2018-10-27 21:00:32 -05:00
- **[Breaking Change]** A `CpuPool` from `futures_cpupool` is no longer used. Instead, `warp` 's underlying `tokio_threadpool` is leveraged. Because of this, `make_graphql_filter_with_thread_pool` is no longer necessary and has been removed.
[#258 ](https://github.com/graphql-rust/juniper/pull/258 )
2018-12-17 17:02:18 -06:00
2018-10-27 20:45:47 -05:00
# juniper_warp [0.1] 2018-09-13
- Initial Release