Skip to content

Conversation

github-actions[bot]
Copy link
Contributor

@github-actions github-actions bot commented Oct 2, 2025

Bumps scripts/update-android.sh from 8.22.0 to 8.23.0.

Auto-generated by a dependency updater.

Changelog

8.23.0

Features

  • Add session replay id to Sentry Logs (#4740)
  • Add support for continuous profiling of JVM applications on macOS and Linux (#4556)
    • Sentry continuous profiling on the JVM is using async-profiler under the hood.
    • By default this feature is disabled. Set a profile sample rate and chose a lifecycle (see below) to enable it.
    • Add the sentry-async-profiler dependency to your project
    • Set a sample rate for profiles, e.g. 1.0 to send all of them. You may use options.setProfileSessionSampleRate(1.0) in code or profile-session-sample-rate=1.0 in sentry.properties
    • Set a profile lifecycle via options.setProfileLifecycle(ProfileLifecycle.TRACE) in code or profile-lifecycle=TRACE in sentry.properties
      • By default the lifecycle is set to MANUAL, meaning you have to explicitly call Sentry.startProfiler() and Sentry.stopProfiler()
      • You may change it to TRACE which will create a profile for each transaction
    • To automatically upload Profiles for each transaction in a Spring Boot application
      • set sentry.profile-session-sample-rate=1.0 and sentry.profile-lifecycle=TRACE in application.properties
      • or set sentry.profile-session-sample-rate: 1.0 and sentry.profile-lifecycle: TRACE in application.yml
    • Profiling can also be combined with our OpenTelemetry integration

Fixes

  • Start performance collection on AppStart continuous profiling (#4752)
  • Preserve modifiers in SentryTraced (#4757)

Improvements

  • Handle RejectedExecutionException everywhere (#4747)
  • Mark SentryEnvelope as not internal (#4748)

group = io.sentry
version = 6.0.0-alpha.4
sdk_version = 8.22.0
sdk_version = 8.23.0
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Potential bug: The AndroidOkHttpInstallStrategy has a hardcoded maxSupportedSentryVersion of 6.x, which will prevent auto-installation of sentry-android-okhttp with the new SDK version 8.23.0.
  • Description: The AndroidOkHttpInstallStrategy defines a maxSupportedSentryVersion of SemVer(6, 9999, 9999). With the Sentry SDK version being updated to 8.23.0 in gradle.properties, the version check sentrySemVersion > maxSupportedSentryVersion in AbstractInstallStrategy will evaluate to true. This will cause the auto-installation logic to silently skip installing the sentry-android-okhttp module, only logging a debug message. Users relying on auto-installation for OkHttp tracing will lose this functionality without a clear warning.

  • Suggested fix: Update the maxSupportedSentryVersion in AndroidOkHttpInstallStrategy to a value that accommodates Sentry SDK version 8.x, or remove the constraint entirely if there are no known upper-bound compatibility issues.
    severity: 0.65, confidence: 0.98

Did we get this right? 👍 / 👎 to inform future reviews.

@bruno-garcia bruno-garcia force-pushed the deps/scripts/update-android.sh/8.23.0 branch from 11e0db6 to 1b58f0b Compare October 3, 2025 07:26
@bruno-garcia bruno-garcia force-pushed the deps/scripts/update-android.sh/8.23.0 branch from 1b58f0b to dedc11a Compare October 3, 2025 09:55
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant