chore(http): prepare 3.13.0 release (#4112)

This commit is contained in:
Yuki Okushi 2026-06-21 15:13:48 +09:00 committed by GitHub
parent afd2df2f69
commit 6c65c46d0d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 6 additions and 4 deletions

2
Cargo.lock generated
View File

@ -49,7 +49,7 @@ dependencies = [
[[package]]
name = "actix-http"
version = "3.12.1"
version = "3.13.0"
dependencies = [
"actix-codec",
"actix-http-test",

View File

@ -2,6 +2,8 @@
## Unreleased
## 3.13.0
- When configured, gracefully close HTTP/1 connections after early responses to unread request bodies. [#3967]
- Wake HTTP/1 payload receivers with an incomplete-payload error when the sender is dropped before EOF. [#3100]
- Update `foldhash` dependency to `0.2`.

View File

@ -1,6 +1,6 @@
[package]
name = "actix-http"
version = "3.12.1"
version = "3.13.0"
authors = ["Nikolay Kim <fafhrd91@gmail.com>", "Rob Ede <robjtede@icloud.com>"]
description = "HTTP types and services for the Actix ecosystem"
keywords = ["actix", "http", "framework", "async", "futures"]

View File

@ -137,7 +137,7 @@ actix-service = "2"
actix-tls = { version = "3.4", default-features = false, optional = true }
actix-utils = "3"
actix-http = "3.12.1"
actix-http = "3.13.0"
actix-router = { version = "0.5.4", default-features = false, features = ["http"] }
actix-web-codegen = { version = "4.3", optional = true, default-features = false }

View File

@ -98,7 +98,7 @@ dangerous-h2c = []
[dependencies]
actix-codec = "0.5"
actix-http = { version = "3.12.1", features = ["http2", "ws"] }
actix-http = { version = "3.13.0", features = ["http2", "ws"] }
actix-rt = { version = "2.1", default-features = false }
actix-service = "2"
actix-tls = { version = "3.4", features = ["connect", "uri"] }