This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [Sentry.AspNetCore](https://sentry.io/) ([source](https://github.com/getsentry/sentry-dotnet)) | nuget | patch | `5.1.0` -> `5.1.1` | --- ### Release Notes <details> <summary>getsentry/sentry-dotnet (Sentry.AspNetCore)</summary> ### [`v5.1.1`](https://github.com/getsentry/sentry-dotnet/blob/HEAD/CHANGELOG.md#511) [Compare Source](https://github.com/getsentry/sentry-dotnet/compare/5.1.0...5.1.1) ##### Fixes - Emit transaction.data inside contexts.trace.data ([#​3936](https://github.com/getsentry/sentry-dotnet/pull/3936)) - Native SIGSEGV errors resulting from managed NullReferenceExceptions are now suppressed on Android ([#​3903](https://github.com/getsentry/sentry-dotnet/pull/3903)) - OTel activities that are marked as not recorded are no longer sent to Sentry ([#​3890](https://github.com/getsentry/sentry-dotnet/pull/3890)) - Fixed envelopes with oversized attachments getting stuck in \__processing ([#​3938](https://github.com/getsentry/sentry-dotnet/pull/3938)) - OperatingSystem will now return macOS as OS name instead of 'Darwin' as well as the proper version. ([#​2710](https://github.com/getsentry/sentry-dotnet/pull/3956)) - Ignore null value on CocoaScopeObserver.SetTag ([#​3948](https://github.com/getsentry/sentry-dotnet/pull/3948)) </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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNjYuMCIsInVwZGF0ZWRJblZlciI6IjM5LjE2Ni4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJLaW5kL1Jlbm92YXRlIl19--> Reviewed-on: #19 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.1" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.1" />
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
|
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="9.0.3" />
|
|
<PackageReference Include="Sentry.AspNetCore" Version="5.1.1" />
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="7.2.0" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|