Skip to content

Commit

Permalink
Upgrade versions (#3098)
Browse files Browse the repository at this point in the history
* Upgrade versions of dependencies identified by dependabot

* adding ignore to dependabot.yml for Microsoft.IdentityModel.Protocols.WsFederation
  • Loading branch information
JoshLozensky authored Oct 23, 2024
1 parent 5cf6cac commit bf57ce1
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ updates:
interval: "daily"
allow:
- dependency-name: "Microsoft.Identity*"
ignore:
# We do not want this leaving 5.5.0 since we don't use it and it could break customers
- dependency-name: "Microsoft.IdentityModel.Protocols.WsFederation"
labels:
- "dependabot"
- "dependencies"
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>

<Title>Microsoft Identity Web.OWIN</Title>
Expand Down
2 changes: 1 addition & 1 deletion tests/DevApps/ciam/myWebApi/myWebApi.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
</ItemGroup>

<ItemGroup Condition="'$(UseWIP)' == 'false' ">
<PackageReference Include="Microsoft.Identity.Web" Version="3.2.2" />
<PackageReference Include="Microsoft.Identity.Web" Version="$(MicrosoftIdentityWebVersion)" />
</ItemGroup>

<ItemGroup Condition="'$(UseWIP)' == 'true' ">
Expand Down
4 changes: 2 additions & 2 deletions tests/DevApps/ciam/myWebApp/myWebApp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
</PropertyGroup>

<ItemGroup Condition="'$(UseWIP)' == 'false' ">
<PackageReference Include="Microsoft.Identity.Web" Version="3.2.2" />
<PackageReference Include="Microsoft.Identity.Web.UI" Version="3.2.0" />
<PackageReference Include="Microsoft.Identity.Web" Version="$(MicrosoftIdentityWebVersion)" />
<PackageReference Include="Microsoft.Identity.Web.UI" Version="$(MicrosoftIdentityWebVersion)" />
</ItemGroup>

<ItemGroup Condition="'$(UseWIP)' == 'true' ">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<PackageReference Include="Microsoft.Extensions.Configuration.CommandLine" Version="8.0.0" />
<PackageReference Include="Microsoft.Graph.Beta" Version="5.81.0-preview" />
<PackageReference Include="Microsoft.Identity.Client.Extensions.Msal" Version="4.64.1" />
<PackageReference Include="System.Text.Json" Version="8.0.4" />
<PackageReference Include="System.Text.Json" Version="8.0.5" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit bf57ce1

Please sign in to comment.