|
4 | 4 |
|
5 | 5 | ### Features |
6 | 6 |
|
7 | | -- Add `installGroupsOverride` parameter and `installGroups` property to Build Distribution SDK ([#5062](https://github.com/getsentry/sentry-java/pull/5062)) |
| 7 | +- Add `installGroupsOverride` parameter to Build Distribution SDK for programmatic filtering, with support for configuration via properties file using `io.sentry.distribution.install-groups-override` ([#5066](https://github.com/getsentry/sentry-java/pull/5066)) |
| 8 | + |
| 9 | +### Dependencies |
| 10 | + |
| 11 | +- Bump Native SDK from v0.12.4 to v0.12.6 ([#5071](https://github.com/getsentry/sentry-java/pull/5071)) |
| 12 | + - [changelog](https://github.com/getsentry/sentry-native/blob/master/CHANGELOG.md#0126) |
| 13 | + - [diff](https://github.com/getsentry/sentry-native/compare/0.12.4...0.12.6) |
| 14 | + |
| 15 | +## 8.32.0 |
| 16 | + |
| 17 | +### Features |
| 18 | + |
| 19 | +- Add `installGroups` property to Build Distribution SDK ([#5062](https://github.com/getsentry/sentry-java/pull/5062)) |
8 | 20 | - Update Android targetSdk to API 36 (Android 16) ([#5016](https://github.com/getsentry/sentry-java/pull/5016)) |
9 | 21 | - Add AndroidManifest support for Spotlight configuration via `io.sentry.spotlight.enable` and `io.sentry.spotlight.url` ([#5064](https://github.com/getsentry/sentry-java/pull/5064)) |
10 | 22 | - Collect database transaction spans (`BEGIN`, `COMMIT`, `ROLLBACK`) ([#5072](https://github.com/getsentry/sentry-java/pull/5072)) |
|
15 | 27 | sentry: |
16 | 28 | enable-database-transaction-tracing: true |
17 | 29 | ``` |
| 30 | +- Add support for collecting native crashes using Tombstones ([#4933](https://github.com/getsentry/sentry-java/pull/4933), [#5037](https://github.com/getsentry/sentry-java/pull/5037)) |
| 31 | + - Added Tombstone integration that detects native crashes using `ApplicationExitInfo.REASON_CRASH_NATIVE` on Android 12+ |
| 32 | + - Crashes enriched with Tombstones contain more crash details and detailed thread info |
| 33 | + - Tombstone and NDK integrations are now automatically merged into a single crash event, eliminating duplicate reports |
| 34 | + - To enable it, add the integration in your Sentry initialization: |
| 35 | + ```kotlin |
| 36 | + SentryAndroid.init(context, options -> { |
| 37 | + options.isTombstoneEnabled = true |
| 38 | + }) |
| 39 | + ``` |
| 40 | + or in the `AndroidManifest.xml` using: |
| 41 | + ```xml |
| 42 | + <meta-data android:name="io.sentry.tombstone.enable" android:value="true" /> |
| 43 | + ``` |
18 | 44 |
|
19 | 45 | ### Fixes |
20 | 46 |
|
|
0 commit comments