Skip to content

Commit

Permalink
Merge pull request #148 from akunzai/bugfix/cve-2022-34716
Browse files Browse the repository at this point in the history
Remove the `netstandard2.0` target framework from `GSS.Authentication.CAS.AspNetCore`
  • Loading branch information
akunzai authored Aug 18, 2022
2 parents 0ee13e7 + aafbb8a commit b1d5611
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to this project will be documented in this file.

## 5.3.1 (2022-08-18)

- Remove the `netstandard2.0` target framework from `GSS.Authentication.CAS.AspNetCore` to fix [CVE-2022-34716](https://github.com/advisories/GHSA-2m65-m22p-9wjw)

## 5.3.0 (2022-04-21)

- [Use the ASP.NET Core shared framework](https://docs.microsoft.com/aspnet/core/fundamentals/target-aspnetcore#use-the-aspnet-core-shared-framework) [#131](https://github.com/akunzai/GSS.Authentication.CAS/pull/131)
Expand Down
2 changes: 1 addition & 1 deletion src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<Nullable>enable</Nullable>
<Version>5.3.0</Version>
<Version>5.3.1</Version>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)' == 'Release' ">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,16 +1,12 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netstandard2.0;netcoreapp3.1</TargetFrameworks>
<TargetFramework>netcoreapp3.1</TargetFramework>
<Description>ASP.NET Core Middlewares for CAS Authentication</Description>
</PropertyGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' ">
<PackageReference Include="Microsoft.AspNetCore.Authentication.Cookies" Version="2.2.0" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\GSS.Authentication.CAS.Core\GSS.Authentication.CAS.Core.csproj" />
</ItemGroup>

</Project>
</Project>

0 comments on commit b1d5611

Please sign in to comment.