mirror of
https://github.com/tokio-rs/axum.git
synced 2026-09-07 00:00:12 +02:00
Release axum 0.7 (#2354)
This commit is contained in:
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning].
|
||||
|
||||
# Unreleased
|
||||
|
||||
- None.
|
||||
|
||||
# 0.9.0 (27. November, 2023)
|
||||
|
||||
- **added:** `OptionalQuery` extractor ([#2310])
|
||||
- **added:** `TypedHeader` which used to be in `axum` ([#1850])
|
||||
- **breaking:** Update to prost 0.12. Used for the `Protobuf` extractor
|
||||
|
||||
@@ -9,7 +9,7 @@ license = "MIT"
|
||||
name = "axum-extra"
|
||||
readme = "README.md"
|
||||
repository = "https://github.com/tokio-rs/axum"
|
||||
version = "0.7.4"
|
||||
version = "0.9.0"
|
||||
|
||||
[features]
|
||||
default = []
|
||||
@@ -36,8 +36,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.6.13", default-features = false }
|
||||
axum-core = { path = "../axum-core", version = "0.3.4" }
|
||||
axum = { path = "../axum", version = "0.7.0", default-features = false }
|
||||
axum-core = { path = "../axum-core", version = "0.4.0" }
|
||||
bytes = "1.1.0"
|
||||
futures-util = { version = "0.3", default-features = false, features = ["alloc"] }
|
||||
http = "1.0.0"
|
||||
@@ -51,7 +51,7 @@ tower-layer = "0.3"
|
||||
tower-service = "0.3"
|
||||
|
||||
# optional dependencies
|
||||
axum-macros = { path = "../axum-macros", version = "0.3.7", optional = true }
|
||||
axum-macros = { path = "../axum-macros", version = "0.4.0", optional = true }
|
||||
cookie = { package = "cookie", version = "0.18.0", features = ["percent-encode"], optional = true }
|
||||
form_urlencoded = { version = "1.1.0", optional = true }
|
||||
headers = { version = "0.4.0", optional = true }
|
||||
@@ -65,7 +65,7 @@ tokio-stream = { version = "0.1.9", optional = true }
|
||||
tokio-util = { version = "0.7", optional = true }
|
||||
|
||||
[dev-dependencies]
|
||||
axum = { path = "../axum", version = "0.6.0" }
|
||||
axum = { path = "../axum", version = "0.7.0" }
|
||||
hyper = "1.0.0"
|
||||
reqwest = { version = "0.11", default-features = false, features = ["json", "stream", "multipart"] }
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
|
||||
Reference in New Issue
Block a user