Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions msal/application.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@


# The __init__.py will import this. Not the other way around.
__version__ = "0.4.1"
__version__ = "0.5.0"

logger = logging.getLogger(__name__)

Expand Down Expand Up @@ -89,11 +89,13 @@ def __init__(
"public_certificate": "...-----BEGIN CERTIFICATE-----..." (Optional. See below.)
}

public_certificate (optional) is public key certificate which is
sent through 'x5c' JWT header only for
subject name and issuer authentication to support cert auto rolls
*Added in version 0.5.0*:
public_certificate (optional) is public key certificate
which will be sent through 'x5c' JWT header only for
subject name and issuer authentication to support cert auto rolls.

:param dict client_claims:
*Added in version 0.5.0*:
It is a dictionary of extra claims that would be signed by
by this :class:`ConfidentialClientApplication` 's private key.
For example, you can use {"client_ip": "x.x.x.x"}.
Expand Down