Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update dependency sentry.aspnetcore to 3.41.4 #456

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 15, 2023

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
Sentry.AspNetCore (source) 3.25.0 -> 3.41.4 age adoption passing confidence

Release Notes

getsentry/sentry-dotnet (Sentry.AspNetCore)

v3.41.4

Compare Source

Fixes
  • Fixed an issue when using the SDK together with Open Telemetry 1.5.0 and newer where the SDK would create transactions for itself. The fix is backward compatible. (#​3001)

v3.41.3

Compare Source

Fixes
  • Fixed Sentry SDK has not been initialised when using ASP.NET Core, Serilog, and OpenTelemetry (#​2918)

v3.41.2

Compare Source

Fixes
Dependencies

v3.41.1

Compare Source

Fixes
  • CaptureFailedRequests and FailedRequestStatusCodes are now getting respected by the Cocoa SDK. This is relevant for MAUI apps where requests are getting handled natively. (#​2826)
  • Added SentryOptions.AutoRegisterTracing for users who need to control registration of Sentry's tracing middleware (#​2871)
Dependencies

v3.41.0

Compare Source

Features
Fixes
  • Fixed chaining on the IApplicationBuilder for methods like UseRouting and UseEndpoints (#​2726)
Dependencies

v3.40.1

Compare Source

Fixes
  • ISentryUserFactory is now public so users can register their own implementations via DI (#​2719)

v3.40.0

Compare Source

Obsoletion
  • WithScope and WithScopeAsync have been proven to not work correctly in desktop contexts when using a global scope. They are now deprecated in favor of the overloads of CaptureEvent, CaptureMessage, and CaptureException. Those methods provide a callback to a configurable scope. (#​2677)
  • StackFrame.InstructionOffset has not been used in the SDK and has been ignored on the server for years. (#​2689)
Features
  • Release of Azure Functions (Isolated Worker/Out-of-Process) support (#​2686)
Fixes
  • Scope is now correctly applied to Transactions when using OpenTelemetry on ASP.NET Core (#​2690)
Dependencies

v3.39.1

Compare Source

Fixes
  • Added Sentry.AspNet.csproj back to Sentry-CI-Build-macOS.slnf (#​2612)

v3.39.0

Features
  • Added additional DB attributes to automatically generated spans like name and provider (#​2583)
  • Hints now accept attachments provided as a file path via AddAttachment method (#​2585)
Fixes
  • Resolved an isse where the SDK would throw an exception while attempting to set the DynamicSamplingContext but the context exists already. (#​2592)
Dependencies

v3.36.0

Compare Source

Features
Fixes
  • Android: Fix proguard/r8 mapping file upload (#​2574)
Dependencies

v3.35.1

Compare Source

Fixes
  • The SDK no longer creates transactions with their start date set to Jan 01, 001 (#​2544)
Dependencies

v3.35.0

Compare Source

Features
  • Distributed tracing now works independently of the performance feature. This allows you to connect errors to other Sentry instrumented applications (#​2493)
  • Added Sampling Decision to Trace Envelope Header (#​2495)
  • Add MinimumEventLevel to Sentry.Log4Net and convert events below it to breadcrumbs (#​2505)
  • Support transaction finishing automatically with 'idle timeout' (#​2452)
Fixes
  • Fixed baggage propagation when an exception is thrown from middleware (#​2487)
  • Fix Durable Functions preventing orchestrators from completing (#​2491)
  • Re-enable HubTests.FlushOnDispose_SendsEnvelope (#​2492)
  • Fixed SDK not sending exceptions via Blazor WebAssembly due to a PlatformNotSupportedException (#​2506)
  • Align SDK with docs regarding session update for dropped events (#​2496)
  • Introduced HttpMessageHandler in favor of the now deprecated HttpClientHandler on the options. This allows the SDK to support NSUrlSessionHandler on iOS (#​2503)
  • Using Activity.RecordException now correctly updates the error status of OpenTelemetry Spans (#​2515)
  • Fixed Transaction name not reporting correctly when using UseExceptionHandler (#​2511)
  • log4net logging Level.All now maps to SentryLevel.Debug url-dotnet/pull/2522)))
Dependencies

v3.34.0

Compare Source

Features
  • OpenTelemetry Support (#​2453)
  • Added a MSBuild property SentryUploadAndroidProguardMapping to automatically upload the Proguard mapping file when targeting Android (#​2455)
  • Symbolication for Single File Apps (#​2425)
  • Add binding to SwiftAsyncStacktraces on iOS (#​2436)
Fixes
  • Builds targeting Android with r8 enabled no longer crash during SDK init. The package now contains the required proguard rules (#​2450)
  • Fix Sentry logger options for MAUI and Azure Functions (#​2423)
Dependencies

v3.33.1

Compare Source

Fixes
  • SentryHttpMessageHandler added when AddHttpClient is before UseSentry (#​2390)
  • Set the native sdk name for Android (#​2389)
  • Fix db connection spans not finishing (#​2398)
  • Various .NET MAUI fixes / improvements (#​2403)
    • The battery level was being reported incorrectly due to percentage multiplier.
    • The device architecture (x64, arm64, etc.) is now reported
    • On Windows, the OS type is now reported as "Windows" instead of "WinUI". Additionally, the OS display version (ex, "22H2") is now included.
    • UIKit, ABI.Microsoft and WinRT frames are now marked "system" instead of "in app".
  • Reduce debug files uploaded (#​2404)
  • Fix system frames being marked as "in-app" (#​2408)
    • NOTE: This important fix corrects a value that is used during issue grouping, so you may receive new alerts for existing issues after deploying this update.
  • DB Connection spans presented poorly (#​2409)
  • Populate scope's Cookies property (#​2411)
  • Fix UWP GateKeeper errors (#​2415)
  • Fix sql client db name (#​2418)
Dependencies

v3.33.0

Compare Source

Features
  • .NET SDK changes for exception groups (#​2287)
    • This changes how AggregateException is handled. Instead of filtering them out client-side, the SDK marks them as an "exception group",
      and adds includes data that represents the hierarchical structure of inner exceptions. Sentry now recognizes this server-side,
      improving the accuracy of the issue detail page.
    • Accordingly, the KeepAggregateException option is now obsolete and does nothing. Please remove any usages of KeepAggregateException.
    • NOTE: If running Self-Hosted Sentry, you should wait to adopt this SDK update until after updating to the 23.6.0 (est. June 2023) release of Sentry.
      The effect of updating the SDK early will be as if KeepAggregateException = true was set. That will not break anything, but may affect issue grouping and alerts.
Fixes
  • Status messages when uploading symbols or sources are improved. (#​2307)
Dependencies

v3.32.0

Compare Source

Features
  • Azure Functions (Isolated Worker/Out-of-Process) support (#​2346)

    • Initial beta.1 release. Please give it a try and let us know how it goes!
    • Documentation is TBD. For now, see /samples/Sentry.Samples.Azure.Functions.Worker.
  • Add Hint support (#​2351)

    • Currently, this allows you to manipulate attachments in the various "before" event delegates.
    • Hints can also be used in event and transaction processors by implementing ISentryEventProcessorWithHint or ISentryTransactionProcessorWithHint, instead of ISentryEventProcessor or ISentryTransactionProcessor.
    • Note: Obsoletes the BeforeSend, BeforeSendTransaction, and BeforeBreadcrumb properties on the SentryOptions class. They have been replaced with SetBeforeSend, SetBeforeSendTransaction, and SetBeforeBreadcrumb respectively. Each one provides overloads both with and without a Hint object.
  • Allow setting the active span on the scope (#​2364)

    • Note: Obsoletes the Scope.GetSpan method in favor of a Scope.Span property (which now has a setter as well).
  • Remove authority from URLs sent to Sentry (#​2365)

  • Add tag filters to SentryOptions (#​2367)

Fixes
  • Fix EnableTracing option conflict with TracesSampleRate (#​2368)

    • NOTE: This is a potentially breaking change, as the TracesSampleRate property has been made nullable.
      Though extremely uncommon, if you are retrieving the TracesSampleRate property for some reason, you will need to account for nulls.
      However, there is no change to the behavior or typical usage of either of these properties.
  • CachedTransport gracefully handles malformed envelopes during processing (#​2371)

  • Remove extraneous iOS simulator resources when building MAUI apps using Visual Studio "Hot Restart" mode, to avoid hitting Windows max path (#​2384)

Dependencies

v3.31.0

Compare Source

Features
  • Initial work to support profiling in a future release. (#​2206)
  • Create a Sentry event for failed HTTP requests (#​2320)
  • Improve WithScope and add WithScopeAsync (#​2303) (#​2309)
  • Build .NET Standard 2.1 for Unity (#​2328)
  • Add RemoveExceptionFilter, RemoveEventProcessor and RemoveTransactionProcessor extension methods on SentryOptions (#​2331)
  • Include Dynamic Sampling Context with error events, when there's a transaction (#​2332)
Fixes
  • Buffer payloads asynchronously when appropriate (#​2297)
  • Restore System.Reflection.Metadata dependency for .NET Core 3 (#​2302)
  • Capture open transactions on disabled hubs (#​2319)
  • Remove session breadcrumbs (#​2333)
  • Support synchronous HttpClient.Send in SentryHttpMessageHandler (#​2336)
  • Fix ASP.NET Core issue with missing context when using capture methods that configure scope (#​2339)
  • Improve debug file upload handling (#​2349)
Dependencies

v3.30.0

Compare Source

Features
  • Add FileDiagnosticLogger to assist with debugging the SDK (#​2242)
  • Attach stack trace when events have captured an exception without a stack trace (#​2266)
  • Add Scope.Clear and Scope.ClearBreadcrumbs methods (#​2284)
  • Improvements to exception mechanism data (#​2294)
Fixes
  • Normalize StackFrame in-app resolution for modules & function prefixes (#​2234)
  • Calling AddAspNet more than once should not block all errors from being sent (#​2253)
  • Fix Sentry CLI arguments when using custom URL or auth token parameters (#​2259)
  • Sentry.AspNetCore fix transaction name when path base is used and route starts with a slash (#​2265)
  • Fix Baggage header parsing in ASP.NET (Framework) (#​2293)
Dependencies

v3.29.1

Compare Source

Fixes
  • Get debug image for Full PDB format on Windows (#​2222)
  • Fix debug files not uploading for packages.config nuget (#​2224)
Dependencies

v3.29.0

Compare Source

Notice: The <SentryUploadSymbols> MSBuild property previously defaulted to true for projects compiled in Release configuration.
It is now false by default. To continue uploading symbols, you must opt-in by setting it to true.
See the MSBuild Setup docs for further details.

Features
  • Added basic functionality to support View Hierarchy (#​2163)
  • Allow SentryUploadSources to work even when not uploading symbols (#​2197)
  • Add support for BeforeSendTransaction (#​2188)
  • Add EnableTracing option to simplify enabling tracing (#​2201)
  • Make SentryUploadSymbols strictly opt-in (#​2216)
Fixes
  • Fix assembly not found on Android in Debug configuration (#​2175)
  • Fix context object with circular reference prevents event from being sent (#​2210)
Dependencies

v3.28.1

Compare Source

Fixes
  • Fix MAUI missing breadcrumbs for lifecycle and UI events (#​2170)
  • Fix hybrid sdk names (#​2171)
  • Fix ASP.NET sdk name (#​2172)

v3.28.0

Compare Source

Features
  • Added instruction_addr_adjustment attribute to SentryStackTrace (#​2151)
Fixes
  • Workaround Visual Studio "Pair to Mac" issue (on Windows), and Update bundled Cocoa SDK to version 7.31.5 (#​2164)
  • Sentry SDK assemblies no longer have PDBs embedded. Debug symbols are uploaded to nuget.org as snupkg packages (#​2166)
Dependencies

v3.27.1

Compare Source

Fixes
  • Fix Sentry CLI MSBuild for Xamarin and NetFX (#​2154)
  • Log aborted HTTP requests as debug instead of error (#​2155)

v3.27.0

Compare Source

Features
  • Publish Sentry.Android.AssemblyReader as a separate nuget package (for reuse by Sentry.Xamarin) (#​2127)
  • Improvements for Sentry CLI integration (#​2145)
  • Update bundled Android SDK to version 6.13.0 (#​2147)

v3.26.2

Compare Source

Fixes

v3.26.1

Compare Source

Fixes
  • Fix issue with Sentry CLI msbuild properties (#​2119)

v3.26.0

Compare Source

Features
  • Use Sentry CLI after build to upload symbols (#​2107)
Fixes
  • Logging info instead of warning when skipping debug images (#​2101)
  • Fix unhandled exception not captured when hub disabled (#​2103)
  • Fix Android support for Portable PDB format when app uses split APKs (#​2108)
  • Fix session ending as crashed for unobserved task exceptions (#​2112)
  • Set absolute path when stripping project path on stack frame (#​2117)

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/sentry-dotnet-monorepo branch from c03365c to 1df74a1 Compare January 18, 2023 05:32
@renovate renovate bot changed the title chore(deps): update dependency sentry.aspnetcore to v3.26.0 chore(deps): update dependency sentry.aspnetcore to v3.26.1 Jan 18, 2023
@renovate renovate bot force-pushed the renovate/sentry-dotnet-monorepo branch from 1df74a1 to 60a5f45 Compare January 24, 2023 23:12
@renovate renovate bot changed the title chore(deps): update dependency sentry.aspnetcore to v3.26.1 chore(deps): update dependency sentry.aspnetcore to v3.26.2 Jan 25, 2023
@renovate renovate bot force-pushed the renovate/sentry-dotnet-monorepo branch from 60a5f45 to 726c697 Compare February 1, 2023 03:49
@renovate renovate bot changed the title chore(deps): update dependency sentry.aspnetcore to v3.26.2 chore(deps): update dependency sentry.aspnetcore to v3.27.0 Feb 1, 2023
@renovate renovate bot force-pushed the renovate/sentry-dotnet-monorepo branch from 726c697 to c19e7f4 Compare February 3, 2023 21:12
@renovate renovate bot changed the title chore(deps): update dependency sentry.aspnetcore to v3.27.0 chore(deps): update dependency sentry.aspnetcore to v3.27.1 Feb 4, 2023
@renovate renovate bot force-pushed the renovate/sentry-dotnet-monorepo branch from c19e7f4 to 0bbd8a0 Compare February 8, 2023 20:59
@renovate renovate bot changed the title chore(deps): update dependency sentry.aspnetcore to v3.27.1 chore(deps): update dependency sentry.aspnetcore to v3.28.0 Feb 9, 2023
@renovate renovate bot force-pushed the renovate/sentry-dotnet-monorepo branch from 0bbd8a0 to 45b257f Compare February 10, 2023 17:38
@renovate renovate bot changed the title chore(deps): update dependency sentry.aspnetcore to v3.28.0 chore(deps): update dependency sentry.aspnetcore to v3.28.1 Feb 10, 2023
@renovate renovate bot force-pushed the renovate/sentry-dotnet-monorepo branch from 45b257f to 67e4886 Compare March 7, 2023 04:56
@renovate renovate bot changed the title chore(deps): update dependency sentry.aspnetcore to v3.28.1 chore(deps): update dependency sentry.aspnetcore to v3.29.0 Mar 7, 2023
@renovate renovate bot changed the title chore(deps): update dependency sentry.aspnetcore to v3.29.0 chore(deps): update dependency sentry.aspnetcore to v3.29.1 Mar 22, 2023
@renovate renovate bot force-pushed the renovate/sentry-dotnet-monorepo branch from 67e4886 to 9ff6c8a Compare March 22, 2023 23:42
@renovate renovate bot force-pushed the renovate/sentry-dotnet-monorepo branch from 9ff6c8a to bfdf024 Compare April 17, 2023 10:48
@renovate renovate bot changed the title chore(deps): update dependency sentry.aspnetcore to v3.29.1 chore(deps): update dependency sentry.aspnetcore to v3.30.0 Apr 17, 2023
@renovate renovate bot changed the title chore(deps): update dependency sentry.aspnetcore to v3.30.0 chore(deps): update dependency sentry.aspnetcore to v3.33.0 May 28, 2023
@renovate renovate bot force-pushed the renovate/sentry-dotnet-monorepo branch from bfdf024 to 23fb109 Compare May 28, 2023 08:42
@renovate renovate bot changed the title chore(deps): update dependency sentry.aspnetcore to v3.33.0 chore(deps): update dependency sentry.aspnetcore to v3.33.1 Jun 14, 2023
@renovate renovate bot force-pushed the renovate/sentry-dotnet-monorepo branch from 23fb109 to 801452d Compare June 14, 2023 01:13
@renovate renovate bot changed the title chore(deps): update dependency sentry.aspnetcore to v3.33.1 chore(deps): update dependency sentry.aspnetcore to v3.34.0 Jul 13, 2023
@renovate renovate bot force-pushed the renovate/sentry-dotnet-monorepo branch from 801452d to 82598a0 Compare July 13, 2023 10:10
@renovate renovate bot force-pushed the renovate/sentry-dotnet-monorepo branch from 82598a0 to 8aee1b1 Compare August 8, 2023 17:12
@renovate renovate bot changed the title chore(deps): update dependency sentry.aspnetcore to v3.34.0 chore(deps): update dependency sentry.aspnetcore to v3.35.0 Aug 8, 2023
@renovate renovate bot force-pushed the renovate/sentry-dotnet-monorepo branch from 8aee1b1 to 2098ac1 Compare August 16, 2023 20:02
@renovate renovate bot changed the title chore(deps): update dependency sentry.aspnetcore to v3.35.0 chore(deps): update dependency sentry.aspnetcore to v3.35.1 Aug 16, 2023
@renovate renovate bot changed the title chore(deps): update dependency sentry.aspnetcore to v3.35.1 chore(deps): update dependency sentry.aspnetcore to v3.36.0 Aug 23, 2023
@renovate renovate bot force-pushed the renovate/sentry-dotnet-monorepo branch from 2098ac1 to 9adf4af Compare August 23, 2023 01:21
@renovate renovate bot force-pushed the renovate/sentry-dotnet-monorepo branch from 9adf4af to efd7e01 Compare September 6, 2023 13:44
@renovate renovate bot changed the title chore(deps): update dependency sentry.aspnetcore to v3.36.0 chore(deps): update dependency sentry.aspnetcore to v3.37.0 Sep 6, 2023
@renovate renovate bot force-pushed the renovate/sentry-dotnet-monorepo branch from efd7e01 to 92f7c9b Compare September 6, 2023 20:51
@renovate renovate bot changed the title chore(deps): update dependency sentry.aspnetcore to v3.37.0 chore(deps): update dependency sentry.aspnetcore to v3.38.0 Sep 6, 2023
@renovate renovate bot force-pushed the renovate/sentry-dotnet-monorepo branch from 92f7c9b to 40fa3af Compare September 7, 2023 09:25
@renovate renovate bot changed the title chore(deps): update dependency sentry.aspnetcore to v3.38.0 chore(deps): update dependency sentry.aspnetcore to v3.39.0 Sep 7, 2023
@renovate renovate bot force-pushed the renovate/sentry-dotnet-monorepo branch from 40fa3af to d6eaea3 Compare September 12, 2023 10:24
@renovate renovate bot changed the title chore(deps): update dependency sentry.aspnetcore to v3.39.0 chore(deps): update dependency sentry.aspnetcore to v3.39.1 Sep 12, 2023
@renovate renovate bot force-pushed the renovate/sentry-dotnet-monorepo branch from d6eaea3 to 7c93600 Compare October 10, 2023 14:02
@renovate renovate bot changed the title chore(deps): update dependency sentry.aspnetcore to v3.39.1 chore(deps): update dependency sentry.aspnetcore to v3.40.0 Oct 10, 2023
@renovate renovate bot force-pushed the renovate/sentry-dotnet-monorepo branch from 7c93600 to ac62236 Compare October 12, 2023 13:47
@renovate renovate bot changed the title chore(deps): update dependency sentry.aspnetcore to v3.40.0 chore(deps): update dependency sentry.aspnetcore to v3.40.1 Oct 12, 2023
@renovate renovate bot force-pushed the renovate/sentry-dotnet-monorepo branch from ac62236 to 682c4cf Compare November 8, 2023 21:30
@renovate renovate bot changed the title chore(deps): update dependency sentry.aspnetcore to v3.40.1 chore(deps): update dependency sentry.aspnetcore to v3.41.0 Nov 8, 2023
@renovate renovate bot force-pushed the renovate/sentry-dotnet-monorepo branch from 682c4cf to c7f4a96 Compare November 23, 2023 00:48
@renovate renovate bot changed the title chore(deps): update dependency sentry.aspnetcore to v3.41.0 chore(deps): update dependency sentry.aspnetcore to v3.41.1 Nov 23, 2023
@renovate renovate bot force-pushed the renovate/sentry-dotnet-monorepo branch from c7f4a96 to 66402a7 Compare November 24, 2023 01:08
@renovate renovate bot changed the title chore(deps): update dependency sentry.aspnetcore to v3.41.1 chore(deps): update dependency sentry.aspnetcore to v3.41.2 Nov 24, 2023
@renovate renovate bot force-pushed the renovate/sentry-dotnet-monorepo branch from 66402a7 to 260c591 Compare November 29, 2023 14:18
@renovate renovate bot changed the title chore(deps): update dependency sentry.aspnetcore to v3.41.2 chore(deps): update dependency sentry.aspnetcore to v3.41.3 Nov 29, 2023
@renovate renovate bot force-pushed the renovate/sentry-dotnet-monorepo branch from 260c591 to 7fc9e8d Compare January 23, 2024 16:00
@renovate renovate bot changed the title chore(deps): update dependency sentry.aspnetcore to v3.41.3 chore(deps): update dependency sentry.aspnetcore to v3.41.4 Jan 23, 2024
@renovate renovate bot changed the title chore(deps): update dependency sentry.aspnetcore to v3.41.4 chore(deps): update dependency sentry.aspnetcore to 3.41.4 Aug 28, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants