mirror of
https://github.com/tokio-rs/axum.git
synced 2026-09-08 00:00:24 +02:00
axum 0.8.0-rc.1 (#3073)
This commit is contained in:
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning].
|
||||
|
||||
# Unreleased
|
||||
|
||||
# 0.10.0
|
||||
|
||||
## rc.1
|
||||
|
||||
- **breaking:** `Option<Query<T>>` no longer swallows all error conditions, instead rejecting the
|
||||
request in many cases; see its documentation for details ([#2475])
|
||||
- **changed:** Deprecated `OptionalPath<T>` and `OptionalQuery<T>` ([#2475])
|
||||
@@ -26,9 +30,7 @@ and this project adheres to [Semantic Versioning].
|
||||
[#3010]: https://github.com/tokio-rs/axum/pull/3010
|
||||
[#3047]: https://github.com/tokio-rs/axum/pull/3047
|
||||
|
||||
# 0.10.0
|
||||
|
||||
# alpha.1
|
||||
## alpha.1
|
||||
|
||||
- **breaking:** Update to prost 0.13. Used for the `Protobuf` extractor ([#2829])
|
||||
- **change:** Update minimum rust version to 1.75 ([#2943])
|
||||
|
||||
@@ -9,7 +9,7 @@ license = "MIT"
|
||||
name = "axum-extra"
|
||||
readme = "README.md"
|
||||
repository = "https://github.com/tokio-rs/axum"
|
||||
version = "0.10.0-alpha.1"
|
||||
version = "0.10.0-rc.1"
|
||||
|
||||
[features]
|
||||
default = ["tracing"]
|
||||
@@ -42,8 +42,8 @@ typed-header = ["dep:headers"]
|
||||
typed-routing = ["dep:axum-macros", "dep:percent-encoding", "dep:serde_html_form", "dep:form_urlencoded"]
|
||||
|
||||
[dependencies]
|
||||
axum = { path = "../axum", version = "0.8.0-alpha.1", default-features = false, features = ["original-uri"] }
|
||||
axum-core = { path = "../axum-core", version = "0.5.0-alpha.1" }
|
||||
axum = { path = "../axum", version = "0.8.0-rc.1", default-features = false, features = ["original-uri"] }
|
||||
axum-core = { path = "../axum-core", version = "0.5.0-rc.1" }
|
||||
bytes = "1.1.0"
|
||||
futures-util = { version = "0.3", default-features = false, features = ["alloc"] }
|
||||
http = "1.0.0"
|
||||
@@ -58,7 +58,7 @@ tower-service = "0.3"
|
||||
|
||||
# optional dependencies
|
||||
async-stream = { version = "0.3", optional = true }
|
||||
axum-macros = { path = "../axum-macros", version = "0.5.0-alpha.1", optional = true }
|
||||
axum-macros = { path = "../axum-macros", version = "0.5.0-rc.1", optional = true }
|
||||
cookie = { package = "cookie", version = "0.18.0", features = ["percent-encode"], optional = true }
|
||||
fastrand = { version = "2.1.0", optional = true }
|
||||
form_urlencoded = { version = "1.1.0", optional = true }
|
||||
|
||||
Reference in New Issue
Block a user