Skip to content

Commit dbe6f25

Browse files
committed
v1.8.0
1 parent 58e0e7d commit dbe6f25

File tree

2 files changed

+35
-1
lines changed

2 files changed

+35
-1
lines changed

CHANGELOG.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,37 @@
1+
## v1.8.0 (2025-11-11)
2+
3+
4+
#### Bug Fixes
5+
6+
* **http1:** fix rare missed write wakeup on connections (#3952) ([2377b893](https://github.com/hyperium/hyper/commit/2377b893f6e64ca9878e4f25d1472b96baa7e3ea))
7+
* **http2:** fix internals of HTTP/2 CONNECT upgrades (#3967) ([58e0e7dc](https://github.com/hyperium/hyper/commit/58e0e7dc70612117ccdc40da395922f791cb273a), closes [#3966](https://github.com/hyperium/hyper/issues/3966))
8+
9+
10+
#### Features
11+
12+
* **rt:** add `Timer::now()` method to allow overriding the instant returned (#3965) ([5509ebe6](https://github.com/hyperium/hyper/commit/5509ebe6156e32d4f8986fafa25c2918a30005be))
13+
14+
15+
#### Breaking Changes
16+
17+
* The HTTP/2 client connection no longer allows an executor
18+
that can not spawn itself.
19+
20+
This was an oversight originally. The client connection will now include spawning
21+
a future that keeps a copy of the executor to spawn other futures. Thus, if it is
22+
`!Send`, it needs to spawn `!Send` futures. The likelihood of executors that match
23+
the previously allowed behavior should be very remote.
24+
25+
There is also technically a semver break in here, which is that the
26+
`Http2ClientConnExec` trait no longer dyn-compatible, because it now expects to
27+
be `Clone`. This should not break usage of the `conn` builder, because it already
28+
separately had `E: Clone` bounds. If someone were using `dyn Http2ClientConnExec`,
29+
that will break. However, there is no purpose for doing so, and it is not usable
30+
otherwise, since the trait only exists to propagate bounds into hyper. Thus, the
31+
breakage should not affect anyone.
32+
([58e0e7dc](https://github.com/hyperium/hyper/commit/58e0e7dc70612117ccdc40da395922f791cb273a))
33+
34+
135
## v1.7.0 (2025-08-18)
236

337

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hyper"
3-
version = "1.7.0"
3+
version = "1.8.0"
44
description = "A protective and efficient HTTP library for all."
55
readme = "README.md"
66
homepage = "https://hyper.rs"

0 commit comments

Comments
 (0)