pkgsrc/www/py-httpcore/PLIST
adam fd11e817d7 py-httpcore: updated to 0.11.1
0.11.1

Fixed
- Add await to async semaphore release() coroutine
- Drop incorrect curio classifier


0.11.0

The Transport API with 0.11.0 has a couple of significant changes.

Firstly we've moved changed the request interface in order to allow extensions, which will later enable us to support features
such as trailing headers, HTTP/2 server push, and CONNECT/Upgrade connections.

The interface changes from:

```python
def request(method, url, headers, stream, timeout):
    return (http_version, status_code, reason, headers, stream)
```

To instead including an optional dictionary of extensions on the request and response:

```python
def request(method, url, headers, stream, ext):
    return (status_code, headers, stream, ext)
```

Having an open-ended extensions point will allow us to add later support for various optional features, that wouldn't otherwise be supported without these API changes.

In particular:

* Trailing headers support.
* HTTP/2 Server Push
* sendfile.
* Exposing raw connection on CONNECT, Upgrade, HTTP/2 bi-di streaming.
* Exposing debug information out of the API, including template name, template context.

Currently extensions are limited to:

* request: `timeout` - Optional. Timeout dictionary.
* response: `http_version` - Optional. Include the HTTP version used on the response.
* response: `reason` - Optional. Include the reason phrase used on the response. Only valid with HTTP/1.*.

See https://github.com/encode/httpx/issues/1274#issuecomment-694884553 for the history behind this.

Secondly, the async version of `request` is now namespaced as `arequest`.

This allows concrete transports to support both sync and async implementations on the same class.

Added
- Add curio support.
- Add anyio support, with `backend="anyio"`.

Changed
- Update the Transport API to use 'ext' for optional extensions.
- Update the Transport API to use `.request` and `.arequest` so implementations can support both sync and async.


0.10.2

Added
- Added Unix Domain Socket support.

Fixed
- Always include the port on proxy CONNECT requests.
- Fix `max_keepalive_connections` configuration.
- Fixes behaviour in HTTP/1.1 where server disconnects can be used to signal the end of the response body.

0.10.1
- Include `max_keepalive_connections` on `AsyncHTTPProxy`/`SyncHTTPProxy` classes.


0.10.0

The most notable change in the 0.10.0 release is that HTTP/2 support is now fully optional.

Use either `pip install httpcore` for HTTP/1.1 support only, or `pip install httpcore[http2]` for HTTP/1.1 and HTTP/2 support.

Added
- HTTP/2 support becomes optional.
- Add `local_address=...` support.
- Add `PlainByteStream`, `IteratorByteStream`, `AsyncIteratorByteStream`. The `AsyncByteSteam` and `SyncByteStream` classes are now pure interface classes.
- Add `LocalProtocolError`, `RemoteProtocolError` exceptions.
- Add `UnsupportedProtocol` exception.
- Add `.get_connection_info()` method.
- Add better TRACE logs.

Changed
- `max_keepalive` is deprecated in favour of `max_keepalive_connections`.

Fixed
- Improve handling of server disconnects.
2020-10-01 06:48:37 +00:00

98 lines
3.9 KiB
Text

