./www/py-httpx, The next generation HTTP client

[ CVSweb ] [ Homepage ] [ RSS ] [ Required by ] [ Add to tracker ]


Branch: CURRENT, Version: 0.28.1, Package name: py312-httpx-0.28.1, Maintainer: pkgsrc-users

HTTPX is a fully featured HTTP client for Python 3, which provides sync and
async APIs, and support for both HTTP/1.1 and HTTP/2.


Required to run:
[devel/py-setuptools] [converters/py-chardet] [www/py-idna] [security/py-certifi] [lang/python37] [misc/py-sniffio] [www/py-rfc3986] [www/py-hstspreload] [www/py-httpcore]

Required to build:
[pkgtools/cwrappers]

Master sites:

Filesize: 138.092 KB

Version history: (Expand)


CVS history: (Expand)


   2024-12-11 09:30:24 by Adam Ciarcinski | Files touched by this commit (2) | Package updated
Log message:
py-httpx: updated to 0.28.1

0.28.1
* Fix SSL case where `verify=False` together with client side certificates.
   2024-11-28 20:51:02 by Adam Ciarcinski | Files touched by this commit (3) | Package updated
Log message:
py-httpx: updated to 0.28.0

0.28.0 (28th November, 2024)

The 0.28 release includes a limited set of deprecations.

**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](docs/advanced/ssl.md) 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.
* Review URL percent escape sets, based on WHATWG spec.
* Ensure `certifi` and `httpcore` are only imported if required.
* Treat `socks5h` as a valid proxy scheme.
* Cleanup `Request()` method signature in line with `client.request()` and \ 
`httpx.request()`.
   2024-08-28 17:34:30 by Adam Ciarcinski | Files touched by this commit (2) | Package updated
Log message:
py-httpx: updated to 0.27.2

0.27.2 (27th August, 2024)

Fixed

* Reintroduced supposedly-private `URLTypes` shortcut.

0.27.1 (27th August, 2024)

Added

* Support for `zstd` content decoding using the python `zstandard` package is \ 
added. Installable using `httpx[zstd]`.

Fixed

* Improved error messaging for `InvalidURL` exceptions.
* Fix `app` type signature in `ASGITransport`.
   2024-02-21 20:19:34 by Adam Ciarcinski | Files touched by this commit (2) | Package updated
Log message:
py-httpx: updated to 0.27.0

0.27.0 (21st February, 2024)

Deprecated

* The `app=...` shortcut has been deprecated. Use the explicit style of \ 
`transport=httpx.WSGITransport()` or `transport=httpx.ASGITransport()` instead.

Fixed

* Respect the `http1` argument while configuring proxy transports.
* Fix RFC 2069 mode digest authentication.
   2024-01-01 12:45:44 by Adam Ciarcinski | Files touched by this commit (2) | Package updated
Log message:
py-httpx: updated to 0.26.0

0.26.0 (20th December, 2023)

Added

* The `proxy` argument was added. You should use the `proxy` argument instead of \ 
the deprecated `proxies`, or use `mounts=` for more complex configurations.

Deprecated

* The `proxies` argument is now deprecated. It will still continue to work, but \ 
it will be removed in the future.

Fixed

* 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.
   2023-11-27 21:18:46 by Adam Ciarcinski | Files touched by this commit (2) | Package updated
Log message:
py-httpx: updated to 0.25.2

0.25.2 (24th November, 2023)

Added

* Add missing type hints to few `__init__()` methods.
   2023-11-06 18:40:17 by Adam Ciarcinski | Files touched by this commit (2) | Package updated
Log message:
py-httpx: updated to 0.25.1

0.25.1 (3rd November, 2023)

* Add support for Python 3.12.
* Add support for httpcore 1.0
   2023-10-28 21:57:26 by Thomas Klausner | Files touched by this commit (516) | Package updated
Log message:
python/wheel.mk: simplify a lot, and switch to 'installer' for installation

This follows the recommended bootstrap method (flit_core, build, installer).

However, installer installs different files than pip, so update PLISTs
for all packages using wheel.mk and bump their PKGREVISIONs.