15
0
forked from pool/python-httpx

- Update to 0.25.0:

- Drop support for Python 3.7.
  - 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().
  - 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

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-httpx?expand=0&rev=22
This commit is contained in:
2023-10-20 21:55:32 +00:00
committed by Git OBS Bridge
parent 0ac79f02c6
commit c77360a9d7
4 changed files with 24 additions and 4 deletions

View File

@@ -1,3 +1,23 @@
-------------------------------------------------------------------
Fri Oct 20 21:52:56 UTC 2023 - Matej Cepl <mcepl@cepl.eu>
- Update to 0.25.0:
- Drop support for Python 3.7.
- 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().
- 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
-------------------------------------------------------------------
Sat Sep 9 23:10:43 UTC 2023 - Torsten Gruner <simmphonie@opensuse.org>