pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/www/py-django-allauth
Module Name: pkgsrc
Committed By: adam
Date: Mon May 6 08:08:40 UTC 2024
Modified Files:
pkgsrc/www/py-django-allauth: Makefile PLIST distinfo
Log Message:
py-django-allauth: updated to 0.62.1
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.
To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 pkgsrc/www/py-django-allauth/Makefile
cvs rdiff -u -r1.7 -r1.8 pkgsrc/www/py-django-allauth/PLIST \
pkgsrc/www/py-django-allauth/distinfo
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/www/py-django-allauth/Makefile
diff -u pkgsrc/www/py-django-allauth/Makefile:1.8 pkgsrc/www/py-django-allauth/Makefile:1.9
--- pkgsrc/www/py-django-allauth/Makefile:1.8 Sun Feb 11 19:47:46 2024
+++ pkgsrc/www/py-django-allauth/Makefile Mon May 6 08:08:40 2024
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.8 2024/02/11 19:47:46 adam Exp $
+# $NetBSD: Makefile,v 1.9 2024/05/06 08:08:40 adam Exp $
-DISTNAME= django-allauth-0.61.1
+DISTNAME= django-allauth-0.62.1
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= www python
MASTER_SITES= ${MASTER_SITE_PYPI:=d/django-allauth/}
@@ -10,7 +10,7 @@ HOMEPAGE= https://github.com/pennersr/dj
COMMENT= Authentication, registration, account mgmt and 3rd party account auth
LICENSE= mit
-TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools>-40.8.0:../../devel/py-setuptools
+TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools>=40.8.0:../../devel/py-setuptools
TOOL_DEPENDS+= ${PYPKGPREFIX}-wheel-[0-9]*:../../devel/py-wheel
DEPENDS+= ${PYPKGPREFIX}-JWT>=1.7:../../textproc/py-JWT
DEPENDS+= ${PYPKGPREFIX}-django>=3.2:../../www/py-django
Index: pkgsrc/www/py-django-allauth/PLIST
diff -u pkgsrc/www/py-django-allauth/PLIST:1.7 pkgsrc/www/py-django-allauth/PLIST:1.8
--- pkgsrc/www/py-django-allauth/PLIST:1.7 Sun Feb 11 19:47:46 2024
+++ pkgsrc/www/py-django-allauth/PLIST Mon May 6 08:08:40 2024
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.7 2024/02/11 19:47:46 adam Exp $
+@comment $NetBSD: PLIST,v 1.8 2024/05/06 08:08:40 adam Exp $
${PYSITELIB}/${WHEEL_INFODIR}/AUTHORS
${PYSITELIB}/${WHEEL_INFODIR}/LICENSE
${PYSITELIB}/${WHEEL_INFODIR}/METADATA
@@ -29,12 +29,45 @@ ${PYSITELIB}/allauth/account/auth_backen
${PYSITELIB}/allauth/account/authentication.py
${PYSITELIB}/allauth/account/authentication.pyc
${PYSITELIB}/allauth/account/authentication.pyo
+${PYSITELIB}/allauth/account/checks.py
+${PYSITELIB}/allauth/account/checks.pyc
+${PYSITELIB}/allauth/account/checks.pyo
${PYSITELIB}/allauth/account/decorators.py
${PYSITELIB}/allauth/account/decorators.pyc
${PYSITELIB}/allauth/account/decorators.pyo
${PYSITELIB}/allauth/account/forms.py
${PYSITELIB}/allauth/account/forms.pyc
${PYSITELIB}/allauth/account/forms.pyo
+${PYSITELIB}/allauth/account/internal/__init__.py
+${PYSITELIB}/allauth/account/internal/__init__.pyc
+${PYSITELIB}/allauth/account/internal/__init__.pyo
+${PYSITELIB}/allauth/account/internal/flows/__init__.py
+${PYSITELIB}/allauth/account/internal/flows/__init__.pyc
+${PYSITELIB}/allauth/account/internal/flows/__init__.pyo
+${PYSITELIB}/allauth/account/internal/flows/login.py
+${PYSITELIB}/allauth/account/internal/flows/login.pyc
+${PYSITELIB}/allauth/account/internal/flows/login.pyo
+${PYSITELIB}/allauth/account/internal/flows/login_by_code.py
+${PYSITELIB}/allauth/account/internal/flows/login_by_code.pyc
+${PYSITELIB}/allauth/account/internal/flows/login_by_code.pyo
+${PYSITELIB}/allauth/account/internal/flows/logout.py
+${PYSITELIB}/allauth/account/internal/flows/logout.pyc
+${PYSITELIB}/allauth/account/internal/flows/logout.pyo
+${PYSITELIB}/allauth/account/internal/flows/manage_email.py
+${PYSITELIB}/allauth/account/internal/flows/manage_email.pyc
+${PYSITELIB}/allauth/account/internal/flows/manage_email.pyo
+${PYSITELIB}/allauth/account/internal/flows/password_change.py
+${PYSITELIB}/allauth/account/internal/flows/password_change.pyc
+${PYSITELIB}/allauth/account/internal/flows/password_change.pyo
+${PYSITELIB}/allauth/account/internal/flows/password_reset.py
+${PYSITELIB}/allauth/account/internal/flows/password_reset.pyc
+${PYSITELIB}/allauth/account/internal/flows/password_reset.pyo
+${PYSITELIB}/allauth/account/internal/flows/reauthentication.py
+${PYSITELIB}/allauth/account/internal/flows/reauthentication.pyc
+${PYSITELIB}/allauth/account/internal/flows/reauthentication.pyo
+${PYSITELIB}/allauth/account/internal/flows/signup.py
+${PYSITELIB}/allauth/account/internal/flows/signup.pyc
+${PYSITELIB}/allauth/account/internal/flows/signup.pyo
${PYSITELIB}/allauth/account/management/__init__.py
${PYSITELIB}/allauth/account/management/__init__.pyc
${PYSITELIB}/allauth/account/management/__init__.pyo
@@ -68,6 +101,9 @@ ${PYSITELIB}/allauth/account/migrations/
${PYSITELIB}/allauth/account/migrations/__init__.py
${PYSITELIB}/allauth/account/migrations/__init__.pyc
${PYSITELIB}/allauth/account/migrations/__init__.pyo
+${PYSITELIB}/allauth/account/mixins.py
+${PYSITELIB}/allauth/account/mixins.pyc
+${PYSITELIB}/allauth/account/mixins.pyo
${PYSITELIB}/allauth/account/models.py
${PYSITELIB}/allauth/account/models.pyc
${PYSITELIB}/allauth/account/models.pyo
@@ -116,6 +152,9 @@ ${PYSITELIB}/allauth/account/tests/test_
${PYSITELIB}/allauth/account/tests/test_login.py
${PYSITELIB}/allauth/account/tests/test_login.pyc
${PYSITELIB}/allauth/account/tests/test_login.pyo
+${PYSITELIB}/allauth/account/tests/test_login_by_code.py
+${PYSITELIB}/allauth/account/tests/test_login_by_code.pyc
+${PYSITELIB}/allauth/account/tests/test_login_by_code.pyo
${PYSITELIB}/allauth/account/tests/test_logout.py
${PYSITELIB}/allauth/account/tests/test_logout.pyc
${PYSITELIB}/allauth/account/tests/test_logout.pyo
@@ -170,9 +209,18 @@ ${PYSITELIB}/allauth/core/exceptions.pyo
${PYSITELIB}/allauth/core/internal/__init__.py
${PYSITELIB}/allauth/core/internal/__init__.pyc
${PYSITELIB}/allauth/core/internal/__init__.pyo
-${PYSITELIB}/allauth/core/internal/http.py
-${PYSITELIB}/allauth/core/internal/http.pyc
-${PYSITELIB}/allauth/core/internal/http.pyo
+${PYSITELIB}/allauth/core/internal/adapter.py
+${PYSITELIB}/allauth/core/internal/adapter.pyc
+${PYSITELIB}/allauth/core/internal/adapter.pyo
+${PYSITELIB}/allauth/core/internal/httpkit.py
+${PYSITELIB}/allauth/core/internal/httpkit.pyc
+${PYSITELIB}/allauth/core/internal/httpkit.pyo
+${PYSITELIB}/allauth/core/internal/tests/__init__.py
+${PYSITELIB}/allauth/core/internal/tests/__init__.pyc
+${PYSITELIB}/allauth/core/internal/tests/__init__.pyo
+${PYSITELIB}/allauth/core/internal/tests/test_httpkit.py
+${PYSITELIB}/allauth/core/internal/tests/test_httpkit.pyc
+${PYSITELIB}/allauth/core/internal/tests/test_httpkit.pyo
${PYSITELIB}/allauth/core/ratelimit.py
${PYSITELIB}/allauth/core/ratelimit.pyc
${PYSITELIB}/allauth/core/ratelimit.pyo
@@ -208,6 +256,8 @@ ${PYSITELIB}/allauth/locale/en/LC_MESSAG
${PYSITELIB}/allauth/locale/en/LC_MESSAGES/django.po
${PYSITELIB}/allauth/locale/es/LC_MESSAGES/django.mo
${PYSITELIB}/allauth/locale/es/LC_MESSAGES/django.po
+${PYSITELIB}/allauth/locale/et/LC_MESSAGES/django.mo
+${PYSITELIB}/allauth/locale/et/LC_MESSAGES/django.po
${PYSITELIB}/allauth/locale/eu/LC_MESSAGES/django.mo
${PYSITELIB}/allauth/locale/eu/LC_MESSAGES/django.po
${PYSITELIB}/allauth/locale/fa/LC_MESSAGES/django.mo
@@ -270,12 +320,10 @@ ${PYSITELIB}/allauth/locale/tr/LC_MESSAG
${PYSITELIB}/allauth/locale/tr/LC_MESSAGES/django.po
${PYSITELIB}/allauth/locale/uk/LC_MESSAGES/django.mo
${PYSITELIB}/allauth/locale/uk/LC_MESSAGES/django.po
-${PYSITELIB}/allauth/locale/zh_CN/LC_MESSAGES/django.mo
${PYSITELIB}/allauth/locale/zh_Hans/LC_MESSAGES/django.mo
${PYSITELIB}/allauth/locale/zh_Hans/LC_MESSAGES/django.po
${PYSITELIB}/allauth/locale/zh_Hant/LC_MESSAGES/django.mo
${PYSITELIB}/allauth/locale/zh_Hant/LC_MESSAGES/django.po
-${PYSITELIB}/allauth/locale/zh_TW/LC_MESSAGES/django.mo
${PYSITELIB}/allauth/mfa/__init__.py
${PYSITELIB}/allauth/mfa/__init__.pyc
${PYSITELIB}/allauth/mfa/__init__.pyo
@@ -294,6 +342,21 @@ ${PYSITELIB}/allauth/mfa/apps.pyo
${PYSITELIB}/allauth/mfa/forms.py
${PYSITELIB}/allauth/mfa/forms.pyc
${PYSITELIB}/allauth/mfa/forms.pyo
+${PYSITELIB}/allauth/mfa/internal/__init__.py
+${PYSITELIB}/allauth/mfa/internal/__init__.pyc
+${PYSITELIB}/allauth/mfa/internal/__init__.pyo
+${PYSITELIB}/allauth/mfa/internal/flows/__init__.py
+${PYSITELIB}/allauth/mfa/internal/flows/__init__.pyc
+${PYSITELIB}/allauth/mfa/internal/flows/__init__.pyo
+${PYSITELIB}/allauth/mfa/internal/flows/authentication.py
+${PYSITELIB}/allauth/mfa/internal/flows/authentication.pyc
+${PYSITELIB}/allauth/mfa/internal/flows/authentication.pyo
+${PYSITELIB}/allauth/mfa/internal/flows/recovery_codes.py
+${PYSITELIB}/allauth/mfa/internal/flows/recovery_codes.pyc
+${PYSITELIB}/allauth/mfa/internal/flows/recovery_codes.pyo
+${PYSITELIB}/allauth/mfa/internal/flows/totp.py
+${PYSITELIB}/allauth/mfa/internal/flows/totp.pyc
+${PYSITELIB}/allauth/mfa/internal/flows/totp.pyo
${PYSITELIB}/allauth/mfa/migrations/0001_initial.py
${PYSITELIB}/allauth/mfa/migrations/0001_initial.pyc
${PYSITELIB}/allauth/mfa/migrations/0001_initial.pyo
@@ -372,9 +435,30 @@ ${PYSITELIB}/allauth/socialaccount/helpe
${PYSITELIB}/allauth/socialaccount/internal/__init__.py
${PYSITELIB}/allauth/socialaccount/internal/__init__.pyc
${PYSITELIB}/allauth/socialaccount/internal/__init__.pyo
+${PYSITELIB}/allauth/socialaccount/internal/flows/__init__.py
+${PYSITELIB}/allauth/socialaccount/internal/flows/__init__.pyc
+${PYSITELIB}/allauth/socialaccount/internal/flows/__init__.pyo
+${PYSITELIB}/allauth/socialaccount/internal/flows/connect.py
+${PYSITELIB}/allauth/socialaccount/internal/flows/connect.pyc
+${PYSITELIB}/allauth/socialaccount/internal/flows/connect.pyo
+${PYSITELIB}/allauth/socialaccount/internal/flows/login.py
+${PYSITELIB}/allauth/socialaccount/internal/flows/login.pyc
+${PYSITELIB}/allauth/socialaccount/internal/flows/login.pyo
+${PYSITELIB}/allauth/socialaccount/internal/flows/signup.py
+${PYSITELIB}/allauth/socialaccount/internal/flows/signup.pyc
+${PYSITELIB}/allauth/socialaccount/internal/flows/signup.pyo
${PYSITELIB}/allauth/socialaccount/internal/jwtkit.py
${PYSITELIB}/allauth/socialaccount/internal/jwtkit.pyc
${PYSITELIB}/allauth/socialaccount/internal/jwtkit.pyo
+${PYSITELIB}/allauth/socialaccount/internal/statekit.py
+${PYSITELIB}/allauth/socialaccount/internal/statekit.pyc
+${PYSITELIB}/allauth/socialaccount/internal/statekit.pyo
+${PYSITELIB}/allauth/socialaccount/internal/tests/__init__.py
+${PYSITELIB}/allauth/socialaccount/internal/tests/__init__.pyc
+${PYSITELIB}/allauth/socialaccount/internal/tests/__init__.pyo
+${PYSITELIB}/allauth/socialaccount/internal/tests/test_statekit.py
+${PYSITELIB}/allauth/socialaccount/internal/tests/test_statekit.pyc
+${PYSITELIB}/allauth/socialaccount/internal/tests/test_statekit.pyo
${PYSITELIB}/allauth/socialaccount/migrations/0001_initial.py
${PYSITELIB}/allauth/socialaccount/migrations/0001_initial.pyc
${PYSITELIB}/allauth/socialaccount/migrations/0001_initial.pyo
@@ -504,6 +588,21 @@ ${PYSITELIB}/allauth/socialaccount/provi
${PYSITELIB}/allauth/socialaccount/providers/asana/views.py
${PYSITELIB}/allauth/socialaccount/providers/asana/views.pyc
${PYSITELIB}/allauth/socialaccount/providers/asana/views.pyo
+${PYSITELIB}/allauth/socialaccount/providers/atlassian/__init__.py
+${PYSITELIB}/allauth/socialaccount/providers/atlassian/__init__.pyc
+${PYSITELIB}/allauth/socialaccount/providers/atlassian/__init__.pyo
+${PYSITELIB}/allauth/socialaccount/providers/atlassian/provider.py
+${PYSITELIB}/allauth/socialaccount/providers/atlassian/provider.pyc
+${PYSITELIB}/allauth/socialaccount/providers/atlassian/provider.pyo
+${PYSITELIB}/allauth/socialaccount/providers/atlassian/tests.py
+${PYSITELIB}/allauth/socialaccount/providers/atlassian/tests.pyc
+${PYSITELIB}/allauth/socialaccount/providers/atlassian/tests.pyo
+${PYSITELIB}/allauth/socialaccount/providers/atlassian/urls.py
+${PYSITELIB}/allauth/socialaccount/providers/atlassian/urls.pyc
+${PYSITELIB}/allauth/socialaccount/providers/atlassian/urls.pyo
+${PYSITELIB}/allauth/socialaccount/providers/atlassian/views.py
+${PYSITELIB}/allauth/socialaccount/providers/atlassian/views.pyc
+${PYSITELIB}/allauth/socialaccount/providers/atlassian/views.pyo
${PYSITELIB}/allauth/socialaccount/providers/auth0/__init__.py
${PYSITELIB}/allauth/socialaccount/providers/auth0/__init__.pyc
${PYSITELIB}/allauth/socialaccount/providers/auth0/__init__.pyo
@@ -564,6 +663,9 @@ ${PYSITELIB}/allauth/socialaccount/provi
${PYSITELIB}/allauth/socialaccount/providers/base/utils.py
${PYSITELIB}/allauth/socialaccount/providers/base/utils.pyc
${PYSITELIB}/allauth/socialaccount/providers/base/utils.pyo
+${PYSITELIB}/allauth/socialaccount/providers/base/views.py
+${PYSITELIB}/allauth/socialaccount/providers/base/views.pyc
+${PYSITELIB}/allauth/socialaccount/providers/base/views.pyo
${PYSITELIB}/allauth/socialaccount/providers/basecamp/__init__.py
${PYSITELIB}/allauth/socialaccount/providers/basecamp/__init__.pyc
${PYSITELIB}/allauth/socialaccount/providers/basecamp/__init__.pyo
@@ -864,6 +966,25 @@ ${PYSITELIB}/allauth/socialaccount/provi
${PYSITELIB}/allauth/socialaccount/providers/dropbox/views.py
${PYSITELIB}/allauth/socialaccount/providers/dropbox/views.pyc
${PYSITELIB}/allauth/socialaccount/providers/dropbox/views.pyo
+${PYSITELIB}/allauth/socialaccount/providers/dummy/__init__.py
+${PYSITELIB}/allauth/socialaccount/providers/dummy/__init__.pyc
+${PYSITELIB}/allauth/socialaccount/providers/dummy/__init__.pyo
+${PYSITELIB}/allauth/socialaccount/providers/dummy/forms.py
+${PYSITELIB}/allauth/socialaccount/providers/dummy/forms.pyc
+${PYSITELIB}/allauth/socialaccount/providers/dummy/forms.pyo
+${PYSITELIB}/allauth/socialaccount/providers/dummy/provider.py
+${PYSITELIB}/allauth/socialaccount/providers/dummy/provider.pyc
+${PYSITELIB}/allauth/socialaccount/providers/dummy/provider.pyo
+${PYSITELIB}/allauth/socialaccount/providers/dummy/templates/dummy/authenticate_form.html
+${PYSITELIB}/allauth/socialaccount/providers/dummy/tests.py
+${PYSITELIB}/allauth/socialaccount/providers/dummy/tests.pyc
+${PYSITELIB}/allauth/socialaccount/providers/dummy/tests.pyo
+${PYSITELIB}/allauth/socialaccount/providers/dummy/urls.py
+${PYSITELIB}/allauth/socialaccount/providers/dummy/urls.pyc
+${PYSITELIB}/allauth/socialaccount/providers/dummy/urls.pyo
+${PYSITELIB}/allauth/socialaccount/providers/dummy/views.py
+${PYSITELIB}/allauth/socialaccount/providers/dummy/views.pyc
+${PYSITELIB}/allauth/socialaccount/providers/dummy/views.pyo
${PYSITELIB}/allauth/socialaccount/providers/dwolla/__init__.py
${PYSITELIB}/allauth/socialaccount/providers/dwolla/__init__.pyc
${PYSITELIB}/allauth/socialaccount/providers/dwolla/__init__.pyo
@@ -975,7 +1096,13 @@ ${PYSITELIB}/allauth/socialaccount/provi
${PYSITELIB}/allauth/socialaccount/providers/facebook/__init__.py
${PYSITELIB}/allauth/socialaccount/providers/facebook/__init__.pyc
${PYSITELIB}/allauth/socialaccount/providers/facebook/__init__.pyo
+${PYSITELIB}/allauth/socialaccount/providers/facebook/constants.py
+${PYSITELIB}/allauth/socialaccount/providers/facebook/constants.pyc
+${PYSITELIB}/allauth/socialaccount/providers/facebook/constants.pyo
${PYSITELIB}/allauth/socialaccount/providers/facebook/data/FacebookLocales.xml
+${PYSITELIB}/allauth/socialaccount/providers/facebook/flows.py
+${PYSITELIB}/allauth/socialaccount/providers/facebook/flows.pyc
+${PYSITELIB}/allauth/socialaccount/providers/facebook/flows.pyo
${PYSITELIB}/allauth/socialaccount/providers/facebook/forms.py
${PYSITELIB}/allauth/socialaccount/providers/facebook/forms.pyc
${PYSITELIB}/allauth/socialaccount/providers/facebook/forms.pyo
@@ -1110,6 +1237,9 @@ ${PYSITELIB}/allauth/socialaccount/provi
${PYSITELIB}/allauth/socialaccount/providers/fxa/__init__.py
${PYSITELIB}/allauth/socialaccount/providers/fxa/__init__.pyc
${PYSITELIB}/allauth/socialaccount/providers/fxa/__init__.pyo
+${PYSITELIB}/allauth/socialaccount/providers/fxa/constants.py
+${PYSITELIB}/allauth/socialaccount/providers/fxa/constants.pyc
+${PYSITELIB}/allauth/socialaccount/providers/fxa/constants.pyo
${PYSITELIB}/allauth/socialaccount/providers/fxa/models.py
${PYSITELIB}/allauth/socialaccount/providers/fxa/models.pyc
${PYSITELIB}/allauth/socialaccount/providers/fxa/models.pyo
@@ -1524,6 +1654,12 @@ ${PYSITELIB}/allauth/socialaccount/provi
${PYSITELIB}/allauth/socialaccount/providers/oauth2/provider.py
${PYSITELIB}/allauth/socialaccount/providers/oauth2/provider.pyc
${PYSITELIB}/allauth/socialaccount/providers/oauth2/provider.pyo
+${PYSITELIB}/allauth/socialaccount/providers/oauth2/tests/__init__.py
+${PYSITELIB}/allauth/socialaccount/providers/oauth2/tests/__init__.pyc
+${PYSITELIB}/allauth/socialaccount/providers/oauth2/tests/__init__.pyo
+${PYSITELIB}/allauth/socialaccount/providers/oauth2/tests/test_views.py
+${PYSITELIB}/allauth/socialaccount/providers/oauth2/tests/test_views.pyc
+${PYSITELIB}/allauth/socialaccount/providers/oauth2/tests/test_views.pyo
${PYSITELIB}/allauth/socialaccount/providers/oauth2/urls.py
${PYSITELIB}/allauth/socialaccount/providers/oauth2/urls.pyc
${PYSITELIB}/allauth/socialaccount/providers/oauth2/urls.pyo
@@ -1644,6 +1780,9 @@ ${PYSITELIB}/allauth/socialaccount/provi
${PYSITELIB}/allauth/socialaccount/providers/patreon/__init__.py
${PYSITELIB}/allauth/socialaccount/providers/patreon/__init__.pyc
${PYSITELIB}/allauth/socialaccount/providers/patreon/__init__.pyo
+${PYSITELIB}/allauth/socialaccount/providers/patreon/constants.py
+${PYSITELIB}/allauth/socialaccount/providers/patreon/constants.pyc
+${PYSITELIB}/allauth/socialaccount/providers/patreon/constants.pyo
${PYSITELIB}/allauth/socialaccount/providers/patreon/models.py
${PYSITELIB}/allauth/socialaccount/providers/patreon/models.pyc
${PYSITELIB}/allauth/socialaccount/providers/patreon/models.pyo
@@ -1860,6 +1999,9 @@ ${PYSITELIB}/allauth/socialaccount/provi
${PYSITELIB}/allauth/socialaccount/providers/snapchat/__init__.py
${PYSITELIB}/allauth/socialaccount/providers/snapchat/__init__.pyc
${PYSITELIB}/allauth/socialaccount/providers/snapchat/__init__.pyo
+${PYSITELIB}/allauth/socialaccount/providers/snapchat/constants.py
+${PYSITELIB}/allauth/socialaccount/providers/snapchat/constants.pyc
+${PYSITELIB}/allauth/socialaccount/providers/snapchat/constants.pyo
${PYSITELIB}/allauth/socialaccount/providers/snapchat/models.py
${PYSITELIB}/allauth/socialaccount/providers/snapchat/models.pyc
${PYSITELIB}/allauth/socialaccount/providers/snapchat/models.pyo
@@ -2372,6 +2514,7 @@ ${PYSITELIB}/allauth/templates/account/b
${PYSITELIB}/allauth/templates/account/base_manage_email.html
${PYSITELIB}/allauth/templates/account/base_manage_password.html
${PYSITELIB}/allauth/templates/account/base_reauthenticate.html
+${PYSITELIB}/allauth/templates/account/confirm_login_code.html
${PYSITELIB}/allauth/templates/account/email.html
${PYSITELIB}/allauth/templates/account/email/account_already_exists_message.txt
${PYSITELIB}/allauth/templates/account/email/account_already_exists_subject.txt
@@ -2387,6 +2530,8 @@ ${PYSITELIB}/allauth/templates/account/e
${PYSITELIB}/allauth/templates/account/email/email_confirmation_subject.txt
${PYSITELIB}/allauth/templates/account/email/email_deleted_message.txt
${PYSITELIB}/allauth/templates/account/email/email_deleted_subject.txt
+${PYSITELIB}/allauth/templates/account/email/login_code_message.txt
+${PYSITELIB}/allauth/templates/account/email/login_code_subject.txt
${PYSITELIB}/allauth/templates/account/email/password_changed_message.txt
${PYSITELIB}/allauth/templates/account/email/password_changed_subject.txt
${PYSITELIB}/allauth/templates/account/email/password_reset_key_message.txt
@@ -2408,6 +2553,7 @@ ${PYSITELIB}/allauth/templates/account/m
${PYSITELIB}/allauth/templates/account/messages/email_deleted.txt
${PYSITELIB}/allauth/templates/account/messages/logged_in.txt
${PYSITELIB}/allauth/templates/account/messages/logged_out.txt
+${PYSITELIB}/allauth/templates/account/messages/login_code_sent.txt
${PYSITELIB}/allauth/templates/account/messages/password_changed.txt
${PYSITELIB}/allauth/templates/account/messages/password_set.txt
${PYSITELIB}/allauth/templates/account/messages/primary_email_set.txt
@@ -2419,6 +2565,7 @@ ${PYSITELIB}/allauth/templates/account/p
${PYSITELIB}/allauth/templates/account/password_reset_from_key_done.html
${PYSITELIB}/allauth/templates/account/password_set.html
${PYSITELIB}/allauth/templates/account/reauthenticate.html
+${PYSITELIB}/allauth/templates/account/request_login_code.html
${PYSITELIB}/allauth/templates/account/signup.html
${PYSITELIB}/allauth/templates/account/signup_closed.html
${PYSITELIB}/allauth/templates/account/snippets/already_logged_in.html
@@ -2475,6 +2622,7 @@ ${PYSITELIB}/allauth/templates/socialacc
${PYSITELIB}/allauth/templates/socialaccount/email/account_disconnected_subject.txt
${PYSITELIB}/allauth/templates/socialaccount/login.html
${PYSITELIB}/allauth/templates/socialaccount/login_cancelled.html
+${PYSITELIB}/allauth/templates/socialaccount/login_redirect.html
${PYSITELIB}/allauth/templates/socialaccount/messages/account_connected.txt
${PYSITELIB}/allauth/templates/socialaccount/messages/account_connected_other.txt
${PYSITELIB}/allauth/templates/socialaccount/messages/account_connected_updated.txt
@@ -2517,6 +2665,15 @@ ${PYSITELIB}/allauth/usersessions/apps.p
${PYSITELIB}/allauth/usersessions/forms.py
${PYSITELIB}/allauth/usersessions/forms.pyc
${PYSITELIB}/allauth/usersessions/forms.pyo
+${PYSITELIB}/allauth/usersessions/internal/__init__.py
+${PYSITELIB}/allauth/usersessions/internal/__init__.pyc
+${PYSITELIB}/allauth/usersessions/internal/__init__.pyo
+${PYSITELIB}/allauth/usersessions/internal/flows/__init__.py
+${PYSITELIB}/allauth/usersessions/internal/flows/__init__.pyc
+${PYSITELIB}/allauth/usersessions/internal/flows/__init__.pyo
+${PYSITELIB}/allauth/usersessions/internal/flows/sessions.py
+${PYSITELIB}/allauth/usersessions/internal/flows/sessions.pyc
+${PYSITELIB}/allauth/usersessions/internal/flows/sessions.pyo
${PYSITELIB}/allauth/usersessions/middleware.py
${PYSITELIB}/allauth/usersessions/middleware.pyc
${PYSITELIB}/allauth/usersessions/middleware.pyo
Index: pkgsrc/www/py-django-allauth/distinfo
diff -u pkgsrc/www/py-django-allauth/distinfo:1.7 pkgsrc/www/py-django-allauth/distinfo:1.8
--- pkgsrc/www/py-django-allauth/distinfo:1.7 Sun Feb 11 19:47:46 2024
+++ pkgsrc/www/py-django-allauth/distinfo Mon May 6 08:08:40 2024
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.7 2024/02/11 19:47:46 adam Exp $
+$NetBSD: distinfo,v 1.8 2024/05/06 08:08:40 adam Exp $
-BLAKE2s (django-allauth-0.61.1.tar.gz) = 26856e76215cbf6af302f2a63959591719d2d1f04fcb0d6bbe4802435b6eaa9d
-SHA512 (django-allauth-0.61.1.tar.gz) = c9ad0b206a4967d542a67d97e8973d4d83fe030fa71d8fad1f43b81fb388895a7d9c339f49d536cccfad5b3f606ea02dd31bc5e41328579d092b00e7e0a1b936
-Size (django-allauth-0.61.1.tar.gz) = 951524 bytes
+BLAKE2s (django-allauth-0.62.1.tar.gz) = a958113fa0348f38b328f1a959f0867b8c9bb38430cd265e9fccd460f355aa69
+SHA512 (django-allauth-0.62.1.tar.gz) = 6fd84098edfa887ac401ea2cff2d091b995022d1f6f9b385843fe00107f6db3c706fb480fb6a47bbf5b80982e8e1c2f24de32e2e821d3817f16a92660baf9325
+Size (django-allauth-0.62.1.tar.gz) = 1027823 bytes
Home |
Main Index |
Thread Index |
Old Index