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
11 changes: 11 additions & 0 deletions crates/engineioxide/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
# engineioxide 0.17.4
* MSRV: rust-version is now 1.94
* fix: issue [#731](https://github.com/Totodore/socketioxide/issues/731). Memory leak with unclaimed engine.io sessions whose WebSocket upgrade is started but never completed.
* fix: missing packet separator when polling a parked v4 encoder.
* fix: incorrectly merged binary/string packets when polling a parked v3 encoder.
* fix: v3 encoded payload size is never re-computed for max payload size threshold.
* fix: v3 decoder infinite loop with malformed packet
* fix: base64 binary packet protocol mismatch with payload starting with `4`.
* fix: fix potential panic in debug with malicious v3 packets.
* fix: expect b64 query param to be equal to 1 or true to enable b64 encoding.

# engineioxide 0.17.3
* fix: issue [#719](https://github.com/Totodore/socketioxide/issues/719). Because of an unpinned dependency on `tokio-util`
building engineioxide would fail with `tokio-util < 0.7.14`.
Expand Down
2 changes: 1 addition & 1 deletion crates/engineioxide/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "engineioxide"
description = "Engine IO server implementation as a Tower Service."
version = "0.17.3"
version = "0.17.4"
edition.workspace = true
rust-version.workspace = true
authors.workspace = true
Expand Down
4 changes: 4 additions & 0 deletions crates/socketioxide/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# socketioxide 0.18.4
* docs: document accessing state from custom extractors
* MSRV: rust-version is now 1.94

# socketioxide 0.18.3
* fix: race condition when emitting with acknowledgement.
* feat: expose global configured ack timeout to adapter implementations
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.18.3"
version = "0.18.4"
edition.workspace = true
rust-version.workspace = true
authors.workspace = true
Expand Down