Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="xunit.v3" Version="4.0.0" />
<PackageReference Include="xunit.v3" Version="4.0.1" />
</ItemGroup>

<ItemGroup>
Expand Down
6 changes: 3 additions & 3 deletions CameraModule/Serval.CameraModule/Serval.CameraModule.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Data.Sqlite" Version="10.0.11" />
<PackageReference Include="Microsoft.Data.Sqlite" Version="10.0.12" />
<!--
Direct reference only to keep the native SQLite build ahead of GHSA-2m69-gcr7-jv3q. Nothing
here calls into it. Microsoft.Data.Sqlite now resolves the bundle at 2.1.12, which clears the
Expand All @@ -47,8 +47,8 @@
half resolves from either way — a 3.x native against a 2.1.x core is a pairing nobody ships.
-->
<PackageReference Include="SQLitePCLRaw.lib.e_sqlite3" Version="2.1.13" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="10.0.11" />
<PackageReference Include="Microsoft.Extensions.Http" Version="10.0.11" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="10.0.12" />
<PackageReference Include="Microsoft.Extensions.Http" Version="10.0.12" />
<PackageReference Include="PortAudioSharp" Version="0.3.0" />
</ItemGroup>

Expand Down
2 changes: 1 addition & 1 deletion Server/Serval.Server.Tests/Serval.Server.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="xunit.v3" Version="4.0.0" />
<PackageReference Include="xunit.v3" Version="4.0.1" />
</ItemGroup>

<ItemGroup>
Expand Down
10 changes: 5 additions & 5 deletions Server/Serval.Server/Serval.Server.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="10.0.11" />
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="10.0.11" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="10.0.12" />
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="10.0.12" />
<!--
Held on 2.x. The XML comment source generator in Microsoft.AspNetCore.OpenApi emits
`mediaType.Example = ...`; 3.0 retyped that content dictionary to IOpenApiMediaType, whose
Expand All @@ -18,10 +18,10 @@
is what takes the newest 2.x rather than that floor. 3.x waits on an ASP.NET major built
against it.
-->
<PackageReference Include="Microsoft.OpenApi" Version="2.12.0" />
<PackageReference Include="MongoDB.Driver" Version="3.11.0" />
<PackageReference Include="Microsoft.OpenApi" Version="2.12.2" />
<PackageReference Include="MongoDB.Driver" Version="3.11.2" />
<!-- The browsable UI. .NET 10 generates the OpenAPI document but ships no renderer for it. -->
<PackageReference Include="Scalar.AspNetCore" Version="2.16.20" />
<PackageReference Include="Scalar.AspNetCore" Version="2.17.3" />
</ItemGroup>

<!--
Expand Down
2 changes: 1 addition & 1 deletion Shared/Serval.Ai.Tests/Serval.Ai.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
-->

<ItemGroup>
<PackageReference Include="xunit.v3" Version="4.0.0" />
<PackageReference Include="xunit.v3" Version="4.0.1" />
</ItemGroup>

<!--
Expand Down
4 changes: 2 additions & 2 deletions Shared/Serval.Ai/Serval.Ai.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.11" />
<PackageReference Include="Microsoft.Extensions.Options" Version="10.0.11" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.12" />
<PackageReference Include="Microsoft.Extensions.Options" Version="10.0.12" />
</ItemGroup>

<!--
Expand Down
Loading