Bump django-allauth from 0.57.0 to 0.58.2
Bumps django-allauth from 0.57.0 to 0.58.2.
Changelog
Sourced from django-allauth's changelog.
0.58.2 (2023-11-06)
Fixes
- Added rate limiting to the MFA login form.
0.58.1 (2023-10-29)
Fixes
- Fixed missing
{% load allauth %}
in the login cancelled and verified email required template.0.58.0 (2023-10-26)
Note worthy changes
The
SocialAccount.exra_data
field was a custom JSON field that usedTextField
as the underlying implementation. It was once needed because Django had noJSONField
support. Now, this field is changed to use the officialJSONField()
. Migrations are in place.Officially support Django 5.0.
In previous versions, users could never remove their primary email address. This is constraint is now relaxed. In case the email address is not required, for example, because the user logs in by username, removal of the email address is allowed.
Added a new setting
ACCOUNT_REAUTHENTICATION_REQUIRED
that, when enabled, requires the user to reauthenticate before changes (such as changing the primary email address, adding a new email address, etc.) can be performed.Backwards incompatible changes
- Refactored the built-in templates, with the goal of being able to adjust the look and feel of the whole project by only overriding a few core templates. This approach allows you to achieve visual results fast, but is of course more limited compared to styling all templates yourself. If your project provided its own templates then this change will not affect anything, but if you rely
... (truncated)
Commits
-
30b3dcb
chore: Release 0.58.2 -
6790542
fix(account): Send email confirmation vs no USER_MODEL_EMAIL_FIELD -
a86cdaf
fix(account): Store email vs no USER_MODEL_EMAIL_FIELD -
3a6046d
docs(example): django-bootstrap-form is no longer used -
a11bd00
tests(amazon_cognito): Test utils -
6444a8c
tests(socialaccount): Query email -
d04aeb8
tests(trello): Provide mocked response -
ef8511b
tests(openid): Reenable -
a66dbbe
refactor: Drop legacy absolute_import -
4e4abec
refactor: Don't import Mock/patch indirectly - Additional commits viewable in compare view