Closed supervacuus closed 1 week ago
Messages | |
---|---|
:book: | Do not forget to update Sentry-docs with your feature once the pull request gets approved. |
Generated by :no_entry_sign: dangerJS against 4320b6b4bc150ad1ad6e936a512a101918704d53
Attention: Patch coverage is 81.81818%
with 2 lines
in your changes missing coverage. Please review.
Project coverage is 82.38%. Comparing base (
2ad5f0d
) to head (4320b6b
). Report is 1 commits behind head on master.
🚨 Try these New Features:
Upstream
breakpad
doesn't provide the thread context to the handler callbacks (it does write it to the minidump, though). This change fills the context of the crashed thread and passes it on to the handler callback (which in turn passes it on to theon_crash
andbefore_send
callbacks).The change keeps compatibility between upstream and our fork in both directions even though this breaks one of the public interfaces:
breakpad
backend in the Native SDK uses the upstream interface ifSENTRY_BREAKPAD_SYSTEM
is definedbreakpad
fork provides the modified interface only if compiled with the Native SDK (i.e.,SENTRY_BACKEND_BREAKPAD
is defined in thebreakpad_client
target).