Skip to content
Merged
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
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,5 +47,5 @@ rmp = "0.8"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tokio-stream = "0.1"
tokio-util = { version = "0.7", features = ["io"], default-features = false }
criterion = { package = "codspeed-criterion-compat", version = "*" }
criterion = { package = "codspeed-criterion-compat", version = "4" }
axum = "0.8"
5 changes: 5 additions & 0 deletions crates/socketioxide/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# socketioxide 0.18.0
* feat(**breaking**): remove sync handlers to gain 50% of compilation speed.
* feat: Socket rooms will be removed only **after** the disconnect handler execution,
making them available in the disconnect handler (thanks @Mettwasser).

# socketioxide 0.17.2
* fix: issue [#527](https://github.com/Totodore/socketioxide/issues/527). Socketioxide failed to build with the `tracing` flag enable and with `tracing-attributes` set to `v0.1.28`.

Expand Down
2 changes: 1 addition & 1 deletion crates/socketioxide/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "socketioxide"
description = "Socket IO server implementation in rust as a Tower Service."
version = "0.17.1"
version = "0.18.0"
edition.workspace = true
rust-version.workspace = true
authors.workspace = true
Expand Down
Loading