Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# NEWS

4.4.2 - 2026-06-16
------------------

### Fixed

- Apply the pool overflow fix to the opt-in `ssl_pooling` checkout path. With
`ssl_pooling` enabled and `pool_size` below `max_per_host`, a second
concurrent HTTPS request could still fail with `checkout_timeout`; it now
opens an overflow connection like the plain checkout path, closed at checkin
rather than pooled. HTTP/2 and HTTP/3 are unaffected (they multiplex over
shared connections).

4.4.1 - 2026-06-16
------------------

Expand Down
2 changes: 1 addition & 1 deletion src/hackney.app.src
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
{application, hackney,
[
{description, "Simple HTTP client with HTTP/1.1, HTTP/2, and HTTP/3 support"},
{vsn, "4.4.1"},
{vsn, "4.4.2"},
{registered, [hackney_pool]},
{applications, [kernel,
stdlib,
Expand Down
Loading