- Fixed SSL context cache construction that did not take key_password into account. - Prefer return ``NotImplemented`` instead of raising ``NotImplementedError`` to avoid polluting the stack trace when trying to initialize the external tls layer when not concerned (e.g. not http3 over QUIC).
2.6.905
====================
- Fixed traffic police shutdown procedure to avoid killing needlessly a new connection or pool.
2.6.904
====================
- Overall performance improvements for both async and sync calls. - Removed ``TrafficPolice`` internal caching for obj states of contained elements due to its inability to be up-to-date in some cases. - Fixed SSLError wrong message displayed when using the underlying ``qh3`` library (HTTP/3 only). - Fixed graceful shutdown for rare HTTP/2 servers configured to immediately forbid opening new streams.
2.6.903
====================
- Overall performance improvements for both async and sync calls.
2.6.902
====================
- Fixed PyPy error when running asynchronous code on Windows after trying to create a datagram socket. This error is due to an incomplete implementation of the Windows socket API. We silently disabled HTTP/3 if running PyPy+Windows+asyncio until upstream issue resolution. - Overall performance improvements for both async and sync calls. - Fixed ProtocolError (No recent network activity after XYZ) error when it should recycle the connection automatically (sync only). - Added a user-friendly error message when invoking ``get_response`` from either ``PoolManager`` or ``ConnectionPool`` with anything else than a ``ResponsePromise``.
2.6.901
====================
- Fixed blocking IO just after HTTP/3 is negotiated in an asynchronous context. - Added explicit warning in case your pool of connections is insufficiently sized for the given charge in an asynchronous context. - Fixed automatic retrieval of the issuer certificate in an asynchronous context (``ConnectionInfo``).