Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
72ce9b1
feat(internal): scope observer
jpnurmi Jul 1, 2026
15f7e01
sentry_scope_update_context: add missing notify
jpnurmi Jul 3, 2026
dd7e4fc
sentry__ringbuffer_append returns -1 on failure
jpnurmi Jul 3, 2026
3470b40
don't notify duplicate attachments
jpnurmi Jul 3, 2026
86ed177
sentry_transaction_start: notify
jpnurmi Jul 3, 2026
d8f18f2
notity scope-level attachment changes
jpnurmi Jul 3, 2026
b29b7ce
fix sentry_clear_attachments
jpnurmi Jul 3, 2026
e64a4e8
add_observer: return bool
jpnurmi Jul 4, 2026
cf407cf
add remove_observer
jpnurmi Jul 4, 2026
ff1c491
update tests
jpnurmi Jul 4, 2026
e20cbcb
prevent array shift during notify iteration
jpnurmi Jul 4, 2026
48a2b1c
fix nested notify
jpnurmi Jul 4, 2026
a32d6c0
test no flush
jpnurmi Jul 4, 2026
f92daad
was_notifying (tsan)
jpnurmi Jul 4, 2026
2d983e7
trace context
jpnurmi Jul 4, 2026
7729a18
ref(crashpad): replace scope flushing with incremental IPC updates
jpnurmi Jul 1, 2026
e0419de
restore flush after on_crash/before_send
jpnurmi Jul 3, 2026
b47177c
adapt report_to_envelope
jpnurmi Jul 3, 2026
9e2ac0c
restore flush_external_crash_report after on_crash/before_send
jpnurmi Jul 3, 2026
7e01935
restore crashed flag
jpnurmi Jul 3, 2026
0f5002b
restore scope_flush flag
jpnurmi Jul 4, 2026
8c86052
restore flush_scope_from_handler
jpnurmi Jul 4, 2026
f194397
add test_crashpad_crash_before_send
jpnurmi Jul 4, 2026
0e7002a
clarifying comment
jpnurmi Jul 4, 2026
3b7f38a
post-init
jpnurmi Jul 4, 2026
9db8011
fix duplicate observer
jpnurmi Jul 4, 2026
5d504b0
begin/end flush
jpnurmi Jul 4, 2026
2bb02e7
fix breadcrumbs
jpnurmi Jul 4, 2026
1f4e5fc
trace context
jpnurmi Jul 4, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion external/crashpad
Submodule crashpad updated 37 files
+4 −0 client/CMakeLists.txt
+99 −182 client/crash_report_database.cc
+20 −3 client/crash_report_database.h
+5 −0 client/crashpad_client.h
+10 −0 client/crashpad_client_linux.cc
+6 −0 client/crashpad_client_mac.cc
+55 −10 client/crashpad_client_win.cc
+274 −0 client/sentry_event.cc
+50 −0 client/sentry_event.h
+149 −0 client/sentry_scope.cc
+75 −0 client/sentry_scope.h
+15 −17 handler/linux/crash_report_exception_handler.cc
+3 −0 handler/linux/crash_report_exception_handler.h
+42 −2 handler/linux/exception_handler_server.cc
+4 −0 handler/linux/exception_handler_server.h
+15 −18 handler/mac/crash_report_exception_handler.cc
+3 −0 handler/mac/crash_report_exception_handler.h
+3 −0 handler/mac/exception_handler_server.cc
+5 −0 handler/mac/exception_handler_server.h
+16 −17 handler/win/crash_report_exception_handler.cc
+3 −0 handler/win/crash_report_exception_handler.h
+4 −0 util/CMakeLists.txt
+22 −0 util/linux/exception_handler_client.cc
+5 −0 util/linux/exception_handler_client.h
+16 −0 util/linux/exception_handler_protocol.h
+5 −1 util/linux/socket.cc
+2 −1 util/linux/socket.h
+3 −0 util/mach/exception_handler_protocol.h
+84 −0 util/misc/json_writer.cc
+53 −0 util/misc/json_writer.h
+393 −0 util/misc/message_pack.cc
+213 −0 util/misc/message_pack.h
+24 −0 util/win/exception_handler_server.cc
+4 −0 util/win/exception_handler_server.h
+7 −25 util/win/registration_protocol_win.cc
+11 −9 util/win/registration_protocol_win.h
+13 −0 util/win/registration_protocol_win_structs.h
Loading
Loading