Skip to content

Commit

Permalink
Support 0.14 version of actix crate (#1189)
Browse files Browse the repository at this point in the history
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Kai Ren <[email protected]>
  • Loading branch information
dependabot[bot] and tyranron authored Oct 16, 2023
1 parent 57628de commit f3a1a0c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions juniper_actix/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ All user visible changes to `juniper_actix` crate will be documented in this fil

- `subscriptions::graphql_transport_ws_handler()` allowing to process the [new `graphql-transport-ws` GraphQL over WebSocket Protocol][graphql-transport-ws]. ([#1191])
- `subscriptions::ws_handler()` with auto-selection between the [legacy `graphql-ws` GraphQL over WebSocket Protocol][graphql-ws] and the [new `graphql-transport-ws` GraphQL over WebSocket Protocol][graphql-transport-ws], based on the `Sec-Websocket-Protocol` HTTP header value. ([#1191])
- Support of 0.14 version of [`actix` crate]. ([#1189])

### Fixed

Expand All @@ -27,6 +28,7 @@ All user visible changes to `juniper_actix` crate will be documented in this fil
[#1034]: /../../pull/1034
[#1169]: /../../issues/1169
[#1187]: /../../pull/1187
[#1189]: /../../pull/1189
[#1191]: /../../pull/1191


Expand All @@ -39,6 +41,7 @@ See [old CHANGELOG](/../../blob/juniper_actix-v0.4.0/juniper_actix/CHANGELOG.md)



[`actix` crate]: https://docs.rs/actix
[`actix-web` crate]: https://docs.rs/actix-web
[`juniper` crate]: https://docs.rs/juniper
[`juniper_graphql_ws` crate]: https://docs.rs/juniper_graphql_ws
Expand Down
2 changes: 1 addition & 1 deletion juniper_actix/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ subscriptions = [
]

[dependencies]
actix = { version = ">=0.12,<=0.13", optional = true }
actix = { version = ">=0.12, <=0.14", optional = true }
actix-http = "3.2"
actix-web = "4.4"
actix-web-actors = { version = "4.1", optional = true }
Expand Down

0 comments on commit f3a1a0c

Please sign in to comment.