Skip to content

Commit

Permalink
chore: update sentry-native to 0.4.17
Browse files Browse the repository at this point in the history
  • Loading branch information
vaind committed May 10, 2022
1 parent f60ace2 commit 485fe42
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@

- Allow setting SDK info (name & version) in manifest ([#2016](https://github.com/getsentry/sentry-java/pull/2016))

### Changed

- Update sentry-native to 0.4.17 (#2032)

## 6.0.0-beta.3

### Fixes
Expand Down
2 changes: 1 addition & 1 deletion sentry-android-ndk/sentry-native
Submodule sentry-native updated 89 files
+7 −3 .github/workflows/ci.yml
+1 −0 .gitignore
+94 −0 CHANGELOG.md
+56 −6 CMakeLists.txt
+11 −3 CONTRIBUTING.md
+10 −3 Makefile
+16 −2 README.md
+50 −0 examples/example.c
+2 −2 external/CMakeLists.txt
+1 −1 external/breakpad
+1 −1 external/crashpad
+560 −15 include/sentry.h
+6 −0 src/CMakeLists.txt
+18 −0 src/backends/sentry_backend_crashpad.cpp
+2 −0 src/backends/sentry_backend_inproc.c
+109 −0 src/modulefinder/sentry_modulefinder_aix.c
+103 −17 src/modulefinder/sentry_modulefinder_linux.c
+6 −0 src/modulefinder/sentry_modulefinder_linux.h
+29 −3 src/path/sentry_path_unix.c
+1 −0 src/sentry_backend.h
+416 −24 src/sentry_core.c
+37 −4 src/sentry_core.h
+42 −1 src/sentry_database.c
+10 −0 src/sentry_database.h
+62 −1 src/sentry_envelope.c
+6 −0 src/sentry_envelope.h
+44 −0 src/sentry_json.c
+58 −1 src/sentry_options.c
+4 −0 src/sentry_options.h
+67 −14 src/sentry_os.c
+8 −0 src/sentry_ratelimiter.c
+6 −0 src/sentry_ratelimiter.h
+74 −7 src/sentry_scope.c
+16 −0 src/sentry_scope.h
+10 −6 src/sentry_session.c
+0 −61 src/sentry_string.c
+56 −18 src/sentry_string.h
+76 −1 src/sentry_sync.c
+22 −0 src/sentry_sync.h
+520 −0 src/sentry_tracing.c
+51 −0 src/sentry_tracing.h
+19 −0 src/sentry_transport.c
+7 −0 src/sentry_transport.h
+39 −13 src/sentry_utils.c
+1 −1 src/sentry_utils.h
+22 −0 src/sentry_uuid.c
+13 −3 src/sentry_uuid.h
+60 −0 src/sentry_value.c
+33 −0 src/sentry_value.h
+189 −0 src/symbolizer/sentry_symbolizer_unix.c
+13 −0 src/transports/sentry_transport_curl.c
+18 −0 src/transports/sentry_transport_winhttp.c
+8 −2 src/unwinder/sentry_unwinder_libbacktrace.c
+59 −4 tests/__init__.py
+38 −19 tests/assertions.py
+7 −1 tests/cmake.py
+7 −2 tests/conditions.py
+3 −3 tests/requirements.txt
+1 −1 tests/test_build_static.py
+4 −1 tests/test_integration_crashpad.py
+132 −23 tests/test_integration_http.py
+12 −0 tests/test_integration_ratelimits.py
+33 −4 tests/test_integration_stdout.py
+2 −0 tests/unit/CMakeLists.txt
+0 −2 tests/unit/fuzz.c
+0 −1 tests/unit/test_attachments.c
+69 −1 tests/unit/test_basic.c
+28 −1 tests/unit/test_concurrency.c
+0 −1 tests/unit/test_consent.c
+32 −1 tests/unit/test_envelopes.c
+0 −1 tests/unit/test_failures.c
+1 −1 tests/unit/test_fuzzfailures.c
+0 −1 tests/unit/test_logger.c
+0 −1 tests/unit/test_modulefinder.c
+0 −1 tests/unit/test_mpack.c
+0 −1 tests/unit/test_path.c
+0 −1 tests/unit/test_ratelimiter.c
+37 −0 tests/unit/test_sampling.c
+0 −1 tests/unit/test_session.c
+0 −1 tests/unit/test_slice.c
+12 −1 tests/unit/test_symbolizer.c
+20 −0 tests/unit/test_sync.c
+811 −0 tests/unit/test_tracing.c
+0 −2 tests/unit/test_uninit.c
+11 −2 tests/unit/test_unwinder.c
+43 −7 tests/unit/test_utils.c
+22 −2 tests/unit/test_uuid.c
+56 −1 tests/unit/test_value.c
+24 −0 tests/unit/tests.inc

0 comments on commit 485fe42

Please sign in to comment.