15
0
forked from pool/python-httpx

Accepting request 1229039 from home:bnavigator:branches:devel:languages:python:jupyter

- Update to 0.28.1
  * Fix SSL case where verify=False together with client side
    certificates.
- Release 0.28.0
  ## Deprecations:
  * We are working towards a simplified SSL configuration API.
  * For users of the standard verify=True or verify=False cases, or
    verify=<ssl_context> case this should require no changes. The
    following cases have been deprecated...
    - The verify argument as a string argument is now deprecated
      and will raise warnings.
    - The cert argument is now deprecated and will raise warnings.
  * Our revised SSL documentation covers how to implement the same
    behaviour with a more constrained API.
  ## The following changes are also included:
  * The deprecated proxies argument has now been removed.
  * The deprecated app argument has now been removed.
  * JSON request bodies use a compact representation. (#3363)
  * Review URL percent escape sets, based on WHATWG spec. (#3371,
    #3373)
  * Ensure certifi and httpcore are only imported if required.
    (#3377)
  * Treat socks5h as a valid proxy scheme. (#3178)
  * Cleanup Request() method signature in line with
    client.request() and httpx.request(). (#3378)

OBS-URL: https://build.opensuse.org/request/show/1229039
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-httpx?expand=0&rev=37
This commit is contained in:
2024-12-08 23:27:43 +00:00
committed by Git OBS Bridge
parent 721293fa1b
commit 12eff59f5f
4 changed files with 34 additions and 6 deletions

View File

@@ -1,3 +1,32 @@
-------------------------------------------------------------------
Sat Dec 7 13:27:08 UTC 2024 - Ben Greiner <code@bnavigator.de>
- Update to 0.28.1
* Fix SSL case where verify=False together with client side
certificates.
- Release 0.28.0
## Deprecations:
* We are working towards a simplified SSL configuration API.
* For users of the standard verify=True or verify=False cases, or
verify=<ssl_context> case this should require no changes. The
following cases have been deprecated...
- The verify argument as a string argument is now deprecated
and will raise warnings.
- The cert argument is now deprecated and will raise warnings.
* Our revised SSL documentation covers how to implement the same
behaviour with a more constrained API.
## The following changes are also included:
* The deprecated proxies argument has now been removed.
* The deprecated app argument has now been removed.
* JSON request bodies use a compact representation. (#3363)
* Review URL percent escape sets, based on WHATWG spec. (#3371,
#3373)
* Ensure certifi and httpcore are only imported if required.
(#3377)
* Treat socks5h as a valid proxy scheme. (#3178)
* Cleanup Request() method signature in line with
client.request() and httpx.request(). (#3378)
-------------------------------------------------------------------
Sun Sep 8 13:05:12 UTC 2024 - Dirk Müller <dmueller@suse.com>