Skip to content

Commit

Permalink
Merge branch 'master' into westin/csharp13
Browse files Browse the repository at this point in the history
  • Loading branch information
westin-m authored Nov 19, 2024
2 parents 2597983 + 36fac2f commit 31b46e4
Show file tree
Hide file tree
Showing 5 changed files with 33 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 @@ -79,7 +79,7 @@
</PropertyGroup>

<PropertyGroup Label="Common dependency versions">
<MicrosoftIdentityModelVersion Condition="'$(MicrosoftIdentityModelVersion)' == ''">8.1.2</MicrosoftIdentityModelVersion>
<MicrosoftIdentityModelVersion Condition="'$(MicrosoftIdentityModelVersion)' == ''">8.2.1</MicrosoftIdentityModelVersion>
<MicrosoftIdentityClientVersion Condition="'$(MicrosoftIdentityClientVersion)' == ''">4.66.1</MicrosoftIdentityClientVersion>
<FxCopAnalyzersVersion>3.3.0</FxCopAnalyzersVersion>
<SystemTextEncodingsWebVersion>4.7.2</SystemTextEncodingsWebVersion>
Expand Down
20 changes: 20 additions & 0 deletions build/template-install-dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,26 @@
#install dotnet core

steps:
- task: UseDotNet@2
displayName: 'Use .NET SDK 3.1'
inputs:
version: 3.1.x

- task: UseDotNet@2
displayName: 'Use .NET SDK 6.0.x'
inputs:
version: 6.0.x

- task: UseDotNet@2
displayName: 'Use .NET SDK 7.0.x'
inputs:
version: 7.0.x

- task: UseDotNet@2
displayName: 'Use .NET SDK 8.0.x'
inputs:
version: 8.0.x

- task: UseDotNet@2
displayName: 'Use .NET SDK 9.0.x'
inputs:
Expand Down
10 changes: 10 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
3.4.0
========
- Updated to Microsoft.IdentityModel.* 8.2.1
- Updated to Microsoft.Identity.Abstractions 7.2.0

### New features
- Add ROPC flow support for confidential client applications. See [3091](https://github.com/AzureAD/microsoft-identity-web/issues/3091), [3129](https://github.com/AzureAD/microsoft-identity-web/issues/3129), [3139](https://github.com/AzureAD/microsoft-identity-web/issues/3139).
- Allow multi-tenant applications to specify the AppHomeTenantId to be used for client credentials. See [3121](https://github.com/AzureAD/microsoft-identity-web/issues/3121), [3132](https://github.com/AzureAD/microsoft-identity-web/pull/3132).
- Update to use .NET 9 GA. See [3127](https://github.com/AzureAD/microsoft-identity-web/issues/3127).

3.3.1
========
- Updated to Microsoft.IdentityModel.* 8.2.0
Expand Down
2 changes: 1 addition & 1 deletion tests/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<MicrosoftApplicationInsightsAspNetCoreVersion>2.22.0</MicrosoftApplicationInsightsAspNetCoreVersion>
<MicrosoftApplicationInsightsEventCounterCollectionVersion>2.22.0</MicrosoftApplicationInsightsEventCounterCollectionVersion>
<MicrosoftExtensionsCachingStackExchangeRedisVersion>6.0.12</MicrosoftExtensionsCachingStackExchangeRedisVersion>
<MicrosoftPlaywrightVersion>1.36.0</MicrosoftPlaywrightVersion>
<MicrosoftPlaywrightVersion>1.48.0</MicrosoftPlaywrightVersion>
<StackExchangeRedisVersion>2.2.4</StackExchangeRedisVersion>
<!--CVE-2021-24112-->
<SystemDrawingCommonVersion>5.0.3</SystemDrawingCommonVersion>
Expand Down
2 changes: 1 addition & 1 deletion tests/E2E Tests/WebAppUiTests/WebAppUiTests.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net8.0; net9.0</TargetFrameworks>
<TargetFrameworks>net8.0</TargetFrameworks>
<TargetFrameworks Condition="'$(TargetNetNext)'== 'True'">$(TargetFrameworks); </TargetFrameworks>
<AssemblyOriginatorKeyFile>../../../build/MSAL.snk</AssemblyOriginatorKeyFile>
<IsPackable>false</IsPackable>
Expand Down

0 comments on commit 31b46e4

Please sign in to comment.