Skip to content

Commit

Permalink
Update to use MSAL 4.67.1 (#3193)
Browse files Browse the repository at this point in the history
* use msal 4.67.0

* Update Directory.Build.props

---------

Co-authored-by: Gladwin Johnson <[email protected]>
Co-authored-by: jennyf19 <[email protected]>
  • Loading branch information
3 people authored Jan 10, 2025
1 parent 230e1d5 commit d586c51
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@

<PropertyGroup Label="Common dependency versions">
<MicrosoftIdentityModelVersion Condition="'$(MicrosoftIdentityModelVersion)' == ''">8.3.0</MicrosoftIdentityModelVersion>
<MicrosoftIdentityClientVersion Condition="'$(MicrosoftIdentityClientVersion)' == ''">4.66.2</MicrosoftIdentityClientVersion>
<MicrosoftIdentityClientVersion Condition="'$(MicrosoftIdentityClientVersion)' == ''">4.67.1</MicrosoftIdentityClientVersion>
<FxCopAnalyzersVersion>3.3.0</FxCopAnalyzersVersion>
<SystemTextEncodingsWebVersion>4.7.2</SystemTextEncodingsWebVersion>
<AzureSecurityKeyVaultSecretsVersion>4.6.0</AzureSecurityKeyVaultSecretsVersion>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -532,7 +532,7 @@ public async Task<AuthenticationResult> GetAuthenticationResultForAppAsync(
builder.WithClaims(tokenAcquisitionOptions.Claims);
if (tokenAcquisitionOptions.PoPConfiguration != null)
{
builder.WithProofOfPossession(tokenAcquisitionOptions.PoPConfiguration);
builder.WithSignedHttpRequestProofOfPossession(tokenAcquisitionOptions.PoPConfiguration);
}
if (!string.IsNullOrEmpty(tokenAcquisitionOptions.PopPublicKey))
{
Expand Down Expand Up @@ -982,7 +982,7 @@ private void NotifyCertificateSelection(MergedOptions mergedOptions, IConfidenti
builder.WithClaims(tokenAcquisitionOptions.Claims);
if (tokenAcquisitionOptions.PoPConfiguration != null)
{
builder.WithProofOfPossession(tokenAcquisitionOptions.PoPConfiguration);
builder.WithSignedHttpRequestProofOfPossession(tokenAcquisitionOptions.PoPConfiguration);
}
}

Expand Down

0 comments on commit d586c51

Please sign in to comment.