v0.12.0
New Features
-
New SSL implementation. The new implementation is faster and
and more complete, and might become the default SSL implementation
in asyncio 3.9.See the linked issue for more details.
-
New
uvloop.install()
helper function.Instead of
import asyncio import uvloop asyncio.set_event_loop_policy(uvloop.EventLoopPolicy())
it is now possible to simply write
import uvloop uvloop.install()
Bug Fixes
-
All bug fixes from
0.11.0
—0.11.3
are included in
this release. -
ssl.CertificateError
is no longer logged as it's delivered to
theProtocol.connection_lost()
anyways.
(by @fantix in 848e478 for #195, #199) -
Don't use non-existent
UDPTransport._address
attribute.
(by @jlaine in f24c2c5 for #207)
Performance
Build
-
Upgrade Cython
0.28.x
->0.29.0
. -
Upgrade libuv
v1.22.0
->v1.23.0
.