diff --git a/Cargo.lock b/Cargo.lock index ec7022f4..12822616 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -292,7 +292,7 @@ dependencies = [ [[package]] name = "axum" -version = "0.8.4" +version = "0.8.5" dependencies = [ "anyhow", "axum-core", @@ -339,7 +339,7 @@ dependencies = [ [[package]] name = "axum-core" -version = "0.5.2" +version = "0.5.3" dependencies = [ "axum", "axum-extra", @@ -363,7 +363,7 @@ dependencies = [ [[package]] name = "axum-extra" -version = "0.10.1" +version = "0.10.2" dependencies = [ "axum", "axum-core", diff --git a/axum-core/CHANGELOG.md b/axum-core/CHANGELOG.md index 3119b6d7..f60f82b4 100644 --- a/axum-core/CHANGELOG.md +++ b/axum-core/CHANGELOG.md @@ -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/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -# Unreleased +# 0.5.3 - **added:** `DefaultBodyLimit::apply` for changing the `DefaultBodyLimit` inside extractors. ([#3368]) diff --git a/axum-core/Cargo.toml b/axum-core/Cargo.toml index 99d1b859..3b3b2f8a 100644 --- a/axum-core/Cargo.toml +++ b/axum-core/Cargo.toml @@ -9,7 +9,7 @@ license = "MIT" name = "axum-core" readme = "README.md" repository = "https://github.com/tokio-rs/axum" -version = "0.5.2" # remember to bump the version that axum and axum-extra depend on +version = "0.5.3" # remember to bump the version that axum and axum-extra depend on [features] tracing = ["dep:tracing"] diff --git a/axum-extra/CHANGELOG.md b/axum-extra/CHANGELOG.md index c3be8589..97b0220b 100644 --- a/axum-extra/CHANGELOG.md +++ b/axum-extra/CHANGELOG.md @@ -5,18 +5,18 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog], and this project adheres to [Semantic Versioning]. -# Unreleased - -- **added:** Implement `OptionalFromRequest` for `Host` ([#3177]) - -[#3177]: https://github.com/tokio-rs/axum/pull/3177 - # 0.11.0 Yanked from crates.io due to unforeseen breaking change, see [#3190] for details. [#3190]: https://github.com/tokio-rs/axum/pull/3190 +# 0.10.2 + +- **added:** Implement `OptionalFromRequest` for `Host` ([#3177]) + +[#3177]: https://github.com/tokio-rs/axum/pull/3177 + # 0.10.1 - **fixed:** Fix a broken link in the documentation of `ErasedJson` ([#3186]) diff --git a/axum-extra/Cargo.toml b/axum-extra/Cargo.toml index 03ae4f02..2554dbee 100644 --- a/axum-extra/Cargo.toml +++ b/axum-extra/Cargo.toml @@ -9,7 +9,7 @@ license = "MIT" name = "axum-extra" readme = "README.md" repository = "https://github.com/tokio-rs/axum" -version = "0.10.1" +version = "0.10.2" [features] default = ["tracing"] @@ -47,8 +47,8 @@ typed-routing = ["dep:axum-macros", "dep:percent-encoding", "dep:serde_html_form __private_docs = ["axum/json", "dep:serde", "dep:tower"] [dependencies] -axum = { path = "../axum", version = "0.8.4", default-features = false, features = ["original-uri"] } -axum-core = { path = "../axum-core", version = "0.5.2" } +axum = { path = "../axum", version = "0.8.5", default-features = false, features = ["original-uri"] } +axum-core = { path = "../axum-core", version = "0.5.3" } bytes = "1.1.0" futures-util = { version = "0.3", default-features = false, features = ["alloc"] } http = "1.0.0" diff --git a/axum/CHANGELOG.md b/axum/CHANGELOG.md index 864c10cd..9ecae4cf 100644 --- a/axum/CHANGELOG.md +++ b/axum/CHANGELOG.md @@ -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/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -# Unreleased +# 0.8.5 - **fixed:** Reject JSON request bodies with trailing characters after the JSON document ([#3453]) - **added:** Implement `OptionalFromRequest` for `Multipart` ([#3220]) diff --git a/axum/Cargo.toml b/axum/Cargo.toml index 5d6d4e9d..e929e9dd 100644 --- a/axum/Cargo.toml +++ b/axum/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "axum" -version = "0.8.4" # remember to bump the version that axum-extra depends on +version = "0.8.5" # remember to bump the version that axum-extra depends on categories = ["asynchronous", "network-programming", "web-programming::http-server"] description = "Web framework that focuses on ergonomics and modularity" edition = "2021" @@ -52,7 +52,7 @@ __private_docs = [ __private = ["tokio", "http1", "dep:reqwest"] [dependencies] -axum-core = { path = "../axum-core", version = "0.5.2" } +axum-core = { path = "../axum-core", version = "0.5.3" } bytes = "1.0" futures-util = { version = "0.3", default-features = false, features = ["alloc"] } http = "1.0.0"