Skip to content
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

chore: sync with recent crashpad changes #803

Merged
merged 2 commits into from
Feb 7, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
16 changes: 15 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,21 @@

**Fixes**:

- Fix various mingw compilation issues ([#794](https://github.com/getsentry/sentry-native/pull/794))
- Switch Crashpad transport on Linux to use libcurl ([#803](https://github.com/getsentry/sentry-native/pull/803), [crashpad#75](https://github.com/getsentry/crashpad/pull/75), [crashpad#79](https://github.com/getsentry/crashpad/pull/79))
- Avoid accidentally mutating CONTEXT when client-side stack walking in Crashpad ([#803](https://github.com/getsentry/sentry-native/pull/803), [crashpad#77](https://github.com/getsentry/crashpad/pull/77))
- Fix various mingw compilation issues ([#794](https://github.com/getsentry/sentry-native/pull/794), [crashpad#78](https://github.com/getsentry/crashpad/pull/78))

**Internal**:

- Updated Crashpad backend to 2023-02-07. ([#803](https://github.com/getsentry/sentry-native/pull/803), [crashpad#80](https://github.com/getsentry/crashpad/pull/80))

**Thank you**:

Features, fixes and improvements in this release have been contributed by:

- [@BogdanLivadariu](https://github.com/BogdanLivadariu)
- [@ShawnCZek](https://github.com/ShawnCZek)
- [@past-due](https://github.com/past-due)

## 0.5.4

Expand Down
2 changes: 1 addition & 1 deletion external/crashpad
Submodule crashpad updated 64 files
+2 −0 BUILD.gn
+8 −1 CMakeLists.txt
+1 −1 DEPS
+4 −2 build/crashpad_buildconfig.gni
+14 −9 build/run_tests.py
+16 −0 client/BUILD.gn
+2 −0 client/CMakeLists.txt
+77 −6 client/annotation.h
+102 −0 client/annotation_test.cc
+48 −0 client/ios_handler/in_process_intermediate_dump_handler.cc
+603 −0 client/length_delimited_ring_buffer.h
+348 −0 client/length_delimited_ring_buffer_test.cc
+136 −0 client/ring_buffer_annotation.h
+474 −0 client/ring_buffer_annotation_load_test_main.cc
+188 −0 client/ring_buffer_annotation_test.cc
+31 −0 compat/mingw/dbghelp.h
+28 −0 compat/mingw/werapi.h
+12 −0 compat/mingw/winnt.h
+2 −0 handler/CMakeLists.txt
+2 −1 handler/win/wer/crashpad_wer.cc
+10 −0 minidump/minidump_crashpad_info_writer.cc
+3 −0 minidump/minidump_crashpad_info_writer.h
+53 −0 minidump/minidump_crashpad_info_writer_test.cc
+25 −2 minidump/minidump_extensions.h
+19 −0 snapshot/BUILD.gn
+11 −0 snapshot/CMakeLists.txt
+6 −0 snapshot/crashpad_types/image_annotation_reader.cc
+2 −0 snapshot/fuchsia/system_snapshot_fuchsia.h
+8 −0 snapshot/ios/system_snapshot_ios_intermediate_dump.cc
+2 −0 snapshot/ios/system_snapshot_ios_intermediate_dump.h
+1 −0 snapshot/linux/system_snapshot_linux.h
+7 −0 snapshot/mac/mach_o_image_annotations_reader.cc
+14 −0 snapshot/mac/system_snapshot_mac.cc
+1 −0 snapshot/mac/system_snapshot_mac.h
+30 −2 snapshot/minidump/process_snapshot_minidump.cc
+41 −0 snapshot/minidump/process_snapshot_minidump_test.cc
+6 −0 snapshot/minidump/system_snapshot_minidump.cc
+1 −0 snapshot/minidump/system_snapshot_minidump.h
+14 −0 snapshot/system_snapshot.h
+6 −2 snapshot/test/test_system_snapshot.cc
+4 −0 snapshot/test/test_system_snapshot.h
+11 −13 snapshot/win/process_reader_win.cc
+1 −0 snapshot/win/system_snapshot_win.h
+1 −1 test/gtest_main.cc
+1 −0 test/ios/BUILD.gn
+28 −0 test/ios/crash_type_xctest.mm
+27 −7 test/ios/host/cptest_application_delegate.mm
+1 −1 third_party/lss/lss.h
+3 −4 third_party/mini_chromium/BUILD.gn
+1 −5 third_party/zlib/CMakeLists.txt
+7 −1 util/BUILD.gn
+26 −1 util/CMakeLists.txt
+1 −1 util/ios/ios_intermediate_dump_format.h
+2 −0 util/ios/ios_system_data_collector.h
+10 −0 util/ios/ios_system_data_collector.mm
+86 −0 util/ios/scoped_vm_map.cc
+125 −0 util/ios/scoped_vm_map.h
+94 −0 util/ios/scoped_vm_map_test.cc
+24 −20 util/ios/scoped_vm_read.cc
+9 −5 util/ios/scoped_vm_read.h
+25 −20 util/ios/scoped_vm_read_test.cc
+0 −11 util/mac/mac_util_test.mm
+122 −0 util/synchronization/scoped_spin_guard.h
+109 −0 util/synchronization/scoped_spin_guard_test.cc