0.44.0 (2020-11-25)#
Security notice#
In previous versions, the mechanism to prevent too many failed login attempts
(ACCOUNT_LOGIN_ATTEMPTS_LIMIT) could be bypassed by changing the casing of
the login.
Backwards incompatible changes#
The
certificatekey part of theSOCIALACCOUNT_PROVIDERSconfiguration has been renamed tocertificate_key. This is done to prevent the key from being displayed without being masked in Django debug pages.
0.43.0 (2020-10-15)#
Note worthy changes#
New translation: Slovenian.
If
ACCOUNT_LOGIN_ATTEMPTS_LIMITis set and the user successfully resets their password, the timeout is cleared to allow immediate login.You can now limit the amount of email addresses a user can associate to his account by setting
ACCOUNT_MAX_EMAIL_ADDRESSES.New providers: Apple, Okta, Stocktwits, Zoho, Zoom.
If email verification is set to mandatory, the email address you use to login with must now be verified as well. In previous versions, it was sufficient if the account had at least one verified email address, not necessarily the one used to login with.
Added a new setting:
ACCOUNT_SIGNUP_REDIRECT_URL– the URL (or URL name) to redirect to directly after signing up.
Backwards incompatible changes#
In previous versions, the
allauthapp included abase.htmltemplate. This template could conflict with an equally named template at project level. Therefore,base.htmlhas now been moved toaccount/base.html– you will need to check your templates and likely overrideaccount/base.htmlwithin your project.
0.42.0 (2020-05-24)#
Note worthy changes#
New providers: EDX, Yandex, Mixer.
Fixed Twitch
get_avatar_url()method to use the profile picture retrieved by new user details endpoint introduced in version 0.40.0.The Facebook API version now defaults to v7.0.