Skip to content

Commit

Permalink
Identity release notes (#13585)
Browse files Browse the repository at this point in the history
  • Loading branch information
chlowell authored Sep 4, 2020
1 parent 27eead3 commit 94dc3bd
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
10 changes: 9 additions & 1 deletion sdk/identity/azure-identity/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Release History

## 1.5.0b1 (Unreleased)
## 1.5.0b1 (2020-09-08)
### Added
- Application authentication APIs from 1.4.0b7
- `ManagedIdentityCredential` supports the latest version of App Service
Expand All @@ -13,6 +13,14 @@
(`azure.identity.aio.CertificateCredential`) will support this in a
future version.
([#10816](https://github.com/Azure/azure-sdk-for-python/issues/10816))
- Credentials in `azure.identity` support ADFS authorities, excepting
`VisualStudioCodeCredential`. To configure a credential for this, configure
the credential with `authority` and `tenant_id="adfs"` keyword arguments, for
example
`ClientSecretCredential(authority="<your ADFS URI>", tenant_id="adfs")`.
Async credentials (those in `azure.identity.aio`) will support ADFS in a
future release.
([#12696](https://github.com/Azure/azure-sdk-for-python/issues/12696))
- `InteractiveBrowserCredential` keyword argument `redirect_uri` enables
authentication with a user-specified application having a custom redirect URI
([#13344](https://github.com/Azure/azure-sdk-for-python/issues/13344))
Expand Down
2 changes: 1 addition & 1 deletion sdk/identity/azure-identity/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
install_requires=[
"azure-core<2.0.0,>=1.0.0",
"cryptography>=2.1.4",
"msal<1.5.0,>=1.3.0",
"msal<1.6.0,>=1.3.0",
"msal-extensions~=0.2.2",
"six>=1.6",
],
Expand Down
2 changes: 1 addition & 1 deletion shared_requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ futures
mock
typing
typing-extensions
msal<1.5.0,>=1.3.0
msal<1.6.0,>=1.3.0
msal-extensions~=0.2.2
msrest>=0.5.0
msrestazure<2.0.0,>=0.4.32
Expand Down

0 comments on commit 94dc3bd

Please sign in to comment.