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:           Sat Dec  2 07:26:21 UTC 2023

Modified Files:
        pkgsrc/www/py-django-allauth: Makefile PLIST distinfo

Log Message:
py-django-allauth: updated to 0.58.2

0.58.0 (2023-10-26)
*******************

Note worthy changes
-------------------

- The ``SocialAccount.exra_data`` field was a custom JSON field that used
  ``TextField`` as the underlying implementation. It was once needed because
  Django had no ``JSONField`` support. Now, this field is changed to use the
  official ``JSONField()``. 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
  on (some of) the built-in templates your project may be affected.

- The Azure provider has been removed in favor of keeping the Microsoft
  provider. Both providers were targeting the same goal.

Security notice
---------------

- Facebook: Using the JS SDK flow, it was possible to post valid access tokens
  originating from other apps. Facebook user IDs are scoped per app. By default
  that user ID (not the email address) is used as key while
  authenticating. Therefore, such access tokens can not be abused by
  default. However, in case ``SOCIALACCOUNT_EMAIL_AUTHENTICATION`` was
  explicitly enabled for the Facebook provider, these tokens could be used to
  login.

0.57.0 (2023-09-24)
*******************

Note worthy changes
-------------------

- Added Django password validation help text to ``password1`` on
  set/change/signup forms.

- Microsoft: the tenant parameter can now be configured per app.

- SAML: Added support for additional configuration parameters, such as contacts,
  and support for certificate rotation.

- The enumeration prevention behavior at signup is now configurable. Whether or
  not enumeration can be prevented during signup depends on the email
  verification method. In case of mandatory verification, enumeration can be
  properly prevented because the case where an email address is already taken is
  indistinguishable from the case where it is not.  However, in case of optional
  or disabled email verification, enumeration can only be prevented by allowing
  the signup to go through, resulting in multiple accounts sharing same email
  address (although only one of the accounts can ever have it verified). When
  enumeration is set to ``True``, email address uniqueness takes precedence over
  enumeration prevention, and the issue of multiple accounts having the same
  email address will be avoided, thus leaking information. Set it to
  ``"strict"`` to allow for signups to go through.

Fixes
=====

- Fixed ``?next=`` URL handling in the SAML provider.

- During 2FA, pending logins were incorrectly removed when e.g. Django was asked
  to serve a ``/favicon.ico`` URL.


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 pkgsrc/www/py-django-allauth/Makefile
cvs rdiff -u -r1.3 -r1.4 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.4 pkgsrc/www/py-django-allauth/Makefile:1.5
--- pkgsrc/www/py-django-allauth/Makefile:1.4   Tue Nov  7 22:38:09 2023
+++ pkgsrc/www/py-django-allauth/Makefile       Sat Dec  2 07:26:21 2023
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.4 2023/11/07 22:38:09 wiz Exp $
+# $NetBSD: Makefile,v 1.5 2023/12/02 07:26:21 adam Exp $
 
-DISTNAME=      django-allauth-0.55.2
+DISTNAME=      django-allauth-0.58.2
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    www python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=d/django-allauth/}
@@ -10,6 +10,8 @@ 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}-wheel-[0-9]*:../../devel/py-wheel
 DEPENDS+=      ${PYPKGPREFIX}-JWT>=1.7:../../textproc/py-JWT
 DEPENDS+=      ${PYPKGPREFIX}-django>=3.2:../../www/py-django3
 DEPENDS+=      ${PYPKGPREFIX}-openid>=3.0.8:../../security/py-openid
@@ -20,5 +22,5 @@ USE_LANGUAGES=        # none
 
 PYTHON_VERSIONS_INCOMPATIBLE=  27 38
 
