4094ead
It's Dangerous Changelog
4094ead
------------------------
4094ead
4094ead
Version 0.21
4094ead
~~~~~~~~~~~~
4094ead
4094ead
- Fixed an issue on Python 3 which caused invalid errors to be
4094ead
  generated.
4094ead
4094ead
Version 0.20
4094ead
~~~~~~~~~~~~
4094ead
4094ead
- Fixed an incorrect call into `want_bytes` that broke some
4094ead
  uses of itsdangerous on Python 2.6.
4094ead
4094ead
Version 0.19
4094ead
~~~~~~~~~~~~
4094ead
4094ead
- Dropped support for 2.5 and added support for 3.3.
4094ead
4094ead
Version 0.18
4094ead
~~~~~~~~~~~~
4094ead
4094ead
- Added support for JSON Web Signatures (JWS).
4094ead
4094ead
Version 0.17
4094ead
~~~~~~~~~~~~
4094ead
4094ead
- Fixed a name error when overriding the digest method.
4094ead
4094ead
Version 0.16
4094ead
~~~~~~~~~~~~
4094ead
4094ead
- made it possible to pass unicode values to `load_payload` to make it
4094ead
  easier to debug certain things.
4094ead
4094ead
Version 0.15
4094ead
~~~~~~~~~~~~
4094ead
4094ead
- made standalone `load_payload` more robust by raising one specific
4094ead
  error if something goes wrong.
4094ead
- refactored exceptions to catch more cases individually, added more
4094ead
  attributes.
4094ead
- fixed an issue that caused `load_payload` not work in some situations
4094ead
  with timestamp based serializers
4094ead
- added an `loads_unsafe` method.
4094ead
4094ead
Version 0.14
4094ead
~~~~~~~~~~~~
4094ead
4094ead
- API refactoring to support different key derivations.
4094ead
- Added attributes to exceptions so that you can inspect the data even
4094ead
  if the signature check failed.
4094ead
4094ead
Version 0.13
4094ead
~~~~~~~~~~~~
4094ead
4094ead
- Small API change that enables customization of the digest module.
4094ead
4094ead
Version 0.12
4094ead
~~~~~~~~~~~~
4094ead
4094ead
- Fixed a problem with the local timezone being used for the epoch
4094ead
  calculation.  This might invalidate some of your signatures if you
4094ead
  were not running in UTC timezone.  You can revert to the old behavior
4094ead
  by monkey patching itsdangerous.EPOCH.
4094ead
4094ead
Version 0.11
4094ead
~~~~~~~~~~~~
4094ead
4094ead
- Fixed an uncought value error.
4094ead
4094ead
Version 0.10
4094ead
~~~~~~~~~~~~
4094ead
4094ead
- Refactored interface that the underlying serializers can be swapped by
4094ead
  passing in a module instead of having to override the payload loaders
4094ead
  and dumpers.  This makes the interface more compatible with Django's
4094ead
  recent changes.