File tree Expand file tree Collapse file tree 2 files changed +18
-2
lines changed Expand file tree Collapse file tree 2 files changed +18
-2
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3- ## Unreleased
3+ ## 7.16.0
4+
5+ ### Features
6+
7+ - Add meta option to attach ANR thread dumps ([ #3791 ] ( https://github.com/getsentry/sentry-java/pull/3791 ) )
48
59### Features
610
711- Add support for 16KB page sizes (Android 15) ([ #3620 ] ( https://github.com/getsentry/sentry-java/pull/3620 ) )
812
913### Fixes
1014
15+ - Cache parsed Dsn ([ #3796 ] ( https://github.com/getsentry/sentry-java/pull/3796 ) )
16+ - fix invalid profiles when the transaction name is empty ([ #3747 ] ( https://github.com/getsentry/sentry-java/pull/3747 ) )
17+ - Deprecate ` enableTracing ` option ([ #3777 ] ( https://github.com/getsentry/sentry-java/pull/3777 ) )
18+ - Vendor ` java.util.Random ` and replace ` java.security.SecureRandom ` usages ([ #3783 ] ( https://github.com/getsentry/sentry-java/pull/3783 ) )
19+ - Fix potential ANRs due to NDK scope sync ([ #3754 ] ( https://github.com/getsentry/sentry-java/pull/3754 ) )
20+ - Fix potential ANRs due to NDK System.loadLibrary calls ([ #3670 ] ( https://github.com/getsentry/sentry-java/pull/3670 ) )
21+ - Fix slow ` Log ` calls on app startup ([ #3793 ] ( https://github.com/getsentry/sentry-java/pull/3793 ) )
22+ - Fix slow Integration name parsing ([ #3794 ] ( https://github.com/getsentry/sentry-java/pull/3794 ) )
23+ - Session Replay: Reduce startup and capture overhead ([ #3799 ] ( https://github.com/getsentry/sentry-java/pull/3799 ) )
1124- Load lazy fields on init in the background ([ #3803 ] ( https://github.com/getsentry/sentry-java/pull/3803 ) )
1225- Replace setOf with HashSet.add ([ #3801 ] ( https://github.com/getsentry/sentry-java/pull/3801 ) )
1326
Original file line number Diff line number Diff line change @@ -3,14 +3,17 @@ org.gradle.jvmargs=-Xmx12g -XX:MaxMetaspaceSize=4g -XX:+CrashOnOutOfMemoryError
33org.gradle.caching =true
44org.gradle.parallel =true
55
6+ # Daemons workers
7+ org.gradle.workers.max =2
8+
69# AndroidX required by AGP >= 3.6.x
710android.useAndroidX =true
811
912# Required by AGP >= 8.0.x
1013android.defaults.buildfeatures.buildconfig =true
1114
1215# Release information
13- versionName =7.16.0-alpha.1
16+ versionName =7.16.0
1417
1518# Override the SDK name on native crashes on Android
1619sentryAndroidSdkName =sentry.native.android
You can’t perform that action at this time.
0 commit comments