Skip to content

Commit

Permalink
release: v0.10.2 (#115)
Browse files Browse the repository at this point in the history
  • Loading branch information
graphql-ws-client-releaser[bot] committed Aug 21, 2024
1 parent bb958cb commit fa8447d
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 8 deletions.
21 changes: 17 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,32 @@ 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

Thanks to the people who contributed to this release:

- @vorporeal
- @szgupta
- @carlocorradini

## v0.10.1 - 2024-06-08

Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "graphql-ws-client"
version = "0.10.1"
version = "0.10.2"
authors = ["Graeme Coupar <[email protected]>"]
edition = "2021"
resolver = "2"
Expand Down
2 changes: 1 addition & 1 deletion examples-wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]

Expand Down
2 changes: 1 addition & 1 deletion examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]

Expand Down

0 comments on commit fa8447d

Please sign in to comment.