Merge remote-tracking branch 'origin/v0.8.x' into mladedav/v0.8.6

This commit is contained in:
David Mládek
2025-09-30 14:29:20 +02:00
7 changed files with 21 additions and 9 deletions
+4
View File
@@ -27,6 +27,10 @@ Yanked from crates.io due to unforeseen breaking change, see [#3190] for details
[#3190]: https://github.com/tokio-rs/axum/pull/3190
# 0.10.3
Released without changes to fix docs.rs build.
# 0.10.2
- **added:** Implement `OptionalFromRequest` for `Host` ([#3177])
+3 -3
View File
@@ -9,7 +9,7 @@ license = "MIT"
name = "axum-extra"
readme = "README.md"
repository = "https://github.com/tokio-rs/axum"
version = "0.10.2"
version = "0.10.3"
[package.metadata.docs.rs]
all-features = true
@@ -101,7 +101,7 @@ with-rejection = ["dep:axum"]
__private_docs = ["axum/json", "dep:serde", "dep:tower"]
[dependencies]
axum-core = { path = "../axum-core", version = "0.5.2" }
axum-core = { path = "../axum-core", version = "0.5.5" }
bytes = "1.1.0"
futures-core = "0.3"
futures-util = { version = "0.3", default-features = false, features = ["alloc"] }
@@ -114,7 +114,7 @@ tower-layer = "0.3"
tower-service = "0.3"
# optional dependencies
axum = { path = "../axum", version = "0.8.4", default-features = false, optional = true }
axum = { path = "../axum", version = "0.8.6", default-features = false, optional = true }
axum-macros = { path = "../axum-macros", version = "0.5.0", optional = true }
cookie = { package = "cookie", version = "0.18.0", features = ["percent-encode"], optional = true }
fastrand = { version = "2.1.0", optional = true }