17
0

30 Commits

Author SHA256 Message Date
80bf127a8e Accepting request 1183015 from devel:languages:python:django
OBS-URL: https://build.opensuse.org/request/show/1183015
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-django-allauth?expand=0&rev=14
2024-06-24 18:56:50 +00:00
32a24afed5 Accepting request 1182734 from home:gladiac:mailman
- Update to version 0.63.3
  * See https://github.com/pennersr/django-allauth/blob/0.63.3/ChangeLog.rst
    or the packaged ChangeLog.rst file.
- Updated missing-template-in-test.patch

OBS-URL: https://build.opensuse.org/request/show/1182734
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:django/python-django-allauth?expand=0&rev=28
2024-06-24 12:17:19 +00:00
6faafd7c11 Accepting request 1140111 from devel:languages:python:django
- update to 0.60.1:
  * User sessions: after changing your password in case of
    ACCOUNT_LOGOUT_ON_PASSWORD_CHANGE = False, the list of
    sessions woud be empty instead of showing your current
    session.
  * SAML: accessing the SLS/ACS views using a GET request would
    result in a crash (500).
  * SAML: the login view did not obey the
    SOCIALACCOUNT_LOGIN_ON_GET = False setting.

OBS-URL: https://build.opensuse.org/request/show/1140111
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-django-allauth?expand=0&rev=13
2024-01-21 22:09:07 +00:00
61a067b0f0 - update to 0.60.1:
* User sessions: after changing your password in case of
    ACCOUNT_LOGOUT_ON_PASSWORD_CHANGE = False, the list of
    sessions woud be empty instead of showing your current
    session.
  * SAML: accessing the SLS/ACS views using a GET request would
    result in a crash (500).
  * SAML: the login view did not obey the
    SOCIALACCOUNT_LOGIN_ON_GET = False setting.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:django/python-django-allauth?expand=0&rev=26
2024-01-20 13:06:52 +00:00
73385b6a0c Accepting request 1137633 from devel:languages:python:django
- update to 0.60.0:
  * Google One Tap Sign-In is now supported.
  * You can now more easily change the URL to redirect to after a
    successful password change/set via the newly introduced
    get_password_change_redirect_url() adapter method.
  * You can now configure the primary key of all models by
    configuring ALLAUTH_DEFAULT_AUTO_FIELD, for example to:
    "hashid_field.HashidAutoField".
  * You can now specify the URL path prefix that is used for all
    OpenID Connect providers using
    SOCIALACCOUNT_OPENID_CONNECT_URL_PREFIX. By default, it is
    set to "oidc", meaning, an OpenID Connect provider with
    provider ID foo uses /accounts/oidc/foo/login/ as its login
    URL. Set it to empty ("") to keep the previous URL structure
    (/accounts/foo/login/).
  * The SAML default attribute mapping for uid has been changed
    to only include urn:oasis:names:tc:SAML:attribute:subject-id.
    If the SAML response does not contain that, it will fallback
    to use NameID.

OBS-URL: https://build.opensuse.org/request/show/1137633
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-django-allauth?expand=0&rev=12
2024-01-09 19:49:55 +00:00
d3b82ec2fc - update to 0.60.0:
* Google One Tap Sign-In is now supported.
  * You can now more easily change the URL to redirect to after a
    successful password change/set via the newly introduced
    get_password_change_redirect_url() adapter method.
  * You can now configure the primary key of all models by
    configuring ALLAUTH_DEFAULT_AUTO_FIELD, for example to:
    "hashid_field.HashidAutoField".
  * You can now specify the URL path prefix that is used for all
    OpenID Connect providers using
    SOCIALACCOUNT_OPENID_CONNECT_URL_PREFIX. By default, it is
    set to "oidc", meaning, an OpenID Connect provider with
    provider ID foo uses /accounts/oidc/foo/login/ as its login
    URL. Set it to empty ("") to keep the previous URL structure
    (/accounts/foo/login/).
  * The SAML default attribute mapping for uid has been changed
    to only include urn:oasis:names:tc:SAML:attribute:subject-id.
    If the SAML response does not contain that, it will fallback
    to use NameID.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:django/python-django-allauth?expand=0&rev=24
2024-01-08 20:43:43 +00:00
64183211fd Accepting request 1133055 from devel:languages:python:django
- update to 0.59.0:
  * The MFA authenticator model now features "created at" an
    "last used "at" timestamps.
  * The MFA authenticator model is now registered with the Django
    admin.
  * Added MFA signals emitted when authenticators are added,
    removed or (in case of recovery codes) reset.
  * There is now an MFA adapter method
    ``can_delete_authenticator(authenticator)``
    available that can be used to prevent users from deactivating
    e.g. their TOTP authenticator.
  * Added a new app, user sessions, allowing users to view a list
    of all their active sessions, as well as offering a means to
    end these sessions.
  * A configurable timeout (``SOCIALACCOUNT_REQUESTS_TIMEOUT``)
    is now applied to all upstream requests.
  * Added a setting ``ACCOUNT_EMAIL_UNKNOWN_ACCOUNTS`` to disable
    sending of emails to unknown accounts.
  * You can now override the MFA forms via the ``MFA_FORMS``
    setting.

