This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [Sentry.AspNetCore](https://sentry.io/) ([source](https://github.com/getsentry/sentry-dotnet)) | nuget | minor | `5.1.1` -> `5.4.0` | --- ### Release Notes <details> <summary>getsentry/sentry-dotnet (Sentry.AspNetCore)</summary> ### [`v5.4.0`](https://github.com/getsentry/sentry-dotnet/blob/HEAD/CHANGELOG.md#540) [Compare Source](https://github.com/getsentry/sentry-dotnet/compare/5.3.0...5.4.0) ##### Enhancements - Profiling: improve performance by subscribing only to necessary CLR events ([#​3970](https://github.com/getsentry/sentry-dotnet/pull/3970)) ##### Fixes - Unknown stack frames in profiles on .NET 8+ ([#​3967](https://github.com/getsentry/sentry-dotnet/pull/3967)) - Missing MAUI `Shell` navigation breadcrumbs on iOS ([#​4006](https://github.com/getsentry/sentry-dotnet/pull/4006)) ### [`v5.3.0`](https://github.com/getsentry/sentry-dotnet/blob/HEAD/CHANGELOG.md#530) [Compare Source](https://github.com/getsentry/sentry-dotnet/compare/5.2.0...5.3.0) ##### Features - User Feedback can now be captured without errors/exceptions. Note that these APIs replace the older UserFeedback APIs, which have now been marked as obsolete (and will be removed in a future major version bump) ([#​3981](https://github.com/getsentry/sentry-dotnet/pull/3981)) ##### Fixes - Using SentryOptions.Native.SuppressExcBadAccess and SentryOptions.Native.SuppressSignalAborts, users can now block duplicate errors from native due to dotnet NullReferenceExceptions - Defaults to false ([#​3998](https://github.com/getsentry/sentry-dotnet/pull/3998)) - Native iOS events are now exposed to the dotnet layer for users to hook through SentryOptions.BeforeSend and SentryOptions.OnCrashedLastRun ([#​2102](https://github.com/getsentry/sentry-dotnet/pull/3958)) - Prevent crashes from occurring on Android during OnBeforeSend ([#​4022](https://github.com/getsentry/sentry-dotnet/pull/4022)) ##### Dependencies - Bump Native SDK from v0.8.0 to v0.8.1 ([#​4014](https://github.com/getsentry/sentry-dotnet/pull/4014)) - [changelog](https://github.com/getsentry/sentry-native/blob/master/CHANGELOG.md#081) - [diff](https://github.com/getsentry/sentry-native/compare/0.8.0...0.8.1) ### [`v5.2.0`](https://github.com/getsentry/sentry-dotnet/blob/HEAD/CHANGELOG.md#520) [Compare Source](https://github.com/getsentry/sentry-dotnet/compare/5.1.1...5.2.0) ##### Features - Users can now register their own MAUI controls for breadcrumb creation ([#​3997](https://github.com/getsentry/sentry-dotnet/pull/3997)) - Serilog scope properties are now sent with Sentry events ([#​3976](https://github.com/getsentry/sentry-dotnet/pull/3976)) - The sample seed used for sampling decisions is now propagated, for use in downstream custom trace samplers ([#​3951](https://github.com/getsentry/sentry-dotnet/pull/3951)) - Add Azure Function UseSentry overloads for easier wire ups ([#​3971](https://github.com/getsentry/sentry-dotnet/pull/3971)) ##### Fixes - Fix mismapped breadcrumb levels coming in from native to dotnet SDK ([#​3993](https://github.com/getsentry/sentry-dotnet/pull/3993)) - Deduplicate profiling stack frames ([#​3969](https://github.com/getsentry/sentry-dotnet/pull/3969)) ##### Dependencies - Bump CLI from v2.41.1 to v2.42.2 ([#​3979](https://github.com/getsentry/sentry-dotnet/pull/3979), [#​4002](https://github.com/getsentry/sentry-dotnet/pull/4002)) - [changelog](https://github.com/getsentry/sentry-cli/blob/master/CHANGELOG.md#2422) - [diff](https://github.com/getsentry/sentry-cli/compare/2.41.1...2.42.2) - Bump Native SDK from v0.7.20 to v0.8.0 ([#​4003](https://github.com/getsentry/sentry-dotnet/pull/4003)) - [changelog](https://github.com/getsentry/sentry-native/blob/master/CHANGELOG.md#080) - [diff](https://github.com/getsentry/sentry-native/compare/0.7.20...0.8.0) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNjYuMCIsInVwZGF0ZWRJblZlciI6IjM5LjIxMS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJLaW5kL1Jlbm92YXRlIl19--> Reviewed-on: #23 Co-authored-by: Renovate <renovate@csw.im> Co-committed-by: Renovate <renovate@csw.im>
25 lines
1.1 KiB
XML
25 lines
1.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<RootNamespace>LookingGlass</RootNamespace>
|
|
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
<NoWarn>$(NoWarn);1591</NoWarn>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="Util\SwaggerTheme\modern.custom.css" />
|
|
<PackageReference Include="AspNetCore.SwaggerUI.Themes" Version="2.0.0" />
|
|
<PackageReference Include="EnumStringValues" Version="4.0.2" />
|
|
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="9.0.3" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.3" />
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
|
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="9.0.4" />
|
|
<PackageReference Include="Sentry.AspNetCore" Version="5.4.0" />
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="8.0.0" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|