Skip to content

Commit 0fb8945

Browse files
authored
chore(http): prepare v3.12.1 (#4029)
1 parent 3c056bd commit 0fb8945

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

actix-http/CHANGES.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@
22

33
## Unreleased
44

5-
- Reject HTTP/1 requests with ambiguous request framing from `Content-Length` and `Transfer-Encoding` headers to prevent request smuggling.
5+
## 3.12.1
6+
7+
**Notice: This release contains a security fix. Users are encouraged to update to this version ASAP.**
8+
9+
- SECURITY: Reject HTTP/1 requests with ambiguous request framing from `Content-Length` and `Transfer-Encoding` headers to prevent request smuggling.
610
- Encode the HTTP/1 `Connection: Upgrade` header in Camel-Case when camel-case header formatting is enabled.[#3953]
711
- Fix `HeaderMap` iterators' `len()` and `size_hint()` implementations for multi-value headers.
812
- Update `rand` dependency to `0.10`.

actix-http/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "actix-http"
3-
version = "3.12.0"
3+
version = "3.12.1"
44
authors = ["Nikolay Kim <fafhrd91@gmail.com>", "Rob Ede <robjtede@icloud.com>"]
55
description = "HTTP types and services for the Actix ecosystem"
66
keywords = ["actix", "http", "framework", "async", "futures"]

actix-web/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ actix-service = "2"
137137
actix-tls = { version = "3.4", default-features = false, optional = true }
138138
actix-utils = "3"
139139

140-
actix-http = "3.12.0"
140+
actix-http = "3.12.1"
141141
actix-router = { version = "0.5.4", default-features = false, features = ["http"] }
142142
actix-web-codegen = { version = "4.3", optional = true, default-features = false }
143143

awc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ dangerous-h2c = []
9898

9999
[dependencies]
100100
actix-codec = "0.5"
101-
actix-http = { version = "3.12.0", features = ["http2", "ws"] }
101+
actix-http = { version = "3.12.1", features = ["http2", "ws"] }
102102
actix-rt = { version = "2.1", default-features = false }
103103
actix-service = "2"
104104
actix-tls = { version = "3.4", features = ["connect", "uri"] }

0 commit comments

Comments
 (0)