Skip to content

Bump django-allauth from 0.61.1 to 0.62.1

HIFIS Bot requested to merge dependabot/pip/django-allauth-0.62.1 into master

Bumps django-allauth from 0.61.1 to 0.62.1.

Changelog

Sourced from django-allauth's changelog.

0.62.1 (2024-04-24)


  • The tests package was accidentally packaged, fixed.

0.62.0 (2024-04-22)


Note worthy changes

  • Added a dummy provider, useful for testing purposes: allauth.socialaccount.providers.dummy.

  • Added a new provider, Atlassian

  • Next URL handling been streamlined to be consistently applied. Previously, the password reset, change and email confirmation views only supported the success_url class-level property.

  • Added support for logging in by email using a special code, also known as "Magic Code Login"

  • Email addresses are now always stored as lower case. For rationale, see the note about email case sensitivity in the documentation.

  • You can now alter the state parameter that is typically passed to the provider by overriding the new generate_state_param() adapter method.

  • The URLs were not "hackable". For example, while /accounts/login/ is valid /accounts/ was not. Similarly, /accounts/social/connections/ was valid, but /accounts/social/ resulted in a 404. This has been addressed. Now, /accounts/ redirects to the login or email management page, depending on whether or not the user is authenticated. All /accounts/social/* URLs are now below /accounts/3rdparty/*, where /accounts/social/connections is moved to the top-level /accounts/3rdparty/. The old endpoints still work as redirects are in place.

  • Added a new setting, SOCIALACCOUNT_ONLY, which when set to True, disables all functionality with respect to local accounts.

  • The OAuth2 handshake was not working properly in case of SESSION_COOKIE_SAMESITE = "Strict", fixed.

  • Facebook: the default Graph API version is now v19.0.

Backwards incompatible changes

... (truncated)

Commits
  • 7ab2877 docs(ChangeLog): Add mising note
  • 10ab6b0 chore: Release 0.62.1
  • e561e76 fix(setup): Don't install tests
  • 1a4ee1d fix(ChangeLog): Release date
  • 025e27d chore: Release 0.62.0
  • d2a2086 chore(i18n): Translated using Weblate (Spanish)
  • bc59288 chore(templates): Quotation change
  • 6174acc refactor(account): send_unknown_account_mail()
  • af716e2 feat(core): render_url()
  • e2000b8 refactor(socialaccount): provider.sub_id
  • Additional commits viewable in compare view

Merge request reports