14
0

Accepting request 900892 from home:stroeder:python

update to version 2.0.1 (PY3-only)

OBS-URL: https://build.opensuse.org/request/show/900892
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-itsdangerous?expand=0&rev=17
This commit is contained in:
2021-06-21 08:05:42 +00:00
committed by Git OBS Bridge
parent dd8f7891ef
commit 2dff9c0c8f
4 changed files with 38 additions and 6 deletions

View File

@@ -1,3 +1,33 @@
-------------------------------------------------------------------
Sat Jun 19 07:34:21 UTC 2021 - Michael Ströder <michael@stroeder.com>
- update to version 2.0.1
* Version 2.0.1
- Mark top-level names as exported so type checking understands imports
in user projects. #240
- The salt argument to Serializer and Signer can be None again. #237
* Version 2.0.0
- Drop support for Python 2 and 3.5.
- JWS support (JSONWebSignatureSerializer,
TimedJSONWebSignatureSerializer) is deprecated. Use a dedicated JWS/JWT
library such as authlib instead. #129
- Importing itsdangerous.json is deprecated. Import Pythons json module instead. #152
- Simplejson is no longer used if it is installed. To use a different
library, pass it as Serializer(serializer=...). #146
- datetime values are timezone-aware with timezone.utc. Code using
TimestampSigner.unsign(return_timestamp=True) or
BadTimeSignature.date_signed may need to change. #150
- If a signature has an age less than 0, it will raise SignatureExpired
rather than appearing valid. This can happen if the timestamp offset is
changed. #126
- BadTimeSignature.date_signed is always a datetime object rather than an
int in some cases. #124
- Added support for key rotation. A list of keys can be passed as
secret_key, oldest to newest. The newest key is used for signing, all
keys are tried for unsigning. #141
- Removed the default SHA-512 fallback signer from default_fallback_signers. #155
- Add type information for static typing tools. #186
-------------------------------------------------------------------
Tue Jun 11 07:52:22 UTC 2019 - Marketa Calabkova <mcalabkova@suse.com>