Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Identity release notes #13585

Merged
merged 4 commits into from
Sep 4, 2020
Merged
Show file tree
Hide file tree
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: 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