14
0
forked from pool/python-josepy

Accepting request 923340 from home:ecsos:server

- Update to 1.10.0
  * josepy is now compliant with PEP-561: type checkers will fetch
    types from the inline types annotations when josepy is
    installed as a dependency in a Python project.
  * Added a field function to assist in adding type annotations for
    Fields in classes. If the field function is used to define a 
    Field in a JSONObjectWithFields based class without a type
    annotation, an error will be raised.
  * josepy's tests can no longer be imported under the name josepy,
    however, they are still included in the package and you can run
    them by installing josepy with "tests" extras and running
    python -m pytest.
- Changes from 1.9.0
  * Removed pytest-cache testing dependency.
  * Fixed a bug that sometimes caused incorrect padding to be used
    when serializing Elliptic Curve keys as JSON Web Keys.

OBS-URL: https://build.opensuse.org/request/show/923340
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-josepy?expand=0&rev=23
This commit is contained in:
2021-10-05 19:25:55 +00:00
committed by Git OBS Bridge
parent fa2384d34e
commit cde9867586
6 changed files with 37 additions and 16 deletions

View File

@@ -1,3 +1,24 @@
-------------------------------------------------------------------
Tue Oct 5 19:12:28 UTC 2021 - ecsos <ecsos@opensuse.org>
- Update to 1.10.0
* josepy is now compliant with PEP-561: type checkers will fetch
types from the inline types annotations when josepy is
installed as a dependency in a Python project.
* Added a field function to assist in adding type annotations for
Fields in classes. If the field function is used to define a
Field in a JSONObjectWithFields based class without a type
annotation, an error will be raised.
* josepy's tests can no longer be imported under the name josepy,
however, they are still included in the package and you can run
them by installing josepy with "tests" extras and running
python -m pytest.
- Changes from 1.9.0
* Removed pytest-cache testing dependency.
* Fixed a bug that sometimes caused incorrect padding to be used
when serializing Elliptic Curve keys as JSON Web Keys.
-------------------------------------------------------------------
Sun May 9 14:43:52 UTC 2021 - Dirk Müller <dmueller@suse.com>