14
0
forked from pool/python-uvloop

- update to 0.12.1

* Fix a circular references case in SSL implementation.
 * Cleanup references to callbacks in canceled callback handles.
 * New SSL implementation. The new implementation is faster and
    and more complete, and will become the default SSL implementation
    in asyncio 3.8. This is a significant change that warrants a release
    candidate to make sure it is tested properly.
 * New uvloop.install() helper function.
 * ssl.CertificateError is no longer logged as it's delivered to 
     the Protocol.connection_lost() anyways.
 * Improve UDPTransport.sendto() performance.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-uvloop?expand=0&rev=9
This commit is contained in:
2019-02-28 15:07:52 +00:00
committed by Git OBS Bridge
parent ea5e1993cf
commit 85d73fafcf
4 changed files with 20 additions and 4 deletions

View File

@@ -1,3 +1,18 @@
-------------------------------------------------------------------
Thu Feb 28 15:00:03 UTC 2019 - Ondřej Súkup <mimi.vx@gmail.com>
- update to 0.12.1
* Fix a circular references case in SSL implementation.
* Cleanup references to callbacks in canceled callback handles.
* New SSL implementation. The new implementation is faster and
and more complete, and will become the default SSL implementation
in asyncio 3.8. This is a significant change that warrants a release
candidate to make sure it is tested properly.
* New uvloop.install() helper function.
* ssl.CertificateError is no longer logged as it's delivered to
the Protocol.connection_lost() anyways.
* Improve UDPTransport.sendto() performance.
-------------------------------------------------------------------
Wed Feb 13 12:24:56 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>