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:           Wed Aug 30 13:52:00 UTC 2023

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

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

0.55.0 (2023-08-22)
*******************

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

- Introduced a new setting ``ACCOUNT_PASSWORD_RESET_TOKEN_GENERATOR`` that
  allows you to specify the token generator for password resets.

- Dropped support for Django 2.x and 3.0.

- Officially support Django 4.2.

- New providers: Miro, Questrade

- It is now possible to manage OpenID Connect providers via the Django
  admin. Simply add a `SocialApp` for each OpenID Connect provider.

- There is now a new flow for changing the email address. When enabled
  (``ACCOUNT_CHANGE_EMAIL``), users are limited to having exactly one email
  address that they can change by adding a temporary second email address that,
  when verified, replaces the current email address.

- Changed spelling from "e-mail" to "email". Both are correct, however, the
  trend over the years has been towards the simpler and more streamlined form
  "email".

- Added support for SAML 2.0. Thanks to `Dskrpt <https://dskrpt.de>`_
  for sponsoring the development of this feature!

- Fixed Twitter OAuth2 authentication by using basic auth and adding scope `tweet.read`.

- Added (optional) support for authentication by email for social logins (see
  ``SOCIALACCOUNT_EMAIL_AUTHENTICATION``).

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

- Even with account enumeration prevention in place, it was possible for a user
  to infer whether or not a given account exists based by trying to add
  secondary email addresses .  This has been fixed -- see the note on backwards
  incompatible changes.

Backwards incompatible changes
------------------------------

- Data model changes: when ``ACCOUNT_UNIQUE_EMAIL=True`` (the default), there
  was a unique constraint on set on the ``email`` field of the ``EmailAddress``
  model. This constraint has been relaxed, now there is a unique constraint on
  the combination of ``email`` and ``verified=True``. Migrations are in place to
  automatically transition, but if you have a lot of accounts, you may need to
  take special care using ``CREATE INDEX CONCURRENTLY``.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 pkgsrc/www/py-django-allauth/Makefile \
    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.1 pkgsrc/www/py-django-allauth/Makefile:1.2
--- pkgsrc/www/py-django-allauth/Makefile:1.1   Sun Jun  4 02:29:21 2023
+++ pkgsrc/www/py-django-allauth/Makefile       Wed Aug 30 13:52:00 2023
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.1 2023/06/04 02:29:21 markd Exp $
+# $NetBSD: Makefile,v 1.2 2023/08/30 13:52:00 adam Exp $
 
-DISTNAME=      django-allauth-0.54.0
+DISTNAME=      django-allauth-0.55.0
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    www python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=d/django-allauth/}
@@ -10,15 +10,15 @@ HOMEPAGE=   https://github.com/pennersr/dj
 COMMENT=       Authentication, registration, account mgmt and 3rd party account auth
 LICENSE=       mit
 
-USE_LANGUAGES= # none
-
-PYTHON_VERSIONS_INCOMPATIBLE=  27
-
+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
-DEPENDS+=      ${PYPKGPREFIX}-requests-[0-9]*:../../devel/py-requests
+DEPENDS+=      ${PYPKGPREFIX}-requests>=2.0.0:../../devel/py-requests
 DEPENDS+=      ${PYPKGPREFIX}-requests-oauthlib>=0.3.0:../../security/py-requests-oauthlib
-DEPENDS+=      ${PYPKGPREFIX}-JWT>=1.7:../../textproc/py-JWT
+
+USE_LANGUAGES= # none
+
+PYTHON_VERSIONS_INCOMPATIBLE=  27
 
 .include "../../lang/python/egg.mk"
 .include "../../mk/bsd.pkg.mk"
Index: pkgsrc/www/py-django-allauth/PLIST
diff -u pkgsrc/www/py-django-allauth/PLIST:1.1 pkgsrc/www/py-django-allauth/PLIST:1.2
--- pkgsrc/www/py-django-allauth/PLIST:1.1      Sun Jun  4 02:29:21 2023
+++ pkgsrc/www/py-django-allauth/PLIST  Wed Aug 30 13:52:00 2023
@@ -1,4 +1,10 @@
-@comment $NetBSD: PLIST,v 1.1 2023/06/04 02:29:21 markd Exp $
+@comment $NetBSD: PLIST,v 1.2 2023/08/30 13:52:00 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
 ${PYSITELIB}/allauth/__init__.py
 ${PYSITELIB}/allauth/__init__.pyc
 ${PYSITELIB}/allauth/__init__.pyo
