| Index | index by Group | index by Distribution | index by Vendor | index by creation date | index by Name | Mirrors | Help | Search |
| Name: python311-httpcore | Distribution: SUSE Linux Enterprise 15 |
| Version: 0.17.0 | Vendor: SUSE LLC <https://www.suse.com/> |
| Release: 150400.9.3.9 | Build date: Tue Oct 3 23:48:28 2023 |
| Group: Unspecified | Build host: h03-ch2a |
| Size: 581134 | Source RPM: python-httpcore-0.17.0-150400.9.3.9.src.rpm |
| Packager: https://www.suse.com/ | |
| Url: https://github.com/encode/httpcore | |
| Summary: Minimal low-level Python HTTP client | |
Python minimal low-level HTTP client.
BSD-3-Clause
* Wed May 03 2023 dmueller@suse.com
- 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)
* Fri Apr 21 2023 dmueller@suse.com
- add sle15_python_module_pythons (jsc#PED-68)
* Thu Apr 13 2023 mcepl@suse.com
- Make calling of %{sle15modernpython} optional.
* Fri Dec 23 2022 code@bnavigator.de
- 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
* Mon Dec 19 2022 dmueller@suse.com
- 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
* Wed Nov 23 2022 mcepl@suse.com
- Skip failing test_request_with_content test
(gh#encode/httpcore#622).
* Tue Jul 19 2022 code@bnavigator.de
- Update to 0.15.0
* Drop Python 3.6 support (#535)
* Ensure HTTP proxy CONNECT requests include timeout
configuration. (#506)
* Switch to explicit typing.Optional for type hints (#513)
* For trio map OSError exceptions to ConnectError (#543)
- Fix forgotten test package dep drops -- gh#encode/httpcore#473
* Mon Feb 21 2022 michael@stroeder.com
- update to 0.14.7:
* Requests which raise a PoolTimeout need to be removed from the pool queue.
* Fix AttributeError that happened when Socks5Connection were terminated.
* Fix SOCKS support for `http://` URLs.
* Resolve race condition around exceptions during streaming a response.
* Fri Feb 11 2022 michael@stroeder.com
- Only recommend and not require the installation of python-h2 because it is
seriously broken and prevents any other Python software to run correctly with -bb.
(See also: https://github.com/python-hyper/h2/issues/1236)
This also matches upstream's setup.py which lists h2 as optional
dependency in extra_requires.
* Tue Feb 01 2022 steven.kowalik@suse.com
- Update to 0.14.5:
* SOCKS proxy support. (#478)
* Add proxy_auth argument to HTTPProxy (#481)
* Improve error message on 'RemoteProtocolError' exception when server
disconnects without sending a response (#479)
* Support HTTP/2 on HTTPS tunnelling proxies. (#468)
* Fix proxy headers missing on HTTP forwarding. (#456)
* Only instantiate SSL context if required. (#457)
* More robust HTTP/2 handling. (#253, #439, #440, #441)
* Fix race condition when removing closed connections from the pool (#437)
* Failed connections no longer remain in the pool. (Pull #433)
* max_connections becomes optional. (Pull #429)
* certifi is now included in the install dependancies. (Pull #428)
* h2 is now strictly optional. (Pull #428)
* Log the point at which the connection is established, and the IP/port
on which it is made.
* Determine if the outgoing request should log as HTTP/1.1 or HTTP/2,
rather than having to assume it's HTTP/2 if the --http2 flag was passed.
* Log SSL version info / certificate info.
* Fix broken error messaging when URL scheme is missing, or a non HTTP(S)
scheme is used. (Pull #403)
- Inject multibuild to stop a build loop
* Tue Jul 13 2021 mcepl@suse.com
- anyio is actually required (at least for some tests in other
packages).
* Thu Jul 08 2021 alarrosa@suse.com
- Update to v0.13.6
* Fixed
- Close sockets when read or write timeouts occur. (Pull #365)
- Update to v0.13.5
* Fixed
- Resolved niggles with AnyIO EOF behaviours. (Pull #358, #362)
- Update to v0.13.4
* Added
- Improved error messaging when URL scheme is missing, or
a non HTTP(S) scheme is used. (Pull #354)
* Fixed
- Switched to anyio as the default backend implementation when
running with asyncio. Resolves some awkward TLS timeout
issues.
* Thu Jun 03 2021 alarrosa@suse.com
- Update to v0.13.3
* Added
- Support HTTP/2 prior knowledge, using
httpcore.SyncConnectionPool(http1=False). (Pull #333)
* Fixed
- Handle cases where environment does not provide select.poll
support. (Pull #331)
- Update to v0.13.2
* Added
- Improve error message for specific case of
RemoteProtocolError where server disconnects without
sending a response. (Pull #313)
- Update to v0.13.1
* Fixed
- More resiliant testing for closed connections.
(Pull #311)
- Don't raise exceptions on ungraceful connection closes.
(Pull #310)
- Update to v0.13.0
* The 0.13 release updates the core API in order to match the
HTTPX Transport API, introduced in HTTPX 0.18 onwards.
* Changed
- The .request() method is now handle_request(). (Pull #296)
- The .arequest() method is now .handle_async_request().
(Pull #296)
- The headers argument is no longer optional. (Pull #296)
- The stream argument is no longer optional. (Pull #296)
- The ext argument is now named extensions, and is no longer
optional. (Pull #296)
- The "reason" extension keyword is now named "reason_phrase".
(Pull #296)
- The "reason_phrase" and "http_version" extensions now use
byte strings for their values. (Pull #296)
- The httpcore.PlainByteStream() class becomes
httpcore.ByteStream(). (Pull #296)
* Added
- Streams now support a .read() interface. (Pull #296)
* Fixed
- Task cancelation no longer leaks connections from the
connection pool. (Pull #305)
- Update to v0.12.3
* Fixed
- Abort SSL connections on close rather than waiting for remote
EOF when using asyncio. (Pull #167)
- Fix exception raised in case of connect timeouts when using
the anyio backend. (Pull #236)
- Fix Host header precedence for :authority in HTTP/2.
(Pull #241, #243)
- Handle extra edge case when detecting for socket readability
when using asyncio. (Pull #242, #244)
- Fix asyncio SSL warning when using proxy tunneling.
(Pull #249)
* Sat May 01 2021 mcepl@suse.com
- Don't build on python36, because of missing dependencies.
* Sat Nov 21 2020 jayvdb@gmail.com
- Update to v0.12.2
* Wed Jan 08 2020 jayvdb@gmail.com
- Initial spec for v0.4.0
/usr/lib/python3.11/site-packages/httpcore /usr/lib/python3.11/site-packages/httpcore-0.17.0-py3.11.egg-info /usr/lib/python3.11/site-packages/httpcore-0.17.0-py3.11.egg-info/PKG-INFO /usr/lib/python3.11/site-packages/httpcore-0.17.0-py3.11.egg-info/SOURCES.txt /usr/lib/python3.11/site-packages/httpcore-0.17.0-py3.11.egg-info/dependency_links.txt /usr/lib/python3.11/site-packages/httpcore-0.17.0-py3.11.egg-info/not-zip-safe /usr/lib/python3.11/site-packages/httpcore-0.17.0-py3.11.egg-info/requires.txt /usr/lib/python3.11/site-packages/httpcore-0.17.0-py3.11.egg-info/top_level.txt /usr/lib/python3.11/site-packages/httpcore/__init__.py /usr/lib/python3.11/site-packages/httpcore/__pycache__ /usr/lib/python3.11/site-packages/httpcore/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/httpcore/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/httpcore/__pycache__/_api.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/httpcore/__pycache__/_api.cpython-311.pyc /usr/lib/python3.11/site-packages/httpcore/__pycache__/_exceptions.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/httpcore/__pycache__/_exceptions.cpython-311.pyc /usr/lib/python3.11/site-packages/httpcore/__pycache__/_models.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/httpcore/__pycache__/_models.cpython-311.pyc /usr/lib/python3.11/site-packages/httpcore/__pycache__/_ssl.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/httpcore/__pycache__/_ssl.cpython-311.pyc /usr/lib/python3.11/site-packages/httpcore/__pycache__/_synchronization.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/httpcore/__pycache__/_synchronization.cpython-311.pyc /usr/lib/python3.11/site-packages/httpcore/__pycache__/_trace.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/httpcore/__pycache__/_trace.cpython-311.pyc /usr/lib/python3.11/site-packages/httpcore/__pycache__/_utils.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/httpcore/__pycache__/_utils.cpython-311.pyc /usr/lib/python3.11/site-packages/httpcore/_api.py /usr/lib/python3.11/site-packages/httpcore/_async /usr/lib/python3.11/site-packages/httpcore/_async/__init__.py /usr/lib/python3.11/site-packages/httpcore/_async/__pycache__ /usr/lib/python3.11/site-packages/httpcore/_async/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/httpcore/_async/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/httpcore/_async/__pycache__/connection.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/httpcore/_async/__pycache__/connection.cpython-311.pyc /usr/lib/python3.11/site-packages/httpcore/_async/__pycache__/connection_pool.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/httpcore/_async/__pycache__/connection_pool.cpython-311.pyc /usr/lib/python3.11/site-packages/httpcore/_async/__pycache__/http11.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/httpcore/_async/__pycache__/http11.cpython-311.pyc /usr/lib/python3.11/site-packages/httpcore/_async/__pycache__/http2.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/httpcore/_async/__pycache__/http2.cpython-311.pyc /usr/lib/python3.11/site-packages/httpcore/_async/__pycache__/http_proxy.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/httpcore/_async/__pycache__/http_proxy.cpython-311.pyc /usr/lib/python3.11/site-packages/httpcore/_async/__pycache__/interfaces.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/httpcore/_async/__pycache__/interfaces.cpython-311.pyc /usr/lib/python3.11/site-packages/httpcore/_async/__pycache__/socks_proxy.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/httpcore/_async/__pycache__/socks_proxy.cpython-311.pyc /usr/lib/python3.11/site-packages/httpcore/_async/connection.py /usr/lib/python3.11/site-packages/httpcore/_async/connection_pool.py /usr/lib/python3.11/site-packages/httpcore/_async/http11.py /usr/lib/python3.11/site-packages/httpcore/_async/http2.py /usr/lib/python3.11/site-packages/httpcore/_async/http_proxy.py /usr/lib/python3.11/site-packages/httpcore/_async/interfaces.py /usr/lib/python3.11/site-packages/httpcore/_async/socks_proxy.py /usr/lib/python3.11/site-packages/httpcore/_exceptions.py /usr/lib/python3.11/site-packages/httpcore/_models.py /usr/lib/python3.11/site-packages/httpcore/_ssl.py /usr/lib/python3.11/site-packages/httpcore/_sync /usr/lib/python3.11/site-packages/httpcore/_sync/__init__.py /usr/lib/python3.11/site-packages/httpcore/_sync/__pycache__ /usr/lib/python3.11/site-packages/httpcore/_sync/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/httpcore/_sync/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/httpcore/_sync/__pycache__/connection.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/httpcore/_sync/__pycache__/connection.cpython-311.pyc /usr/lib/python3.11/site-packages/httpcore/_sync/__pycache__/connection_pool.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/httpcore/_sync/__pycache__/connection_pool.cpython-311.pyc /usr/lib/python3.11/site-packages/httpcore/_sync/__pycache__/http11.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/httpcore/_sync/__pycache__/http11.cpython-311.pyc /usr/lib/python3.11/site-packages/httpcore/_sync/__pycache__/http2.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/httpcore/_sync/__pycache__/http2.cpython-311.pyc /usr/lib/python3.11/site-packages/httpcore/_sync/__pycache__/http_proxy.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/httpcore/_sync/__pycache__/http_proxy.cpython-311.pyc /usr/lib/python3.11/site-packages/httpcore/_sync/__pycache__/interfaces.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/httpcore/_sync/__pycache__/interfaces.cpython-311.pyc /usr/lib/python3.11/site-packages/httpcore/_sync/__pycache__/socks_proxy.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/httpcore/_sync/__pycache__/socks_proxy.cpython-311.pyc /usr/lib/python3.11/site-packages/httpcore/_sync/connection.py /usr/lib/python3.11/site-packages/httpcore/_sync/connection_pool.py /usr/lib/python3.11/site-packages/httpcore/_sync/http11.py /usr/lib/python3.11/site-packages/httpcore/_sync/http2.py /usr/lib/python3.11/site-packages/httpcore/_sync/http_proxy.py /usr/lib/python3.11/site-packages/httpcore/_sync/interfaces.py /usr/lib/python3.11/site-packages/httpcore/_sync/socks_proxy.py /usr/lib/python3.11/site-packages/httpcore/_synchronization.py /usr/lib/python3.11/site-packages/httpcore/_trace.py /usr/lib/python3.11/site-packages/httpcore/_utils.py /usr/lib/python3.11/site-packages/httpcore/backends /usr/lib/python3.11/site-packages/httpcore/backends/__init__.py /usr/lib/python3.11/site-packages/httpcore/backends/__pycache__ /usr/lib/python3.11/site-packages/httpcore/backends/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/httpcore/backends/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/httpcore/backends/__pycache__/asyncio.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/httpcore/backends/__pycache__/asyncio.cpython-311.pyc /usr/lib/python3.11/site-packages/httpcore/backends/__pycache__/auto.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/httpcore/backends/__pycache__/auto.cpython-311.pyc /usr/lib/python3.11/site-packages/httpcore/backends/__pycache__/base.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/httpcore/backends/__pycache__/base.cpython-311.pyc /usr/lib/python3.11/site-packages/httpcore/backends/__pycache__/mock.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/httpcore/backends/__pycache__/mock.cpython-311.pyc /usr/lib/python3.11/site-packages/httpcore/backends/__pycache__/sync.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/httpcore/backends/__pycache__/sync.cpython-311.pyc /usr/lib/python3.11/site-packages/httpcore/backends/__pycache__/trio.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/httpcore/backends/__pycache__/trio.cpython-311.pyc /usr/lib/python3.11/site-packages/httpcore/backends/asyncio.py /usr/lib/python3.11/site-packages/httpcore/backends/auto.py /usr/lib/python3.11/site-packages/httpcore/backends/base.py /usr/lib/python3.11/site-packages/httpcore/backends/mock.py /usr/lib/python3.11/site-packages/httpcore/backends/sync.py /usr/lib/python3.11/site-packages/httpcore/backends/trio.py /usr/lib/python3.11/site-packages/httpcore/py.typed /usr/share/doc/packages/python311-httpcore /usr/share/doc/packages/python311-httpcore/README.md /usr/share/licenses/python311-httpcore /usr/share/licenses/python311-httpcore/LICENSE.md
Generated by rpm2html 1.8.1
Fabrice Bellet, Mon Feb 9 17:27:59 2026