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
8 changes: 4 additions & 4 deletions Cargo.lock

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

4 changes: 4 additions & 0 deletions crates/engineioxide-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# engineioxide-core 0.2.2
* refactor: move polling payload encoder/decoder to `core`.
* chore(deps): bump cmov from 0.5.3 to 0.5.4

# engineioxide-core 0.2.1
* deps: bump rand from 0.9.1 to 0.10.0

Expand Down
2 changes: 1 addition & 1 deletion crates/engineioxide-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "engineioxide-core"
description = "Engineioxide core types and utilities"
version = "0.2.1"
version = "0.2.2"
edition.workspace = true
rust-version.workspace = true
authors.workspace = true
Expand Down
3 changes: 3 additions & 0 deletions crates/engineioxide/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# engineioxide 0.17.6
* feat: add `emit_{binary,many}_volatile` methods to `Socket` to emit volatile packets.

# engineioxide 0.17.5
fix: v3 packet header in polling payload should have a size in utf-16 code points.

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 as a Tower Service."
version = "0.17.5"
version = "0.17.6"
edition.workspace = true
rust-version.workspace = true
authors.workspace = true
Expand All @@ -19,7 +19,7 @@ features = ["v3"]
rustdoc-args = ["--cfg", "docsrs"]

[dependencies]
engineioxide-core = { path = "../engineioxide-core", version = "0.2" }
engineioxide-core = { path = "../engineioxide-core", version = "0.2.2" }
bytes.workspace = true
futures-core.workspace = true
futures-util.workspace = true
Expand Down
3 changes: 3 additions & 0 deletions crates/socketioxide-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# socketioxide-core 0.18.2
* feat: add new `Volatile` broadcast flag

# socketioxide-core 0.18.1
* feat: add a `is_binary` method to `Packet` to check if the packet is binary.
* MSRV: rust-version is now 1.94
Expand Down
2 changes: 1 addition & 1 deletion crates/socketioxide-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "socketioxide-core"
description = "Core of the socketioxide library. Contains basic types and interfaces for the socketioxide crate and all other related sub-crates."
version = "0.18.1"
version = "0.18.2"
edition.workspace = true
rust-version.workspace = true
authors.workspace = true
Expand Down
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.5
* feat: add `volatile()` flags to emit without guaranteeing delivery, this allows to avoid filling internal
buffers and improve performance [#602](https://github.com/Totodore/socketioxide/issues/602).
* chore(deps): bump cmov from 0.5.3 to 0.5.4

# socketioxide 0.18.4
* docs: document accessing state from custom extractors
* MSRV: rust-version is now 1.94
Expand Down
6 changes: 3 additions & 3 deletions 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.4"
version = "0.18.5"
edition.workspace = true
rust-version.workspace = true
authors.workspace = true
Expand All @@ -13,8 +13,8 @@ license.workspace = true
readme.workspace = true

[dependencies]
engineioxide = { path = "../engineioxide", version = "0.17" }
socketioxide-core = { path = "../socketioxide-core", version = "0.18" }
engineioxide = { path = "../engineioxide", version = "0.17.6" }
socketioxide-core = { path = "../socketioxide-core", version = "0.18.2" }

bytes.workspace = true
futures-core.workspace = true
Expand Down
8 changes: 4 additions & 4 deletions examples/Cargo.lock

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