Skip to content
Merged
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
2 changes: 1 addition & 1 deletion aspire/Kalandra.AppHost/Kalandra.AppHost.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<ItemGroup>
<PackageReference Include="Aspire.Hosting.NodeJs" Version="9.5.2" />
<PackageReference Include="Aspire.Hosting.PostgreSQL" Version="13.3.4" />
<PackageReference Include="Aspire.Hosting.PostgreSQL" Version="13.3.5" />
</ItemGroup>

<PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using JasperFx;
using JasperFx.OpenTelemetry;
using Kalandra.Api.Infrastructure.Auth;
using Kalandra.Infrastructure.Auth;
using Kalandra.Infrastructure.Storage;
Expand Down
2 changes: 1 addition & 1 deletion backend/src/Kalandra.Api/Kalandra.Api.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<PackageReference Include="AspNetCore.HealthChecks.UI.Client" Version="9.0.0" />
<PackageReference Include="Kalicz.StrongTypes" Version="1.1.0" />
<PackageReference Include="Kalicz.StrongTypes.OpenApi.Swashbuckle" Version="1.1.0" />
<PackageReference Include="Marten" Version="8.37.1" />
<PackageReference Include="Marten" Version="9.0.2" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="10.0.8" />
<PackageReference Include="OpenTelemetry.Exporter.OpenTelemetryProtocol" Version="1.15.3" />
<PackageReference Include="OpenTelemetry.Extensions.Hosting" Version="1.15.3" />
Expand Down
2 changes: 1 addition & 1 deletion backend/src/Kalandra.JobOffers/Kalandra.JobOffers.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<ItemGroup>
<PackageReference Include="Kalicz.StrongTypes" Version="1.1.0" />
<PackageReference Include="Marten" Version="8.37.1" />
<PackageReference Include="Marten" Version="9.0.2" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion backend/src/Kalandra.JobOffers/MartenConfiguration.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using JasperFx.Events.Projections;
using Kalandra.JobOffers.Entities;
using Marten;
using Marten.Events.Projections;

namespace Kalandra.JobOffers;

Expand Down
Loading