2.2 KiB
2.2 KiB
juniper_axum
changelog
All user visible changes to juniper_axum
crate will be documented in this file. This project uses Semantic Versioning 2.0.0.
0.1.0 · 2024-03-20
Initialized
- Dependent on 0.7 version of
axum
crate. (#1088, #1224) - Dependent on 0.16 version of
juniper
crate. (#1088) - Dependent on 0.4 version of
juniper_graphql_ws
crate. (#1088)
Added
extract::JuniperRequest
andresponse::JuniperResponse
for using in customaxum
crate handlers. (#1088)graphql
handler processing GraphQL requests for the specified schema. (#1088, #1184)subscriptions::graphql_transport_ws()
handler andsubscriptions::serve_graphql_transport_ws()
function allowing to process the newgraphql-transport-ws
GraphQL over WebSocket Protocol. (#1088, #986)subscriptions::graphql_ws()
handler andsubscriptions::serve_graphql_ws()
function allowing to process the legacygraphql-ws
GraphQL over WebSocket Protocol. (#1088, #986)subscriptions::ws()
handler andsubscriptions::serve_ws()
function allowing to auto-select between the legacygraphql-ws
GraphQL over WebSocket Protocol and the newgraphql-transport-ws
GraphQL over WebSocket Protocol, based on theSec-Websocket-Protocol
HTTP header value. (#1088, #986)graphiql
handler serving GraphiQL. (#1088)playground
handler serving GraphQL Playground. (#1088)simple.rs
andcustom.rs
integration examples. (#1088, #986, #1184)