Skip to content

Commit 8d972ff

Browse files
committed
h3 v0.0.8
1 parent 72af1ed commit 8d972ff

File tree

5 files changed

+12
-4
lines changed

5 files changed

+12
-4
lines changed

changelog-h3.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
### v0.0.8 (2025-05-06)
2+
* fix integer overflow when parsing qpack prefixed integers
3+
* introduce new user facing error types
4+
* introduce new quic traits facing error types
5+
* `server::Connection::accept` now returns a `RequestResolver` instead of direct resolving the request to avoid head of line blocking
6+
* h3-datagram traits cleanup
7+
* some fixes in error handling
8+
19
### v0.0.7 (2025-03-13)
210
* Expose poll_recv_trailers APIs
311
* Avoiding extra allocation for shared error

h3-datagram/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ tracing = { version = "0.1.40", optional = true }
2121
tracing = ["dep:tracing"]
2222

2323
[dependencies.h3]
24-
version = "0.0.7"
24+
version = "0.0.8"
2525
path = "../h3"
2626
features = ["i-implement-a-third-party-backend-and-opt-into-breaking-changes"]

h3-quinn/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ categories = ["network-programming", "web-programming"]
1313
license = "MIT"
1414

1515
[dependencies]
16-
h3 = { version = "0.0.7", path = "../h3" }
16+
h3 = { version = "0.0.8", path = "../h3" }
1717
bytes = "1"
1818
quinn = { version = "0.11.7", default-features = false, features = [
1919
"futures-io",

h3-webtransport/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ tokio = { version = "1.28", default-features = false }
2222
h3-datagram = { version = "0.0.1", path = "../h3-datagram" }
2323

2424
[dependencies.h3]
25-
version = "0.0.7"
25+
version = "0.0.8"
2626
path = "../h3"
2727
features = ["i-implement-a-third-party-backend-and-opt-into-breaking-changes"]

h3/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "h3"
3-
version = "0.0.7"
3+
version = "0.0.8"
44
rust-version = "1.70"
55
authors = [
66
"Sean McArthur <[email protected]>",

0 commit comments

Comments
 (0)