Skip to content

Commit

Permalink
⬆️ update nuget packages
Browse files Browse the repository at this point in the history
  • Loading branch information
Odonno committed Sep 20, 2023
1 parent 00b2165 commit a66a844
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion SurrealDb.Benchmarks/SurrealDb.Benchmarks.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="BenchmarkDotNet" Version="0.13.6" />
<PackageReference Include="BenchmarkDotNet" Version="0.13.8" />
<PackageReference Include="Bogus" Version="34.0.2" />
</ItemGroup>

Expand Down
8 changes: 4 additions & 4 deletions SurrealDb.Tests/SurrealDb.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="FluentAssertions" Version="6.11.0" />
<PackageReference Include="FluentAssertions" Version="6.12.0" />
<PackageReference Include="Meziantou.Xunit.ParallelTestFramework" Version="2.1.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.1.0" />
<PackageReference Include="xunit" Version="2.4.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.2" />
<PackageReference Include="xunit" Version="2.5.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.1">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
Expand Down
2 changes: 1 addition & 1 deletion SurrealDb/Internals/SurrealDbEngine.Ws.cs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public SurrealDbWsEngine(Uri uri)
switch (message.MessageType)
{
case WebSocketMessageType.Text:
response = JsonSerializer.Deserialize<ISurrealDbWsResponse>(message.Text, SurrealDbSerializerOptions.Default);
response = JsonSerializer.Deserialize<ISurrealDbWsResponse>(message.Text!, SurrealDbSerializerOptions.Default);
break;
case WebSocketMessageType.Binary:
{
Expand Down
4 changes: 2 additions & 2 deletions SurrealDb/SurrealDb.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@
</PackageReference>
<PackageReference Include="Microsoft.Extensions.Http" Version="7.0.0" />
<PackageReference Include="Microsoft.IO.RecyclableMemoryStream" Version="2.3.2" />
<PackageReference Include="Microsoft.Spatial" Version="7.17.0" />
<PackageReference Include="Microsoft.Spatial" Version="7.18.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="Superpower" Version="3.0.0" />
<PackageReference Include="System.Text.Json" Version="7.0.3" />
<PackageReference Include="Websocket.Client" Version="4.6.1" />
<PackageReference Include="Websocket.Client" Version="5.0.0" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit a66a844

Please sign in to comment.