Skip to content

Commit

Permalink
downgrade npgsql deps (#316)
Browse files Browse the repository at this point in the history
  • Loading branch information
acn-sbuad authored Jan 18, 2024
1 parent ffdcae4 commit e64f4b9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/Storage/Altinn.Platform.Storage.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
<PackageReference Include="Swashbuckle.AspNetCore.Newtonsoft" Version="6.5.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="System.Text.RegularExpressions" Version="4.3.1" />
<PackageReference Include="Npgsql" Version="8.0.1" />
<PackageReference Include="Npgsql.DependencyInjection" Version="8.0.1" />
<PackageReference Include="Npgsql" Version="7.0.6" />
<PackageReference Include="Npgsql.DependencyInjection" Version="7.0.6" />
<PackageReference Include="Yuniql.AspNetCore" Version="1.2.25" />
<PackageReference Include="Yuniql.PostgreSql" Version="1.3.15" />
</ItemGroup>
Expand Down
3 changes: 1 addition & 2 deletions test/UnitTest/Extensions/ServiceCollectionExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ public static IServiceCollection AddPostgresRepositories(this IServiceCollection
.AddSingleton<IInstanceEventRepository, PgInstanceEventRepository>()
.AddSingleton<IInstanceRepository, PgInstanceRepository>()
.AddSingleton<IBlobRepository, BlobRepository>()
.AddNpgsqlDataSource(connectionString, builder =>
builder.EnableDynamicJson());
.AddNpgsqlDataSource(connectionString);
}
}

0 comments on commit e64f4b9

Please sign in to comment.