diff options
author | robot-piglet <robot-piglet@yandex-team.com> | 2023-11-18 09:45:45 +0300 |
---|---|---|
committer | robot-piglet <robot-piglet@yandex-team.com> | 2023-11-18 10:04:04 +0300 |
commit | df03ef42eed0a5b601011204e47b72d37c6373a9 (patch) | |
tree | 530e7eed0215db0b677aa07c5ccc834a8cb60e5a /contrib/python/httpx/.dist-info/METADATA | |
parent | 02af688a175993fc8169edf79bef767977b91764 (diff) | |
download | ydb-df03ef42eed0a5b601011204e47b72d37c6373a9.tar.gz |
Intermediate changes
Diffstat (limited to 'contrib/python/httpx/.dist-info/METADATA')
-rw-r--r-- | contrib/python/httpx/.dist-info/METADATA | 23 |
1 files changed, 8 insertions, 15 deletions
diff --git a/contrib/python/httpx/.dist-info/METADATA b/contrib/python/httpx/.dist-info/METADATA index f3a6d509cd..e4abd6660e 100644 --- a/contrib/python/httpx/.dist-info/METADATA +++ b/contrib/python/httpx/.dist-info/METADATA @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: httpx -Version: 0.25.0 +Version: 0.25.1 Summary: The next generation HTTP client. Project-URL: Changelog, https://github.com/encode/httpx/blob/master/CHANGELOG.md Project-URL: Documentation, https://www.python-httpx.org @@ -22,10 +22,12 @@ Classifier: Programming Language :: Python :: 3.8 Classifier: Programming Language :: Python :: 3.9 Classifier: Programming Language :: Python :: 3.10 Classifier: Programming Language :: Python :: 3.11 +Classifier: Programming Language :: Python :: 3.12 Classifier: Topic :: Internet :: WWW/HTTP Requires-Python: >=3.8 +Requires-Dist: anyio Requires-Dist: certifi -Requires-Dist: httpcore<0.19.0,>=0.18.0 +Requires-Dist: httpcore Requires-Dist: idna Requires-Dist: sniffio Provides-Extra: brotli @@ -192,23 +194,14 @@ inspiration around the lower-level networking details. ## Release Information -### Removed +### 0.25.1 (3rd November, 2023) -* Drop support for Python 3.7. (#2813) - -### Added - -* Support HTTPS proxies. (#2845) -* Change the type of `Extensions` from `Mapping[Str, Any]` to `MutableMapping[Str, Any]`. (#2803) -* Add `socket_options` argument to `httpx.HTTPTransport` and `httpx.AsyncHTTPTransport` classes. (#2716) -* The `Response.raise_for_status()` method now returns the response instance. For example: `data = httpx.get('...').raise_for_status().json()`. (#2776) +* Add support for Python 3.12. (#2854) +* Add support for httpcore 1.0 (#2885) ### Fixed -* Return `500` error response instead of exceptions when `raise_app_exceptions=False` is set on `ASGITransport`. (#2669) -* Ensure all `WSGITransport` environs have a `SERVER_PROTOCOL`. (#2708) -* Always encode forward slashes as `%2F` in query parameters (#2723) -* Use Mozilla documentation instead of `httpstatuses.com` for HTTP error reference (#2768) +* Raise `ValueError` on `Response.encoding` being set after `Response.text` has been accessed. (#2852) --- |