Skip to content

Commit

Permalink
chore(deps): bump to v0.11 (#281)
Browse files Browse the repository at this point in the history
  • Loading branch information
Totodore authored Mar 6, 2024
1 parent 7a02fe4 commit fc599c3
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 11 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# 0.11.0
## socketioxide
* fix: a panic was raised sometimes under heavy traffic with socketio v5 when the connect timeout handler is destroyed but that the chan sender is still alive.
* **(Breaking)**: Emit errors now contains the provided data if there is an issue with the internal channel (for example if it is full) or if the socket closed.
* **(Breaking)**: Operators are now splitted between `Operators` and `BroadcastOperators` in order to split logic and fn signatures between broadcast and non-broadcast operators.

## engineioxide
* fix #277: with engine.io v3, the message byte prefix `0x4` was not added to the binary payload with `ws` transport.
* bump dependency `base64` to 0.22.0.

# 0.10.2
## socketioxide
* New [`rooms`](https://docs.rs/socketioxide/latest/socketioxide/struct.SocketIo.html#method.rooms) fn to get all the rooms of a namespace.
Expand Down
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[workspace.package]
version = "0.10.2"
version = "0.11.0"
edition = "2021"
rust-version = "1.67.0"
authors = ["Théodore Prévot <"]
repository = "https://github.com/totodore/socketioxide"
homepage = "https://github.com/totodore/socketioxide"
keywords = ["socketio", "tower", "axum", "hyper", "websocket"]
categories = [
"asynchronous",
"network-programming",
"web-programming::websocket",
"asynchronous",
"network-programming",
"web-programming::websocket",
]
license = "MIT"

Expand Down
14 changes: 7 additions & 7 deletions socketioxide/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ readme = "../README.md"


[dependencies]
engineioxide = { path = "../engineioxide", version = "0.10.2" }
engineioxide = { path = "../engineioxide", version = "0.11.0" }
futures.workspace = true
tokio = { workspace = true, features = ["rt", "time"] }
serde.workspace = true
Expand Down Expand Up @@ -45,18 +45,18 @@ state = ["dep:state"]

[dev-dependencies]
engineioxide = { path = "../engineioxide", features = [
"v3",
"tracing",
"test-utils",
"v3",
"tracing",
"test-utils",
] }
tokio-tungstenite.workspace = true
rust_socketio.workspace = true
axum.workspace = true
salvo.workspace = true
tokio = { workspace = true, features = [
"macros",
"parking_lot",
"rt-multi-thread",
"macros",
"parking_lot",
"rt-multi-thread",
] }
tracing-subscriber.workspace = true
criterion.workspace = true
Expand Down

0 comments on commit fc599c3

Please sign in to comment.