Skip to content

Commit 80eac92

Browse files
authored
Merge pull request #73 from AzureAD/release-0.5.0
Merge Release 0.5.0 back to dev, despite of an intermittent connection failure during test automation, because the same snapshot of source code actually passed the tests during release PR test automation.
2 parents 5b04f8d + 04b1edf commit 80eac92

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

msal/application.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919

2020
# The __init__.py will import this. Not the other way around.
21-
__version__ = "0.4.1"
21+
__version__ = "0.5.0"
2222

2323
logger = logging.getLogger(__name__)
2424

@@ -89,11 +89,13 @@ def __init__(
8989
"public_certificate": "...-----BEGIN CERTIFICATE-----..." (Optional. See below.)
9090
}
9191
92-
public_certificate (optional) is public key certificate which is
93-
sent through 'x5c' JWT header only for
94-
subject name and issuer authentication to support cert auto rolls
92+
*Added in version 0.5.0*:
93+
public_certificate (optional) is public key certificate
94+
which will be sent through 'x5c' JWT header only for
95+
subject name and issuer authentication to support cert auto rolls.
9596
9697
:param dict client_claims:
98+
*Added in version 0.5.0*:
9799
It is a dictionary of extra claims that would be signed by
98100
by this :class:`ConfidentialClientApplication` 's private key.
99101
For example, you can use {"client_ip": "x.x.x.x"}.

0 commit comments

Comments
 (0)