Skip to content

Commit

Permalink
Security bump: .NET 6.0.8, dotnet/aspnetcore#43166
Browse files Browse the repository at this point in the history
  • Loading branch information
ChaosEngine committed Oct 26, 2022
1 parent 91af439 commit 14164ad
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions src/InkBall.Module/Areas/InkBall/Pages/Game.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -101,11 +101,11 @@
}
</environment>
<environment exclude="Development">
<script defer src="https://cdn.jsdelivr.net/npm/@@microsoft/signalr@6.0.7/dist/browser/signalr.min.js" integrity="sha256-5a+atoFNKtta22gL6Z0jA6dUYhbi0M7Ck134r6VLwgg=" crossorigin="anonymous"></script>
<script defer src="https://cdn.jsdelivr.net/npm/@@microsoft/signalr@6.0.8/dist/browser/signalr.min.js" integrity="sha256-ch1bB+xhoRDsPegStKCRY0cnUOpfkTs5dWHKuvy465s=" crossorigin="anonymous"></script>
@if (useMessagePackBinaryTransport)
{
@:<script type='module' src="https://cdn.jsdelivr.net/npm/msgpack5@6.0.2/dist/msgpack5.min.js" integrity="sha256-AxiBUMElqJXwwKZro5eMMWVExjtxeZSUQ/4nC4oCU2E=" crossorigin="anonymous"></script>
@:<script type='module' src="https://cdn.jsdelivr.net/npm/@@microsoft/signalr-protocol-msgpack@6.0.7/dist/browser/signalr-protocol-msgpack.min.js" integrity="sha256-jsknPpEBfh18KXrYbEWofzk8dMGVYDuxlBlMMjRlmiE=" crossorigin="anonymous"></script>
@:<script type='module' src="https://cdn.jsdelivr.net/npm/@@microsoft/signalr-protocol-msgpack@6.0.8/dist/browser/signalr-protocol-msgpack.min.js" integrity="sha256-F0LUfY1d+JbJBo1i822wfEiHcJ81yr4Oe0YUx7Gj2pg=" crossorigin="anonymous"></script>
}
</environment>
<script type='text/javascript'>
Expand Down
12 changes: 6 additions & 6 deletions src/InkBall.Module/InkBall.Module.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,16 @@

<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="6.0.7" />
<PackageReference Include="Microsoft.Extensions.Identity.Stores" Version="6.0.7" />
<PackageReference Include="Microsoft.Extensions.FileProviders.Embedded" Version="6.0.7" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.7" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="6.0.8" />
<PackageReference Include="Microsoft.Extensions.Identity.Stores" Version="6.0.8" />
<PackageReference Include="Microsoft.Extensions.FileProviders.Embedded" Version="6.0.8" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.8" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="6.0.6" Condition="$(DefineConstants.Contains('INCLUDE_POSTGRES'))" />
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="6.0.2" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="6.0.7" Condition="$(DefineConstants.Contains('INCLUDE_SQLSERVER'))" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="6.0.8" Condition="$(DefineConstants.Contains('INCLUDE_SQLSERVER'))" />
<PackageReference Include="Oracle.EntityFrameworkCore" Version="6.21.61" Condition="$(DefineConstants.Contains('INCLUDE_ORACLE'))" />
<!--<PackageReference Include="Microsoft.AspNetCore.SignalR" Version="1.1.0" />-->
<PackageReference Include="Microsoft.AspNetCore.SignalR.Protocols.MessagePack" Version="6.0.7" />
<PackageReference Include="Microsoft.AspNetCore.SignalR.Protocols.MessagePack" Version="6.0.8" />
<PackageReference Include="MessagePack" Version="2.4.35" />
</ItemGroup>
<!--
Expand Down
8 changes: 4 additions & 4 deletions test/InkBall.Tests/InkBall.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="6.0.7" />
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="6.0.7" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="6.0.7" />
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="6.0.8" />
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="6.0.8" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="6.0.8" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.2.0" />
<PackageReference Include="xunit" Version="2.4.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="6.0.7" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="6.0.8" />
<PackageReference Include="Moq" Version="4.18.2" />
</ItemGroup>

Expand Down

0 comments on commit 14164ad

Please sign in to comment.