- Update to version 1.8.0
+ New feature: A new extra_scopes_to_consent parameter is introduced
to the acquire_token_interactive(...) API (#212, #286)
+ Adjustment to previous version 1.7.0: Lazy import webbrowser module
only when necessary (#287, #288)
- from version 1.7.0
+ New feature: A new initiate_auth_code_flow() & acquire_token_by_auth_code_flow()
API, which automatically provides PKCE protection for you (#276, #255).
(You are recommended to use these 2 new APIs to replace the previous
get_authorization_request_url() and acquire_token_by_authorization_code().)
+ New feature: A new acquire_token_interactive() (#138, #260, #282), comes with
a sample (#283)
+ Bugfix: Now MSAL Python can properly access those Refresh Tokens which were
keyed slightly differently by different apps. (#279, #280)
OBS-URL: https://build.opensuse.org/request/show/862389
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:azure/python-msal?expand=0&rev=12
102 lines
5.3 KiB
Plaintext
102 lines
5.3 KiB
Plaintext
-------------------------------------------------------------------
|
|
Mon Jan 11 15:39:40 UTC 2021 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
|
|
|
- Update to version 1.8.0
|
|
+ New feature: A new extra_scopes_to_consent parameter is introduced
|
|
to the acquire_token_interactive(...) API (#212, #286)
|
|
+ Adjustment to previous version 1.7.0: Lazy import webbrowser module
|
|
only when necessary (#287, #288)
|
|
- from version 1.7.0
|
|
+ New feature: A new initiate_auth_code_flow() & acquire_token_by_auth_code_flow()
|
|
API, which automatically provides PKCE protection for you (#276, #255).
|
|
(You are recommended to use these 2 new APIs to replace the previous
|
|
get_authorization_request_url() and acquire_token_by_authorization_code().)
|
|
+ New feature: A new acquire_token_interactive() (#138, #260, #282), comes with
|
|
a sample (#283)
|
|
+ Bugfix: Now MSAL Python can properly access those Refresh Tokens which were
|
|
keyed slightly differently by different apps. (#279, #280)
|
|
|
|
-------------------------------------------------------------------
|
|
Thu Nov 26 11:07:08 UTC 2020 - Robert Schweikert <rjschwei@suse.com>
|
|
|
|
- Only build Python3 flavors for distributions 15 and greater
|
|
|
|
-------------------------------------------------------------------
|
|
Fri Nov 13 12:14:27 UTC 2020 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
|
|
|
- Update to version 1.6.0
|
|
+ New Feature: ```ConfidentialClientApplication``` accepts private
|
|
key encrypted by a passphrase. (#232, #270)
|
|
+ Enhancement: Provides different exception and messages while
|
|
encountering transient error during tenant discovery (#263, #269)
|
|
- from version 1.5.1
|
|
+ Bugfix: We now cache tokens by specified environment, not by OIDC Discovery.
|
|
This won't matter most of the time, but it can be needed when your tenant is
|
|
in transitional state while migrating to a different cloud. (#247)
|
|
+ Bugfix: We now make sure one app's sign-out operation would be successful even
|
|
when another app is acquiring token from cache at the same time. (#258, #262)
|
|
- Update Requires from setup.py
|
|
|
|
-------------------------------------------------------------------
|
|
Tue Sep 8 19:53:50 UTC 2020 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
|
|
|
- Update to version 1.5.0
|
|
+ Added support for setting client capabilities to enable
|
|
CAE(Continuous Access Evaluation) (#240, #174)
|
|
+ Device code endpoint is now fetched from open-id configuration,
|
|
if available. (#245, #242)
|
|
+ Fixes in test cases (#239, #211)
|
|
|
|
-------------------------------------------------------------------
|
|
Fri Aug 28 13:29:30 UTC 2020 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
|
|
|
- Update to version 1.4.3
|
|
+ Bugfix: A side effect in previous release prevented reading some
|
|
tokens from a different authority alias (#235, #236)
|
|
- from version 1.4.2
|
|
+ Bugfix: Changed case of messageID in WS-Trust Requests (#228 , #230 )
|
|
+ Bugfix: Removed content-type header sent in request to Mex endpoint (#226 , #227 )
|
|
+ Bugfix: Bypasses cache lookup for authority alias if no refresh token found (#223, #225 )
|
|
- from version 1.4.1
|
|
+ Reverts Application Initializer will not send network requests
|
|
introduced in MSAL Python 1.4.0 (#205, #216, #187)
|
|
- from version 1.4.0
|
|
+ Enhancement: Application initializer will not send network requests. (#205, #187)
|
|
+ Enhancement: Improved handling of errors in ADAL to MSAL token migration scenario. (#209, #208)
|
|
+ Added changelog in PYPI (#203, #202)
|
|
+ Other readme and reference docs adjustments (#200, #197)
|
|
|
|
-------------------------------------------------------------------
|
|
Tue Jun 16 13:11:05 UTC 2020 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
|
|
|
- Update to version 1.3.0
|
|
+ New feature: class ```ClientApplication``` accepts a new optional parameter
|
|
```http_client```. You can provide your own HTTP client to have different
|
|
behavior. (#169) Please refer to API Reference doc.
|
|
+ New feature: method ```get_authorization_request_url()``` accepts a new optional
|
|
parameter ```domain_hint```. (#158, #181)
|
|
Please refer to API Reference doc.
|
|
+ New feature: A new method ```acquire_token_by_refresh_token()``` to help migrating
|
|
refresh tokens from elsewhere to MSAL Python. (#193)
|
|
Its usage is demonstrated in this sample.
|
|
- from version 1.2.0
|
|
+ New ```nonce``` parameter is provided in ```both get_authorization_request_url(..., nonce=...)```
|
|
and ```acquire_token_by_authorization_code(..., nonce=...)``` method, so
|
|
that you can use them to mitigate replay attacks, per OIDC specs. (#128, #173).
|
|
- from version 1.1.0
|
|
+ New ```acquire_token_silent_with_error(...)``` method to expose conditional
|
|
access error classifications (#143, closes #57).
|
|
+ App developers can opt in to provide their app's name and version for Microsoft
|
|
Telemetry, so that we can understand your usage pattern and serve you better.
|
|
(#136 closes #130)
|
|
+ Internally,
|
|
* Collect anonymous telemetry data to help us improve MSAL Python (#103)
|
|
* Test cases cover ADFS 2019 on-premise scenarios (#142, closes #132)
|
|
* Switched to our latest lab apis for better test infrastructure (#108, #133, #134, #135)
|
|
|
|
-------------------------------------------------------------------
|
|
Tue Feb 18 11:18:31 UTC 2020 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
|
|
|
- Initial build
|
|
+ Version 1.1.0
|