Skip to content

Commit

Permalink
chore: update package versions and remove unused import
Browse files Browse the repository at this point in the history
This commit updates the version numbers of various packages in both the main application and test projects. It also removes an unused import from RizzyService.cs.
  • Loading branch information
tanczosm committed Jul 13, 2024
1 parent 2ed4c0b commit 75cf97a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 10 deletions.
6 changes: 3 additions & 3 deletions src/Rizzy/Rizzy.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<Version>2.0.6</Version>
<Version>2.0.7</Version>
<EnablePackageValidation>true</EnablePackageValidation>
<GenerateCompatibilitySuppressionFile>true</GenerateCompatibilitySuppressionFile>
<EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles>
Expand All @@ -52,8 +52,8 @@

<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="8.0.5" />
<PackageReference Include="DotNet.ReproducibleBuilds" Version="1.1.1">
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="8.0.7" />
<PackageReference Include="DotNet.ReproducibleBuilds" Version="1.2.4">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
Expand Down
3 changes: 1 addition & 2 deletions src/Rizzy/RizzyService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
using Microsoft.AspNetCore.Http.HttpResults;
using Rizzy.Components;
using Rizzy.Extensions;
using Rizzy.Framework.Endpoints;

namespace Rizzy;

Expand Down Expand Up @@ -62,7 +61,7 @@ public IResult View<TComponent>(Dictionary<string, object?> data) where TCompone
parameters.Add("ViewContext", ViewContext);

// Return a result that can render the component as a full page
return new RzRazorComponentResult<RzPage>(parameters)
return new RazorComponentResult<RzPage>(parameters)
{
PreventStreamingRendering = false
};
Expand Down
10 changes: 5 additions & 5 deletions test/Rizzy.Tests/Rizzy.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,17 @@

<ItemGroup>
<PackageReference Include="Alba" Version="7.4.1" />
<PackageReference Include="bunit" Version="1.28.9" />
<PackageReference Include="bunit" Version="1.29.5" />
<PackageReference Include="FluentAssertions" Version="6.12.0" />
<PackageReference Include="FluentAssertions.Analyzers" Version="0.31.0">
<PackageReference Include="FluentAssertions.Analyzers" Version="0.33.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.10.0" />
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="7.5.2" />
<PackageReference Include="xunit" Version="2.8.0" />
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="7.6.3" />
<PackageReference Include="xunit" Version="2.9.0" />
<PackageReference Include="SystemTextJson.JsonDiffPatch.Xunit" Version="2.0.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.0">
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
Expand Down

0 comments on commit 75cf97a

Please sign in to comment.