Release axum 0.8.4

This commit is contained in:
Jonas Platte 2025-04-30 14:25:44 +02:00
parent ac75e2f727
commit 8762520da8
No known key found for this signature in database
GPG Key ID: 7D261D771D915378
4 changed files with 10 additions and 4 deletions

2
Cargo.lock generated
View File

@ -302,7 +302,7 @@ dependencies = [
[[package]]
name = "axum"
version = "0.8.3"
version = "0.8.4"
dependencies = [
"anyhow",
"axum-core",

View File

@ -49,7 +49,7 @@ __private_docs = [
]
[dependencies]
axum = { path = "../axum", version = "0.8.3", default-features = false, features = ["original-uri"] }
axum = { path = "../axum", version = "0.8.4", default-features = false, features = ["original-uri"] }
axum-core = { path = "../axum-core", version = "0.5.2" }
bytes = "1.1.0"
futures-util = { version = "0.3", default-features = false, features = ["alloc"] }

View File

@ -5,11 +5,17 @@ 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.4
- **added:** `Router::reset_fallback` ([#3320])
- **added:** `WebSocketUpgrade::selected_protocol` ([#3248])
- **fixed:** Panic location for overlapping method routes ([#3319])
- **fixed:** Don't leak a tokio task when using `serve` without graceful shutdown ([#3129])
[#3319]: https://github.com/tokio-rs/axum/pull/3319
[#3320]: https://github.com/tokio-rs/axum/pull/3320
[#3248]: https://github.com/tokio-rs/axum/pull/3248
[#3129]: https://github.com/tokio-rs/axum/pull/3129
# 0.8.3

View File

@ -1,6 +1,6 @@
[package]
name = "axum"
version = "0.8.3" # remember to bump the version that axum-extra depends on
version = "0.8.4" # 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"