Commit 8ac3f1b
authored
File tree
4 files changed
+20
-2
lines changed- modules
- scripts
- src/Sentry.Bindings.Android
4 files changed
+20
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
13 | 13 | | |
14 | 14 | | |
15 | 15 | | |
16 | | - | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
17 | 20 | | |
18 | 21 | | |
19 | 22 | | |
| |||
Submodule sentry-native updated 84 files
- .craft.yml+3-2
- .github/ISSUE_TEMPLATE/bug_report.md+1-2
- .github/workflows/ci.yml+26-6
- .gitignore+5
- CHANGELOG.md+27
- CMakeLists.txt+9-12
- CONTRIBUTING.md+23
- README.md+4-1
- examples/example.c+12
- external/breakpad+1-1
- include/sentry.h+170-24
- ndk/gradle.properties+1-1
- ndk/lib/build.gradle.kts+4-4
- scripts/settings.xml+1-1
- src/CMakeLists.txt+6
- src/backends/sentry_backend_crashpad.cpp+11-1
- src/modulefinder/sentry_modulefinder_windows.c+3-3
- src/path/sentry_path_unix.c+11
- src/path/sentry_path_windows.c+11
- src/process/sentry_process_none.c+9
- src/process/sentry_process_unix.c+217
- src/process/sentry_process_windows.c+137
- src/screenshot/sentry_screenshot_windows.c+4-4
- src/sentry_core.c+156-17
- src/sentry_envelope.c+305-4
- src/sentry_envelope.h+6
- src/sentry_json.c+57-10
- src/sentry_json.h+10
- src/sentry_logger.c-1
- src/sentry_os.c+6-6
- src/sentry_path.h+7
- src/sentry_process.h+16
- src/sentry_ringbuffer.c+92
- src/sentry_ringbuffer.h+52
- src/sentry_sampling_context.h+1
- src/sentry_scope.c+11-12
- src/sentry_scope.h+4-1
- src/sentry_session.c+2-2
- src/sentry_tracing.c+8-1
- src/sentry_utils.c+34
- src/sentry_utils.h+9
- src/sentry_value.c+184-86
- src/sentry_value.h+6-19
- src/symbolizer/sentry_symbolizer_windows.c+2-2
- tests/__init__.py+7-1
- tests/assertions.py+20-6
- tests/cmake.py+16-2
- tests/conditions.py+1
- tests/fixtures/screenshot/CMakeLists.txt+1-1
- tests/test_dotnet_signals.py+4-9
- tests/test_integration_crashpad.py+16-3
- tests/test_integration_http.py+131-6
- tests/tsan.supp+5
- tests/unit/CMakeLists.txt+2
- tests/unit/sentry_testsupport.h+14
- tests/unit/test_attachments.c+35-17
- tests/unit/test_basic.c+17-11
- tests/unit/test_concurrency.c+16-3
- tests/unit/test_envelopes.c+390-11
- tests/unit/test_failures.c+3-3
- tests/unit/test_fuzzfailures.c+1-1
- tests/unit/test_info.c+9-2
- tests/unit/test_path.c+36
- tests/unit/test_process.c+73
- tests/unit/test_ringbuffer.c+166
- tests/unit/test_session.c+10-6
- tests/unit/test_symbolizer.c+1-1
- tests/unit/test_sync.c+10-5
- tests/unit/test_tracing.c+135-26
- tests/unit/test_unwinder.c+1-1
- tests/unit/test_utils.c+67-3
- tests/unit/test_value.c+252-77
- tests/unit/tests.inc+32-3
- tests/valgrind.txt+10
- tests/win_utils.py+1-1
- toolchains/xbox/CMakeGDKScarlett.cmake-224
- toolchains/xbox/DetectGDK.cmake-10
- toolchains/xbox/DetectWindowsSDK.cmake-9
- toolchains/xbox/GDK-targets.cmake-68
- toolchains/xbox/gdk_build.props-41
- toolchains/xbox/gdk_build.props.md-3
- toolchains/xbox/gxdk_xs_toolchain.cmake-61
- toolchains/xbox/xbox_build.md+3-32
- vendor/acutest.h+1-1
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
37 | 37 | | |
38 | 38 | | |
39 | 39 | | |
| 40 | + | |
40 | 41 | | |
41 | 42 | | |
42 | 43 | | |
| |||
58 | 59 | | |
59 | 60 | | |
60 | 61 | | |
| 62 | + | |
61 | 63 | | |
62 | 64 | | |
63 | 65 | | |
| |||
Lines changed: 13 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
6 | 6 | | |
7 | 7 | | |
8 | 8 | | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
9 | 22 | | |
10 | 23 | | |
11 | 24 | | |
| |||
0 commit comments