15
0
forked from pool/python-httpx

- update to 0.26.0:

* The `proxy` argument was added. You should use the `proxy`
    argument instead of the deprecated `proxies`, or use
    `mounts=` for more complex configurations.
  * The `proxies` argument is now deprecated. It will still
    continue to work, but it will be removed in the future.
  * Fix cases of double escaping of URL path components. Allow /
    as a safe character in the query portion.
  * Handle `NO_PROXY` envvar cases when a fully qualified URL is
    supplied as the value.
  * Allow URLs where username or password contains unescaped '@'.
  * Ensure ASGI `raw_path` does not include URL query component.
  * Ensure `Response.iter_text()` cannot yield empty strings.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-httpx?expand=0&rev=30
This commit is contained in:
2024-01-06 17:15:25 +00:00
committed by Git OBS Bridge
parent 54a612cced
commit 87ce16e969
4 changed files with 22 additions and 5 deletions

View File

@@ -1,3 +1,20 @@
-------------------------------------------------------------------
Sat Jan 6 17:14:30 UTC 2024 - Dirk Müller <dmueller@suse.com>
- update to 0.26.0:
* The `proxy` argument was added. You should use the `proxy`
argument instead of the deprecated `proxies`, or use
`mounts=` for more complex configurations.
* The `proxies` argument is now deprecated. It will still
continue to work, but it will be removed in the future.
* Fix cases of double escaping of URL path components. Allow /
as a safe character in the query portion.
* Handle `NO_PROXY` envvar cases when a fully qualified URL is
supplied as the value.
* Allow URLs where username or password contains unescaped '@'.
* Ensure ASGI `raw_path` does not include URL query component.
* Ensure `Response.iter_text()` cannot yield empty strings.
-------------------------------------------------------------------
Mon Nov 27 15:50:38 UTC 2023 - Dirk Müller <dmueller@suse.com>