forked from pool/python-oic
Accepting request 788571 from home:pgajdos:python
- version update to 1.2.0 ## 1.2.0 [2020-02-05] ### Fixed - [#727] OAuth client request using Client Credentials grant ### Added - [#719] Add support for JWT registration tokens - [#728] OAuth client request using Extension grant - [#731] Session cookie need to be visible to OP IFrame. ## 1.1.2 [2019-11-23] ### Fixed - [#711] Deal with no post_logout_redirect_uri - [#712] Set Content-Type on BackChannel logout POST. - [#717] Missing OP logout metadata. ## 1.1.1 [2019-11-04] ### Fixed - [#708] Wants the original non-parsed JWT and not an IDToken instance. ## 1.1.0 [2019-10-25] ### Changed - [#688] Second stage of adding logout support. - [#700] Third stage of adding logout support, provider side ### Fixed - [#602] Fixed uncaught error on unpacking of message - [#679] Make `state` optional in `EndSessionRequest` - [#683] Fix basic_auth with client password - [#698] `state` in `EndSessionRequest` request args and kwargs different ### Removed - [#671] Removed deprecated request/response_cls kwargs from Provider/Client methods - [#677] Removed more deprecated code OBS-URL: https://build.opensuse.org/request/show/788571 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-oic?expand=0&rev=7
This commit is contained in:
committed by
Git OBS Bridge
parent
2c84bd0273
commit
342caedd2e
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:fe00346f8849cd1bb5be2a70502449f7cf1e117488f8641c4c2d0e8bac898eac
|
|
||||||
size 1349634
|
|
||||||
3
oic-1.2.0.tar.gz
Normal file
3
oic-1.2.0.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:305db25498043b220496a6b071f95353f5fdb63c393b5c909ded21204e61548b
|
||||||
|
size 1362347
|
||||||
@@ -1,3 +1,35 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Mar 26 13:34:44 UTC 2020 - pgajdos@suse.com
|
||||||
|
|
||||||
|
- version update to 1.2.0
|
||||||
|
## 1.2.0 [2020-02-05]
|
||||||
|
### Fixed
|
||||||
|
- [#727] OAuth client request using Client Credentials grant
|
||||||
|
### Added
|
||||||
|
- [#719] Add support for JWT registration tokens
|
||||||
|
- [#728] OAuth client request using Extension grant
|
||||||
|
- [#731] Session cookie need to be visible to OP IFrame.
|
||||||
|
## 1.1.2 [2019-11-23]
|
||||||
|
### Fixed
|
||||||
|
- [#711] Deal with no post_logout_redirect_uri
|
||||||
|
- [#712] Set Content-Type on BackChannel logout POST.
|
||||||
|
- [#717] Missing OP logout metadata.
|
||||||
|
## 1.1.1 [2019-11-04]
|
||||||
|
### Fixed
|
||||||
|
- [#708] Wants the original non-parsed JWT and not an IDToken instance.
|
||||||
|
## 1.1.0 [2019-10-25]
|
||||||
|
### Changed
|
||||||
|
- [#688] Second stage of adding logout support.
|
||||||
|
- [#700] Third stage of adding logout support, provider side
|
||||||
|
### Fixed
|
||||||
|
- [#602] Fixed uncaught error on unpacking of message
|
||||||
|
- [#679] Make `state` optional in `EndSessionRequest`
|
||||||
|
- [#683] Fix basic_auth with client password
|
||||||
|
- [#698] `state` in `EndSessionRequest` request args and kwargs different
|
||||||
|
### Removed
|
||||||
|
- [#671] Removed deprecated request/response_cls kwargs from Provider/Client methods
|
||||||
|
- [#677] Removed more deprecated code
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Jul 30 10:23:47 UTC 2019 - pgajdos@suse.com
|
Tue Jul 30 10:23:47 UTC 2019 - pgajdos@suse.com
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package python-oic
|
# spec file for package python-oic
|
||||||
#
|
#
|
||||||
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2020 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@@ -20,13 +20,13 @@
|
|||||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||||
%global modname oic
|
%global modname oic
|
||||||
Name: python-oic
|
Name: python-oic
|
||||||
Version: 1.0.1
|
Version: 1.2.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: A complete OpenID Connect implementation in Python
|
Summary: A complete OpenID Connect implementation in Python
|
||||||
License: Apache-2.0
|
License: Apache-2.0
|
||||||
Group: Development/Languages/Python
|
Group: Development/Languages/Python
|
||||||
URL: https://github.com/OpenIDC/pyoidc
|
URL: https://github.com/OpenIDC/pyoidc
|
||||||
Source: https://github.com/OpenIDC/pyoidc/archive/v%{version}.tar.gz#/%{modname}-%{version}.tar.gz
|
Source: https://github.com/OpenIDC/pyoidc/archive/%{version}.tar.gz#/%{modname}-%{version}.tar.gz
|
||||||
BuildRequires: %{python_module Mako}
|
BuildRequires: %{python_module Mako}
|
||||||
BuildRequires: %{python_module cryptography}
|
BuildRequires: %{python_module cryptography}
|
||||||
BuildRequires: %{python_module defusedxml}
|
BuildRequires: %{python_module defusedxml}
|
||||||
@@ -53,6 +53,7 @@ Requires: python-future
|
|||||||
Requires: python-pycryptodomex
|
Requires: python-pycryptodomex
|
||||||
Requires: python-pyjwkest >= 1.3.6
|
Requires: python-pyjwkest >= 1.3.6
|
||||||
Requires: python-requests
|
Requires: python-requests
|
||||||
|
Requires: python-setuptools
|
||||||
Requires: python-typing
|
Requires: python-typing
|
||||||
Requires: python-typing_extensions
|
Requires: python-typing_extensions
|
||||||
Suggests: python-ldap
|
Suggests: python-ldap
|
||||||
|
|||||||
Reference in New Issue
Block a user