You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: sdk/identity/Azure.Identity/CHANGELOG.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,9 @@
1
1
# Release History
2
2
3
-
## 1.12.0-beta.1 (2024-04-17)
3
+
## 1.11.2 (2024-04-19)
4
4
5
-
### Other Changes
6
-
-An experimental overload `Authenticate` method on `InteractiveBrowserCredential` now supports the experimental `PopTokenRequestContext` parameter.
5
+
### Bugs Fixed
6
+
-Fixed an issue which caused claims to be incorrectly added to confidential client credentials such as `DeviceCodeCredential`[#43468](https://github.com/Azure/azure-sdk-for-net/issues/43468)
@@ -239,7 +239,7 @@ public virtual async ValueTask<AuthenticationResult> AcquireTokenByAuthorization
239
239
boolasync,
240
240
CancellationTokencancellationToken)
241
241
{
242
-
var result =awaitAcquireTokenByAuthorizationCodeCoreAsync(scopes,code,tenantId,redirectUri,claims,enableCae,async,cancellationToken).ConfigureAwait(false);
242
+
var result =awaitAcquireTokenByAuthorizationCodeCoreAsync(scopes:scopes,code:code,tenantId:tenantId,redirectUri:redirectUri,claims:claims,enableCae:enableCae,async,cancellationToken).ConfigureAwait(false);
243
243
LogAccountDetails(result);
244
244
returnresult;
245
245
}
@@ -248,8 +248,8 @@ public virtual async ValueTask<AuthenticationResult> AcquireTokenByAuthorization
248
248
string[]scopes,
249
249
stringcode,
250
250
stringtenantId,
251
-
stringclaims,
252
251
stringredirectUri,
252
+
stringclaims,
253
253
boolenableCae,
254
254
boolasync,
255
255
CancellationTokencancellationToken)
@@ -312,6 +312,10 @@ public virtual async ValueTask<AuthenticationResult> AcquireTokenOnBehalfOfCoreA
0 commit comments