From 0a27aaf623bb0410b5668a9b6e9ab7b415397b43 Mon Sep 17 00:00:00 2001 From: Yuki Okushi Date: Wed, 18 Feb 2026 20:09:09 +0900 Subject: [PATCH] chore(awc): release v3.8.2 (#3942) --- Cargo.lock | 2 +- awc/CHANGES.md | 2 ++ awc/Cargo.toml | 8 ++++---- awc/README.md | 4 ++-- 4 files changed, 9 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 039c76a40..6a185355f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -612,7 +612,7 @@ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" [[package]] name = "awc" -version = "3.8.1" +version = "3.8.2" dependencies = [ "actix-codec", "actix-http", diff --git a/awc/CHANGES.md b/awc/CHANGES.md index 35a3dde2f..49159b18d 100644 --- a/awc/CHANGES.md +++ b/awc/CHANGES.md @@ -2,6 +2,8 @@ ## Unreleased +## 3.8.2 + - Minimum supported Rust version (MSRV) is now 1.88. - Fix empty streaming request bodies being sent with chunked transfer encoding. diff --git a/awc/Cargo.toml b/awc/Cargo.toml index 5386b7994..b5b9396b0 100644 --- a/awc/Cargo.toml +++ b/awc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "awc" -version = "3.8.1" +version = "3.8.2" authors = ["Nikolay Kim "] description = "Async HTTP and WebSocket client library" keywords = ["actix", "http", "framework", "async", "web"] @@ -98,7 +98,7 @@ dangerous-h2c = [] [dependencies] actix-codec = "0.5" -actix-http = { version = "3.10", features = ["http2", "ws"] } +actix-http = { version = "3.12.0", features = ["http2", "ws"] } actix-rt = { version = "2.1", default-features = false } actix-service = "2" actix-tls = { version = "3.4", features = ["connect", "uri"] } @@ -134,13 +134,13 @@ tls-rustls-0_23 = { package = "rustls", version = "0.23", optional = true, defau hickory-resolver = { version = "0.25", optional = true, features = ["system-config", "tokio"] } [dev-dependencies] -actix-http = { version = "3.7", features = ["openssl"] } +actix-http = { version = "3.12", features = ["openssl"] } actix-http-test = { version = "3", features = ["openssl"] } actix-server = "2" actix-test = { version = "0.1", features = ["openssl", "rustls-0_23"] } actix-tls = { version = "3.4", features = ["openssl", "rustls-0_23"] } actix-utils = "3" -actix-web = { version = "4", features = ["openssl"] } +actix-web = { version = "4.13", features = ["openssl"] } brotli = "8" const-str = "0.5" # TODO(MSRV 1.77): update to 0.6 diff --git a/awc/README.md b/awc/README.md index 6e91eab3e..4c74931e6 100644 --- a/awc/README.md +++ b/awc/README.md @@ -5,9 +5,9 @@ [![crates.io](https://img.shields.io/crates/v/awc?label=latest)](https://crates.io/crates/awc) -[![Documentation](https://docs.rs/awc/badge.svg?version=3.8.1)](https://docs.rs/awc/3.8.1) +[![Documentation](https://docs.rs/awc/badge.svg?version=3.8.2)](https://docs.rs/awc/3.8.2) ![MIT or Apache 2.0 licensed](https://img.shields.io/crates/l/awc) -[![Dependency Status](https://deps.rs/crate/awc/3.8.1/status.svg)](https://deps.rs/crate/awc/3.8.1) +[![Dependency Status](https://deps.rs/crate/awc/3.8.2/status.svg)](https://deps.rs/crate/awc/3.8.2) [![Chat on Discord](https://img.shields.io/discord/771444961383153695?label=chat&logo=discord)](https://discord.gg/NWpN5mmg3x)