-
-
Notifications
You must be signed in to change notification settings - Fork 435
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[create-pull-request] automated change
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule sentry-native
updated
23 files
+16 −0 | .github/workflows/enforce-license-compliance.yml | |
+1 −0 | .gitignore | |
+24 −0 | CHANGELOG.md | |
+1 −0 | CONTRIBUTING.md | |
+6 −3 | README.md | |
+5 −2 | examples/example.c | |
+10 −5 | external/CMakeLists.txt | |
+1 −1 | external/breakpad | |
+1 −1 | external/crashpad | |
+53 −3 | include/sentry.h | |
+1 −0 | src/CMakeLists.txt | |
+0 −8 | src/backends/sentry_backend_crashpad.cpp | |
+270 −2 | src/backends/sentry_backend_inproc.c | |
+19 −0 | src/sentry_info.c | |
+7 −0 | src/sentry_options.c | |
+7 −3 | src/sentry_value.c | |
+2 −2 | tests/assertions.py | |
+21 −0 | tests/test_integration_crashpad.py | |
+1 −1 | tests/test_integration_http.py | |
+1 −0 | tests/unit/CMakeLists.txt | |
+16 −0 | tests/unit/test_info.c | |
+18 −0 | tests/unit/test_value.c | |
+6 −2 | tests/unit/tests.inc |