From 6c65c46d0d20b63edc63b5d1147cab79f6e8e97c Mon Sep 17 00:00:00 2001 From: Yuki Okushi Date: Sun, 21 Jun 2026 15:13:48 +0900 Subject: [PATCH] chore(http): prepare 3.13.0 release (#4112) --- Cargo.lock | 2 +- actix-http/CHANGES.md | 2 ++ actix-http/Cargo.toml | 2 +- actix-web/Cargo.toml | 2 +- awc/Cargo.toml | 2 +- 5 files changed, 6 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1e39e0e4f..cf359c660 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -49,7 +49,7 @@ dependencies = [ [[package]] name = "actix-http" -version = "3.12.1" +version = "3.13.0" dependencies = [ "actix-codec", "actix-http-test", diff --git a/actix-http/CHANGES.md b/actix-http/CHANGES.md index 6e4f8ec32..ff1789aea 100644 --- a/actix-http/CHANGES.md +++ b/actix-http/CHANGES.md @@ -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`. diff --git a/actix-http/Cargo.toml b/actix-http/Cargo.toml index 7e28f6792..502768f29 100644 --- a/actix-http/Cargo.toml +++ b/actix-http/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "actix-http" -version = "3.12.1" +version = "3.13.0" authors = ["Nikolay Kim ", "Rob Ede "] description = "HTTP types and services for the Actix ecosystem" keywords = ["actix", "http", "framework", "async", "futures"] diff --git a/actix-web/Cargo.toml b/actix-web/Cargo.toml index 288e78d08..0e15e7d79 100644 --- a/actix-web/Cargo.toml +++ b/actix-web/Cargo.toml @@ -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 } diff --git a/awc/Cargo.toml b/awc/Cargo.toml index a980f705b..230a11dfe 100644 --- a/awc/Cargo.toml +++ b/awc/Cargo.toml @@ -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"] }