Skip to content

Commit f3a1a0c

Browse files
Support 0.14 version of actix crate (#1189)
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]>
1 parent 57628de commit f3a1a0c

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

juniper_actix/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ All user visible changes to `juniper_actix` crate will be documented in this fil
1919

2020
- `subscriptions::graphql_transport_ws_handler()` allowing to process the [new `graphql-transport-ws` GraphQL over WebSocket Protocol][graphql-transport-ws]. ([#1191])
2121
- `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])
22+
- Support of 0.14 version of [`actix` crate]. ([#1189])
2223

2324
### Fixed
2425

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

3234

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

4042

4143

44+
[`actix` crate]: https://docs.rs/actix
4245
[`actix-web` crate]: https://docs.rs/actix-web
4346
[`juniper` crate]: https://docs.rs/juniper
4447
[`juniper_graphql_ws` crate]: https://docs.rs/juniper_graphql_ws

juniper_actix/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ subscriptions = [
2828
]
2929

3030
[dependencies]
31-
actix = { version = ">=0.12,<=0.13", optional = true }
31+
actix = { version = ">=0.12, <=0.14", optional = true }
3232
actix-http = "3.2"
3333
actix-web = "4.4"
3434
actix-web-actors = { version = "4.1", optional = true }

0 commit comments

Comments
 (0)