-
-
Notifications
You must be signed in to change notification settings - Fork 223
Add support for v3 of the AssemblyStore format #4516
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
base: net10
Are you sure you want to change the base?
Conversation
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## net10 #4516 +/- ##
==========================================
+ Coverage 71.77% 72.70% +0.92%
==========================================
Files 479 476 -3
Lines 17508 17213 -295
Branches 3442 3419 -23
==========================================
- Hits 12567 12515 -52
+ Misses 4090 3841 -249
- Partials 851 857 +6 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
consider renaming the file, other than that LGTM
Co-authored-by: James Crosswell <[email protected]>
Fix WASM0001 warnings when building Blazor WebAssembly projects that came out from our native bindings. The fix was to change the way we represent `sentry_value_t` in C# side, instead of using `FieldOffset`, we use a backing field along with getters and setters for the variable as a `double`, or `ulong`. Fixes #3369
Co-authored-by: GitHub <[email protected]>
test/Sentry.Android.AssemblyReader.Tests/ApiApprovalTests.Run.DotNet10_0.verified.txt
Show resolved
Hide resolved
Co-authored-by: GitHub <[email protected]> Co-authored-by: James Crosswell <[email protected]>
Co-authored-by: GitHub <[email protected]> Co-authored-by: James Crosswell <[email protected]>
options.LogDebug("Discarded {0} error ({1}). Captured as managed exception instead.", ex.Type, | ||
ex.Value); | ||
return true; | ||
return null!; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Bug: SDK Disablement Bypasses Crash Suppression
The ProcessOnBeforeSend
method now checks for DisabledHub
and returns early before native crash suppression. This change bypasses the suppression logic when the SDK is disabled, causing duplicate native crash events, contrary to the original design that required suppression regardless of SDK state.
Resolves #4491
Warning
This is a fork of the net10 branch... once that branch has been squashed/merged into the v6 branch we can look at squashing/merging into the same