15
0
forked from pool/python-h11

- update to 0.13.0:

* Clarify that the Headers class is a Sequence and inherit from the
    collections Sequence abstract base class to also indicate this (and
    gain the mixin methods).
  * Switch event classes to dataclasses for easier typing and slightly
    improved performance.
  * Shorten traceback of protocol errors for easier readability
  * Add typing including a PEP 561 marker for usage by type checkers
  * Expand the allowed status codes to [0, 999] from [0, 600]
  * Ensure request method is a valid token

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-h11?expand=0&rev=18
This commit is contained in:
2022-02-16 23:09:53 +00:00
committed by Git OBS Bridge
parent 57b390e17b
commit 90500dfb32
4 changed files with 19 additions and 5 deletions

View File

@@ -1,3 +1,17 @@
-------------------------------------------------------------------
Wed Feb 16 23:08:28 UTC 2022 - Dirk Müller <dmueller@suse.com>
- update to 0.13.0:
* Clarify that the Headers class is a Sequence and inherit from the
collections Sequence abstract base class to also indicate this (and
gain the mixin methods).
* Switch event classes to dataclasses for easier typing and slightly
improved performance.
* Shorten traceback of protocol errors for easier readability
* Add typing including a PEP 561 marker for usage by type checkers
* Expand the allowed status codes to [0, 999] from [0, 600]
* Ensure request method is a valid token
-------------------------------------------------------------------
Fri Feb 5 17:05:15 UTC 2021 - Luigi Baldoni <aloisio@gmx.com>