From 40c01dfb4f87342a6f86f07564ddc482194c6240 Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Thu, 2 Feb 2023 09:39:38 -0500 Subject: [PATCH] v0.14.24 --- CHANGELOG.md | 14 ++++++++++++++ Cargo.toml | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1e9fe15bde..a5c8fe065e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,17 @@ +### v0.14.24 (2023-02-02) + + +#### Bug Fixes + +* **body:** set an internal max to reserve in `to_bytes` ([4d89adce](https://github.com/hyperium/hyper/commit/4d89adce6122af1650165337d9d814314e7ee409)) +* **server:** prevent sending 100-continue if user drops request body (#3138) ([92443d7e](https://github.com/hyperium/hyper/commit/92443d7ef57ed474f0add7dd1f114c81a3faa8fe)) + + +#### Features + +* **http2:** add `http2_max_header_list_size` to `hyper::server::Builder` (#3006) ([031425f0](https://github.com/hyperium/hyper/commit/031425f087219f02a87eea3d01b14e75e35a5209)) + + ### v0.14.23 (2022-11-07) diff --git a/Cargo.toml b/Cargo.toml index 64f97ad07f..a76b210aff 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hyper" -version = "0.14.23" +version = "0.14.24" description = "A fast and correct HTTP library." readme = "README.md" homepage = "https://hyper.rs"