Skip to content

Commit

Permalink
chore: update sentry-android-ndk/sentry-native to 0.7.4
Browse files Browse the repository at this point in the history
  • Loading branch information
web-flow authored and github-actions[bot] committed May 24, 2024
1 parent 619c9b9 commit dde420f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@

- Fix faulty `span.frame_delay` calculation for early app start spans ([#3427](https://github.com/getsentry/sentry-java/pull/3427))

### Dependencies

- Bump Native SDK from v0.7.0 to v0.7.4 ([#3441](https://github.com/getsentry/sentry-java/pull/3441))
- [changelog](https://github.com/getsentry/sentry-native/blob/master/CHANGELOG.md#074)
- [diff](https://github.com/getsentry/sentry-native/compare/0.7.0...0.7.4)

## 7.9.0

### Features
Expand Down
2 changes: 1 addition & 1 deletion sentry-android-ndk/sentry-native
Submodule sentry-native updated 70 files
+12 −0 .craft.yml
+42 −16 .github/workflows/ci.yml
+7 −0 .gitignore
+54 −0 CHANGELOG.md
+29 −34 CMakeLists.txt
+1 −0 CONTRIBUTING.md
+13 −2 README.md
+52 −3 examples/example.c
+1 −1 external/crashpad
+27 −1 include/sentry.h
+75 −0 ndk/README.md
+207 −0 ndk/build.gradle.kts
+ ndk/debug.keystore
+53 −0 ndk/gradle.properties
+ ndk/gradle/wrapper/gradle-wrapper.jar
+7 −0 ndk/gradle/wrapper/gradle-wrapper.properties
+249 −0 ndk/gradlew
+92 −0 ndk/gradlew.bat
+17 −0 ndk/lib/CMakeLists.txt
+29 −0 ndk/lib/api/sentry-android-ndk.api
+93 −0 ndk/lib/build.gradle.kts
+22 −0 ndk/lib/proguard-rules.pro
+199 −0 ndk/lib/src/main/java/io/sentry/ndk/DebugImage.java
+18 −0 ndk/lib/src/main/java/io/sentry/ndk/INativeScope.java
+18 −0 ndk/lib/src/main/java/io/sentry/ndk/NativeModuleListLoader.java
+55 −0 ndk/lib/src/main/java/io/sentry/ndk/NativeScope.java
+64 −0 ndk/lib/src/main/java/io/sentry/ndk/NdkOptions.java
+42 −0 ndk/lib/src/main/java/io/sentry/ndk/SentryNdk.java
+489 −0 ndk/lib/src/main/jni/sentry.c
+4 −0 ndk/lib/src/main/res/values/public.xml
+18 −0 ndk/sample/CMakeLists.txt
+70 −0 ndk/sample/build.gradle.kts
+34 −0 ndk/sample/proguard-rules.pro
+18 −0 ndk/sample/src/main/AndroidManifest.xml
+25 −0 ndk/sample/src/main/cpp/ndk-sample.cpp
+54 −0 ndk/sample/src/main/java/io/sentry/ndk/sample/MainActivity.java
+11 −0 ndk/sample/src/main/java/io/sentry/ndk/sample/NdkSample.java
+36 −0 ndk/sample/src/main/res/layout/activity_main.xml
+19 −0 ndk/settings.gradle
+1 −0 scripts/bump-version.sh
+12 −9 scripts/install-llvm-mingw.ps1
+44 −0 scripts/install-zlib.ps1
+310 −0 scripts/mvnw
+182 −0 scripts/mvnw.cmd
+12 −0 scripts/settings.xml
+15 −2 scripts/start-android.sh
+4 −0 src/backends/sentry_backend_breakpad.cpp
+58 −34 src/backends/sentry_backend_crashpad.cpp
+28 −22 src/backends/sentry_backend_inproc.c
+6 −4 src/modulefinder/sentry_modulefinder_linux.c
+34 −0 src/sentry_core.c
+30 −0 src/sentry_envelope.c
+6 −0 src/sentry_envelope.h
+104 −43 src/sentry_os.c
+15 −0 src/sentry_os.h
+30 −38 src/sentry_tracing.c
+86 −1 src/sentry_transport.c
+36 −0 src/sentry_value.c
+11 −3 tests/__init__.py
+61 −16 tests/assertions.py
+4 −3 tests/cmake.py
+5 −4 tests/requirements.txt
+65 −15 tests/test_integration_crashpad.py
+110 −16 tests/test_integration_http.py
+34 −2 tests/test_integration_stdout.py
+3 −0 tests/test_unit.py
+38 −0 tests/unit/test_envelopes.c
+4 −4 tests/unit/test_tracing.c
+21 −0 tests/unit/test_value.c
+2 −0 tests/unit/tests.inc

0 comments on commit dde420f

Please sign in to comment.