Revisions of python-httpcore

buildservice-autocommit accepted request 1164272 from Dirk Mueller's avatar Dirk Mueller (dirkmueller) (revision 34)
baserev update by copy to link target
Dirk Mueller's avatar Dirk Mueller (dirkmueller) committed (revision 33)
- update to 1.0.5:
  * Handle `EndOfStream` exception for anyio backend.
  * Allow trio `0.25.*` series in package dependancies.
buildservice-autocommit accepted request 1160938 from Dirk Mueller's avatar Dirk Mueller (dirkmueller) (revision 32)
baserev update by copy to link target
Dirk Mueller's avatar Dirk Mueller (dirkmueller) committed (revision 31)
- update to 1.0.4:
  * Add `target` request extension.
  * Fix support for connection `Upgrade` and `CONNECT` when some
    data in the stream has been read.
  * Fix support for async cancellations.
  * Fix trace extension when used with socks proxy.
  * Fix SSL context for connections using the "wss" scheme
buildservice-autocommit accepted request 1131743 from Dirk Mueller's avatar Dirk Mueller (dirkmueller) (revision 30)
baserev update by copy to link target
Dirk Mueller's avatar Dirk Mueller (dirkmueller) committed (revision 29)
- update to 1.0.2:
  * Fix `float("inf")` timeouts in `Event.wait` function. (#846)
  * Fix pool timeout to account for the total time spent
    retrying. (#823)
  * Raise a neater RuntimeError when the correct async deps are
    not installed. (#826)
  * Add support for synchronous TLS-in-TLS streams. (#840)
  * From version 1.0 our async support is now optional, as the
    package has minimal dependencies by default.
  * For async support use either `pip install
    'httpcore[asyncio]'` or `pip install 'httpcore[trio]'`.
  * The project versioning policy is now explicitly governed by
    SEMVER. See https://semver.org/.
  * Async support becomes fully optional. (#809)
  * Add support for Python 3.12. (#807)
- update to 0.17.3
    scheme is used. (Pull #403)
buildservice-autocommit accepted request 1120297 from Matej Cepl's avatar Matej Cepl (mcepl) (revision 28)
baserev update by copy to link target
Matej Cepl's avatar Matej Cepl (mcepl) committed (revision 27)
- Skip failing tests test_ssl_request and test_extra_info
  (gh#encode/httpcore!832)
Matej Cepl's avatar Matej Cepl (mcepl) committed (revision 26)
- Update to 0.18.0:
  - Add support for HTTPS proxies.
  - Handle sni_hostname extension with SOCKS proxy.
  - Change the type of Extensions from Mapping[Str, Any] to
    MutableMapping[Str, Any].
  - Handle HTTP/1.1 half-closed connections gracefully.
  - Drop Python 3.7 support.
- Update httpcore-allow-deprecationwarnings-test.patch
buildservice-autocommit accepted request 1110216 from Dirk Mueller's avatar Dirk Mueller (dirkmueller) (revision 25)
baserev update by copy to link target
Dirk Mueller's avatar Dirk Mueller (dirkmueller) accepted request 1110138 from Torsten Gruner's avatar Torsten Gruner (Simmphonie) (revision 24)
- update to 0.17.3 
  * Support async cancellations, ensuring that the connection pool
    is left in a clean state when cancellations occur. (#726)
  * The networking backend interface has been added to the public API.
    Some classes which were previously private implementation detail
    are now part of the top-level public API. (#699)
  * Graceful handling of HTTP/2 GoAway frames, with requests being
    transparently retried on a new connection. (#730)
  * Add exceptions when a synchronous trace callback is passed to an
    asynchronous request or an asynchronous trace callback is passed
    to a synchronous request. (#717)
- version 0.17.2
  * Add socket_options argument to ConnectionPool and HTTProxy classes. (#668)
  * Improve logging with per-module logger names. (#690)
  * Add sni_hostname request extension. (#696)
  * Resolve race condition during import of anyio package. (#692)
  * Enable TCP_NODELAY for all synchronous sockets. (#651)
- version 0.17.1
  * If 'retries' is set, then allow retries if an SSL handshake
    error occurs. (#669)
  * Improve correctness of tracebacks on network exceptions, by
    raising properly chained exceptions. (#678)
  * Prevent connection-hanging behaviour when HTTP/2 connections
    are closed by a server-sent 'GoAway' frame". (#679)
  * Fix edge-case exception when removing requests from the connection pool. (#680)
  * Fix pool timeout edge-case. (#688)
buildservice-autocommit accepted request 1084216 from Dirk Mueller's avatar Dirk Mueller (dirkmueller) (revision 23)
baserev update by copy to link target
Dirk Mueller's avatar Dirk Mueller (dirkmueller) committed (revision 22)
- update to 0.17.0:
  * Add DEBUG level logging. (#648)
  * Respect HTTP/2 max concurrent streams when settings updates
    are sent by server. (#652)
  * Increase the allowable HTTP header size to 100kB. (#647)
  * Add `retries` option to SOCKS proxy classes. (#643)
buildservice-autocommit accepted request 1081481 from Dirk Mueller's avatar Dirk Mueller (dirkmueller) (revision 21)
baserev update by copy to link target
Dirk Mueller's avatar Dirk Mueller (dirkmueller) accepted request 1081439 from Dirk Mueller's avatar Dirk Mueller (dirkmueller) (revision 20)
SR for python stack proposal
buildservice-autocommit accepted request 1045130 from Matej Cepl's avatar Matej Cepl (mcepl) (revision 19)
baserev update by copy to link target
Matej Cepl's avatar Matej Cepl (mcepl) accepted request 1045069 from Benjamin Greiner's avatar Benjamin Greiner (bnavigator) (revision 18)
- Update to 0.16.3
  * Allow ws and wss schemes. Allows us to properly support
    websocket upgrade connections. (#625)
  * Forwarding HTTP proxies use a connection-per-remote-host.
    Required by some proxy implementations. (#637)
  * Don't raise RuntimeError when closing a connection pool with
    active connections. Removes some error cases when cancellations
    are used. (#631)
  * Lazy import anyio, so that it's no longer a hard dependancy,
    and isn't imported if unused. (#639)
- Add httpcore-allow-deprecationwarnings-test.patch
  gh#encode/httpcore#511, gh#agronholm/anyio#470
Dirk Mueller's avatar Dirk Mueller (dirkmueller) committed (revision 17)
- update to 0.16.2:
  * Revert 'Fix async cancellation behaviour', which introduced race conditions
  * Raise RuntimeError if attempting to us UNIX domain sockets on Windows
  * Fix HTTP/1.1 interim informational responses, such as "100 Continue"
  * Support HTTP/1.1 informational responses.
  * Fix async cancellation behaviour.
  * Support h11 0.14
buildservice-autocommit accepted request 1037634 from Matej Cepl's avatar Matej Cepl (mcepl) (revision 16)
baserev update by copy to link target
Matej Cepl's avatar Matej Cepl (mcepl) committed (revision 15)
- Skip failing test_request_with_content test
  (gh#encode/httpcore#622).
Displaying revisions 1 - 20 of 34
openSUSE Build Service is sponsored by