chore(deps): update .NET SDK to v3.33.0 #1331
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Bumps src/sentry-dotnet from 3.31.0 to 3.33.0.
Auto-generated by a dependency updater.
Changelog
3.33.0
Features
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.
KeepAggregateException
option is now obsolete and does nothing. Please remove any usages ofKeepAggregateException
.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
Dependencies
3.32.0
Features
Azure Functions (Isolated Worker/Out-of-Process) support (#2346)
beta.1
release. Please give it a try and let us know how it goes!/samples/Sentry.Samples.AzureFunctions.Worker
.Add
Hint
support (#2351)ISentryEventProcessorWithHint
orISentryTransactionProcessorWithHint
, instead ofISentryEventProcessor
orISentryTransactionProcessor
.BeforeSend
,BeforeSendTransaction
, andBeforeBreadcrumb
properties on theSentryOptions
class. They have been replaced withSetBeforeSend
,SetBeforeSendTransaction
, andSetBeforeBreadcrumb
respectively. Each one provides overloads both with and without aHint
object.Allow setting the active span on the scope (#2364)
Scope.GetSpan
method in favor of aScope.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 withTracesSampleRate
(#2368)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