-.include "../../lang/python/egg.mk"
+.include "../../lang/python/wheel.mk"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/www/py-django-allauth/PLIST
diff -u pkgsrc/www/py-django-allauth/PLIST:1.3 pkgsrc/www/py-django-allauth/PLIST:1.4
--- pkgsrc/www/py-django-allauth/PLIST:1.3      Thu Aug 31 17:36:13 2023
+++ pkgsrc/www/py-django-allauth/PLIST  Sat Dec  2 07:26:21 2023
@@ -1,10 +1,10 @@
-@comment $NetBSD: PLIST,v 1.3 2023/08/31 17:36:13 adam Exp $
-${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
-${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
-${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
-${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
-${PYSITELIB}/${EGG_INFODIR}/requires.txt
-${PYSITELIB}/${EGG_INFODIR}/top_level.txt
+@comment $NetBSD: PLIST,v 1.4 2023/12/02 07:26:21 adam Exp $
+${PYSITELIB}/${WHEEL_INFODIR}/AUTHORS
+${PYSITELIB}/${WHEEL_INFODIR}/LICENSE
+${PYSITELIB}/${WHEEL_INFODIR}/METADATA
+${PYSITELIB}/${WHEEL_INFODIR}/RECORD
+${PYSITELIB}/${WHEEL_INFODIR}/WHEEL
+${PYSITELIB}/${WHEEL_INFODIR}/top_level.txt
 ${PYSITELIB}/allauth/__init__.py
 ${PYSITELIB}/allauth/__init__.pyc
 ${PYSITELIB}/allauth/__init__.pyo
@@ -44,6 +44,9 @@ ${PYSITELIB}/allauth/account/management/
 ${PYSITELIB}/allauth/account/managers.py
 ${PYSITELIB}/allauth/account/managers.pyc
 ${PYSITELIB}/allauth/account/managers.pyo
+${PYSITELIB}/allauth/account/middleware.py
+${PYSITELIB}/allauth/account/middleware.pyc
+${PYSITELIB}/allauth/account/middleware.pyo
 ${PYSITELIB}/allauth/account/migrations/0001_initial.py
 ${PYSITELIB}/allauth/account/migrations/0001_initial.pyc
 ${PYSITELIB}/allauth/account/migrations/0001_initial.pyo
@@ -56,15 +59,24 @@ ${PYSITELIB}/allauth/account/migrations/
 ${PYSITELIB}/allauth/account/migrations/0004_alter_emailaddress_drop_unique_email.py
 ${PYSITELIB}/allauth/account/migrations/0004_alter_emailaddress_drop_unique_email.pyc
 ${PYSITELIB}/allauth/account/migrations/0004_alter_emailaddress_drop_unique_email.pyo
+${PYSITELIB}/allauth/account/migrations/0005_emailaddress_idx_upper_email.py
+${PYSITELIB}/allauth/account/migrations/0005_emailaddress_idx_upper_email.pyc
+${PYSITELIB}/allauth/account/migrations/0005_emailaddress_idx_upper_email.pyo
 ${PYSITELIB}/allauth/account/migrations/__init__.py
 ${PYSITELIB}/allauth/account/migrations/__init__.pyc
 ${PYSITELIB}/allauth/account/migrations/__init__.pyo
 ${PYSITELIB}/allauth/account/models.py
 ${PYSITELIB}/allauth/account/models.pyc
 ${PYSITELIB}/allauth/account/models.pyo
+${PYSITELIB}/allauth/account/reauthentication.py
+${PYSITELIB}/allauth/account/reauthentication.pyc
+${PYSITELIB}/allauth/account/reauthentication.pyo
 ${PYSITELIB}/allauth/account/signals.py
 ${PYSITELIB}/allauth/account/signals.pyc
 ${PYSITELIB}/allauth/account/signals.pyo
+${PYSITELIB}/allauth/account/stages.py
+${PYSITELIB}/allauth/account/stages.pyc
+${PYSITELIB}/allauth/account/stages.pyo
 ${PYSITELIB}/allauth/account/templatetags/__init__.py
 ${PYSITELIB}/allauth/account/templatetags/__init__.pyc
 ${PYSITELIB}/allauth/account/templatetags/__init__.pyo
@@ -74,6 +86,9 @@ ${PYSITELIB}/allauth/account/templatetag
 ${PYSITELIB}/allauth/account/tests/__init__.py
 ${PYSITELIB}/allauth/account/tests/__init__.pyc
 ${PYSITELIB}/allauth/account/tests/__init__.pyo
+${PYSITELIB}/allauth/account/tests/test_adapter.py
+${PYSITELIB}/allauth/account/tests/test_adapter.pyc
+${PYSITELIB}/allauth/account/tests/test_adapter.pyo
 ${PYSITELIB}/allauth/account/tests/test_ajax.py
 ${PYSITELIB}/allauth/account/tests/test_ajax.pyc
 ${PYSITELIB}/allauth/account/tests/test_ajax.pyo
@@ -83,15 +98,24 @@ ${PYSITELIB}/allauth/account/tests/test_
 ${PYSITELIB}/allauth/account/tests/test_change_email.py
 ${PYSITELIB}/allauth/account/tests/test_change_email.pyc
 ${PYSITELIB}/allauth/account/tests/test_change_email.pyo
+${PYSITELIB}/allauth/account/tests/test_commands.py
+${PYSITELIB}/allauth/account/tests/test_commands.pyc
+${PYSITELIB}/allauth/account/tests/test_commands.pyo
 ${PYSITELIB}/allauth/account/tests/test_confirm_email.py
 ${PYSITELIB}/allauth/account/tests/test_confirm_email.pyc
 ${PYSITELIB}/allauth/account/tests/test_confirm_email.pyo
+${PYSITELIB}/allauth/account/tests/test_decorators.py
+${PYSITELIB}/allauth/account/tests/test_decorators.pyc
+${PYSITELIB}/allauth/account/tests/test_decorators.pyo
 ${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_logout.py
 ${PYSITELIB}/allauth/account/tests/test_logout.pyc
 ${PYSITELIB}/allauth/account/tests/test_logout.pyo
+${PYSITELIB}/allauth/account/tests/test_middleware.py
+${PYSITELIB}/allauth/account/tests/test_middleware.pyc
+${PYSITELIB}/allauth/account/tests/test_middleware.pyo
 ${PYSITELIB}/allauth/account/tests/test_models.py
 ${PYSITELIB}/allauth/account/tests/test_models.pyc
 ${PYSITELIB}/allauth/account/tests/test_models.pyo
@@ -125,6 +149,24 @@ ${PYSITELIB}/allauth/app_settings.pyo
 ${PYSITELIB}/allauth/conftest.py
 ${PYSITELIB}/allauth/conftest.pyc
 ${PYSITELIB}/allauth/conftest.pyo
+${PYSITELIB}/allauth/core/__init__.py
+${PYSITELIB}/allauth/core/__init__.pyc
+${PYSITELIB}/allauth/core/__init__.pyo
+${PYSITELIB}/allauth/core/context.py
+${PYSITELIB}/allauth/core/context.pyc
+${PYSITELIB}/allauth/core/context.pyo
+${PYSITELIB}/allauth/core/exceptions.py
+${PYSITELIB}/allauth/core/exceptions.pyc
+${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/ratelimit.py
+${PYSITELIB}/allauth/core/ratelimit.pyc
+${PYSITELIB}/allauth/core/ratelimit.pyo
 ${PYSITELIB}/allauth/decorators.py
 ${PYSITELIB}/allauth/decorators.pyc
 ${PYSITELIB}/allauth/decorators.pyo
@@ -219,6 +261,63 @@ ${PYSITELIB}/allauth/locale/zh_Hant/LC_M
 ${PYSITELIB}/allauth/locale/zh_Hant/LC_MESSAGES/django.po
 ${PYSITELIB}/allauth/locale/zh_TW/LC_MESSAGES/django.mo
 ${PYSITELIB}/allauth/locale/zh_TW/LC_MESSAGES/django.po
+${PYSITELIB}/allauth/mfa/__init__.py
+${PYSITELIB}/allauth/mfa/__init__.pyc
+${PYSITELIB}/allauth/mfa/__init__.pyo
+${PYSITELIB}/allauth/mfa/adapter.py
+${PYSITELIB}/allauth/mfa/adapter.pyc
+${PYSITELIB}/allauth/mfa/adapter.pyo
+${PYSITELIB}/allauth/mfa/app_settings.py
+${PYSITELIB}/allauth/mfa/app_settings.pyc
+${PYSITELIB}/allauth/mfa/app_settings.pyo
+${PYSITELIB}/allauth/mfa/apps.py
+${PYSITELIB}/allauth/mfa/apps.pyc
+${PYSITELIB}/allauth/mfa/apps.pyo
+${PYSITELIB}/allauth/mfa/forms.py
+${PYSITELIB}/allauth/mfa/forms.pyc
+${PYSITELIB}/allauth/mfa/forms.pyo
+${PYSITELIB}/allauth/mfa/migrations/0001_initial.py
+${PYSITELIB}/allauth/mfa/migrations/0001_initial.pyc
+${PYSITELIB}/allauth/mfa/migrations/0001_initial.pyo
+${PYSITELIB}/allauth/mfa/migrations/__init__.py
+${PYSITELIB}/allauth/mfa/migrations/__init__.pyc
+${PYSITELIB}/allauth/mfa/migrations/__init__.pyo
+${PYSITELIB}/allauth/mfa/models.py
+${PYSITELIB}/allauth/mfa/models.pyc
+${PYSITELIB}/allauth/mfa/models.pyo
+${PYSITELIB}/allauth/mfa/recovery_codes.py
+${PYSITELIB}/allauth/mfa/recovery_codes.pyc
+${PYSITELIB}/allauth/mfa/recovery_codes.pyo
+${PYSITELIB}/allauth/mfa/signals.py
+${PYSITELIB}/allauth/mfa/signals.pyc
+${PYSITELIB}/allauth/mfa/signals.pyo
+${PYSITELIB}/allauth/mfa/stages.py
+${PYSITELIB}/allauth/mfa/stages.pyc
+${PYSITELIB}/allauth/mfa/stages.pyo
+${PYSITELIB}/allauth/mfa/tests/__init__.py
+${PYSITELIB}/allauth/mfa/tests/__init__.pyc
+${PYSITELIB}/allauth/mfa/tests/__init__.pyo
+${PYSITELIB}/allauth/mfa/tests/conftest.py
+${PYSITELIB}/allauth/mfa/tests/conftest.pyc
+${PYSITELIB}/allauth/mfa/tests/conftest.pyo
+${PYSITELIB}/allauth/mfa/tests/test_recovery_codes.py
+${PYSITELIB}/allauth/mfa/tests/test_recovery_codes.pyc
+${PYSITELIB}/allauth/mfa/tests/test_recovery_codes.pyo
+${PYSITELIB}/allauth/mfa/tests/test_views.py
+${PYSITELIB}/allauth/mfa/tests/test_views.pyc
+${PYSITELIB}/allauth/mfa/tests/test_views.pyo
+${PYSITELIB}/allauth/mfa/totp.py
+${PYSITELIB}/allauth/mfa/totp.pyc
+${PYSITELIB}/allauth/mfa/totp.pyo
+${PYSITELIB}/allauth/mfa/urls.py
+${PYSITELIB}/allauth/mfa/urls.pyc
+${PYSITELIB}/allauth/mfa/urls.pyo
+${PYSITELIB}/allauth/mfa/utils.py
+${PYSITELIB}/allauth/mfa/utils.pyc
+${PYSITELIB}/allauth/mfa/utils.pyo
+${PYSITELIB}/allauth/mfa/views.py
+${PYSITELIB}/allauth/mfa/views.pyc
+${PYSITELIB}/allauth/mfa/views.pyo
 ${PYSITELIB}/allauth/models.py
 ${PYSITELIB}/allauth/models.pyc
 ${PYSITELIB}/allauth/models.pyo
@@ -243,9 +342,6 @@ ${PYSITELIB}/allauth/socialaccount/apps.
 ${PYSITELIB}/allauth/socialaccount/conftest.py
 ${PYSITELIB}/allauth/socialaccount/conftest.pyc
 ${PYSITELIB}/allauth/socialaccount/conftest.pyo
-${PYSITELIB}/allauth/socialaccount/fields.py
-${PYSITELIB}/allauth/socialaccount/fields.pyc
-${PYSITELIB}/allauth/socialaccount/fields.pyo
 ${PYSITELIB}/allauth/socialaccount/forms.py
 ${PYSITELIB}/allauth/socialaccount/forms.pyc
 ${PYSITELIB}/allauth/socialaccount/forms.pyo
@@ -264,6 +360,12 @@ ${PYSITELIB}/allauth/socialaccount/migra
 ${PYSITELIB}/allauth/socialaccount/migrations/0004_app_provider_id_settings.py
 ${PYSITELIB}/allauth/socialaccount/migrations/0004_app_provider_id_settings.pyc
 ${PYSITELIB}/allauth/socialaccount/migrations/0004_app_provider_id_settings.pyo
+${PYSITELIB}/allauth/socialaccount/migrations/0005_socialtoken_nullable_app.py
+${PYSITELIB}/allauth/socialaccount/migrations/0005_socialtoken_nullable_app.pyc
+${PYSITELIB}/allauth/socialaccount/migrations/0005_socialtoken_nullable_app.pyo
+${PYSITELIB}/allauth/socialaccount/migrations/0006_alter_socialaccount_extra_data.py
+${PYSITELIB}/allauth/socialaccount/migrations/0006_alter_socialaccount_extra_data.pyc
+${PYSITELIB}/allauth/socialaccount/migrations/0006_alter_socialaccount_extra_data.pyo
 ${PYSITELIB}/allauth/socialaccount/migrations/__init__.py
 ${PYSITELIB}/allauth/socialaccount/migrations/__init__.pyc
 ${PYSITELIB}/allauth/socialaccount/migrations/__init__.pyo
@@ -405,24 +507,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/authentiq/views.py
 ${PYSITELIB}/allauth/socialaccount/providers/authentiq/views.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/authentiq/views.pyo
-${PYSITELIB}/allauth/socialaccount/providers/azure/__init__.py
-${PYSITELIB}/allauth/socialaccount/providers/azure/__init__.pyc
-${PYSITELIB}/allauth/socialaccount/providers/azure/__init__.pyo
-${PYSITELIB}/allauth/socialaccount/providers/azure/models.py
-${PYSITELIB}/allauth/socialaccount/providers/azure/models.pyc
-${PYSITELIB}/allauth/socialaccount/providers/azure/models.pyo
-${PYSITELIB}/allauth/socialaccount/providers/azure/provider.py
-${PYSITELIB}/allauth/socialaccount/providers/azure/provider.pyc
-${PYSITELIB}/allauth/socialaccount/providers/azure/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/azure/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/azure/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/azure/tests.pyo
-${PYSITELIB}/allauth/socialaccount/providers/azure/urls.py
-${PYSITELIB}/allauth/socialaccount/providers/azure/urls.pyc
-${PYSITELIB}/allauth/socialaccount/providers/azure/urls.pyo
-${PYSITELIB}/allauth/socialaccount/providers/azure/views.py
-${PYSITELIB}/allauth/socialaccount/providers/azure/views.pyc
-${PYSITELIB}/allauth/socialaccount/providers/azure/views.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/baidu/__init__.py
 ${PYSITELIB}/allauth/socialaccount/providers/baidu/__init__.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/baidu/__init__.pyo
@@ -546,21 +630,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/box/views.py
 ${PYSITELIB}/allauth/socialaccount/providers/box/views.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/box/views.pyo
-${PYSITELIB}/allauth/socialaccount/providers/cern/__init__.py
-${PYSITELIB}/allauth/socialaccount/providers/cern/__init__.pyc
-${PYSITELIB}/allauth/socialaccount/providers/cern/__init__.pyo
-${PYSITELIB}/allauth/socialaccount/providers/cern/provider.py
-${PYSITELIB}/allauth/socialaccount/providers/cern/provider.pyc
-${PYSITELIB}/allauth/socialaccount/providers/cern/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/cern/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/cern/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/cern/tests.pyo
-${PYSITELIB}/allauth/socialaccount/providers/cern/urls.py
-${PYSITELIB}/allauth/socialaccount/providers/cern/urls.pyc
-${PYSITELIB}/allauth/socialaccount/providers/cern/urls.pyo
-${PYSITELIB}/allauth/socialaccount/providers/cern/views.py
-${PYSITELIB}/allauth/socialaccount/providers/cern/views.pyc
-${PYSITELIB}/allauth/socialaccount/providers/cern/views.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/cilogon/__init__.py
 ${PYSITELIB}/allauth/socialaccount/providers/cilogon/__init__.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/cilogon/__init__.pyo
@@ -789,9 +858,9 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/dwolla/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/dwolla/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/dwolla/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/dwolla/test.py
-${PYSITELIB}/allauth/socialaccount/providers/dwolla/test.pyc
-${PYSITELIB}/allauth/socialaccount/providers/dwolla/test.pyo
+${PYSITELIB}/allauth/socialaccount/providers/dwolla/tests.py
+${PYSITELIB}/allauth/socialaccount/providers/dwolla/tests.pyc
+${PYSITELIB}/allauth/socialaccount/providers/dwolla/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/dwolla/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/dwolla/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/dwolla/urls.pyo
@@ -1209,21 +1278,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/kakao/views.py
 ${PYSITELIB}/allauth/socialaccount/providers/kakao/views.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/kakao/views.pyo
-${PYSITELIB}/allauth/socialaccount/providers/keycloak/__init__.py
-${PYSITELIB}/allauth/socialaccount/providers/keycloak/__init__.pyc
-${PYSITELIB}/allauth/socialaccount/providers/keycloak/__init__.pyo
-${PYSITELIB}/allauth/socialaccount/providers/keycloak/provider.py
-${PYSITELIB}/allauth/socialaccount/providers/keycloak/provider.pyc
-${PYSITELIB}/allauth/socialaccount/providers/keycloak/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/keycloak/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/keycloak/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/keycloak/tests.pyo
-${PYSITELIB}/allauth/socialaccount/providers/keycloak/urls.py
-${PYSITELIB}/allauth/socialaccount/providers/keycloak/urls.pyc
-${PYSITELIB}/allauth/socialaccount/providers/keycloak/urls.pyo
-${PYSITELIB}/allauth/socialaccount/providers/keycloak/views.py
-${PYSITELIB}/allauth/socialaccount/providers/keycloak/views.pyc
-${PYSITELIB}/allauth/socialaccount/providers/keycloak/views.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/lemonldap/__init__.py
 ${PYSITELIB}/allauth/socialaccount/providers/lemonldap/__init__.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/lemonldap/__init__.pyo
@@ -1596,9 +1650,9 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/patreon/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/patreon/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/patreon/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/patreon/test.py
-${PYSITELIB}/allauth/socialaccount/providers/patreon/test.pyc
-${PYSITELIB}/allauth/socialaccount/providers/patreon/test.pyo
+${PYSITELIB}/allauth/socialaccount/providers/patreon/tests.py
+${PYSITELIB}/allauth/socialaccount/providers/patreon/tests.pyc
+${PYSITELIB}/allauth/socialaccount/providers/patreon/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/patreon/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/patreon/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/patreon/urls.pyo
@@ -1680,9 +1734,9 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/quickbooks/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/quickbooks/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/quickbooks/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/quickbooks/test.py
-${PYSITELIB}/allauth/socialaccount/providers/quickbooks/test.pyc
-${PYSITELIB}/allauth/socialaccount/providers/quickbooks/test.pyo
+${PYSITELIB}/allauth/socialaccount/providers/quickbooks/tests.py
+${PYSITELIB}/allauth/socialaccount/providers/quickbooks/tests.pyc
+${PYSITELIB}/allauth/socialaccount/providers/quickbooks/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/quickbooks/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/quickbooks/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/quickbooks/urls.pyo
@@ -1934,6 +1988,9 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/telegram/provider.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/telegram/static/telegram/js/telegram.js
 ${PYSITELIB}/allauth/socialaccount/providers/telegram/templates/telegram/callback.html
+${PYSITELIB}/allauth/socialaccount/providers/telegram/tests.py
+${PYSITELIB}/allauth/socialaccount/providers/telegram/tests.pyc
+${PYSITELIB}/allauth/socialaccount/providers/telegram/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/telegram/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/telegram/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/telegram/urls.pyo
@@ -2087,9 +2144,9 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/vimeo_oauth2/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/vimeo_oauth2/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/vimeo_oauth2/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/vimeo_oauth2/test.py
-${PYSITELIB}/allauth/socialaccount/providers/vimeo_oauth2/test.pyc
-${PYSITELIB}/allauth/socialaccount/providers/vimeo_oauth2/test.pyo
+${PYSITELIB}/allauth/socialaccount/providers/vimeo_oauth2/tests.py
+${PYSITELIB}/allauth/socialaccount/providers/vimeo_oauth2/tests.pyc
+${PYSITELIB}/allauth/socialaccount/providers/vimeo_oauth2/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/vimeo_oauth2/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/vimeo_oauth2/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/vimeo_oauth2/urls.pyo
@@ -2282,9 +2339,15 @@ ${PYSITELIB}/allauth/socialaccount/templ
 ${PYSITELIB}/allauth/socialaccount/tests/__init__.py
 ${PYSITELIB}/allauth/socialaccount/tests/__init__.pyc
 ${PYSITELIB}/allauth/socialaccount/tests/__init__.pyo
+${PYSITELIB}/allauth/socialaccount/tests/conftest.py
+${PYSITELIB}/allauth/socialaccount/tests/conftest.pyc
+${PYSITELIB}/allauth/socialaccount/tests/conftest.pyo
 ${PYSITELIB}/allauth/socialaccount/tests/test_adapter.py
 ${PYSITELIB}/allauth/socialaccount/tests/test_adapter.pyc
 ${PYSITELIB}/allauth/socialaccount/tests/test_adapter.pyo
+${PYSITELIB}/allauth/socialaccount/tests/test_connect.py
+${PYSITELIB}/allauth/socialaccount/tests/test_connect.pyc
+${PYSITELIB}/allauth/socialaccount/tests/test_connect.pyo
 ${PYSITELIB}/allauth/socialaccount/tests/test_login.py
 ${PYSITELIB}/allauth/socialaccount/tests/test_login.pyc
 ${PYSITELIB}/allauth/socialaccount/tests/test_login.pyo
@@ -2304,7 +2367,10 @@ ${PYSITELIB}/allauth/socialaccount/views
 ${PYSITELIB}/allauth/socialaccount/views.pyc
 ${PYSITELIB}/allauth/socialaccount/views.pyo
 ${PYSITELIB}/allauth/templates/account/account_inactive.html
-${PYSITELIB}/allauth/templates/account/base.html
+${PYSITELIB}/allauth/templates/account/base_entrance.html
+${PYSITELIB}/allauth/templates/account/base_manage.html
+${PYSITELIB}/allauth/templates/account/base_manage_email.html
+${PYSITELIB}/allauth/templates/account/base_manage_password.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
@@ -2338,16 +2404,47 @@ ${PYSITELIB}/allauth/templates/account/p
 ${PYSITELIB}/allauth/templates/account/password_reset_from_key.html
 ${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/signup.html
 ${PYSITELIB}/allauth/templates/account/signup_closed.html
 ${PYSITELIB}/allauth/templates/account/snippets/already_logged_in.html
 ${PYSITELIB}/allauth/templates/account/snippets/warn_no_email.html
 ${PYSITELIB}/allauth/templates/account/verification_sent.html
 ${PYSITELIB}/allauth/templates/account/verified_email_required.html
+${PYSITELIB}/allauth/templates/allauth/elements/alert.html
+${PYSITELIB}/allauth/templates/allauth/elements/badge.html
+${PYSITELIB}/allauth/templates/allauth/elements/button.html
+${PYSITELIB}/allauth/templates/allauth/elements/field.html
+${PYSITELIB}/allauth/templates/allauth/elements/fields.html
+${PYSITELIB}/allauth/templates/allauth/elements/form.html
+${PYSITELIB}/allauth/templates/allauth/elements/h1.html
+${PYSITELIB}/allauth/templates/allauth/elements/h2.html
+${PYSITELIB}/allauth/templates/allauth/elements/img.html
+${PYSITELIB}/allauth/templates/allauth/elements/panel.html
+${PYSITELIB}/allauth/templates/allauth/elements/provider.html
+${PYSITELIB}/allauth/templates/allauth/elements/provider_list.html
+${PYSITELIB}/allauth/templates/allauth/layouts/base.html
+${PYSITELIB}/allauth/templates/allauth/layouts/entrance.html
+${PYSITELIB}/allauth/templates/allauth/layouts/manage.html
+${PYSITELIB}/allauth/templates/mfa/authenticate.html
+${PYSITELIB}/allauth/templates/mfa/base_entrance.html
+${PYSITELIB}/allauth/templates/mfa/base_manage.html
+${PYSITELIB}/allauth/templates/mfa/index.html
+${PYSITELIB}/allauth/templates/mfa/messages/recovery_codes_generated.txt
+${PYSITELIB}/allauth/templates/mfa/messages/totp_activated.txt
+${PYSITELIB}/allauth/templates/mfa/messages/totp_deactivated.txt
+${PYSITELIB}/allauth/templates/mfa/recovery_codes/base.html
+${PYSITELIB}/allauth/templates/mfa/recovery_codes/download.txt
+${PYSITELIB}/allauth/templates/mfa/recovery_codes/generate.html
+${PYSITELIB}/allauth/templates/mfa/recovery_codes/index.html
+${PYSITELIB}/allauth/templates/mfa/totp/activate_form.html
+${PYSITELIB}/allauth/templates/mfa/totp/base.html
+${PYSITELIB}/allauth/templates/mfa/totp/deactivate_form.html
 ${PYSITELIB}/allauth/templates/openid/base.html
 ${PYSITELIB}/allauth/templates/openid/login.html
 ${PYSITELIB}/allauth/templates/socialaccount/authentication_error.html
-${PYSITELIB}/allauth/templates/socialaccount/base.html
+${PYSITELIB}/allauth/templates/socialaccount/base_entrance.html
+${PYSITELIB}/allauth/templates/socialaccount/base_manage.html
 ${PYSITELIB}/allauth/templates/socialaccount/connections.html
 ${PYSITELIB}/allauth/templates/socialaccount/login.html
 ${PYSITELIB}/allauth/templates/socialaccount/login_cancelled.html
@@ -2356,9 +2453,16 @@ ${PYSITELIB}/allauth/templates/socialacc
 ${PYSITELIB}/allauth/templates/socialaccount/messages/account_connected_updated.txt
 ${PYSITELIB}/allauth/templates/socialaccount/messages/account_disconnected.txt
 ${PYSITELIB}/allauth/templates/socialaccount/signup.html
+${PYSITELIB}/allauth/templates/socialaccount/snippets/login.html
 ${PYSITELIB}/allauth/templates/socialaccount/snippets/login_extra.html
 ${PYSITELIB}/allauth/templates/socialaccount/snippets/provider_list.html
 ${PYSITELIB}/allauth/templates/tests/test_403_csrf.html
+${PYSITELIB}/allauth/templatetags/__init__.py
+${PYSITELIB}/allauth/templatetags/__init__.pyc
+${PYSITELIB}/allauth/templatetags/__init__.pyo
+${PYSITELIB}/allauth/templatetags/allauth.py
+${PYSITELIB}/allauth/templatetags/allauth.pyc
+${PYSITELIB}/allauth/templatetags/allauth.pyo
 ${PYSITELIB}/allauth/tests.py
 ${PYSITELIB}/allauth/tests.pyc
 ${PYSITELIB}/allauth/tests.pyo
Index: pkgsrc/www/py-django-allauth/distinfo
diff -u pkgsrc/www/py-django-allauth/distinfo:1.3 pkgsrc/www/py-django-allauth/distinfo:1.4
--- pkgsrc/www/py-django-allauth/distinfo:1.3   Thu Aug 31 17:36:13 2023
+++ pkgsrc/www/py-django-allauth/distinfo       Sat Dec  2 07:26:21 2023
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.3 2023/08/31 17:36:13 adam Exp $
+$NetBSD: distinfo,v 1.4 2023/12/02 07:26:21 adam Exp $
 
-BLAKE2s (django-allauth-0.55.2.tar.gz) = 41ebc813415b5f297b7ffdedf558464e2f3aaa5cf06a251279ec001eeee2f6b0
-SHA512 (django-allauth-0.55.2.tar.gz) = 479599271f778a377bd58e59dbb1eed828bf69accbf81a26c6a8a7aedd877beb57a433e42c3fc8eb507af3c95f5d819da871d86717f20dfe6ef3abdfd2d84e12
-Size (django-allauth-0.55.2.tar.gz) = 781237 bytes
+BLAKE2s (django-allauth-0.58.2.tar.gz) = d05ad9655e12e37996678b08429eb2656b05226be0152be7320a1e960eb7591c
+SHA512 (django-allauth-0.58.2.tar.gz) = 79662a8b1f177ff15169b98c0360729ed325b73b536125f3edaf449ae69a7f9462c8c3df7947be460579da82c8b24a854bc85344ff7d63896371bf364ba6c154
+Size (django-allauth-0.58.2.tar.gz) = 872381 bytes



Home | Main Index | Thread Index | Old Index