-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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] Changelog updates before releasing #11646
Changes from 3 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
# Release History | ||
|
||
## 1.2.0-beta.2 (Unreleased) | ||
## 1.2.0-beta.2 (2020-10-05) | ||
|
||
- `DefaultAzureCredential` now by default shows the Device Code message on the console. This can still be overwritten with a custom behavior by specifying a function as the third parameter, `userPromptCallback`. | ||
- Added support for multiple clouds on `VisualStudioCodeCredential`. Fixes customer issue [11452](https://github.com/Azure/azure-sdk-for-js/issues/11452). | ||
- `ManagedIdentityCredential` has been aligned with other languages, now treating expected errors properly. This fixes customer issue [11451](https://github.com/Azure/azure-sdk-for-js/issues/11451). | ||
- `InteractiveBrowserCredential` authentication now uses the silent flow if the user provides a cache and authentication record for lookup. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This comes from: #11407 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think this is the only important change for now, since Jonathan is working on further improvements. I could have missed something though. |
||
- Added Active Directory Federation Services authority host support to the node credentials. | ||
- Reverted a change in 1.2.0-beta.1 which moved `@rollup/plugin-json` from `devDependencies` to `dependencies`. `@rollup/plugin-json` was placed as a dependency due to an oversight, and it is not a necessary dependency for `@azure/identity`. | ||
|
||
## 1.2.0-beta.1 (2020-09-08) | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
David and I were talking about what could go to the release highlights from these changes. We've agreed on the first three items so far.
So, this would be in the release highlights:
DefaultAzureCredential
now by default shows the Device Code message on the console. This can still be overwritten with a custom behavior by specifying a function as the third parameter,userPromptCallback
.VisualStudioCodeCredential
. Fixes customer issue 11452.ManagedIdentityCredential
has been aligned with other languages, now treating expected errors properly. This fixes customer issue 11451.Thoughts?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added ADFS authority Host support to the node credentials.