From 6aac85102d9d581735d2e9c1592114c5dd229cf6 Mon Sep 17 00:00:00 2001 From: totodore Date: Sat, 24 Jan 2026 14:39:41 +0100 Subject: [PATCH] chore(socketio): v0.18.1 --- crates/socketioxide/CHANGELOG.md | 4 ++++ crates/socketioxide/Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/crates/socketioxide/CHANGELOG.md b/crates/socketioxide/CHANGELOG.md index ad67c940..ce1a5a1d 100644 --- a/crates/socketioxide/CHANGELOG.md +++ b/crates/socketioxide/CHANGELOG.md @@ -1,3 +1,7 @@ +# socketioxide 0.18.1 +* fix: issue [#627](https://github.com/Totodore/socketioxide/issues/627). In case of namespace connect failure, +the socket was not properly removed from the adapter and the namespace. + # 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, diff --git a/crates/socketioxide/Cargo.toml b/crates/socketioxide/Cargo.toml index 4edae20b..98e91067 100644 --- a/crates/socketioxide/Cargo.toml +++ b/crates/socketioxide/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "socketioxide" description = "Socket IO server implementation in rust as a Tower Service." -version = "0.18.0" +version = "0.18.1" edition.workspace = true rust-version.workspace = true authors.workspace = true