Released 2024-04-16
- Drop support for Python 3.7. :pr:`372`
- Use modern packaging metadata with
pyproject.toml
instead ofsetup.cfg
. :pr:`326` - Use
flit_core
instead ofsetuptools
as build backend. - Deprecate the
__version__
attribute. Use feature detection, orimportlib.metadata.version("itsdangerous")
, instead. :issue:`371` Serializer
and the return type ofdumps
is generic for type checking. By default it isSerializer[str]
anddumps
returns astr
. If a differentserializer
argument is given, it will try to infer the return type of itsdumps
method. :issue:`347`- The default
hashlib.sha1
may not be available in FIPS builds. Don't access it at import time so the developer has time to change the default. :issue:`375`
Released 2022-03-24
- Handle date overflow in timed unsign on 32-bit systems. :pr:`299`
Released 2022-03-09
- Handle date overflow in timed unsign. :pr:`296`
Released 2022-02-17
- Drop support for Python 3.6. :pr:`272`
- Remove previously deprecated code. :pr:`273`
- JWS functionality: Use a dedicated library such as Authlib instead.
import itsdangerous.json
: Importjson
from the standard library instead.
Released 2021-05-18
- Mark top-level names as exported so type checking understands imports in user projects. :pr:`240`
- The
salt
argument toSerializer
andSigner
can beNone
again. :issue:`237`
Released 2021-05-11
- Drop support for Python 2 and 3.5.
- JWS support (
JSONWebSignatureSerializer
,TimedJSONWebSignatureSerializer
) is deprecated. Use a dedicated JWS/JWT library such as authlib instead. :issue:`129` - Importing
itsdangerous.json
is deprecated. Import Python'sjson
module instead. :pr:`152` - Simplejson is no longer used if it is installed. To use a different
library, pass it as
Serializer(serializer=...)
. :issue:`146` datetime
values are timezone-aware withtimezone.utc
. Code usingTimestampSigner.unsign(return_timestamp=True)
orBadTimeSignature.date_signed
may need to change. :issue:`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. :issue:`126` BadTimeSignature.date_signed
is always adatetime
object rather than anint
in some cases. :issue:`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. :pr:`141` - Removed the default SHA-512 fallback signer from
default_fallback_signers
. :issue:`155` - Add type information for static typing tools. :pr:`186`
Released 2018-10-26
- Change default signing algorithm back to SHA-1. :pr:`113`
- Added a default SHA-512 fallback for users who used the yanked 1.0.0 release which defaulted to SHA-512. :pr:`114`
- Add support for fallback algorithms during deserialization to support changing the default in the future without breaking existing signatures. :pr:`113`
- Changed capitalization of packages back to lowercase as the change in capitalization broke some tooling. :pr:`113`
Released 2018-10-18
YANKED
Note: This release was yanked from PyPI because it changed the default algorithm to SHA-512. This decision was reverted in 1.1.0 and it remains at SHA1.
Drop support for Python 2.6 and 3.3.
Refactor code from a single module to a package. Any object in the API docs is still importable from the top-level
itsdangerous
name, but other imports will need to be changed. A future release will remove many of these compatibility imports. :pr:`107`Optimize how timestamps are serialized and deserialized. :pr:`13`
base64_decode
raisesBadData
when it is passed invalid data. :pr:`27`Ensure value is bytes when signing to avoid a
TypeError
on Python 3. :issue:`29`Add a
serializer_kwargs
argument toSerializer
, which is passed todumps
duringdump_payload
. :pr:`36`More compact JSON dumps for unicode strings. :issue:`38`
Use the full timestamp rather than an offset, allowing dates before 2011. :issue:`46`
To retain compatibility with signers from previous versions, consider using this shim when unsigning.
Detect a
sep
character that may show up in the signature itself and raise aValueError
. :issue:`62`Use a consistent signature for keyword arguments for
Serializer.load_payload
in subclasses. :issue:`74`, :pr:`75`Change default intermediate hash from SHA-1 to SHA-512. :pr:`80`
Convert JWS exp header to an int when loading. :pr:`99`
Released 2014-03-28
- Added a
BadHeader
exception that is used for bad headers that replaces the oldBadPayload
exception that was reused in those cases.
Released 2013-08-08
- Fixed a packaging mistake that caused the tests and license files to not be included.
Released 2013-07-03
- Added support for
TimedJSONWebSignatureSerializer
. - Made it possible to override the signature verification function to allow implementing asymmetrical algorithms.
Released 2013-05-26
- Fixed an issue on Python 3 which caused invalid errors to be generated.
Released 2013-05-23
- Fixed an incorrect call into
want_bytes
that broke some uses of ItsDangerous on Python 2.6.
Released 2013-05-21
- Dropped support for 2.5 and added support for 3.3.
Released 2013-05-03
- Added support for JSON Web Signatures (JWS).
Released 2012-08-10
- Fixed a name error when overriding the digest method.
Released 2012-07-11
- Made it possible to pass unicode values to
load_payload
to make it easier to debug certain things.
Released 2012-07-11
- Made standalone
load_payload
more robust by raising one specific error if something goes wrong. - Refactored exceptions to catch more cases individually, added more attributes.
- Fixed an issue that caused
load_payload
not work in some situations with timestamp based serializers - Added an
loads_unsafe
method.
Released 2012-06-29
- API refactoring to support different key derivations.
- Added attributes to exceptions so that you can inspect the data even if the signature check failed.
Released 2012-06-10
- Small API change that enables customization of the digest module.
Released 2012-02-22
- Fixed a problem with the local timezone being used for the epoch
calculation. This might invalidate some of your signatures if you
were not running in UTC timezone. You can revert to the old behavior
by monkey patching
itsdangerous.EPOCH
.
Released 2011-07-07
- Fixed an uncaught value error.
Released 2011-06-25
- Refactored interface that the underlying serializers can be swapped by passing in a module instead of having to override the payload loaders and dumpers. This makes the interface more compatible with Django's recent changes.