Path to this page:
Subject: CVS commit: pkgsrc/www/py-httpx
From: Adam Ciarcinski
Date: 2023-09-13 09:25:55
Message id: 20230913072555.9A6A8FBDB@cvs.NetBSD.org
Log Message:
py-httpx: updated to 0.25.0
0.25.0 (11th Sep, 2023)
Removed
* Drop support for Python 3.7.
Added
* Support HTTPS proxies.
* Change the type of `Extensions` from `Mapping[Str, Any]` to \
`MutableMapping[Str, Any]`.
* Add `socket_options` argument to `httpx.HTTPTransport` and \
`httpx.AsyncHTTPTransport` classes.
* The `Response.raise_for_status()` method now returns the response instance. \
For example: `data = httpx.get('...').raise_for_status().json()`.
Fixed
* Return `500` error response instead of exceptions when \
`raise_app_exceptions=False` is set on `ASGITransport`.
* Ensure all `WSGITransport` environs have a `SERVER_PROTOCOL`.
* Always encode forward slashes as `%2F` in query parameters
* Use Mozilla documentation instead of `httpstatuses.com` for HTTP error reference
Files: