Skip to content

Commit

Permalink
release: v3.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
zzacharo committed Oct 18, 2023
1 parent 1e38c76 commit b995565
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
7 changes: 7 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ Flask-Security-Invenio Changelog
Here you can see the full list of changes between each Flask-Security-Invenio
release.

Version 3.3.3
-------------

Released October 18th 2023

- Removes `impesonator_id` from the session on logout.

Version 3.3.2
-------------

Expand Down
4 changes: 3 additions & 1 deletion flask_security/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,14 @@
try:
# Werkzeug <2.1
from werkzeug import security

security.safe_str_cmp
except AttributeError:
# Werkzeug >=2.1
import hmac

from werkzeug import security

security.safe_str_cmp = hmac.compare_digest

from flask_login import login_required
Expand All @@ -37,7 +39,7 @@
reset_password_instructions_sent, user_confirmed, user_registered
from .utils import impersonate_user, login_user, logout_user, url_for_security

__version__ = '3.3.2'
__version__ = "3.3.3"
__all__ = (
'AnonymousUser',
'auth_required',
Expand Down

0 comments on commit b995565

Please sign in to comment.