Skip to content

Releases: getsentry/sentry-dotnet

3.41.1

22 Nov 23:16
Compare
Choose a tag to compare

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

4.0.0-beta.1

19 Nov 21:29
Compare
Choose a tag to compare
4.0.0-beta.1 Pre-release
Pre-release

Features

  • Sentry.Profiling is now packaged to be uploaded to nuget.org (#2800)

4.0.0-beta.0

17 Nov 14:34
Compare
Choose a tag to compare
4.0.0-beta.0 Pre-release
Pre-release

Fixes

  • Don't add WinUI exception integration on mobile platforms (#2821)
  • Transactions are now getting enriched by the client instead of the hub (#2838)

API breaking Changes

Removed APIs

  • A number of [Obsolete] options have been removed (#2841)
    • BeforeSend - use SetBeforeSend instead.
    • BeforeSendTransaction - use SetBeforeSendTransaction instead.
    • BeforeBreadcrumb - use SetBeforeBreadcrumb instead.
    • CreateHttpClientHandler - use CreateHttpMessageHandler instead.
    • ReportAssemblies - use ReportAssembliesMode instead.
    • KeepAggregateException - this property is no longer used and has no replacement.
    • DisableTaskUnobservedTaskExceptionCapture method has been renamed to DisableUnobservedTaskExceptionCapture.
    • DebugDiagnosticLogger - use TraceDiagnosticLogger instead.
  • A number of iOS/Android-specific [Obsolete] options have been removed (#2856)
    • Distribution - use SentryOptions.Distribution instead.
    • EnableAutoPerformanceTracking - use SetBeforeSendTransaction instead.
    • EnableCoreDataTracking - use EnableCoreDataTracing instead.
    • EnableFileIOTracking - use EnableFileIOTracing instead.
    • EnableOutOfMemoryTracking - use EnableWatchdogTerminationTracking instead.
    • EnableUIViewControllerTracking - use EnableUIViewControllerTracing instead.
    • StitchAsyncCode - no longer available.
    • ProfilingTracesInterval - no longer available.
    • ProfilingEnabled - use ProfilesSampleRate instead.
  • Obsolete SystemClock constructor removed, use SystemClock.Clock instead. (#2856)
  • Obsolete Runtime.Clone() removed, this shouldn't have been public in the past and has no replacement. (#2856)
  • Obsolete SentryException.Data removed, use SentryException.Mechanism.Data instead. (#2856)
  • Obsolete AssemblyExtensions removed, this shouldn't have been public in the past and has no replacement. (#2856)
  • Obsolete SentryDatabaseLogging.UseBreadcrumbs() removed, it is called automatically and has no replacement. (#2856)
  • Obsolete Scope.GetSpan() removed, use Span property instead. (#2856)
  • Obsolete IUserFactory removed, use ISentryUserFactory instead. (#2856, #2840)

Changed APIs

  • DebugImage and DebugMeta moved to Sentry.Protocol namespace. (#2815)
  • SentryClient.Dispose is no longer obsolete (#2842)

4.0.0-alpha.0

09 Nov 17:45
Compare
Choose a tag to compare
4.0.0-alpha.0 Pre-release
Pre-release

Breaking changes

The minimum version supported for different frameworks changed.
For more details on reasoning, please check this GitHub Discussion.

.NET Framework 4.6.1

.NET Framework 4.6.1 was announced in Nov 30, 2015. And went out of support over a year ago, on Apr 26, 2022.

  • Drop support for .NET Framework 4.6.1 in favor of 4.6.2 (#2786)

.NET 6 on mobile (e.g: net6.0-android)

.NET 6 on mobile is out of support since May 2023. With .NET 8 coming,
it won't be possible to build .NET 6 Mobile specific targets.
For that reason, we're moving the mobile specific TFMs from net6.0-platform to net7.0-platform.
Mobile apps still on .NET 6 will pull the Sentry .NET 6, which offers the .NET-only features,
without native/platform specific bindings and SDKs. See this ticket for more details.

  • Drop .NET 6 Mobile in favor of .NET 7 (#2624)

Tizen support dropped

  • Drop support for Tizen (#2734)

Dropping .NET Core 3.1 and .NET 5

  • Drop .NET Core 3.1 and .NET 5 support (#2787)

API Changes:

  • IHasMeasurements was removed. Use ISpanData instead. (#2659)

  • If null has been supplied as DSN when initializing Sentry, and ArgumentNullException is now thrown. (#2655)

  • IHasBreadcrumbs was removed. Use IEventLike instead. (#2670)

  • ISpanContext was removed. Use ITraceContext instead. (#2668)

  • Removed IHasTransactionNameSource. Use ITransactionContext instead. (#2654)

  • Adding Distribution to IEventLike. (#2660)

  • Upgraded to NLog version 5. (#2697)

  • Removed unused StackFrame.InstructionOffset. (#2691)

  • Change StackFrame's ImageAddress, InstructionAddress and FunctionId to long?. (#2691)

  • Change DebugImage.ImageAddress to long?. (#2725)

  • Enable CaptureFailedRequests by default (#2688)

  • Additional constructors removed from TransactionTracer. (#2694)

  • Removed the Scope.Platform property as it was never applied. (#2695)

  • Reordered parameters for ther TransactionContext and SpanContext constructors. If you're constructing instances of these classes, you will need to adjust the order in which you pass parameters to these. (#2696)

  • The DiagnosticLogger signature for LogError and LogFatal changed to take the exception as the first parameter. That way it does no longer get mixed up with the TArgs. The DiagnosticLogger now also received an overload for LogError and LogFatal that accepts a message only. (#2715)

  • Integrate sentry-native as a static library in Native AOT builds to enable symbolication. (#2704)

  • Contexts now inherits from IDictionary rather than ConcurrentDictionary. The specific dictionary being used is an implementation detail. (#2729)

  • ISentryClient.CaptureEvent overloads have been replaced by a single method accepting optional Hint and Scope parameters. You will need to pass hint as a named parameter from code that calls CaptureEvent without passing a scope argument. (#2749)

  • The methods WithScope and WithScopeAsync have been removed. We discovered that these methods didn't work correctly in certain desktop contexts, especially when using a global scope. (#2717)
    Replace your usage of WithScope with the overloads of the Capture methods:

    • SentrySdk.CaptureEvent(SentryEvent @event, Action<Scope> scopeCallback)
    • SentrySdk.CaptureMessage(string message, Action<Scope> scopeCallback)
    • SentrySdk.CaptureException(Exception exception, Action<Scope> scopeCallback)
    Before
    SentrySdk.WithScope(scope =>
    {
      // Configure your scope here
      scope.SetTag("key", "value");
      SentrySdk.CaptureEvent(new SentryEvent()); // Capture the event with the configured scope
    });
    
    After
    SentrySdk.CaptureEvent(new SentryEvent(), scope =>
    {
      // Configure your scope here
      scope.SetTag("key", "value");
    });
    
  • ISpan and ITransaction have been renamed to ISpanTracer and ITransactionTracer. You will need to update any references to these interfaces in your code to use the new interface names (#2731)

  • Removed obsolete setter from Sentry.PlatformAbstractions.Runtime.Identifier (2764)

  • Sentry.Values<T> is now internal as it is never exposed in the public API (#2771)

  • AOT compilation support for .NET 7+ has been added to Sentry, Sentry.Serilog, Sentry.Profiling, Sentry.OpenTelemetry and Sentry.NLog. There are some functional differences when compiling AOT:

    • Enhanced Stack Traces are not available when compiling AOT, as the mechanism to generate these ehanced stack traces currently relies heavily on reflection and isn't compatible with trimming.
    • Reflection cannot be leveraged for JSON Serialization and you may need to supply a JsonSerializationContext for types that you'd like to send to Sentry (e.g. in the Span.Context). You can use SentryOptions.AddJsonSerializerContext to supply your own context when initializing Sentry.
    • When compiling AOT, Sentry isn't able to automatically register an unhandled exception handler in WinUI applications, since that also relies on reflection. If you're using Sentry with a WinUI application and you want to use AOT compilation, you'll need to take care of registering the unhandled event handler yourself. TODO *** Fill in the gaps here when #2778 has been completed ***
    • (#2732), (#2793)
  • The TracePropagationTarget class has been removed. Use the SubstringOrRegexPattern class instead. (#2763)

  • Transaction names for ASP.NET Core are now consistently named HTTP-VERB /path (e.g. GET /home). Previously the leading forward slash might not have been present for some endpoints (#2808)

Sentry.Google.Cloud.Functions

  • Min version of Google.Cloud.Functions.Hosting supported 1.1.0 to 2.0.0 (#2787)

3.41.0

08 Nov 19:34
Compare
Choose a tag to compare
  • Speed up SDK init (#2784)

Fixes

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

Dependencies

3.40.1

12 Oct 11:06
Compare
Choose a tag to compare

Fixes

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

3.40.0

10 Oct 10:53
Compare
Choose a tag to compare

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

3.40.0-beta.0

21 Sep 13:05
Compare
Choose a tag to compare
3.40.0-beta.0 Pre-release
Pre-release

Features

  • Reduced the memory footprint of SpanId by refactoring the ID generation (2619)
  • Reduced the memory footprint of SpanTracer by initializing the tags lazily (2636)
  • Added distributed tracing without performance for Azure Function Workers (#2630)
  • The SDK now provides and overload of ContinueTrace that accepts headers as string (#2601)
  • Sentry tracing middleware now gets configured automatically (#2602)

Fixes

  • Resolved issue identifying users with OpenTelemetry (#2618)

Azure Functions Beta

  • Package name changed from Sentry.AzureFunctions.Worker to Sentry.Azure.Functions.Worker. Note AzureFunctions now is split by a .. (#2637)

Dependencies

3.39.1

12 Sep 09:55
Compare
Choose a tag to compare

Fixes

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

3.39.0

07 Sep 09:11
Compare
Choose a tag to compare

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