Skip to content

Commit

Permalink
link #114 changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
davidism committed Oct 26, 2018
1 parent 8561891 commit 66c9319
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
7 changes: 5 additions & 2 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,16 @@ Version 1.1.0
Released 2018-10-26

- Change default signing algorithm back to SHA-1. (`#113`_)
- Added a default SHA-512 fallback.
- Added a default SHA-512 fallback for users who used the yanked 1.0.0
release which defaulted to SHA-512. (`#114`_)
- Add support for fallback algorithms during deserialization to
support changing the default in the future without breaking existing
signatures. (`#113`_)
- Changed capitalization of packages back to lowercase as the change
in capitalization broke some tooling. (`#113`_)

.. _#113: https://github.com/pallets/itsdangerous/pull/113
.. _#114: https://github.com/pallets/itsdangerous/pull/114


Version 1.0.0
Expand All @@ -22,7 +24,8 @@ 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 and it remains at SHA1.
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
Expand Down
8 changes: 4 additions & 4 deletions src/itsdangerous/serializer.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class Serializer(object):
class to the constructor as well as keyword arguments as a dict that
should be forwarded.
.. code-block:: python3
.. code-block:: python
s = Serializer(signer_kwargs={'key_derivation': 'hmac'})
Expand Down Expand Up @@ -58,10 +58,10 @@ class to the constructor as well as keyword arguments as a dict that
The ``signer`` and ``signer_kwargs`` parameters were added to
the constructor.
.. versionchanged:: 1.1:
.. versionchanged:: 1.1.0:
Added support for ``fallback_signers`` and configured a default
SHA-512 fallback. This fallback is for users who used the 1.0
release which was yanked which had SHA-512 support in it.
SHA-512 fallback. This fallback is for users who used the yanked
1.0.0 release which defaulted to SHA-512.
"""

#: If a serializer module or class is not passed to the constructor
Expand Down

0 comments on commit 66c9319

Please sign in to comment.