@@ -44,6 +50,12 @@ ${PYSITELIB}/allauth/account/migrations/
 ${PYSITELIB}/allauth/account/migrations/0002_email_max_length.py
 ${PYSITELIB}/allauth/account/migrations/0002_email_max_length.pyc
 ${PYSITELIB}/allauth/account/migrations/0002_email_max_length.pyo
+${PYSITELIB}/allauth/account/migrations/0003_alter_emailaddress_create_unique_verified_email.py
+${PYSITELIB}/allauth/account/migrations/0003_alter_emailaddress_create_unique_verified_email.pyc
+${PYSITELIB}/allauth/account/migrations/0003_alter_emailaddress_create_unique_verified_email.pyo
+${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/__init__.py
 ${PYSITELIB}/allauth/account/migrations/__init__.pyc
 ${PYSITELIB}/allauth/account/migrations/__init__.pyo
@@ -59,9 +71,45 @@ ${PYSITELIB}/allauth/account/templatetag
 ${PYSITELIB}/allauth/account/templatetags/account.py
 ${PYSITELIB}/allauth/account/templatetags/account.pyc
 ${PYSITELIB}/allauth/account/templatetags/account.pyo
-${PYSITELIB}/allauth/account/tests.py
-${PYSITELIB}/allauth/account/tests.pyc
-${PYSITELIB}/allauth/account/tests.pyo
+${PYSITELIB}/allauth/account/tests/__init__.py
+${PYSITELIB}/allauth/account/tests/__init__.pyc
+${PYSITELIB}/allauth/account/tests/__init__.pyo
+${PYSITELIB}/allauth/account/tests/test_ajax.py
+${PYSITELIB}/allauth/account/tests/test_ajax.pyc
+${PYSITELIB}/allauth/account/tests/test_ajax.pyo
+${PYSITELIB}/allauth/account/tests/test_auth_backends.py
+${PYSITELIB}/allauth/account/tests/test_auth_backends.pyc
+${PYSITELIB}/allauth/account/tests/test_auth_backends.pyo
+${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_confirm_email.py
+${PYSITELIB}/allauth/account/tests/test_confirm_email.pyc
+${PYSITELIB}/allauth/account/tests/test_confirm_email.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_models.py
+${PYSITELIB}/allauth/account/tests/test_models.pyc
+${PYSITELIB}/allauth/account/tests/test_models.pyo
+${PYSITELIB}/allauth/account/tests/test_ratelimit.py
+${PYSITELIB}/allauth/account/tests/test_ratelimit.pyc
+${PYSITELIB}/allauth/account/tests/test_ratelimit.pyo
+${PYSITELIB}/allauth/account/tests/test_reset_password.py
+${PYSITELIB}/allauth/account/tests/test_reset_password.pyc
+${PYSITELIB}/allauth/account/tests/test_reset_password.pyo
+${PYSITELIB}/allauth/account/tests/test_security.py
+${PYSITELIB}/allauth/account/tests/test_security.pyc
+${PYSITELIB}/allauth/account/tests/test_security.pyo
+${PYSITELIB}/allauth/account/tests/test_signup.py
+${PYSITELIB}/allauth/account/tests/test_signup.pyc
+${PYSITELIB}/allauth/account/tests/test_signup.pyo
+${PYSITELIB}/allauth/account/tests/test_utils.py
+${PYSITELIB}/allauth/account/tests/test_utils.pyc
+${PYSITELIB}/allauth/account/tests/test_utils.pyo
 ${PYSITELIB}/allauth/account/urls.py
 ${PYSITELIB}/allauth/account/urls.pyc
 ${PYSITELIB}/allauth/account/urls.pyo
@@ -74,6 +122,9 @@ ${PYSITELIB}/allauth/account/views.pyo
 ${PYSITELIB}/allauth/app_settings.py
 ${PYSITELIB}/allauth/app_settings.pyc
 ${PYSITELIB}/allauth/app_settings.pyo
+${PYSITELIB}/allauth/conftest.py
+${PYSITELIB}/allauth/conftest.pyc
+${PYSITELIB}/allauth/conftest.pyo
 ${PYSITELIB}/allauth/decorators.py
 ${PYSITELIB}/allauth/decorators.pyc
 ${PYSITELIB}/allauth/decorators.pyo
@@ -189,6 +240,9 @@ ${PYSITELIB}/allauth/socialaccount/app_s
 ${PYSITELIB}/allauth/socialaccount/apps.py
 ${PYSITELIB}/allauth/socialaccount/apps.pyc
 ${PYSITELIB}/allauth/socialaccount/apps.pyo
+${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
@@ -207,6 +261,9 @@ ${PYSITELIB}/allauth/socialaccount/migra
 ${PYSITELIB}/allauth/socialaccount/migrations/0003_extra_data_default_dict.py
 ${PYSITELIB}/allauth/socialaccount/migrations/0003_extra_data_default_dict.pyc
 ${PYSITELIB}/allauth/socialaccount/migrations/0003_extra_data_default_dict.pyo
+${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/__init__.py
 ${PYSITELIB}/allauth/socialaccount/migrations/__init__.pyc
 ${PYSITELIB}/allauth/socialaccount/migrations/__init__.pyo
@@ -1308,6 +1365,21 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/microsoft/views.py
 ${PYSITELIB}/allauth/socialaccount/providers/microsoft/views.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/microsoft/views.pyo
+${PYSITELIB}/allauth/socialaccount/providers/miro/__init__.py
+${PYSITELIB}/allauth/socialaccount/providers/miro/__init__.pyc
+${PYSITELIB}/allauth/socialaccount/providers/miro/__init__.pyo
+${PYSITELIB}/allauth/socialaccount/providers/miro/provider.py
+${PYSITELIB}/allauth/socialaccount/providers/miro/provider.pyc
+${PYSITELIB}/allauth/socialaccount/providers/miro/provider.pyo
+${PYSITELIB}/allauth/socialaccount/providers/miro/tests.py
+${PYSITELIB}/allauth/socialaccount/providers/miro/tests.pyc
+${PYSITELIB}/allauth/socialaccount/providers/miro/tests.pyo
+${PYSITELIB}/allauth/socialaccount/providers/miro/urls.py
+${PYSITELIB}/allauth/socialaccount/providers/miro/urls.pyc
+${PYSITELIB}/allauth/socialaccount/providers/miro/urls.pyo
+${PYSITELIB}/allauth/socialaccount/providers/miro/views.py
+${PYSITELIB}/allauth/socialaccount/providers/miro/views.pyc
+${PYSITELIB}/allauth/socialaccount/providers/miro/views.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/naver/__init__.py
 ${PYSITELIB}/allauth/socialaccount/providers/naver/__init__.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/naver/__init__.pyo
@@ -1356,6 +1428,24 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/nextcloud/views.py
 ${PYSITELIB}/allauth/socialaccount/providers/nextcloud/views.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/nextcloud/views.pyo
+${PYSITELIB}/allauth/socialaccount/providers/notion/__init__.py
+${PYSITELIB}/allauth/socialaccount/providers/notion/__init__.pyc
+${PYSITELIB}/allauth/socialaccount/providers/notion/__init__.pyo
+${PYSITELIB}/allauth/socialaccount/providers/notion/client.py
+${PYSITELIB}/allauth/socialaccount/providers/notion/client.pyc
+${PYSITELIB}/allauth/socialaccount/providers/notion/client.pyo
+${PYSITELIB}/allauth/socialaccount/providers/notion/provider.py
+${PYSITELIB}/allauth/socialaccount/providers/notion/provider.pyc
+${PYSITELIB}/allauth/socialaccount/providers/notion/provider.pyo
+${PYSITELIB}/allauth/socialaccount/providers/notion/tests.py
+${PYSITELIB}/allauth/socialaccount/providers/notion/tests.pyc
+${PYSITELIB}/allauth/socialaccount/providers/notion/tests.pyo
+${PYSITELIB}/allauth/socialaccount/providers/notion/urls.py
+${PYSITELIB}/allauth/socialaccount/providers/notion/urls.pyc
+${PYSITELIB}/allauth/socialaccount/providers/notion/urls.pyo
+${PYSITELIB}/allauth/socialaccount/providers/notion/views.py
+${PYSITELIB}/allauth/socialaccount/providers/notion/views.pyc
+${PYSITELIB}/allauth/socialaccount/providers/notion/views.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/oauth/__init__.py
 ${PYSITELIB}/allauth/socialaccount/providers/oauth/__init__.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/oauth/__init__.pyo
@@ -1530,25 +1620,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/paypal/views.py
 ${PYSITELIB}/allauth/socialaccount/providers/paypal/views.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/paypal/views.pyo
-${PYSITELIB}/allauth/socialaccount/providers/persona/__init__.py
-${PYSITELIB}/allauth/socialaccount/providers/persona/__init__.pyc
-${PYSITELIB}/allauth/socialaccount/providers/persona/__init__.pyo
-${PYSITELIB}/allauth/socialaccount/providers/persona/models.py
-${PYSITELIB}/allauth/socialaccount/providers/persona/models.pyc
-${PYSITELIB}/allauth/socialaccount/providers/persona/models.pyo
-${PYSITELIB}/allauth/socialaccount/providers/persona/provider.py
-${PYSITELIB}/allauth/socialaccount/providers/persona/provider.pyc
-${PYSITELIB}/allauth/socialaccount/providers/persona/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/persona/templates/persona/auth.html
-${PYSITELIB}/allauth/socialaccount/providers/persona/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/persona/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/persona/tests.pyo
-${PYSITELIB}/allauth/socialaccount/providers/persona/urls.py
-${PYSITELIB}/allauth/socialaccount/providers/persona/urls.pyc
-${PYSITELIB}/allauth/socialaccount/providers/persona/urls.pyo
-${PYSITELIB}/allauth/socialaccount/providers/persona/views.py
-${PYSITELIB}/allauth/socialaccount/providers/persona/views.pyc
-${PYSITELIB}/allauth/socialaccount/providers/persona/views.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/pinterest/__init__.py
 ${PYSITELIB}/allauth/socialaccount/providers/pinterest/__init__.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/pinterest/__init__.pyo
@@ -1585,6 +1656,21 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/pocket/views.py
 ${PYSITELIB}/allauth/socialaccount/providers/pocket/views.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/pocket/views.pyo
+${PYSITELIB}/allauth/socialaccount/providers/questrade/__init__.py
+${PYSITELIB}/allauth/socialaccount/providers/questrade/__init__.pyc
+${PYSITELIB}/allauth/socialaccount/providers/questrade/__init__.pyo
+${PYSITELIB}/allauth/socialaccount/providers/questrade/provider.py
+${PYSITELIB}/allauth/socialaccount/providers/questrade/provider.pyc
+${PYSITELIB}/allauth/socialaccount/providers/questrade/provider.pyo
+${PYSITELIB}/allauth/socialaccount/providers/questrade/tests.py
+${PYSITELIB}/allauth/socialaccount/providers/questrade/tests.pyc
+${PYSITELIB}/allauth/socialaccount/providers/questrade/tests.pyo
+${PYSITELIB}/allauth/socialaccount/providers/questrade/urls.py
+${PYSITELIB}/allauth/socialaccount/providers/questrade/urls.pyc
+${PYSITELIB}/allauth/socialaccount/providers/questrade/urls.pyo
+${PYSITELIB}/allauth/socialaccount/providers/questrade/views.py
+${PYSITELIB}/allauth/socialaccount/providers/questrade/views.pyc
+${PYSITELIB}/allauth/socialaccount/providers/questrade/views.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/quickbooks/__init__.py
 ${PYSITELIB}/allauth/socialaccount/providers/quickbooks/__init__.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/quickbooks/__init__.pyo
@@ -1648,6 +1734,27 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/salesforce/views.py
 ${PYSITELIB}/allauth/socialaccount/providers/salesforce/views.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/salesforce/views.pyo
+${PYSITELIB}/allauth/socialaccount/providers/saml/__init__.py
+${PYSITELIB}/allauth/socialaccount/providers/saml/__init__.pyc
+${PYSITELIB}/allauth/socialaccount/providers/saml/__init__.pyo
+${PYSITELIB}/allauth/socialaccount/providers/saml/conftest.py
+${PYSITELIB}/allauth/socialaccount/providers/saml/conftest.pyc
+${PYSITELIB}/allauth/socialaccount/providers/saml/conftest.pyo
+${PYSITELIB}/allauth/socialaccount/providers/saml/provider.py
+${PYSITELIB}/allauth/socialaccount/providers/saml/provider.pyc
+${PYSITELIB}/allauth/socialaccount/providers/saml/provider.pyo
+${PYSITELIB}/allauth/socialaccount/providers/saml/tests.py
+${PYSITELIB}/allauth/socialaccount/providers/saml/tests.pyc
+${PYSITELIB}/allauth/socialaccount/providers/saml/tests.pyo
+${PYSITELIB}/allauth/socialaccount/providers/saml/urls.py
+${PYSITELIB}/allauth/socialaccount/providers/saml/urls.pyc
+${PYSITELIB}/allauth/socialaccount/providers/saml/urls.pyo
+${PYSITELIB}/allauth/socialaccount/providers/saml/utils.py
+${PYSITELIB}/allauth/socialaccount/providers/saml/utils.pyc
+${PYSITELIB}/allauth/socialaccount/providers/saml/utils.pyo
+${PYSITELIB}/allauth/socialaccount/providers/saml/views.py
+${PYSITELIB}/allauth/socialaccount/providers/saml/views.pyc
+${PYSITELIB}/allauth/socialaccount/providers/saml/views.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/sharefile/__init__.py
 ${PYSITELIB}/allauth/socialaccount/providers/sharefile/__init__.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/sharefile/__init__.pyo
@@ -1825,6 +1932,8 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/telegram/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/telegram/provider.pyc
 ${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/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/telegram/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/telegram/urls.pyo
@@ -2158,6 +2267,9 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/zoom/views.py
 ${PYSITELIB}/allauth/socialaccount/providers/zoom/views.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/zoom/views.pyo
+${PYSITELIB}/allauth/socialaccount/sessions.py
+${PYSITELIB}/allauth/socialaccount/sessions.pyc
+${PYSITELIB}/allauth/socialaccount/sessions.pyo
 ${PYSITELIB}/allauth/socialaccount/signals.py
 ${PYSITELIB}/allauth/socialaccount/signals.pyc
 ${PYSITELIB}/allauth/socialaccount/signals.pyo
@@ -2167,9 +2279,21 @@ ${PYSITELIB}/allauth/socialaccount/templ
 ${PYSITELIB}/allauth/socialaccount/templatetags/socialaccount.py
 ${PYSITELIB}/allauth/socialaccount/templatetags/socialaccount.pyc
 ${PYSITELIB}/allauth/socialaccount/templatetags/socialaccount.pyo
-${PYSITELIB}/allauth/socialaccount/tests.py
-${PYSITELIB}/allauth/socialaccount/tests.pyc
-${PYSITELIB}/allauth/socialaccount/tests.pyo
+${PYSITELIB}/allauth/socialaccount/tests/__init__.py
+${PYSITELIB}/allauth/socialaccount/tests/__init__.pyc
+${PYSITELIB}/allauth/socialaccount/tests/__init__.pyo
+${PYSITELIB}/allauth/socialaccount/tests/test_login.py
+${PYSITELIB}/allauth/socialaccount/tests/test_login.pyc
+${PYSITELIB}/allauth/socialaccount/tests/test_login.pyo
+${PYSITELIB}/allauth/socialaccount/tests/test_registry.py
+${PYSITELIB}/allauth/socialaccount/tests/test_registry.pyc
+${PYSITELIB}/allauth/socialaccount/tests/test_registry.pyo
+${PYSITELIB}/allauth/socialaccount/tests/test_signup.py
+${PYSITELIB}/allauth/socialaccount/tests/test_signup.pyc
+${PYSITELIB}/allauth/socialaccount/tests/test_signup.pyo
+${PYSITELIB}/allauth/socialaccount/tests/test_utils.py
+${PYSITELIB}/allauth/socialaccount/tests/test_utils.pyc
+${PYSITELIB}/allauth/socialaccount/tests/test_utils.pyo
 ${PYSITELIB}/allauth/socialaccount/urls.py
 ${PYSITELIB}/allauth/socialaccount/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/urls.pyo
@@ -2190,10 +2314,12 @@ ${PYSITELIB}/allauth/templates/account/e
 ${PYSITELIB}/allauth/templates/account/email/password_reset_key_subject.txt
 ${PYSITELIB}/allauth/templates/account/email/unknown_account_message.txt
 ${PYSITELIB}/allauth/templates/account/email/unknown_account_subject.txt
+${PYSITELIB}/allauth/templates/account/email_change.html
 ${PYSITELIB}/allauth/templates/account/email_confirm.html
 ${PYSITELIB}/allauth/templates/account/login.html
 ${PYSITELIB}/allauth/templates/account/logout.html
 ${PYSITELIB}/allauth/templates/account/messages/cannot_delete_primary_email.txt
+${PYSITELIB}/allauth/templates/account/messages/email_confirmation_failed.txt
 ${PYSITELIB}/allauth/templates/account/messages/email_confirmation_sent.txt
 ${PYSITELIB}/allauth/templates/account/messages/email_confirmed.txt
 ${PYSITELIB}/allauth/templates/account/messages/email_deleted.txt
@@ -2212,6 +2338,7 @@ ${PYSITELIB}/allauth/templates/account/p
 ${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/openid/base.html
@@ -2238,8 +2365,3 @@ ${PYSITELIB}/allauth/urls.pyo
 ${PYSITELIB}/allauth/utils.py
 ${PYSITELIB}/allauth/utils.pyc
 ${PYSITELIB}/allauth/utils.pyo
-${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
-${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
-${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
-${PYSITELIB}/${EGG_INFODIR}/requires.txt
-${PYSITELIB}/${EGG_INFODIR}/top_level.txt
Index: pkgsrc/www/py-django-allauth/distinfo
diff -u pkgsrc/www/py-django-allauth/distinfo:1.1 pkgsrc/www/py-django-allauth/distinfo:1.2
--- pkgsrc/www/py-django-allauth/distinfo:1.1   Sun Jun  4 02:29:21 2023
+++ pkgsrc/www/py-django-allauth/distinfo       Wed Aug 30 13:52:00 2023
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.1 2023/06/04 02:29:21 markd Exp $
+$NetBSD: distinfo,v 1.2 2023/08/30 13:52:00 adam Exp $
 
-BLAKE2s (django-allauth-0.54.0.tar.gz) = fbe5164f7b8282ff6d3db146e020304a00b3c2b0de11506cf092f7bca5b580ed
-SHA512 (django-allauth-0.54.0.tar.gz) = 210a194ffd3cd18ee7ccd96b8a177fe956c802f83093c6c7eebc62e4deb2826b6c10e14cca155502b0a5a2b9cd78a5660f15a85b8847798d4a967b56932bc46b
-Size (django-allauth-0.54.0.tar.gz) = 737122 bytes
+BLAKE2s (django-allauth-0.55.0.tar.gz) = e1a258a538599ef1c2be98edd5b93955e1cd1da65c3b834a87451c2786e1d34b
+SHA512 (django-allauth-0.55.0.tar.gz) = eab3fbff47d6c2230255425b34fc271ca4e1ea5d8c71190cc798296758b14b5b3c923c81f9bc56d2c3236606a59c7f018e286821000e7a716ecee48a4ab21aea
+Size (django-allauth-0.55.0.tar.gz) = 780478 bytes



Home | Main Index | Thread Index | Old Index