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
Generated
+3 -3
View File
@@ -297,7 +297,7 @@ dependencies = [
[[package]] [[package]]
name = "axum" name = "axum"
version = "0.8.5" version = "0.8.6"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"axum-core", "axum-core",
@@ -346,7 +346,7 @@ dependencies = [
[[package]] [[package]]
name = "axum-core" name = "axum-core"
version = "0.5.4" version = "0.5.5"
dependencies = [ dependencies = [
"axum", "axum",
"axum-extra", "axum-extra",
@@ -369,7 +369,7 @@ dependencies = [
[[package]] [[package]]
name = "axum-extra" name = "axum-extra"
version = "0.10.2" version = "0.10.3"
dependencies = [ dependencies = [
"axum", "axum",
"axum-core", "axum-core",
+4
View File
@@ -5,6 +5,10 @@ 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).
# 0.5.5
Released without changes to fix docs.rs build.
# 0.5.4 # 0.5.4
- **fixed:** Removed unused `rustversion` dependency ([#3502]) - **fixed:** Removed unused `rustversion` dependency ([#3502])
+1 -1
View File
@@ -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.5.4" # remember to bump the version that axum and axum-extra depend on version = "0.5.5" # remember to bump the version that axum and axum-extra depend on
[package.metadata.cargo-public-api-crates] [package.metadata.cargo-public-api-crates]
allowed = [ allowed = [
+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 [#3190]: https://github.com/tokio-rs/axum/pull/3190
# 0.10.3
Released without changes to fix docs.rs build.
# 0.10.2 # 0.10.2
- **added:** Implement `OptionalFromRequest` for `Host` ([#3177]) - **added:** Implement `OptionalFromRequest` for `Host` ([#3177])
+3 -3
View File
@@ -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.10.2" version = "0.10.3"
[package.metadata.docs.rs] [package.metadata.docs.rs]
all-features = true all-features = true
@@ -101,7 +101,7 @@ with-rejection = ["dep:axum"]
__private_docs = ["axum/json", "dep:serde", "dep:tower"] __private_docs = ["axum/json", "dep:serde", "dep:tower"]
[dependencies] [dependencies]
axum-core = { path = "../axum-core", version = "0.5.2" } axum-core = { path = "../axum-core", version = "0.5.5" }
bytes = "1.1.0" bytes = "1.1.0"
futures-core = "0.3" futures-core = "0.3"
futures-util = { version = "0.3", default-features = false, features = ["alloc"] } futures-util = { version = "0.3", default-features = false, features = ["alloc"] }
@@ -114,7 +114,7 @@ tower-layer = "0.3"
tower-service = "0.3" tower-service = "0.3"
# optional dependencies # 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 } axum-macros = { path = "../axum-macros", version = "0.5.0", 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 }
fastrand = { version = "2.1.0", optional = true } fastrand = { version = "2.1.0", optional = true }
+4
View File
@@ -21,6 +21,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[#3478]: https://github.com/tokio-rs/axum/pull/3478 [#3478]: https://github.com/tokio-rs/axum/pull/3478
[#3489]: https://github.com/tokio-rs/axum/pull/3489 [#3489]: https://github.com/tokio-rs/axum/pull/3489
# 0.8.6
Released without changes to fix docs.rs build.
# 0.8.5 # 0.8.5
- **fixed:** Reject JSON request bodies with trailing characters after the JSON document ([#3453]) - **fixed:** Reject JSON request bodies with trailing characters after the JSON document ([#3453])
+2 -2
View File
@@ -1,6 +1,6 @@
[package] [package]
name = "axum" name = "axum"
version = "0.8.5" # remember to bump the version that axum-extra depends on version = "0.8.6" # remember to bump the version that axum-extra depends on
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"
@@ -94,7 +94,7 @@ __private_docs = [
__private = ["tokio", "http1", "dep:reqwest"] __private = ["tokio", "http1", "dep:reqwest"]
[dependencies] [dependencies]
axum-core = { path = "../axum-core", version = "0.5.3" } axum-core = { path = "../axum-core", version = "0.5.5" }
bytes = "1.0" bytes = "1.0"
futures-core = "0.3" futures-core = "0.3"
futures-util = { version = "0.3", default-features = false, features = ["alloc"] } futures-util = { version = "0.3", default-features = false, features = ["alloc"] }