Skip to content

Commit 1e0687e

Browse files
Bump the nuget group with 2 updates (#141)
* Bump the nuget group with 2 updates Bumps Aspire.Hosting.PostgreSQL from 13.3.4 to 13.3.5 Bumps Marten from 8.37.1 to 9.0.2 --- updated-dependencies: - dependency-name: Aspire.Hosting.PostgreSQL dependency-version: 13.3.5 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget - dependency-name: Marten dependency-version: 9.0.2 dependency-type: direct:production update-type: version-update:semver-major dependency-group: nuget ... Signed-off-by: dependabot[bot] <support@github.com> * fix(backend): adapt to Marten 9 namespace moves Marten 9 relocated event-sourcing types into the JasperFx.* assemblies: SnapshotLifecycle now lives in JasperFx.Events.Projections and TrackLevel in JasperFx.OpenTelemetry. Update the using directives so the build compiles against Marten 9.0.2. https://claude.ai/code/session_01EkJghhpnaA3Hxs5tvB6jMQ --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Claude <noreply@anthropic.com>
1 parent b059cb8 commit 1e0687e

5 files changed

Lines changed: 5 additions & 4 deletions

File tree

aspire/Kalandra.AppHost/Kalandra.AppHost.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<ItemGroup>
88
<PackageReference Include="Aspire.Hosting.NodeJs" Version="9.5.2" />
9-
<PackageReference Include="Aspire.Hosting.PostgreSQL" Version="13.3.4" />
9+
<PackageReference Include="Aspire.Hosting.PostgreSQL" Version="13.3.5" />
1010
</ItemGroup>
1111

1212
<PropertyGroup>

backend/src/Kalandra.Api/Infrastructure/ServiceCollectionExtensions.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
using JasperFx;
2+
using JasperFx.OpenTelemetry;
23
using Kalandra.Api.Infrastructure.Auth;
34
using Kalandra.Infrastructure.Auth;
45
using Kalandra.Infrastructure.Storage;

backend/src/Kalandra.Api/Kalandra.Api.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<PackageReference Include="AspNetCore.HealthChecks.UI.Client" Version="9.0.0" />
1919
<PackageReference Include="Kalicz.StrongTypes" Version="1.1.0" />
2020
<PackageReference Include="Kalicz.StrongTypes.OpenApi.Swashbuckle" Version="1.1.0" />
21-
<PackageReference Include="Marten" Version="8.37.1" />
21+
<PackageReference Include="Marten" Version="9.0.2" />
2222
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="10.0.8" />
2323
<PackageReference Include="OpenTelemetry.Exporter.OpenTelemetryProtocol" Version="1.15.3" />
2424
<PackageReference Include="OpenTelemetry.Extensions.Hosting" Version="1.15.3" />

backend/src/Kalandra.JobOffers/Kalandra.JobOffers.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<ItemGroup>
1010
<PackageReference Include="Kalicz.StrongTypes" Version="1.1.0" />
11-
<PackageReference Include="Marten" Version="8.37.1" />
11+
<PackageReference Include="Marten" Version="9.0.2" />
1212
</ItemGroup>
1313

1414
<ItemGroup>

backend/src/Kalandra.JobOffers/MartenConfiguration.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1+
using JasperFx.Events.Projections;
12
using Kalandra.JobOffers.Entities;
23
using Marten;
3-
using Marten.Events.Projections;
44

55
namespace Kalandra.JobOffers;
66

0 commit comments

Comments
 (0)