Requested by: @adinauer
Merge target: (default)
Quick links:
Assign the accepted label to this issue to approve the release.
To retract the release, the person requesting it must leave a comment containing #retract on a line by itself under this issue.
Targets
Checked targets will be skipped (either already published or user-requested skip). Uncheck to retry a target.
📋 Changelog
Features
- Add
installGroupsOverride parameter and installGroups property to Build Distribution SDK (#5062)
- Update Android targetSdk to API 36 (Android 16) (#5016)
- Add AndroidManifest support for Spotlight configuration via
io.sentry.spotlight.enable and io.sentry.spotlight.url (#5064)
- Collect database transaction spans (
BEGIN, COMMIT, ROLLBACK) (#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:
sentry:
enable-database-transaction-tracing: true
- Add support for collecting native crashes using Tombstones (#4933, #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:
SentryAndroid.init(context, options -> {
options.isTombstoneEnabled = true
})
or in the AndroidManifest.xml using:
<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 (#5064)
- Breaking: Users who enable Spotlight must now add the
io.sentry:sentry-spotlight dependency:
dependencies {
debugImplementation("io.sentry:sentry-spotlight:<version>")
}
- Fix scroll target detection for Jetpack Compose (#5017)
- No longer fork Sentry
Scopes for reactor-kafka consumer poll Runnable (#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+ (#4999)
Internal
- Establish new native exception mechanisms to differentiate events generated by
sentry-native from ApplicationExitInfo. (#5052)
- Set
write permission for statuses in the changelog preview GHA workflow. (#5053)
Dependencies
- Bump Native SDK from v0.12.3 to v0.12.4 (#5061)
Requested by: @adinauer
Merge target: (default)
Quick links:
Assign the accepted label to this issue to approve the release.
To retract the release, the person requesting it must leave a comment containing
#retracton a line by itself under this issue.Targets
Checked targets will be skipped (either already published or user-requested skip). Uncheck to retry a target.
📋 Changelog
Features
installGroupsOverrideparameter andinstallGroupsproperty to Build Distribution SDK (#5062)io.sentry.spotlight.enableandio.sentry.spotlight.url(#5064)BEGIN,COMMIT,ROLLBACK) (#5072)options.enableDatabaseTransactionTracingtotrueenable-database-transaction-tracing=truewhen usingsentry.propertiessentry.enable-database-transaction-tracing=trueinapplication.propertiesor inapplication.yml:ApplicationExitInfo.REASON_CRASH_NATIVEon Android 12+AndroidManifest.xmlusing:Fixes
SpotlightIntegrationto separatesentry-spotlightmodule to prevent insecure HTTP URLs from appearing in release APKs (#5064)io.sentry:sentry-spotlightdependency:dependencies { debugImplementation("io.sentry:sentry-spotlight:<version>") }Scopesforreactor-kafkaconsumer pollRunnable(#5080)reactor-kafka's poll event reschedules itself infinitely, and each invocation ofSentryScheduleHookcreated forked scopes with a parent reference, building an unbounded chain that couldn't be garbage collected.Internal
sentry-nativefromApplicationExitInfo. (#5052)writepermission forstatusesin the changelog preview GHA workflow. (#5053)Dependencies