mirror of
https://github.com/tokio-rs/axum.git
synced 2025-09-27 04:50:31 +00:00
Release axum 0.8.4
This commit is contained in:
parent
ac75e2f727
commit
8762520da8
2
Cargo.lock
generated
2
Cargo.lock
generated
@ -302,7 +302,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "axum"
|
||||
version = "0.8.3"
|
||||
version = "0.8.4"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"axum-core",
|
||||
|
@ -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"] }
|
||||
|
@ -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
|
||||
|
||||
|
@ -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"
|
||||
|
Loading…
x
Reference in New Issue
Block a user