Bump Sentry to 5.16.2

This commit is contained in:
Bogdan 2025-11-25 14:38:01 +02:00 committed by Mark McDowall
parent 26934a5d81
commit dd84bcd919
3 changed files with 2 additions and 6 deletions

View file

@ -109,10 +109,6 @@
<SentryUrl></SentryUrl> <!-- If empty, assumed to be sentry.io -->
<SentryAuthToken></SentryAuthToken> <!-- Use env var instead: SENTRY_AUTH_TOKEN -->
<!-- Upload PDBs to Sentry, enabling stack traces with line numbers and file paths
without the need to deploy the application with PDBs -->
<SentryUploadSymbols>true</SentryUploadSymbols>
<!-- Source Link settings -->
<!-- https://github.com/dotnet/sourcelink/blob/main/docs/README.md#publishrepositoryurl -->
<PublishRepositoryUrl>true</PublishRepositoryUrl>

View file

@ -13,7 +13,7 @@
<PackageReference Include="NLog.Layouts.ClefJsonLayout" Version="1.0.2" />
<PackageReference Include="NLog.Targets.Syslog" Version="7.0.0" />
<PackageReference Include="NLog.Extensions.Logging" Version="5.3.15" />
<PackageReference Include="Sentry" Version="4.0.2" />
<PackageReference Include="Sentry" Version="5.16.2" />
<PackageReference Include="SharpZipLib" Version="1.4.2" />
<PackageReference Include="SourceGear.sqlite3" Version="3.50.4.2" />
<PackageReference Include="System.Data.SQLite" Version="2.0.2" />

View file

@ -1,5 +1,4 @@
using Microsoft.AspNetCore.Mvc;
using NzbDrone.Common.TPL;
using NzbDrone.Core.Datastore.Events;
using NzbDrone.Core.Download.Pending;
using NzbDrone.Core.Download.TrackedDownloads;
@ -8,6 +7,7 @@
using NzbDrone.SignalR;
using Sonarr.Http;
using Sonarr.Http.REST;
using Debouncer = NzbDrone.Common.TPL.Debouncer;
namespace Sonarr.Api.V5.Queue
{