Skip to content

Commit b0ea8b3

Browse files
authored
Merge branch 'main' into feat/support_16kb_page_size
2 parents 737176f + 7b3de1d commit b0ea8b3

File tree

2 files changed

+18
-2
lines changed

2 files changed

+18
-2
lines changed

CHANGELOG.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,26 @@
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

gradle.properties

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,17 @@ org.gradle.jvmargs=-Xmx12g -XX:MaxMetaspaceSize=4g -XX:+CrashOnOutOfMemoryError
33
org.gradle.caching=true
44
org.gradle.parallel=true
55

6+
# Daemons workers
7+
org.gradle.workers.max=2
8+
69
# AndroidX required by AGP >= 3.6.x
710
android.useAndroidX=true
811

912
# Required by AGP >= 8.0.x
1013
android.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
1619
sentryAndroidSdkName=sentry.native.android

0 commit comments

Comments
 (0)