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
21 changes: 21 additions & 0 deletions src/httpcore2/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,27 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## 2.9.0 (July 23rd, 2026)

No changes since `2.8.0`. Version bumped to stay in lockstep with `httpx2`.

## 2.8.0 (July 23rd, 2026)

### Changed

* Assign each released connection to a single queued request, eliminating multi-assignment churn in the connection pool. ([#1075](https://github.com/pydantic/httpx2/pull/1075))

## 2.7.0 (July 14th, 2026)

No changes since `2.6.0`. Version bumped to stay in lockstep with `httpx2`.

## 2.6.0 (July 14th, 2026)

### Fixed

* Clean up garbage connections on cancellation in `AsyncConnectionPool`. ([#983](https://github.com/pydantic/httpx2/pull/983))
* Read `_expire_at` only once in `has_expired()`. ([#1045](https://github.com/pydantic/httpx2/pull/1045))

## 2.5.0 (June 25th, 2026)

### Fixed
Expand Down
25 changes: 23 additions & 2 deletions src/httpx2/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,32 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## Unreleased
## 2.9.0 (July 23rd, 2026)
Comment thread
Kludex marked this conversation as resolved.

### Added

* Add `alias_httpx()`, letting applications make `import httpx` resolve to `httpx2` process-wide.
* Add `alias_httpx()`, letting applications make `import httpx` resolve to `httpx2` process-wide. ([#1077](https://github.com/pydantic/httpx2/pull/1077))

## 2.8.0 (July 23rd, 2026)

No changes since `2.7.0`. Version bumped to stay in lockstep with `httpcore2`.

## 2.7.0 (July 14th, 2026)

### Changed

* Update the vendored `httpx-ws` to upstream v0.9.0. ([#1067](https://github.com/pydantic/httpx2/pull/1067))

## 2.6.0 (July 14th, 2026)

### Added

* Add native WebSocket support by vendoring `httpx-ws`, installable with `httpx2[ws]`. ([#1042](https://github.com/pydantic/httpx2/pull/1042))
* Add support for the `QUERY` HTTP method via `httpx2.query()` and `client.query()`. ([#1055](https://github.com/pydantic/httpx2/pull/1055))

### Changed

* Allow `click` 8.4+ in the `cli` extra, dropping the upper bound. ([#1040](https://github.com/pydantic/httpx2/pull/1040))

## 2.5.0 (June 25th, 2026)

Expand Down
Loading