OBS-URL: https://build.opensuse.org/request/show/1133055
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-django-allauth?expand=0&rev=11
2023-12-14 21:03:48 +00:00
47ecc3519f - update to 0.59.0:
* The MFA authenticator model now features "created at" an
    "last used "at" timestamps.
  * The MFA authenticator model is now registered with the Django
    admin.
  * Added MFA signals emitted when authenticators are added,
    removed or (in case of recovery codes) reset.
  * There is now an MFA adapter method
    ``can_delete_authenticator(authenticator)``
    available that can be used to prevent users from deactivating
    e.g. their TOTP authenticator.
  * Added a new app, user sessions, allowing users to view a list
    of all their active sessions, as well as offering a means to
    end these sessions.
  * A configurable timeout (``SOCIALACCOUNT_REQUESTS_TIMEOUT``)
    is now applied to all upstream requests.
  * Added a setting ``ACCOUNT_EMAIL_UNKNOWN_ACCOUNTS`` to disable
    sending of emails to unknown accounts.
  * You can now override the MFA forms via the ``MFA_FORMS``
    setting.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:django/python-django-allauth?expand=0&rev=22
2023-12-14 10:23:14 +00:00
697380cd6e Accepting request 1124871 from devel:languages:python:django
- update to 0.58.2:
  * Added rate limiting to the MFA login form.

  * Fixed Twitch get_avatar_url()

OBS-URL: https://build.opensuse.org/request/show/1124871
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-django-allauth?expand=0&rev=10
2023-11-13 21:17:59 +00:00
99ff5f74a2 - update to 0.58.2:
* Added rate limiting to the MFA login form.
  * Fixed Twitch get_avatar_url()

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:django/python-django-allauth?expand=0&rev=20
2023-11-10 12:03:43 +00:00
8522427174 Accepting request 1123462 from devel:languages:python:django
OBS-URL: https://build.opensuse.org/request/show/1123462
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-django-allauth?expand=0&rev=9
2023-11-06 20:13:46 +00:00
John Vandenberg
102e2f0fd8 Accepting request 1123456 from home:darix:branches:devel:languages:python:mailman
- make it easier to notice to keep buildrequires and runtime
  requires version limits in sync. This will also help us to notice
  early when the version of other libraries do not match the
  requires encoded in the source code.

OBS-URL: https://build.opensuse.org/request/show/1123456
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:django/python-django-allauth?expand=0&rev=18
2023-11-06 01:51:07 +00:00
85375aee7f Accepting request 1122196 from home:gladiac:mailman
- Update to v0.58.1
  * See https://github.com/pennersr/django-allauth/blob/0.58.1/ChangeLog.rst
    or the ChangeLog.rst included in this package

OBS-URL: https://build.opensuse.org/request/show/1122196
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:django/python-django-allauth?expand=0&rev=17
2023-11-02 09:08:56 +00:00
1ebc98d91c Accepting request 1101335 from devel:languages:python:django
OBS-URL: https://build.opensuse.org/request/show/1101335
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-django-allauth?expand=0&rev=8
2023-07-30 18:57:54 +00:00
aa8012eab7 Accepting request 1101326 from home:crameleon:branches:openSUSE:Factory
- Update to v0.54.0
- Patch out test which cannot run without template files (missing-template-in-test.patch)

OBS-URL: https://build.opensuse.org/request/show/1101326
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:django/python-django-allauth?expand=0&rev=15
2023-07-29 20:27:16 +00:00
b247345852 Accepting request 1095440 from devel:languages:python:django
OBS-URL: https://build.opensuse.org/request/show/1095440
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-django-allauth?expand=0&rev=7
2023-06-26 16:17:03 +00:00
a44eeec3ee Accepting request 1095417 from devel:languages:python:mailman:backports
- Use sle15_python_module_pythons

OBS-URL: https://build.opensuse.org/request/show/1095417
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:django/python-django-allauth?expand=0&rev=13
2023-06-26 14:30:23 +00:00
70b407669e Accepting request 942392 from devel:languages:python:django
OBS-URL: https://build.opensuse.org/request/show/942392
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-django-allauth?expand=0&rev=6
2021-12-25 19:16:42 +00:00
John Vandenberg
fd0603efde Accepting request 942391 from home:jayvdb:branches:devel:languages:python:django
- Update to v0.47.0
  * Better compatibility with Django 4.0
  * ...

OBS-URL: https://build.opensuse.org/request/show/942391
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:django/python-django-allauth?expand=0&rev=12
2021-12-25 00:07:23 +00:00
ac99871e41 Accepting request 814882 from devel:languages:python:django
Automatic submission by obs-autosubmit

