forked from pool/python-social-auth-core
- Update to 3.1.0:
* Universe Ticketing backend * Auth0.com authentication backend * Update Bungie backend dropping any Django reference * Enable and fix JWT related tests * Remove PyPy support from Tox * Drop support for Python 3.4 in Tox * Allow to override JWT decode options in Open ID Connect base backend * Pass access token via Authorization header to Google user data url * Updated user_data method in AzureADOAuth2 to return access_token if id_token is not present in response * Updated Azure B2C to extract first email from list if it's a list * Replace deprecated Google+ API usage with https://www.googleapis.com/oauth2/v3/userinfo * Updated Azure Tenant to fix Nonetype error * Updated comment denoting incorrect setting name * Yandex: do not fail when no email is present * Mediawiki: do not fail when no email is present * Mediawiki: enhance get_user_details to return more details OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-social-auth-core?expand=0&rev=8
This commit is contained in:
committed by
Git OBS Bridge
parent
fb3791d206
commit
86b3714821
@@ -1,3 +1,24 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Apr 2 10:09:14 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>
|
||||||
|
|
||||||
|
- Update to 3.1.0:
|
||||||
|
* Universe Ticketing backend
|
||||||
|
* Auth0.com authentication backend
|
||||||
|
* Update Bungie backend dropping any Django reference
|
||||||
|
* Enable and fix JWT related tests
|
||||||
|
* Remove PyPy support from Tox
|
||||||
|
* Drop support for Python 3.4 in Tox
|
||||||
|
* Allow to override JWT decode options in Open ID Connect base backend
|
||||||
|
* Pass access token via Authorization header to Google user data url
|
||||||
|
* Updated user_data method in AzureADOAuth2 to return access_token if id_token is not present in response
|
||||||
|
* Updated Azure B2C to extract first email from list if it's a list
|
||||||
|
* Replace deprecated Google+ API usage with https://www.googleapis.com/oauth2/v3/userinfo
|
||||||
|
* Updated Azure Tenant to fix Nonetype error
|
||||||
|
* Updated comment denoting incorrect setting name
|
||||||
|
* Yandex: do not fail when no email is present
|
||||||
|
* Mediawiki: do not fail when no email is present
|
||||||
|
* Mediawiki: enhance get_user_details to return more details
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Nov 30 09:58:21 UTC 2018 - Matthias Fehring <buschmann23@opensuse.org>
|
Fri Nov 30 09:58:21 UTC 2018 - Matthias Fehring <buschmann23@opensuse.org>
|
||||||
|
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package python-social-auth-core
|
# spec file for package python-social-auth-core
|
||||||
#
|
#
|
||||||
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
# Copyright (c) 2017-2018 Matthias Fehring <buschmann23@opensuse.org>
|
# Copyright (c) 2017-2018 Matthias Fehring <buschmann23@opensuse.org>
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
@@ -19,20 +19,21 @@
|
|||||||
|
|
||||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||||
Name: python-social-auth-core
|
Name: python-social-auth-core
|
||||||
Version: 2.0.0
|
Version: 3.1.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Python Social Auth Core
|
Summary: Python Social Auth Core
|
||||||
License: BSD-3-Clause
|
License: BSD-3-Clause
|
||||||
Group: Development/Languages/Python
|
Group: Development/Languages/Python
|
||||||
URL: https://github.com/python-social-auth/social-core
|
URL: https://github.com/python-social-auth/social-core
|
||||||
Source: https://files.pythonhosted.org/packages/source/s/social-auth-core/social-auth-core-%{version}.tar.gz
|
Source: https://files.pythonhosted.org/packages/source/s/social-auth-core/social-auth-core-%{version}.tar.gz
|
||||||
BuildRequires: %{python_module PyJWT >= 1.4.0}
|
BuildRequires: %{python_module PyJWT >= 1.7.1}
|
||||||
BuildRequires: %{python_module coverage >= 3.6}
|
BuildRequires: %{python_module coverage >= 3.6}
|
||||||
BuildRequires: %{python_module cryptography >= 2.1.1}
|
BuildRequires: %{python_module cryptography >= 2.1.1}
|
||||||
BuildRequires: %{python_module httpretty}
|
BuildRequires: %{python_module httpretty}
|
||||||
BuildRequires: %{python_module mock}
|
BuildRequires: %{python_module mock}
|
||||||
BuildRequires: %{python_module nose >= 1.2.1}
|
BuildRequires: %{python_module nose >= 1.2.1}
|
||||||
BuildRequires: %{python_module oauthlib >= 1.0.3}
|
BuildRequires: %{python_module oauthlib >= 1.0.3}
|
||||||
|
BuildRequires: %{python_module python-jose >= 3.0.0}
|
||||||
BuildRequires: %{python_module rednose >= 0.4.1}
|
BuildRequires: %{python_module rednose >= 0.4.1}
|
||||||
BuildRequires: %{python_module requests >= 2.9.1}
|
BuildRequires: %{python_module requests >= 2.9.1}
|
||||||
BuildRequires: %{python_module requests-oauthlib >= 0.6.1}
|
BuildRequires: %{python_module requests-oauthlib >= 0.6.1}
|
||||||
@@ -46,9 +47,10 @@ BuildRequires: python2-python-openid >= 2.2.5
|
|||||||
BuildRequires: python3 >= 3.4.0
|
BuildRequires: python3 >= 3.4.0
|
||||||
BuildRequires: python3-defusedxml >= 0.5.0
|
BuildRequires: python3-defusedxml >= 0.5.0
|
||||||
BuildRequires: python3-python3-openid >= 3.0.10
|
BuildRequires: python3-python3-openid >= 3.0.10
|
||||||
Requires: python-PyJWT >= 1.4.0
|
Requires: python-PyJWT >= 1.7.1
|
||||||
Requires: python-cryptography >= 2.1.1
|
Requires: python-cryptography >= 2.1.1
|
||||||
Requires: python-oauthlib >= 1.0.3
|
Requires: python-oauthlib >= 1.0.3
|
||||||
|
Requires: python-python-jose >= 3.0.0
|
||||||
Requires: python-requests >= 2.9.1
|
Requires: python-requests >= 2.9.1
|
||||||
Requires: python-requests-oauthlib >= 0.6.1
|
Requires: python-requests-oauthlib >= 0.6.1
|
||||||
Requires: python-six >= 1.10.0
|
Requires: python-six >= 1.10.0
|
||||||
|
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:b8a34e7eb71c66e4d68deb007c81d4f74d4e0bc52c1c4f871a7758db0a0c268e
|
|
||||||
size 172884
|
|
3
social-auth-core-3.1.0.tar.gz
Normal file
3
social-auth-core-3.1.0.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:cc871fb4528f7cbba67efdba0bc0f7d7c6eeb92113b0cdc9368dd91ffe965782
|
||||||
|
size 175283
|
Reference in New Issue
Block a user