File tree Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Original file line number Diff line number Diff line change 21
21
## Upcoming Release
22
22
* Upgraded Azure.Identity to 1.10.3 [ #23018 ] .
23
23
- Renamed token cache from ` msal.cache ` to ` msal.cache.cae ` or ` masl.cache.nocae ` .
24
- * Enabled Continue Access Evalution (CAE) for all Service Principals login methods.
25
- * Adjusted output format to be more user-friendly for ` Get-AzContext/Tenant/Subscription ` and ` Invoke-AzRestMethod `
26
- * Fixed the multiple ` x-ms-unique-id ` values issue
24
+ * Enabled Continue Access Evaluation (CAE) for all Service Principals login methods.
25
+ * Supported signing in with Microsoft Account (MSA) via Web Account Manager (WAM). Enable it by ` Set-AzConfig -EnableLoginByWam $true ` .
26
+ * Adjusted output format to be more user-friendly for ` Get-AzContext/Tenant/Subscription ` and ` Invoke-AzRestMethod ` .
27
+ * Fixed the multiple ` x-ms-unique-id ` values issue.
27
28
28
29
## Version 2.15.0
29
30
* Fixed the authentication issue when using ` FederatedToken ` in Sovereign Clouds. [ #23742 ]
34
35
* Upgraded Azure.Core to 1.35.0.
35
36
36
37
## Version 2.13.1
37
- * Added the module name in breaking change messages
38
- * Upgraded Microsoft.ApplicationInsights version from 2.13.1 to 2.18.0
38
+ * Added the module name in breaking change messages
39
+ * Upgraded Microsoft.ApplicationInsights version from 2.13.1 to 2.18.0
39
40
40
41
## Version 2.13.0
41
42
* Supported in-tool notification for version upgrade.
46
47
47
48
## Version 2.12.5
48
49
* Changed output stream from debug stream to warning stream for ` CmdletPreviewAttribute `
49
- * Decreased the prompted frequency of preview warning message to once per cmdlet in one session
50
+ * Decreased the prompted frequency of preview warning message to once per cmdlet in one session
50
51
* Reworded default preview message and added estimated GA date for ` CmdletPreviewAttribute `
51
52
* Updated Azure.Core to 1.33.0
52
53
Original file line number Diff line number Diff line change @@ -49,6 +49,7 @@ public override Task<IAccessToken> Authenticate(AuthenticationParameters paramet
49
49
50
50
var options = new InteractiveBrowserCredentialBrokerOptions ( WindowHandleUtilities . GetConsoleOrTerminalWindow ( ) )
51
51
{
52
+ IsLegacyMsaPassthroughEnabled = true , // to support MSA account
52
53
ClientId = clientId ,
53
54
TenantId = tenantId ,
54
55
TokenCachePersistenceOptions = tokenCacheProvider . GetTokenCachePersistenceOptions ( ) ,
You can’t perform that action at this time.
0 commit comments