OBS-URL: https://build.opensuse.org/request/show/814882
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-django-allauth?expand=0&rev=5
2020-06-16 11:46:56 +00:00
f8ad748e8e - Update to 0.42.0
* New providers: EDX, Yandex, Mixer.
 * Fixed Twitch get_avatar_url() 
 * The Facebook API version now defaults to v7.0.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:django/python-django-allauth?expand=0&rev=10
2020-06-09 10:04:32 +00:00
0877d2f133 Accepting request 761502 from devel:languages:python:django
- Update to 0.41.0:
  * Fixes CVE-2019-19844: Potential account hijack via password reset form
  bsc#1159447
  * Dropped Python 2 and Django 1 compatibility.
- Do not bother with the lang subpkg as it is needed to have languages
  to be present always anyway

OBS-URL: https://build.opensuse.org/request/show/761502
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-django-allauth?expand=0&rev=4
2020-01-07 22:54:41 +00:00
Tomáš Chvátal
a72c39835c - Update to 0.41.0:
* Fixes CVE-2019-19844: Potential account hijack via password reset form
  bsc#1159447
  * Dropped Python 2 and Django 1 compatibility.
- Do not bother with the lang subpkg as it is needed to have languages
  to be present always anyway

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:django/python-django-allauth?expand=0&rev=8
2020-01-07 10:06:52 +00:00
2b24816ac2 Accepting request 731237 from devel:languages:python:django
- Update to 0.40.0:
  * The instagram provider now extracts the user's full name.
  * New provider: NextCloud (OAuth2)
  * Added an SDK_URL setting for customizing the loading of the Facebook JavaScript SDK.
  * Updated Twitch provider to use new authentication endpoints (https://id.twitch.tv) over deprecated v5 endpoints (https://api.twitch.tv/kraken)
  * Added support for Patreon API v2, with API v1 set as default for backwards compatibility.

- Use %ifpython2/3 to allow building only one flavour

OBS-URL: https://build.opensuse.org/request/show/731237
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-django-allauth?expand=0&rev=3
2019-09-18 11:11:27 +00:00
Tomáš Chvátal
0ca461f99c - Update to 0.40.0:
* The instagram provider now extracts the user's full name.
  * New provider: NextCloud (OAuth2)
  * Added an SDK_URL setting for customizing the loading of the Facebook JavaScript SDK.
  * Updated Twitch provider to use new authentication endpoints (https://id.twitch.tv) over deprecated v5 endpoints (https://api.twitch.tv/kraken)
  * Added support for Patreon API v2, with API v1 set as default for backwards compatibility.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:django/python-django-allauth?expand=0&rev=6
2019-09-16 10:09:12 +00:00
Tomáš Chvátal
ebaae0aaf1 Accepting request 730825 from home:jayvdb:py3only
- Use %ifpython2/3 to allow building only one flavour

OBS-URL: https://build.opensuse.org/request/show/730825
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:django/python-django-allauth?expand=0&rev=5
2019-09-16 07:40:27 +00:00
0ebf987060 Accepting request 683727 from devel:languages:python:django
- Update to 0.39.1:
  * The linkedin_oauth2 provider now gracefully deals with old V1 data that might still be present in SocialAccount.extra_data.
  * New providers: JupyterHub (OAuth2), Steam (OpenID)
  * Refactor translations: Portuguese (Portugal).
  * Add testing for Django 2.2 (no code changes required)
  * linkedin_oauth2: As the LinkedIn V1 API is deprecated, the user info endpoint has been moved over to use the API V2. The format of the user extra_data is different and the profile picture is absent by default.

OBS-URL: https://build.opensuse.org/request/show/683727
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-django-allauth?expand=0&rev=2
2019-03-11 10:17:57 +00:00
Tomáš Chvátal
4bacaf4dcc - Update to 0.39.1:
* The linkedin_oauth2 provider now gracefully deals with old V1 data that might still be present in SocialAccount.extra_data.
  * New providers: JupyterHub (OAuth2), Steam (OpenID)
  * Refactor translations: Portuguese (Portugal).
  * Add testing for Django 2.2 (no code changes required)
  * linkedin_oauth2: As the LinkedIn V1 API is deprecated, the user info endpoint has been moved over to use the API V2. The format of the user extra_data is different and the profile picture is absent by default.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:django/python-django-allauth?expand=0&rev=3
2019-03-11 08:45:41 +00:00
319ac22845 Accepting request 679779 from devel:languages:python:django
- Skip five failing tests
- Initial spec for v0.38.0

OBS-URL: https://build.opensuse.org/request/show/679779
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-django-allauth?expand=0&rev=1
2019-02-27 16:29:33 +00:00
Tomáš Chvátal
8b84678116 Accepting request 677424 from home:jayvdb:django
- Skip five failing tests
- Initial spec for v0.38.0

OBS-URL: https://build.opensuse.org/request/show/677424
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:django/python-django-allauth?expand=0&rev=1
2019-02-27 10:29:55 +00:00