fix(deps): update sentry to v8.32.0 (#1067)

This PR contains the following updates:

| Package | Change |
[Age](https://docs.renovatebot.com/merge-confidence/) |
[Confidence](https://docs.renovatebot.com/merge-confidence/) |
|---|---|---|---|
|
[io.sentry:sentry-bom](https://redirect.github.com/getsentry/sentry-java)
| `8.31.0` → `8.32.0` |
![age](https://developer.mend.io/api/mc/badges/age/maven/io.sentry:sentry-bom/8.32.0?slim=true)
|
![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/io.sentry:sentry-bom/8.31.0/8.32.0?slim=true)
|
|
[io.sentry:sentry-android-sqlite](https://redirect.github.com/getsentry/sentry-java)
| `8.31.0` → `8.32.0` |
![age](https://developer.mend.io/api/mc/badges/age/maven/io.sentry:sentry-android-sqlite/8.32.0?slim=true)
|
![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/io.sentry:sentry-android-sqlite/8.31.0/8.32.0?slim=true)
|
|
[io.sentry:sentry-android-core](https://redirect.github.com/getsentry/sentry-java)
| `8.31.0` → `8.32.0` |
![age](https://developer.mend.io/api/mc/badges/age/maven/io.sentry:sentry-android-core/8.32.0?slim=true)
|
![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/io.sentry:sentry-android-core/8.31.0/8.32.0?slim=true)
|
| [io.sentry:sentry](https://redirect.github.com/getsentry/sentry-java)
| `8.31.0` → `8.32.0` |
![age](https://developer.mend.io/api/mc/badges/age/maven/io.sentry:sentry/8.32.0?slim=true)
|
![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/io.sentry:sentry/8.31.0/8.32.0?slim=true)
|

---

### Release Notes

<details>
<summary>getsentry/sentry-java (io.sentry:sentry-bom)</summary>

###
[`v8.32.0`](https://redirect.github.com/getsentry/sentry-java/blob/HEAD/CHANGELOG.md#8320)

[Compare
Source](https://redirect.github.com/getsentry/sentry-java/compare/8.31.0...8.32.0)

##### Features

- Add `installGroupsOverride` parameter and `installGroups` property to
Build Distribution SDK
([#&#8203;5062](https://redirect.github.com/getsentry/sentry-java/pull/5062))
- Update Android targetSdk to API 36 (Android 16)
([#&#8203;5016](https://redirect.github.com/getsentry/sentry-java/pull/5016))
- Add AndroidManifest support for Spotlight configuration via
`io.sentry.spotlight.enable` and `io.sentry.spotlight.url`
([#&#8203;5064](https://redirect.github.com/getsentry/sentry-java/pull/5064))
- Collect database transaction spans (`BEGIN`, `COMMIT`, `ROLLBACK`)
([#&#8203;5072](https://redirect.github.com/getsentry/sentry-java/pull/5072))
- To enable creation of these spans, set
`options.enableDatabaseTransactionTracing` to `true`
- `enable-database-transaction-tracing=true` when using
`sentry.properties`
- For Spring Boot, use `sentry.enable-database-transaction-tracing=true`
in `application.properties` or in `application.yml`:
    ```yaml
    sentry:
      enable-database-transaction-tracing: true
    ```
- Add support for collecting native crashes using Tombstones
([#&#8203;4933](https://redirect.github.com/getsentry/sentry-java/pull/4933),
[#&#8203;5037](https://redirect.github.com/getsentry/sentry-java/pull/5037))
- Added Tombstone integration that detects native crashes using
`ApplicationExitInfo.REASON_CRASH_NATIVE` on Android 12+
- Crashes enriched with Tombstones contain more crash details and
detailed thread info
- Tombstone and NDK integrations are now automatically merged into a
single crash event, eliminating duplicate reports
  - To enable it, add the integration in your Sentry initialization:
    ```kotlin
    SentryAndroid.init(context, options -> {
        options.isTombstoneEnabled = true
    })
    ```
    or in the `AndroidManifest.xml` using:
    ```xml
<meta-data android:name="io.sentry.tombstone.enable"
android:value="true" />
    ```

##### Fixes

- Extract `SpotlightIntegration` to separate `sentry-spotlight` module
to prevent insecure HTTP URLs from appearing in release APKs
([#&#8203;5064](https://redirect.github.com/getsentry/sentry-java/pull/5064))
- **Breaking:** Users who enable Spotlight must now add the
`io.sentry:sentry-spotlight` dependency:
    ```kotlin
    dependencies {
        debugImplementation("io.sentry:sentry-spotlight:<version>")
    }
    ```
- Fix scroll target detection for Jetpack Compose
([#&#8203;5017](https://redirect.github.com/getsentry/sentry-java/pull/5017))
- No longer fork Sentry `Scopes` for `reactor-kafka` consumer poll
`Runnable`
([#&#8203;5080](https://redirect.github.com/getsentry/sentry-java/pull/5080))
- This was causing a memory leak because `reactor-kafka`'s poll event
reschedules itself infinitely, and each invocation of
`SentryScheduleHook` created forked scopes with a parent reference,
building an unbounded chain that couldn't be garbage collected.
- Fix cold/warm app start type detection for Android devices running API
level 34+
([#&#8203;4999](https://redirect.github.com/getsentry/sentry-java/pull/4999))

##### Internal

- Establish new native exception mechanisms to differentiate events
generated by `sentry-native` from `ApplicationExitInfo`.
([#&#8203;5052](https://redirect.github.com/getsentry/sentry-java/pull/5052))
- Set `write` permission for `statuses` in the changelog preview GHA
workflow.
([#&#8203;5053](https://redirect.github.com/getsentry/sentry-java/pull/5053))

##### Dependencies

- Bump Native SDK from v0.12.3 to v0.12.4
([#&#8203;5061](https://redirect.github.com/getsentry/sentry-java/pull/5061))
-
[changelog](https://redirect.github.com/getsentry/sentry-native/blob/master/CHANGELOG.md#0124)
-
[diff](https://redirect.github.com/getsentry/sentry-native/compare/0.12.3...0.12.4)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about these
updates again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/msfjarvis/compose-lobsters).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi45Ny4wIiwidXBkYXRlZEluVmVyIjoiNDIuOTcuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
This commit is contained in:
renovate[bot]
2026-02-10 08:37:24 +00:00
committed by GitHub
co-authored by renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
parent 25f7189f68
commit 315df3032b
+1 -1
View File
@@ -29,7 +29,7 @@ navigation3-material = "1.3.0-alpha07"
paging = "3.4.0"
retrofit = "3.0.0"
runtimeSaveable = "1.11.0-alpha04"
sentry = "8.31.0"
sentry = "8.32.0"
serialization = "1.10.0"
sqldelight = "2.2.1"
sqlite = "2.6.2"