Commit ae4211e 1 parent 2b8fbf0 commit ae4211e Copy full SHA for ae4211e
File tree 2 files changed +6
-2
lines changed
src/Microsoft.Identity.Web.TokenAcquisition
2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 87
87
88
88
<PropertyGroup Label =" Common dependency versions" >
89
89
<MicrosoftIdentityModelVersion Condition =" '$(MicrosoftIdentityModelVersion)' == ''" >8.5.0</MicrosoftIdentityModelVersion >
90
- <MicrosoftIdentityClientVersion Condition =" '$(MicrosoftIdentityClientVersion)' == ''" >4.67.2 </MicrosoftIdentityClientVersion >
90
+ <MicrosoftIdentityClientVersion Condition =" '$(MicrosoftIdentityClientVersion)' == ''" >4.68.0 </MicrosoftIdentityClientVersion >
91
91
<FxCopAnalyzersVersion >3.3.0</FxCopAnalyzersVersion >
92
92
<SystemTextEncodingsWebVersion >4.7.2</SystemTextEncodingsWebVersion >
93
93
<AzureSecurityKeyVaultSecretsVersion >4.6.0</AzureSecurityKeyVaultSecretsVersion >
96
96
<MicrosoftGraphVersion >4.36.0</MicrosoftGraphVersion >
97
97
<MicrosoftGraphBetaVersion >4.57.0-preview</MicrosoftGraphBetaVersion >
98
98
<MicrosoftExtensionsHttpVersion >3.1.3</MicrosoftExtensionsHttpVersion >
99
- <MicrosoftIdentityAbstractionsVersion >8.1.1 </MicrosoftIdentityAbstractionsVersion >
99
+ <MicrosoftIdentityAbstractionsVersion >8.2.0 </MicrosoftIdentityAbstractionsVersion >
100
100
<!-- CVE-2024-43485-->
101
101
<SystemTextJsonVersion >8.0.5</SystemTextJsonVersion >
102
102
<!-- CVE-2023-29331-->
Original file line number Diff line number Diff line change @@ -554,6 +554,10 @@ public async Task<AuthenticationResult> GetAuthenticationResultForAppAsync(
554
554
}
555
555
builder . WithForceRefresh ( tokenAcquisitionOptions . ForceRefresh ) ;
556
556
builder . WithClaims ( tokenAcquisitionOptions . Claims ) ;
557
+ if ( ! string . IsNullOrEmpty ( tokenAcquisitionOptions . FmiPath ) )
558
+ {
559
+ builder . WithFmiPath ( tokenAcquisitionOptions . FmiPath ) ;
560
+ }
557
561
if ( tokenAcquisitionOptions . PoPConfiguration != null )
558
562
{
559
563
builder . WithSignedHttpRequestProofOfPossession ( tokenAcquisitionOptions . PoPConfiguration ) ;
You can’t perform that action at this time.
0 commit comments