Skip to content

Commit

Permalink
Upgrade MSAL dependencies to 4.59.1 (#374)
Browse files Browse the repository at this point in the history
* upgrade msal dependencies to 4.59.1

* Update changelog

* specify prev msal version in changelog
  • Loading branch information
Haard30 authored Apr 25, 2024
1 parent 1cfec24 commit 2a9839d
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 9 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
### Changed
- Upgrade MSAL from `4.55.0` to `4.59.1`.

### Added
- Added the word `Warning` before logging IWA failures so users worry less about IWA issues.

## [0.8.5] - 2024-03-06
Expand Down
4 changes: 2 additions & 2 deletions src/AdoPat/AdoPat.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<PackageId>Microsoft.Authentication.AdoPat</PackageId>
Expand All @@ -11,7 +11,7 @@
<AdditionalFiles Include="..\stylecop\stylecop.json" Link="stylecop.json" />
<Compile Include="..\stylecop\GlobalSuppressions.cs" Link="GlobalSuppressions.cs" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="3.1.4" />
<PackageReference Include="Microsoft.Identity.Client.Extensions.Msal" Version="2.32.0" />
<PackageReference Include="Microsoft.Identity.Client.Extensions.Msal" Version="4.59.1" />
<PackageReference Include="Microsoft.VisualStudio.Services.Client" Version="19.215.0-preview" />
<PackageReference Include="System.Data.SqlClient" Version="4.8.6" />
</ItemGroup>
Expand Down
6 changes: 3 additions & 3 deletions src/MSALWrapper.Benchmark/MSALWrapper.Benchmark.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="BenchmarkDotNet" Version="0.13.2" />
<PackageReference Include="Microsoft.Identity.Client.Broker" Version="4.55.0" />
<PackageReference Include="Microsoft.Identity.Client.Broker" Version="4.59.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\MSALWrapper\MSALWrapper.csproj" />
Expand All @@ -31,7 +31,7 @@
<!--Windows: Explicitly continue using the net5 version of MSAL since there is no net6 target yet
https://github.com/AzureAD/microsoft-authentication-library-for-dotnet/issues/3682-->
<PackageReference Include="Microsoft.Identity.Client" GeneratePathProperty="true">
<Version>4.55.0</Version>
<Version>4.59.1</Version>
</PackageReference>

<Reference Include="Microsoft.Identity.Client">
Expand All @@ -41,6 +41,6 @@

<ItemGroup Condition="$([MSBuild]::IsOSPlatform('Windows')) == false">
<!-- Not Windows: simple package reference -->
<PackageReference Include="Microsoft.Identity.Client" Version="4.55.0" />
<PackageReference Include="Microsoft.Identity.Client" Version="4.59.1" />
</ItemGroup>
</Project>
8 changes: 4 additions & 4 deletions src/MSALWrapper/MSALWrapper.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<!-- Package Naming, Building, & Versioning -->
Expand Down Expand Up @@ -30,10 +30,10 @@

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="3.1.4" />
<PackageReference Include="Microsoft.Identity.Client.Extensions.Msal" Version="2.32.0" />
<PackageReference Include="Microsoft.Identity.Client.Extensions.Msal" Version="4.59.1" />
<PackageReference Include="Microsoft.IdentityModel.JsonWebTokens" Version="7.5.0" />
<PackageReference Include="Microsoft.Identity.Client.Broker" Version="4.55.0" />
<PackageReference Include="Microsoft.Identity.Client" Version="4.55.0" />
<PackageReference Include="Microsoft.Identity.Client.Broker" Version="4.59.1" />
<PackageReference Include="Microsoft.Identity.Client" Version="4.59.1" />

</ItemGroup>

Expand Down

0 comments on commit 2a9839d

Please sign in to comment.