mirror of https://github.com/tokio-rs/axum
Merge branch 'v0.7.x' into main
This commit is contained in:
commit
712b3ef24b
|
@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
# Unreleased
|
# 0.4.4
|
||||||
|
|
||||||
- **added:** Derive `Clone` and `Copy` for `AppendHeaders` ([#2776])
|
- **added:** Derive `Clone` and `Copy` for `AppendHeaders` ([#2776])
|
||||||
- **added:** `must_use` attribute on `AppendHeaders` ([#2846])
|
- **added:** `must_use` attribute on `AppendHeaders` ([#2846])
|
||||||
|
|
|
@ -9,7 +9,7 @@ license = "MIT"
|
||||||
name = "axum-core"
|
name = "axum-core"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
repository = "https://github.com/tokio-rs/axum"
|
repository = "https://github.com/tokio-rs/axum"
|
||||||
version = "0.4.3" # remember to also bump the version that axum and axum-extra depend on
|
version = "0.4.4" # remember to also bump the version that axum and axum-extra depend on
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
tracing = ["dep:tracing"]
|
tracing = ["dep:tracing"]
|
||||||
|
|
|
@ -7,13 +7,17 @@ and this project adheres to [Semantic Versioning].
|
||||||
|
|
||||||
# Unreleased
|
# Unreleased
|
||||||
|
|
||||||
- **added:** The `response::Attachment` type ([#2789])
|
|
||||||
- **breaking:** Update to prost 0.13. Used for the `Protobuf` extractor ([#2829])
|
- **breaking:** Update to prost 0.13. Used for the `Protobuf` extractor ([#2829])
|
||||||
- **change:** Update minimum rust version to 1.70 ([#2829])
|
- **change:** Update minimum rust version to 1.70 ([#2829])
|
||||||
|
|
||||||
[#2789]: https://github.com/tokio-rs/axum/pull/2789
|
|
||||||
[#2829]: https://github.com/tokio-rs/axum/pull/2829
|
[#2829]: https://github.com/tokio-rs/axum/pull/2829
|
||||||
|
|
||||||
|
# 0.9.4
|
||||||
|
|
||||||
|
- **added:** The `response::Attachment` type ([#2789])
|
||||||
|
|
||||||
|
[#2789]: https://github.com/tokio-rs/axum/pull/2789
|
||||||
|
|
||||||
# 0.9.3 (24. March, 2024)
|
# 0.9.3 (24. March, 2024)
|
||||||
|
|
||||||
- **added:** New `tracing` feature which enables logging rejections from
|
- **added:** New `tracing` feature which enables logging rejections from
|
||||||
|
|
|
@ -9,7 +9,7 @@ license = "MIT"
|
||||||
name = "axum-extra"
|
name = "axum-extra"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
repository = "https://github.com/tokio-rs/axum"
|
repository = "https://github.com/tokio-rs/axum"
|
||||||
version = "0.9.3"
|
version = "0.9.4"
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["tracing"]
|
default = ["tracing"]
|
||||||
|
@ -39,8 +39,8 @@ typed-header = ["dep:headers"]
|
||||||
typed-routing = ["dep:axum-macros", "dep:percent-encoding", "dep:serde_html_form", "dep:form_urlencoded"]
|
typed-routing = ["dep:axum-macros", "dep:percent-encoding", "dep:serde_html_form", "dep:form_urlencoded"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
axum = { path = "../axum", version = "0.7.2", default-features = false }
|
axum = { path = "../axum", version = "0.7.6", default-features = false }
|
||||||
axum-core = { path = "../axum-core", version = "0.4.3" }
|
axum-core = { path = "../axum-core", version = "0.4.4" }
|
||||||
bytes = "1.1.0"
|
bytes = "1.1.0"
|
||||||
futures-util = { version = "0.3", default-features = false, features = ["alloc"] }
|
futures-util = { version = "0.3", default-features = false, features = ["alloc"] }
|
||||||
http = "1.0.0"
|
http = "1.0.0"
|
||||||
|
@ -54,7 +54,7 @@ tower-layer = "0.3"
|
||||||
tower-service = "0.3"
|
tower-service = "0.3"
|
||||||
|
|
||||||
# optional dependencies
|
# optional dependencies
|
||||||
axum-macros = { path = "../axum-macros", version = "0.4.1", optional = true }
|
axum-macros = { path = "../axum-macros", version = "0.4.2", optional = true }
|
||||||
cookie = { package = "cookie", version = "0.18.0", features = ["percent-encode"], optional = true }
|
cookie = { package = "cookie", version = "0.18.0", features = ["percent-encode"], optional = true }
|
||||||
form_urlencoded = { version = "1.1.0", optional = true }
|
form_urlencoded = { version = "1.1.0", optional = true }
|
||||||
headers = { version = "0.4.0", optional = true }
|
headers = { version = "0.4.0", optional = true }
|
||||||
|
|
|
@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
# Unreleased
|
# 0.4.2
|
||||||
|
|
||||||
- **added:** Add `#[debug_middleware]` ([#1993], [#2725])
|
- **added:** Add `#[debug_middleware]` ([#1993], [#2725])
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,7 @@ license = "MIT"
|
||||||
name = "axum-macros"
|
name = "axum-macros"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
repository = "https://github.com/tokio-rs/axum"
|
repository = "https://github.com/tokio-rs/axum"
|
||||||
version = "0.4.1" # remember to also bump the version that axum and axum-extra depends on
|
version = "0.4.2" # remember to also bump the version that axum and axum-extra depends on
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = []
|
default = []
|
||||||
|
|
|
@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
# Unreleased
|
# 0.7.6
|
||||||
|
|
||||||
- **change:** Avoid cloning `Arc` during deserialization of `Path`
|
- **change:** Avoid cloning `Arc` during deserialization of `Path`
|
||||||
- **added:** `axum::serve::Serve::tcp_nodelay` and `axum::serve::WithGracefulShutdown::tcp_nodelay` ([#2653])
|
- **added:** `axum::serve::Serve::tcp_nodelay` and `axum::serve::WithGracefulShutdown::tcp_nodelay` ([#2653])
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "axum"
|
name = "axum"
|
||||||
version = "0.7.5"
|
version = "0.7.6"
|
||||||
categories = ["asynchronous", "network-programming", "web-programming::http-server"]
|
categories = ["asynchronous", "network-programming", "web-programming::http-server"]
|
||||||
description = "Web framework that focuses on ergonomics and modularity"
|
description = "Web framework that focuses on ergonomics and modularity"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
@ -42,7 +42,7 @@ __private_docs = ["tower/full", "dep:tower-http"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
async-trait = "0.1.67"
|
async-trait = "0.1.67"
|
||||||
axum-core = { path = "../axum-core", version = "0.4.3" }
|
axum-core = { path = "../axum-core", version = "0.4.4" }
|
||||||
bytes = "1.0"
|
bytes = "1.0"
|
||||||
futures-util = { version = "0.3", default-features = false, features = ["alloc"] }
|
futures-util = { version = "0.3", default-features = false, features = ["alloc"] }
|
||||||
http = "1.0.0"
|
http = "1.0.0"
|
||||||
|
@ -62,7 +62,7 @@ tower-layer = "0.3.2"
|
||||||
tower-service = "0.3"
|
tower-service = "0.3"
|
||||||
|
|
||||||
# optional dependencies
|
# optional dependencies
|
||||||
axum-macros = { path = "../axum-macros", version = "0.4.1", optional = true }
|
axum-macros = { path = "../axum-macros", version = "0.4.2", optional = true }
|
||||||
base64 = { version = "0.21.0", optional = true }
|
base64 = { version = "0.21.0", optional = true }
|
||||||
hyper = { version = "1.1.0", optional = true }
|
hyper = { version = "1.1.0", optional = true }
|
||||||
hyper-util = { version = "0.1.3", features = ["tokio", "server", "service"], optional = true }
|
hyper-util = { version = "0.1.3", features = ["tokio", "server", "service"], optional = true }
|
||||||
|
|
Loading…
Reference in New Issue