Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,25 @@ all APIs might be changed.

## Unreleased

## v0.11.2 - 2025-09-13

### New Features

- add `Client.stop(subscription_id)`
- expose ConnectionId newtype ([#133](https://github.com/obmarg/graphql-ws-client/pull/133))
- end subscriptions on drop ([#130](https://github.com/obmarg/graphql-ws-client/pull/130))

### Bug Fixes

- dont take owned self in `Client.stop` ([#138](https://github.com/obmarg/graphql-ws-client/pull/138))

### Changes

- use 2024 edition ([#135](https://github.com/obmarg/graphql-ws-client/pull/135))
- rename `stream.rs` -> `subscription.rs` ([#136](https://github.com/obmarg/graphql-ws-client/pull/136))
- bump MSRV to 1.85 ([#134](https://github.com/obmarg/graphql-ws-client/pull/134))
- rename module `next` -> `client` ([#132](https://github.com/obmarg/graphql-ws-client/pull/132))

## v0.11.1 - 2024-10-29

### Bug Fixes
Expand Down
4 changes: 2 additions & 2 deletions 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.11.1"
version = "0.11.2"
authors = ["Graeme Coupar <graeme@polyandglot.dev>"]
edition = "2024"
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.11.1"
version = "0.11.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.11.1"
version = "0.11.2"
default-features = false
features = ["cynic", "tungstenite"]

Expand Down