Skip to content

Commit

Permalink
Bump: sentry-native to 0.4.9 (#1431)
Browse files Browse the repository at this point in the history
  • Loading branch information
marandaneto authored Apr 24, 2021
1 parent b06708c commit 6c8aae1
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
* Fix: Do not set free memory and is low memory fields when it's a NDK hard crash (#1399)
* Fix: Apply user from the scope to transaction (#1424)
* Fix: Pass maxBreadcrumbs config. to sentry-native (#1425)
* Bump: sentry-native to 0.4.9 (#1431)

# 4.4.0-alpha.2

Expand Down
2 changes: 1 addition & 1 deletion sentry-android-ndk/sentry-native
Submodule sentry-native updated 63 files
+5 −0 .github/workflows/ci.yml
+36 −0 CHANGELOG.md
+16 −6 CMakeLists.txt
+4 −3 README.md
+8 −15 examples/example.c
+1 −1 external/breakpad
+1 −1 external/crashpad
+1 −0 fuzzing-examples/macos-event.json
+1 −0 fuzzing-examples/macos-session.json
+95 −11 include/sentry.h
+11 −2 src/backends/sentry_backend_crashpad.cpp
+6 −23 src/backends/sentry_backend_inproc.c
+220 −185 src/modulefinder/sentry_modulefinder_linux.c
+31 −12 src/modulefinder/sentry_modulefinder_linux.h
+1 −1 src/path/sentry_path_unix.c
+12 −14 src/sentry_backend.h
+4 −0 src/sentry_boot.h
+9 −3 src/sentry_core.c
+0 −5 src/sentry_core.h
+1 −1 src/sentry_database.c
+22 −9 src/sentry_envelope.c
+38 −57 src/sentry_json.c
+6 −3 src/sentry_json.h
+7 −8 src/sentry_scope.c
+2 −1 src/sentry_scope.h
+1 −0 src/sentry_sync.c
+18 −0 src/sentry_sync.h
+26 −7 src/sentry_utils.c
+23 −0 src/sentry_utils.h
+120 −20 src/sentry_value.c
+8 −0 src/sentry_value.h
+6 −2 src/transports/sentry_transport_curl.c
+13 −8 src/unwinder/sentry_unwinder_libbacktrace.c
+9 −1 tests/__init__.py
+3 −4 tests/assertions.py
+4 −1 tests/cmake.py
+1 −0 tests/fuzzing-failures/id-000000,sig-06,src-000560,op-havoc,rep-2
+ tests/fuzzing-failures/id-000000,sig-11,src-000033+000005,op-splice,rep-16
+ tests/fuzzing-failures/id-000000,sig-11,src-000320,op-havoc,rep-2
+ tests/fuzzing-failures/id-000000,sig-11,src-000494+000073,op-splice,rep-8
+ tests/fuzzing-failures/id-000001,sig-11,src-000052+000222,op-splice,rep-32
+1 −0 tests/fuzzing-failures/id-000001,sig-11,src-000215+000415,op-splice,rep-16
+1 −0 tests/fuzzing-failures/id-000002,sig-11,src-000339+000110,op-splice,rep-16
+ tests/fuzzing-failures/id-000002,sig-11,src-000447+000419,op-splice,rep-32
+ tests/fuzzing-failures/id-000003,sig-11,src-000399+000468,op-splice,rep-32
+ tests/fuzzing-failures/id-000004,sig-11,src-000440+000369,op-splice,rep-2
+3 −2 tests/test_integration_http.py
+2 −0 tests/unit/.gitattributes
+22 −0 tests/unit/CMakeLists.txt
+77 −0 tests/unit/fuzz.c
+1 −1 tests/unit/test_attachments.c
+2 −2 tests/unit/test_basic.c
+5 −5 tests/unit/test_consent.c
+1 −1 tests/unit/test_envelopes.c
+66 −0 tests/unit/test_fuzzfailures.c
+2 −2 tests/unit/test_logger.c
+59 −29 tests/unit/test_modulefinder.c
+3 −1 tests/unit/test_mpack.c
+2 −2 tests/unit/test_session.c
+4 −4 tests/unit/test_uninit.c
+49 −1 tests/unit/test_value.c
+3 −0 tests/unit/tests.inc
+29 −0 tests/valgrind.txt
2 changes: 1 addition & 1 deletion sentry-android-ndk/src/main/jni/sentry.c
Original file line number Diff line number Diff line change
Expand Up @@ -398,5 +398,5 @@ Java_io_sentry_android_ndk_NativeModuleListLoader_nativeLoadModuleList(JNIEnv *e

JNIEXPORT void JNICALL
Java_io_sentry_android_ndk_SentryNdk_shutdown(JNIEnv *env, jclass cls) {
sentry_shutdown();
sentry_close();
}
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:theme="@style/AppTheme"
android:allowNativeHeapPointerTagging="false"
android:extractNativeLibs="true"
tools:ignore="GoogleAppIndexingWarning, UnusedAttribute">

<activity android:name=".MainActivity">
Expand Down

0 comments on commit 6c8aae1

Please sign in to comment.