Skip to content

Commit

Permalink
Merge branch 'dependabot/nuget/Sentry.AspNetCore-4.6.2' of https://gi…
Browse files Browse the repository at this point in the history
…thub.com/DFE-Digital/get-into-teaching-api into dependabot/nuget/Sentry.AspNetCore-4.6.2
  • Loading branch information
martyn-w committed May 20, 2024
2 parents fe77ca3 + bc1f738 commit ab245c8
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
9 changes: 5 additions & 4 deletions GetIntoTeachingApi/AppStart/ServiceCollectionExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -131,10 +131,11 @@ public static void AddHangfire(this IServiceCollection services, IEnv env, bool
config.UseMemoryStorage().WithJobExpirationTimeout(JobConfiguration.ExpirationTimeout);
}
else
{ config.UsePostgreSqlStorage(DbConfiguration.HangfireConnectionString(env), new PostgreSqlStorageOptions
{
SchemaName = "hangfire_postgres"
});
{
config.UsePostgreSqlStorage(options =>
options.UseNpgsqlConnection(DbConfiguration.HangfireConnectionString(env)),
new PostgreSqlStorageOptions { SchemaName = "hangfire_postgres" }
);
}
});

Expand Down
6 changes: 3 additions & 3 deletions GetIntoTeachingApi/GetIntoTeachingApi.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
<PackageReference Include="Swashbuckle.AspNetCore.Annotations" Version="6.5.0" />
<PackageReference Include="System.IO.Compression.ZipFile" Version="4.3.0" />
<PackageReference Include="dotenv.net" Version="3.1.3" />
<PackageReference Include="YamlDotNet" Version="13.1.0" />
<PackageReference Include="YamlDotNet" Version="15.1.4" />
<PackageReference Include="Fody" Version="6.8.0">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
Expand All @@ -60,10 +60,10 @@
<PackageReference Include="Castle.Core" Version="5.1.1" />
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="8.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="7.0.18" />
<PackageReference Include="Hangfire.PostgreSql" Version="1.19.12" />
<PackageReference Include="Hangfire.PostgreSql" Version="1.20.8" />
<PackageReference Include="Microsoft.PowerPlatform.Dataverse.Client" Version="1.1.17" />
<PackageReference Include="FluentValidation.AspNetCore" Version="11.3.0" />
<PackageReference Include="Microsoft.Extensions.Caching.StackExchangeRedis" Version="8.0.4" />
<PackageReference Include="Microsoft.Extensions.Caching.StackExchangeRedis" Version="8.0.5" />
<PackageReference Include="Microsoft.AspNetCore.DataProtection.StackExchangeRedis" Version="8.0.3" />
</ItemGroup>

Expand Down
2 changes: 1 addition & 1 deletion GetIntoTeachingApiTests/GetIntoTeachingApiTests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<PackageReference Include="Moq" Version="4.20.70" />
<PackageReference Include="WireMock.Net" Version="1.5.53" />
<PackageReference Include="xunit" Version="2.7.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.8"><IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.0"><IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="coverlet.collector" Version="6.0.2"><IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
Expand Down

0 comments on commit ab245c8

Please sign in to comment.