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 May 18 06:10:53 UTC 2024

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

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

0.63.1 (2024-05-17)
*******************

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

- When only ``allauth.account`` was installed, you could run into an exception
  stating "allauth.socialaccount not installed, yet its models are
  imported.". This has been fixed.

- When ``SOCIALACCOUNT_EMAIL_AUTHENTICATION`` was turned on, and a user would
  connect a third-party account for which email authentication would kick in,
  the connect was implicitly skipped. Fixed.

- The recommendation from the documentation to protect the Django admin login
  could cause an infinite redirect loop in case of
  ``AUTHENTICATED_LOGIN_REDIRECTS``. A decorator ``secure_admin_login()`` is now
  offered out of the box to ensure that the Django admin is properly secured by
  allauth (e.g. rate limits, 2FA).

- Subpackages from the ``tests`` package were packaged, fixed.

0.63.0 (2024-05-14)
*******************

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

- New providers: TikTok, Lichess.

- Starting since version 0.62.0, new email addresses are always stored as lower
  case. In this version, we take the final step and also convert existing data
  to lower case, alter the database indices and perform lookups
  accordingly. Migrations are in place.  For rationale, see the note about email
  case sensitivity in the documentation.

- An official API for single-page and mobile application support is now
  available, via the new ``allauth.headless`` app.

- Added support for a honeypot field on the signup form. Real users do not see
  the field and therefore leave it empty. When bots do fill out the field
  account creation is silently skipped.


To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 pkgsrc/www/py-django-allauth/Makefile
cvs rdiff -u -r1.8 -r1.9 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.9 pkgsrc/www/py-django-allauth/Makefile:1.10
--- pkgsrc/www/py-django-allauth/Makefile:1.9   Mon May  6 08:08:40 2024
+++ pkgsrc/www/py-django-allauth/Makefile       Sat May 18 06:10:53 2024
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.9 2024/05/06 08:08:40 adam Exp $
+# $NetBSD: Makefile,v 1.10 2024/05/18 06:10:53 adam Exp $
 
-DISTNAME=      django-allauth-0.62.1
+DISTNAME=      django-allauth-0.63.1
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    www python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=d/django-allauth/}

Index: pkgsrc/www/py-django-allauth/PLIST
diff -u pkgsrc/www/py-django-allauth/PLIST:1.8 pkgsrc/www/py-django-allauth/PLIST:1.9
--- pkgsrc/www/py-django-allauth/PLIST:1.8      Mon May  6 08:08:40 2024
+++ pkgsrc/www/py-django-allauth/PLIST  Sat May 18 06:10:53 2024
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.8 2024/05/06 08:08:40 adam Exp $
+@comment $NetBSD: PLIST,v 1.9 2024/05/18 06:10:53 adam Exp $
 ${PYSITELIB}/${WHEEL_INFODIR}/AUTHORS
 ${PYSITELIB}/${WHEEL_INFODIR}/LICENSE
 ${PYSITELIB}/${WHEEL_INFODIR}/METADATA