@comment $NetBSD: PLIST,v 1.2 2020/10/01 06:48:37 adam Exp $
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
${PYSITELIB}/${EGG_INFODIR}/requires.txt
${PYSITELIB}/${EGG_INFODIR}/top_level.txt
${PYSITELIB}/httpcore/__init__.py
${PYSITELIB}/httpcore/__init__.pyc
${PYSITELIB}/httpcore/__init__.pyo
${PYSITELIB}/httpcore/_async/__init__.py
${PYSITELIB}/httpcore/_async/__init__.pyc
${PYSITELIB}/httpcore/_async/__init__.pyo
${PYSITELIB}/httpcore/_async/base.py
${PYSITELIB}/httpcore/_async/base.pyc
${PYSITELIB}/httpcore/_async/base.pyo
${PYSITELIB}/httpcore/_async/connection.py
${PYSITELIB}/httpcore/_async/connection.pyc
${PYSITELIB}/httpcore/_async/connection.pyo
${PYSITELIB}/httpcore/_async/connection_pool.py
${PYSITELIB}/httpcore/_async/connection_pool.pyc
${PYSITELIB}/httpcore/_async/connection_pool.pyo
${PYSITELIB}/httpcore/_async/http.py
${PYSITELIB}/httpcore/_async/http.pyc
${PYSITELIB}/httpcore/_async/http.pyo
${PYSITELIB}/httpcore/_async/http11.py
${PYSITELIB}/httpcore/_async/http11.pyc
${PYSITELIB}/httpcore/_async/http11.pyo
${PYSITELIB}/httpcore/_async/http2.py
${PYSITELIB}/httpcore/_async/http2.pyc
${PYSITELIB}/httpcore/_async/http2.pyo
${PYSITELIB}/httpcore/_async/http_proxy.py
${PYSITELIB}/httpcore/_async/http_proxy.pyc
${PYSITELIB}/httpcore/_async/http_proxy.pyo
${PYSITELIB}/httpcore/_backends/__init__.py
${PYSITELIB}/httpcore/_backends/__init__.pyc
${PYSITELIB}/httpcore/_backends/__init__.pyo
${PYSITELIB}/httpcore/_backends/anyio.py
${PYSITELIB}/httpcore/_backends/anyio.pyc
${PYSITELIB}/httpcore/_backends/anyio.pyo
${PYSITELIB}/httpcore/_backends/asyncio.py
${PYSITELIB}/httpcore/_backends/asyncio.pyc
${PYSITELIB}/httpcore/_backends/asyncio.pyo
${PYSITELIB}/httpcore/_backends/auto.py
${PYSITELIB}/httpcore/_backends/auto.pyc
${PYSITELIB}/httpcore/_backends/auto.pyo
${PYSITELIB}/httpcore/_backends/base.py
${PYSITELIB}/httpcore/_backends/base.pyc
${PYSITELIB}/httpcore/_backends/base.pyo
${PYSITELIB}/httpcore/_backends/curio.py
${PYSITELIB}/httpcore/_backends/curio.pyc
${PYSITELIB}/httpcore/_backends/curio.pyo
${PYSITELIB}/httpcore/_backends/sync.py
${PYSITELIB}/httpcore/_backends/sync.pyc
${PYSITELIB}/httpcore/_backends/sync.pyo
${PYSITELIB}/httpcore/_backends/trio.py
${PYSITELIB}/httpcore/_backends/trio.pyc
${PYSITELIB}/httpcore/_backends/trio.pyo
${PYSITELIB}/httpcore/_bytestreams.py
${PYSITELIB}/httpcore/_bytestreams.pyc
${PYSITELIB}/httpcore/_bytestreams.pyo
${PYSITELIB}/httpcore/_exceptions.py
${PYSITELIB}/httpcore/_exceptions.pyc
${PYSITELIB}/httpcore/_exceptions.pyo
${PYSITELIB}/httpcore/_sync/__init__.py
${PYSITELIB}/httpcore/_sync/__init__.pyc
${PYSITELIB}/httpcore/_sync/__init__.pyo
${PYSITELIB}/httpcore/_sync/base.py
${PYSITELIB}/httpcore/_sync/base.pyc
${PYSITELIB}/httpcore/_sync/base.pyo
${PYSITELIB}/httpcore/_sync/connection.py
${PYSITELIB}/httpcore/_sync/connection.pyc
${PYSITELIB}/httpcore/_sync/connection.pyo
${PYSITELIB}/httpcore/_sync/connection_pool.py
${PYSITELIB}/httpcore/_sync/connection_pool.pyc
${PYSITELIB}/httpcore/_sync/connection_pool.pyo
${PYSITELIB}/httpcore/_sync/http.py
${PYSITELIB}/httpcore/_sync/http.pyc
${PYSITELIB}/httpcore/_sync/http.pyo
${PYSITELIB}/httpcore/_sync/http11.py
${PYSITELIB}/httpcore/_sync/http11.pyc
${PYSITELIB}/httpcore/_sync/http11.pyo
${PYSITELIB}/httpcore/_sync/http2.py
${PYSITELIB}/httpcore/_sync/http2.pyc
${PYSITELIB}/httpcore/_sync/http2.pyo
${PYSITELIB}/httpcore/_sync/http_proxy.py
${PYSITELIB}/httpcore/_sync/http_proxy.pyc
${PYSITELIB}/httpcore/_sync/http_proxy.pyo
${PYSITELIB}/httpcore/_threadlock.py
${PYSITELIB}/httpcore/_threadlock.pyc
${PYSITELIB}/httpcore/_threadlock.pyo
${PYSITELIB}/httpcore/_types.py
${PYSITELIB}/httpcore/_types.pyc
${PYSITELIB}/httpcore/_types.pyo
${PYSITELIB}/httpcore/_utils.py
${PYSITELIB}/httpcore/_utils.pyc
${PYSITELIB}/httpcore/_utils.pyo
${PYSITELIB}/httpcore/py.typed