Skip to content

Commit

Permalink
Merge pull request #1415 from DFE-Digital/dependabot/nuget/Sentry.Asp…
Browse files Browse the repository at this point in the history
…NetCore-4.6.2

Bump Sentry.AspNetCore from 3.33.0 to 4.6.2
  • Loading branch information
martyn-w authored May 23, 2024
2 parents 86662db + d8c1d7e commit 7add09c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion GetIntoTeachingApi/GetIntoTeachingApi.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
<PackageReference Include="Otp.NET" Version="1.4.0" />
<PackageReference Include="ProjNET4GeoAPI" Version="1.4.1" />
<PackageReference Include="prometheus-net.AspNetCore" Version="8.2.1" />
<PackageReference Include="Sentry.AspNetCore" Version="3.33.0" />
<PackageReference Include="Sentry.AspNetCore" Version="4.6.2" />
<PackageReference Include="Serilog.AspNetCore" Version="8.0.1" />
<PackageReference Include="Serilog.Settings.Configuration" Version="8.0.0" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System;
using System;
using System.Linq;
using AspNetCoreRateLimit;
using GetIntoTeachingApi.Adapters;
Expand All @@ -25,6 +25,8 @@ public ContractTestGitWebApplicationFactory(ContractTestState state)

protected override void ConfigureWebHost(IWebHostBuilder builder)
{
builder.UseSentry(dsn: "");

builder.ConfigureServices(services =>
{
// Use in-memory rate limit counters for tests.
Expand Down
2 changes: 2 additions & 0 deletions GetIntoTeachingApiTests/Helpers/GitWebApplicationFactory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ public class GitWebApplicationFactory<TStartup>
{
protected override void ConfigureWebHost(IWebHostBuilder builder)
{
builder.UseSentry(dsn: "");

builder.ConfigureServices(services =>
{
// Remove Redis rate limiting.
Expand Down

0 comments on commit 7add09c

Please sign in to comment.