Skip to content
This repository was archived by the owner on Apr 10, 2024. It is now read-only.

Commit d57e800

Browse files
authored
msrestazure 0.5.0 (#111)
* Switch to pure ADAL (#94) * Switch to pure ADAL * ADAL 0.6.0 and some tests * Full ADAL testing * Bring back china=True since easy to support * Restore set token on __init__ behavior * Typo * Adding back attribute as property * Clarify AADTokenCredentials doc * Add AzureStack support to credentials * Fix doc * Add cache support * Current 0.5.0 and ChangeLog * Remove keyring (#112) * Remove keyring * keyring changelog * Deserialize addtionalInfo in ARM error (#102) * ChangeLog * Docstring cleanup
1 parent fba2bb7 commit d57e800

File tree

8 files changed

+540
-490
lines changed

8 files changed

+540
-490
lines changed

README.rst

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,28 @@ To install:
2020
Release History
2121
---------------
2222

23+
2018-XX-XX Version 0.5.0
24+
++++++++++++++++++++++++
25+
26+
**Features**
27+
28+
- Implementation is now using ADAL and not request-oauthlib. This allows more AD scenarios (like federated) #94
29+
- Add additionalInfo parsing for CloudError #102
30+
31+
**Breaking changes**
32+
33+
These breaking changes applies to ServicePrincipalCredentials, UserPassCredentials, AADTokenCredentials
34+
35+
- Remove "auth_uri" attribute and parameter. This was unused.
36+
- Remove "state" attribute. This was unused.
37+
- Remove "client" attribute. This was exposed by mistake and should have been internal. No replacement is possible.
38+
- Remove "token_uri" attribute and parameter. Use "cloud_environment" and "tenant" to impact the login url now.
39+
- Remove token caching based on "keyring". Token caching should be implemented using ADAL now. This implies:
40+
41+
- Remove the "keyring" parameter
42+
- Remove the "clear_cached_token" method
43+
- Remove the "retrieve_session" method
44+
2345
2018-07-03 Version 0.4.35
2446
+++++++++++++++++++++++++
2547

doc/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,9 @@
6363
# built documents.
6464
#
6565
# The short X.Y version.
66-
version = '0.4.35'
66+
version = '0.5.0'
6767
# The full version, including alpha/beta/rc tags.
68-
release = '0.4.35'
68+
release = '0.5.0'
6969

7070
# The language for content autogenerated by Sphinx. Refer to documentation
7171
# for a list of supported languages.

0 commit comments

Comments
 (0)