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.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions crates/engineioxide/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# engineioxide 0.17.2
* fix: `Noop` packet was emitted only one time during the upgrade mechanism, leading to an infinite upgrade loop when the client sent multiple http polling requests.
* fix: the socket closing process was incorrect in some edge cases, leading to leaky sockets. This fix ensures that sockets are properly closed and resources are released.
* feat: improve traces in the upgrade and closing mechanisms.

# engineioxide 0.17.1
* fix: upgrade process was timing out when the client made accidentally more
than one polling requests while upgrading (#497).
Expand Down
4 changes: 2 additions & 2 deletions 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 in rust as a Tower Service."
version = "0.17.1"
version = "0.17.2"
edition.workspace = true
rust-version.workspace = true
authors.workspace = true
Expand All @@ -10,7 +10,7 @@ homepage.workspace = true
keywords.workspace = true
categories.workspace = true
license.workspace = true
readme = "Readme.md"
readme = "README.md"

# docs.rs-specific configuration
[package.metadata.docs.rs]
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion crates/engineioxide/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
nonstandard_style,
missing_docs
)]
#![doc = include_str!("../Readme.md")]
#![doc = include_str!("../README.md")]

pub use engineioxide_core::Str;
pub use service::{ProtocolVersion, TransportType};
Expand Down