Skip to content
This repository was archived by the owner on Feb 22, 2026. It is now read-only.

Commit fa8447d

Browse files
release: v0.10.2 (#115)
1 parent bb958cb commit fa8447d

5 files changed

Lines changed: 21 additions & 8 deletions

File tree

CHANGELOG.md

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,32 @@ all APIs might be changed.
1111

1212
## Unreleased
1313

14+
## v0.10.2 - 2024-08-21
15+
16+
### Bug Fixes
17+
18+
- send graphql-specific ping instead of ws ping frame
19+
([#117](https://github.com/obmarg/graphql-ws-client/pull/117))
20+
21+
### Changes
22+
23+
- Tidied up some documentation ([#114](https://github.com/obmarg/graphql-ws-client/pull/114))
24+
- Handled some clippy lints ([#114](https://github.com/obmarg/graphql-ws-client/pull/114))
25+
1426
### Bug Fixes
1527

16-
- Fixed ping responses not following the graphql-transport-ws protocol
17-
([#116](https://github.com/obmarg/graphql-ws-client/pull/116))
18-
- `graphql-transport-ws` ping messages are now sent, instead of websocket ping
19-
frames, when using the `KeepAliveSettings` ([#117](https://github.com/obmarg/graphql-ws-client/pull/117))
28+
- graphql-transport-ws pings are now responded to with graphql-tranport-ws pongs,
29+
rather than websocket pongs ([#116](https://github.com/obmarg/graphql-ws-client/pull/116))
30+
- Keep alives now send `graphql-transport-ws` ping messages instead of websocket ping
31+
frames ([#117](https://github.com/obmarg/graphql-ws-client/pull/117))
2032

2133
### Contributors
2234

2335
Thanks to the people who contributed to this release:
2436

2537
- @vorporeal
2638
- @szgupta
39+
- @carlocorradini
2740

2841
## v0.10.1 - 2024-06-08
2942

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "graphql-ws-client"
3-
version = "0.10.1"
3+
version = "0.10.2"
44
authors = ["Graeme Coupar <[email protected]>"]
55
edition = "2021"
66
resolver = "2"

examples-wasm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ console_log = "1"
2121

2222
[dependencies.graphql-ws-client]
2323
path = "../"
24-
version = "0.10.1"
24+
version = "0.10.2"
2525
default-features = false
2626
features = ["cynic", "ws_stream_wasm"]
2727

examples/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ tokio = { version = "1.15", features = ["rt-multi-thread", "macros"] }
2121

2222
[dependencies.graphql-ws-client]
2323
path = "../"
24-
version = "0.10.1"
24+
version = "0.10.2"
2525
default-features = false
2626
features = ["cynic", "tungstenite"]
2727

0 commit comments

Comments
 (0)