@@ -98,6 +98,18 @@ ${PYSITELIB}/allauth/account/migrations/
 ${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/0006_emailaddress_lower.py
+${PYSITELIB}/allauth/account/migrations/0006_emailaddress_lower.pyc
+${PYSITELIB}/allauth/account/migrations/0006_emailaddress_lower.pyo
+${PYSITELIB}/allauth/account/migrations/0007_emailaddress_idx_email.py
+${PYSITELIB}/allauth/account/migrations/0007_emailaddress_idx_email.pyc
+${PYSITELIB}/allauth/account/migrations/0007_emailaddress_idx_email.pyo
+${PYSITELIB}/allauth/account/migrations/0008_emailaddress_unique_primary_email_fixup.py
+${PYSITELIB}/allauth/account/migrations/0008_emailaddress_unique_primary_email_fixup.pyc
+${PYSITELIB}/allauth/account/migrations/0008_emailaddress_unique_primary_email_fixup.pyo
+${PYSITELIB}/allauth/account/migrations/0009_emailaddress_unique_primary_email.py
+${PYSITELIB}/allauth/account/migrations/0009_emailaddress_unique_primary_email.pyc
+${PYSITELIB}/allauth/account/migrations/0009_emailaddress_unique_primary_email.pyo
 ${PYSITELIB}/allauth/account/migrations/__init__.py
 ${PYSITELIB}/allauth/account/migrations/__init__.pyc
 ${PYSITELIB}/allauth/account/migrations/__init__.pyo
@@ -236,6 +248,201 @@ ${PYSITELIB}/allauth/decorators.pyo
 ${PYSITELIB}/allauth/exceptions.py
 ${PYSITELIB}/allauth/exceptions.pyc
 ${PYSITELIB}/allauth/exceptions.pyo
+${PYSITELIB}/allauth/headless/__init__.py
+${PYSITELIB}/allauth/headless/__init__.pyc
+${PYSITELIB}/allauth/headless/__init__.pyo
+${PYSITELIB}/allauth/headless/account/__init__.py
+${PYSITELIB}/allauth/headless/account/__init__.pyc
+${PYSITELIB}/allauth/headless/account/__init__.pyo
+${PYSITELIB}/allauth/headless/account/inputs.py
+${PYSITELIB}/allauth/headless/account/inputs.pyc
+${PYSITELIB}/allauth/headless/account/inputs.pyo
+${PYSITELIB}/allauth/headless/account/response.py
+${PYSITELIB}/allauth/headless/account/response.pyc
+${PYSITELIB}/allauth/headless/account/response.pyo
+${PYSITELIB}/allauth/headless/account/tests/__init__.py
+${PYSITELIB}/allauth/headless/account/tests/__init__.pyc
+${PYSITELIB}/allauth/headless/account/tests/__init__.pyo
+${PYSITELIB}/allauth/headless/account/tests/test_change_email.py
+${PYSITELIB}/allauth/headless/account/tests/test_change_email.pyc
+${PYSITELIB}/allauth/headless/account/tests/test_change_email.pyo
+${PYSITELIB}/allauth/headless/account/tests/test_change_password.py
+${PYSITELIB}/allauth/headless/account/tests/test_change_password.pyc
+${PYSITELIB}/allauth/headless/account/tests/test_change_password.pyo
+${PYSITELIB}/allauth/headless/account/tests/test_email_verification.py
+${PYSITELIB}/allauth/headless/account/tests/test_email_verification.pyc
+${PYSITELIB}/allauth/headless/account/tests/test_email_verification.pyo
+${PYSITELIB}/allauth/headless/account/tests/test_login.py
+${PYSITELIB}/allauth/headless/account/tests/test_login.pyc
+${PYSITELIB}/allauth/headless/account/tests/test_login.pyo
+${PYSITELIB}/allauth/headless/account/tests/test_login_by_code.py
+${PYSITELIB}/allauth/headless/account/tests/test_login_by_code.pyc
+${PYSITELIB}/allauth/headless/account/tests/test_login_by_code.pyo
+${PYSITELIB}/allauth/headless/account/tests/test_reauthentication.py
+${PYSITELIB}/allauth/headless/account/tests/test_reauthentication.pyc
+${PYSITELIB}/allauth/headless/account/tests/test_reauthentication.pyo
+${PYSITELIB}/allauth/headless/account/tests/test_reset_password.py
+${PYSITELIB}/allauth/headless/account/tests/test_reset_password.pyc
+${PYSITELIB}/allauth/headless/account/tests/test_reset_password.pyo
+${PYSITELIB}/allauth/headless/account/tests/test_session.py
+${PYSITELIB}/allauth/headless/account/tests/test_session.pyc
+${PYSITELIB}/allauth/headless/account/tests/test_session.pyo
+${PYSITELIB}/allauth/headless/account/tests/test_signup.py
+${PYSITELIB}/allauth/headless/account/tests/test_signup.pyc
+${PYSITELIB}/allauth/headless/account/tests/test_signup.pyo
+${PYSITELIB}/allauth/headless/account/urls.py
+${PYSITELIB}/allauth/headless/account/urls.pyc
+${PYSITELIB}/allauth/headless/account/urls.pyo
+${PYSITELIB}/allauth/headless/account/views.py
+${PYSITELIB}/allauth/headless/account/views.pyc
+${PYSITELIB}/allauth/headless/account/views.pyo
+${PYSITELIB}/allauth/headless/adapter.py
+${PYSITELIB}/allauth/headless/adapter.pyc
+${PYSITELIB}/allauth/headless/adapter.pyo
+${PYSITELIB}/allauth/headless/app_settings.py
+${PYSITELIB}/allauth/headless/app_settings.pyc
+${PYSITELIB}/allauth/headless/app_settings.pyo
+${PYSITELIB}/allauth/headless/apps.py
+${PYSITELIB}/allauth/headless/apps.pyc
+${PYSITELIB}/allauth/headless/apps.pyo
+${PYSITELIB}/allauth/headless/base/__init__.py
+${PYSITELIB}/allauth/headless/base/__init__.pyc
+${PYSITELIB}/allauth/headless/base/__init__.pyo
+${PYSITELIB}/allauth/headless/base/response.py
+${PYSITELIB}/allauth/headless/base/response.pyc
+${PYSITELIB}/allauth/headless/base/response.pyo
+${PYSITELIB}/allauth/headless/base/tests/__init__.py
+${PYSITELIB}/allauth/headless/base/tests/__init__.pyc
+${PYSITELIB}/allauth/headless/base/tests/__init__.pyo
+${PYSITELIB}/allauth/headless/base/tests/test_views.py
+${PYSITELIB}/allauth/headless/base/tests/test_views.pyc
+${PYSITELIB}/allauth/headless/base/tests/test_views.pyo
+${PYSITELIB}/allauth/headless/base/urls.py
+${PYSITELIB}/allauth/headless/base/urls.pyc
+${PYSITELIB}/allauth/headless/base/urls.pyo
+${PYSITELIB}/allauth/headless/base/views.py
+${PYSITELIB}/allauth/headless/base/views.pyc
+${PYSITELIB}/allauth/headless/base/views.pyo
+${PYSITELIB}/allauth/headless/conftest.py
+${PYSITELIB}/allauth/headless/conftest.pyc
+${PYSITELIB}/allauth/headless/conftest.pyo
+${PYSITELIB}/allauth/headless/constants.py
+${PYSITELIB}/allauth/headless/constants.pyc
+${PYSITELIB}/allauth/headless/constants.pyo
+${PYSITELIB}/allauth/headless/internal/__init__.py
+${PYSITELIB}/allauth/headless/internal/__init__.pyc
+${PYSITELIB}/allauth/headless/internal/__init__.pyo
+${PYSITELIB}/allauth/headless/internal/authkit.py
+${PYSITELIB}/allauth/headless/internal/authkit.pyc
+${PYSITELIB}/allauth/headless/internal/authkit.pyo
+${PYSITELIB}/allauth/headless/internal/decorators.py
+${PYSITELIB}/allauth/headless/internal/decorators.pyc
+${PYSITELIB}/allauth/headless/internal/decorators.pyo
+${PYSITELIB}/allauth/headless/internal/restkit/__init__.py
+${PYSITELIB}/allauth/headless/internal/restkit/__init__.pyc
+${PYSITELIB}/allauth/headless/internal/restkit/__init__.pyo
+${PYSITELIB}/allauth/headless/internal/restkit/inputs.py
+${PYSITELIB}/allauth/headless/internal/restkit/inputs.pyc
+${PYSITELIB}/allauth/headless/internal/restkit/inputs.pyo
+${PYSITELIB}/allauth/headless/internal/restkit/response.py
+${PYSITELIB}/allauth/headless/internal/restkit/response.pyc
+${PYSITELIB}/allauth/headless/internal/restkit/response.pyo
+${PYSITELIB}/allauth/headless/internal/restkit/views.py
+${PYSITELIB}/allauth/headless/internal/restkit/views.pyc
+${PYSITELIB}/allauth/headless/internal/restkit/views.pyo
+${PYSITELIB}/allauth/headless/internal/sessionkit.py
+${PYSITELIB}/allauth/headless/internal/sessionkit.pyc
+${PYSITELIB}/allauth/headless/internal/sessionkit.pyo
+${PYSITELIB}/allauth/headless/mfa/__init__.py
+${PYSITELIB}/allauth/headless/mfa/__init__.pyc
+${PYSITELIB}/allauth/headless/mfa/__init__.pyo
+${PYSITELIB}/allauth/headless/mfa/inputs.py
+${PYSITELIB}/allauth/headless/mfa/inputs.pyc
+${PYSITELIB}/allauth/headless/mfa/inputs.pyo
+${PYSITELIB}/allauth/headless/mfa/response.py
+${PYSITELIB}/allauth/headless/mfa/response.pyc
+${PYSITELIB}/allauth/headless/mfa/response.pyo
+${PYSITELIB}/allauth/headless/mfa/tests/__init__.py
+${PYSITELIB}/allauth/headless/mfa/tests/__init__.pyc
+${PYSITELIB}/allauth/headless/mfa/tests/__init__.pyo
+${PYSITELIB}/allauth/headless/mfa/tests/test_views.py
+${PYSITELIB}/allauth/headless/mfa/tests/test_views.pyc
+${PYSITELIB}/allauth/headless/mfa/tests/test_views.pyo
+${PYSITELIB}/allauth/headless/mfa/urls.py
+${PYSITELIB}/allauth/headless/mfa/urls.pyc
+${PYSITELIB}/allauth/headless/mfa/urls.pyo
+${PYSITELIB}/allauth/headless/mfa/views.py
+${PYSITELIB}/allauth/headless/mfa/views.pyc
+${PYSITELIB}/allauth/headless/mfa/views.pyo
+${PYSITELIB}/allauth/headless/socialaccount/__init__.py
+${PYSITELIB}/allauth/headless/socialaccount/__init__.pyc
+${PYSITELIB}/allauth/headless/socialaccount/__init__.pyo
+${PYSITELIB}/allauth/headless/socialaccount/forms.py
+${PYSITELIB}/allauth/headless/socialaccount/forms.pyc
+${PYSITELIB}/allauth/headless/socialaccount/forms.pyo
+${PYSITELIB}/allauth/headless/socialaccount/inputs.py
+${PYSITELIB}/allauth/headless/socialaccount/inputs.pyc
+${PYSITELIB}/allauth/headless/socialaccount/inputs.pyo
+${PYSITELIB}/allauth/headless/socialaccount/internal.py
+${PYSITELIB}/allauth/headless/socialaccount/internal.pyc
+${PYSITELIB}/allauth/headless/socialaccount/internal.pyo
+${PYSITELIB}/allauth/headless/socialaccount/response.py
+${PYSITELIB}/allauth/headless/socialaccount/response.pyc
+${PYSITELIB}/allauth/headless/socialaccount/response.pyo
+${PYSITELIB}/allauth/headless/socialaccount/tests/__init__.py
+${PYSITELIB}/allauth/headless/socialaccount/tests/__init__.pyc
+${PYSITELIB}/allauth/headless/socialaccount/tests/__init__.pyo
+${PYSITELIB}/allauth/headless/socialaccount/tests/test_inputs.py
+${PYSITELIB}/allauth/headless/socialaccount/tests/test_inputs.pyc
+${PYSITELIB}/allauth/headless/socialaccount/tests/test_inputs.pyo
+${PYSITELIB}/allauth/headless/socialaccount/tests/test_views.py
+${PYSITELIB}/allauth/headless/socialaccount/tests/test_views.pyc
+${PYSITELIB}/allauth/headless/socialaccount/tests/test_views.pyo
+${PYSITELIB}/allauth/headless/socialaccount/urls.py
+${PYSITELIB}/allauth/headless/socialaccount/urls.pyc
+${PYSITELIB}/allauth/headless/socialaccount/urls.pyo
+${PYSITELIB}/allauth/headless/socialaccount/views.py
+${PYSITELIB}/allauth/headless/socialaccount/views.pyc
+${PYSITELIB}/allauth/headless/socialaccount/views.pyo
+${PYSITELIB}/allauth/headless/tests/__init__.py
+${PYSITELIB}/allauth/headless/tests/__init__.pyc
+${PYSITELIB}/allauth/headless/tests/__init__.pyo
+${PYSITELIB}/allauth/headless/tests/test_tokens.py
+${PYSITELIB}/allauth/headless/tests/test_tokens.pyc
+${PYSITELIB}/allauth/headless/tests/test_tokens.pyo
+${PYSITELIB}/allauth/headless/tokens/__init__.py
+${PYSITELIB}/allauth/headless/tokens/__init__.pyc
+${PYSITELIB}/allauth/headless/tokens/__init__.pyo
+${PYSITELIB}/allauth/headless/tokens/base.py
+${PYSITELIB}/allauth/headless/tokens/base.pyc
+${PYSITELIB}/allauth/headless/tokens/base.pyo
+${PYSITELIB}/allauth/headless/tokens/sessions.py
+${PYSITELIB}/allauth/headless/tokens/sessions.pyc
+${PYSITELIB}/allauth/headless/tokens/sessions.pyo
+${PYSITELIB}/allauth/headless/urls.py
+${PYSITELIB}/allauth/headless/urls.pyc
+${PYSITELIB}/allauth/headless/urls.pyo
+${PYSITELIB}/allauth/headless/usersessions/__init__.py
+${PYSITELIB}/allauth/headless/usersessions/__init__.pyc
+${PYSITELIB}/allauth/headless/usersessions/__init__.pyo
+${PYSITELIB}/allauth/headless/usersessions/inputs.py
+${PYSITELIB}/allauth/headless/usersessions/inputs.pyc
+${PYSITELIB}/allauth/headless/usersessions/inputs.pyo
+${PYSITELIB}/allauth/headless/usersessions/response.py
+${PYSITELIB}/allauth/headless/usersessions/response.pyc
+${PYSITELIB}/allauth/headless/usersessions/response.pyo
+${PYSITELIB}/allauth/headless/usersessions/tests/__init__.py
+${PYSITELIB}/allauth/headless/usersessions/tests/__init__.pyc
+${PYSITELIB}/allauth/headless/usersessions/tests/__init__.pyo
+${PYSITELIB}/allauth/headless/usersessions/tests/test_views.py
+${PYSITELIB}/allauth/headless/usersessions/tests/test_views.pyc
+${PYSITELIB}/allauth/headless/usersessions/tests/test_views.pyo
+${PYSITELIB}/allauth/headless/usersessions/urls.py
+${PYSITELIB}/allauth/headless/usersessions/urls.pyc
+${PYSITELIB}/allauth/headless/usersessions/urls.pyo
+${PYSITELIB}/allauth/headless/usersessions/views.py
+${PYSITELIB}/allauth/headless/usersessions/views.pyc
+${PYSITELIB}/allauth/headless/usersessions/views.pyo
 ${PYSITELIB}/allauth/locale/ar/LC_MESSAGES/django.mo
 ${PYSITELIB}/allauth/locale/ar/LC_MESSAGES/django.po
 ${PYSITELIB}/allauth/locale/az/LC_MESSAGES/django.mo
@@ -381,9 +588,6 @@ ${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
@@ -1438,6 +1642,21 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/lemonldap/views.py
 ${PYSITELIB}/allauth/socialaccount/providers/lemonldap/views.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/lemonldap/views.pyo
+${PYSITELIB}/allauth/socialaccount/providers/lichess/__init__.py
+${PYSITELIB}/allauth/socialaccount/providers/lichess/__init__.pyc
+${PYSITELIB}/allauth/socialaccount/providers/lichess/__init__.pyo
+${PYSITELIB}/allauth/socialaccount/providers/lichess/provider.py
+${PYSITELIB}/allauth/socialaccount/providers/lichess/provider.pyc
+${PYSITELIB}/allauth/socialaccount/providers/lichess/provider.pyo
+${PYSITELIB}/allauth/socialaccount/providers/lichess/tests.py
+${PYSITELIB}/allauth/socialaccount/providers/lichess/tests.pyc
+${PYSITELIB}/allauth/socialaccount/providers/lichess/tests.pyo
+${PYSITELIB}/allauth/socialaccount/providers/lichess/urls.py
+${PYSITELIB}/allauth/socialaccount/providers/lichess/urls.pyc
+${PYSITELIB}/allauth/socialaccount/providers/lichess/urls.pyo
+${PYSITELIB}/allauth/socialaccount/providers/lichess/views.py
+${PYSITELIB}/allauth/socialaccount/providers/lichess/views.pyc
+${PYSITELIB}/allauth/socialaccount/providers/lichess/views.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/line/__init__.py
 ${PYSITELIB}/allauth/socialaccount/providers/line/__init__.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/line/__init__.pyo
@@ -2139,6 +2358,27 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/telegram/views.py
 ${PYSITELIB}/allauth/socialaccount/providers/telegram/views.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/telegram/views.pyo
+${PYSITELIB}/allauth/socialaccount/providers/tiktok/__init__.py
+${PYSITELIB}/allauth/socialaccount/providers/tiktok/__init__.pyc
+${PYSITELIB}/allauth/socialaccount/providers/tiktok/__init__.pyo
+${PYSITELIB}/allauth/socialaccount/providers/tiktok/client.py
+${PYSITELIB}/allauth/socialaccount/providers/tiktok/client.pyc
+${PYSITELIB}/allauth/socialaccount/providers/tiktok/client.pyo
+${PYSITELIB}/allauth/socialaccount/providers/tiktok/provider.py
+${PYSITELIB}/allauth/socialaccount/providers/tiktok/provider.pyc
+${PYSITELIB}/allauth/socialaccount/providers/tiktok/provider.pyo
+${PYSITELIB}/allauth/socialaccount/providers/tiktok/scope.py
+${PYSITELIB}/allauth/socialaccount/providers/tiktok/scope.pyc
+${PYSITELIB}/allauth/socialaccount/providers/tiktok/scope.pyo
+${PYSITELIB}/allauth/socialaccount/providers/tiktok/tests.py
+${PYSITELIB}/allauth/socialaccount/providers/tiktok/tests.pyc
+${PYSITELIB}/allauth/socialaccount/providers/tiktok/tests.pyo
+${PYSITELIB}/allauth/socialaccount/providers/tiktok/urls.py
+${PYSITELIB}/allauth/socialaccount/providers/tiktok/urls.pyc
+${PYSITELIB}/allauth/socialaccount/providers/tiktok/urls.pyo
+${PYSITELIB}/allauth/socialaccount/providers/tiktok/views.py
+${PYSITELIB}/allauth/socialaccount/providers/tiktok/views.pyc
+${PYSITELIB}/allauth/socialaccount/providers/tiktok/views.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/trainingpeaks/__init__.py
 ${PYSITELIB}/allauth/socialaccount/providers/trainingpeaks/__init__.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/trainingpeaks/__init__.pyo
@@ -2582,6 +2822,7 @@ ${PYSITELIB}/allauth/templates/allauth/e
 ${PYSITELIB}/allauth/templates/allauth/elements/h2.html
 ${PYSITELIB}/allauth/templates/allauth/elements/hr.html
 ${PYSITELIB}/allauth/templates/allauth/elements/img.html
+${PYSITELIB}/allauth/templates/allauth/elements/p.html
 ${PYSITELIB}/allauth/templates/allauth/elements/panel.html
 ${PYSITELIB}/allauth/templates/allauth/elements/provider.html
 ${PYSITELIB}/allauth/templates/allauth/elements/provider_list.html
Index: pkgsrc/www/py-django-allauth/distinfo
diff -u pkgsrc/www/py-django-allauth/distinfo:1.8 pkgsrc/www/py-django-allauth/distinfo:1.9
--- pkgsrc/www/py-django-allauth/distinfo:1.8   Mon May  6 08:08:40 2024
+++ pkgsrc/www/py-django-allauth/distinfo       Sat May 18 06:10:53 2024
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.8 2024/05/06 08:08:40 adam Exp $
+$NetBSD: distinfo,v 1.9 2024/05/18 06:10:53 adam Exp $
 
-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
+BLAKE2s (django-allauth-0.63.1.tar.gz) = ae119b393c72027cdff4a5be7549944b9c394acc8a0cd5f78558e75b7c836c41
+SHA512 (django-allauth-0.63.1.tar.gz) = 9a3314c67b87ed9c372d9409ca30ccbc7058339ca6ea5f6b8021a162ab9d61a583306429f9d28c9bccf8cdf41fd55418d40b3ffc717a864ec627b3887523af6d
+Size (django-allauth-0.63.1.tar.gz) = 1076577 bytes



Home | Main Index | Thread Index | Old Index