From fa8447d6acd797c90f6bb936fa831126b21a301e Mon Sep 17 00:00:00 2001 From: "graphql-ws-client-releaser[bot]" <166155226+graphql-ws-client-releaser[bot]@users.noreply.github.com> Date: Wed, 21 Aug 2024 17:12:35 +0000 Subject: [PATCH] release: v0.10.2 (#115) --- CHANGELOG.md | 21 +++++++++++++++++---- Cargo.lock | 2 +- Cargo.toml | 2 +- examples-wasm/Cargo.toml | 2 +- examples/Cargo.toml | 2 +- 5 files changed, 21 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c47077f..56e7042 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,12 +11,24 @@ all APIs might be changed. ## Unreleased +## v0.10.2 - 2024-08-21 + +### Bug Fixes + +- send graphql-specific ping instead of ws ping frame + ([#117](https://github.com/obmarg/graphql-ws-client/pull/117)) + +### Changes + +- Tidied up some documentation ([#114](https://github.com/obmarg/graphql-ws-client/pull/114)) +- Handled some clippy lints ([#114](https://github.com/obmarg/graphql-ws-client/pull/114)) + ### Bug Fixes -- Fixed ping responses not following the graphql-transport-ws protocol - ([#116](https://github.com/obmarg/graphql-ws-client/pull/116)) -- `graphql-transport-ws` ping messages are now sent, instead of websocket ping - frames, when using the `KeepAliveSettings` ([#117](https://github.com/obmarg/graphql-ws-client/pull/117)) +- graphql-transport-ws pings are now responded to with graphql-tranport-ws pongs, + rather than websocket pongs ([#116](https://github.com/obmarg/graphql-ws-client/pull/116)) +- Keep alives now send `graphql-transport-ws` ping messages instead of websocket ping + frames ([#117](https://github.com/obmarg/graphql-ws-client/pull/117)) ### Contributors @@ -24,6 +36,7 @@ Thanks to the people who contributed to this release: - @vorporeal - @szgupta +- @carlocorradini ## v0.10.1 - 2024-06-08 diff --git a/Cargo.lock b/Cargo.lock index f85ee1e..f43a1d5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1043,7 +1043,7 @@ dependencies = [ [[package]] name = "graphql-ws-client" -version = "0.10.1" +version = "0.10.2" dependencies = [ "assert_matches", "async-channel 2.3.1", diff --git a/Cargo.toml b/Cargo.toml index 12ad439..c064303 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "graphql-ws-client" -version = "0.10.1" +version = "0.10.2" authors = ["Graeme Coupar "] edition = "2021" resolver = "2" diff --git a/examples-wasm/Cargo.toml b/examples-wasm/Cargo.toml index 098755e..e87ec99 100644 --- a/examples-wasm/Cargo.toml +++ b/examples-wasm/Cargo.toml @@ -21,7 +21,7 @@ console_log = "1" [dependencies.graphql-ws-client] path = "../" -version = "0.10.1" +version = "0.10.2" default-features = false features = ["cynic", "ws_stream_wasm"] diff --git a/examples/Cargo.toml b/examples/Cargo.toml index 5cf92bf..23ef716 100644 --- a/examples/Cargo.toml +++ b/examples/Cargo.toml @@ -21,7 +21,7 @@ tokio = { version = "1.15", features = ["rt-multi-thread", "macros"] } [dependencies.graphql-ws-client] path = "../" -version = "0.10.1" +version = "0.10.2" default-features = false features = ["cynic", "tungstenite"]