Skip to content

Conversation

@github-actions
Copy link
Contributor

@github-actions github-actions bot commented Dec 4, 2025

Bumps scripts/update-android-stubs.sh from 8.27.1 to 8.28.0.

Auto-generated by a dependency updater.

Changelog

8.28.0

Features

  • Android: Flush logs when app enters background (#4951)
  • Add option to capture additional OkHttp network request/response details in session replays (#4919)
    • Depends on SentryOkHttpInterceptor to intercept the request and extract request/response bodies
    • To enable, add url regexes via the io.sentry.session-replay.network-detail-allow-urls metadata tag in AndroidManifest (code sample)
      • Or you can manually specify SentryReplayOptions via SentryAndroid#init:
        (Make sure you disable the auto init via manifest meta-data: io.sentry.auto-init=false)
Kotlin
SentryAndroid.init(
    this,
    options -> {
      // options.dsn = "https://examplePublicKeyo0.ingest.sentry.io/0"
      // options.sessionReplay.sessionSampleRate = 1.0
      // options.sessionReplay.onErrorSampleRate = 1.0
      // ..

      options.sessionReplay.networkDetailAllowUrls = listOf(".*")
      options.sessionReplay.networkDetailDenyUrls = listOf(".*deny.*")
      options.sessionReplay.networkRequestHeaders = listOf("Authorization", "X-Custom-Header", "X-Test-Request")
      options.sessionReplay.networkResponseHeaders = listOf("X-Response-Time", "X-Cache-Status", "X-Test-Response")
    });
Java
SentryAndroid.init(
    this,
    options -> {
        options.getSessionReplay().setNetworkDetailAllowUrls(Arrays.asList(".*"));
        options.getSessionReplay().setNetworkDetailDenyUrls(Arrays.asList(".*deny.*"));
        options.getSessionReplay().setNetworkRequestHeaders(
            Arrays.asList("Authorization", "X-Custom-Header", "X-Test-Request"));
        options.getSessionReplay().setNetworkResponseHeaders(
            Arrays.asList("X-Response-Time", "X-Cache-Status", "X-Test-Response"));
    });

Improvements

  • Avoid forking rootScopes for Reactor if current thread has NoOpScopes (#4793)
    • This reduces the SDKs overhead by avoiding unnecessary scope forks

Fixes

  • Fix missing thread stacks for ANRv1 events (#4918)
  • Fix handling of unparseable mime-type on request filter (#4939)

Internal

  • Support span envelope item type (#4935)

Dependencies

@github-actions github-actions bot requested a review from alwx as a code owner December 4, 2025 14:13
@github-actions github-actions bot added the dependencies Pull requests that update a dependency file label Dec 4, 2025
@github-actions github-actions bot added the dependencies Pull requests that update a dependency file label Dec 4, 2025
@bruno-garcia bruno-garcia force-pushed the deps/scripts/update-android-stubs.sh branch from 2c29694 to 59de3ac Compare December 4, 2025 14:13
@github-actions
Copy link
Contributor Author

github-actions bot commented Dec 4, 2025

Fails
🚫 Pull request is not ready for merge, please add the "ready-to-merge" label to the pull request

Generated by 🚫 dangerJS against da8da48


dependencies {
compileOnly 'io.sentry:sentry:8.27.1'
compileOnly 'io.sentry:sentry:8.28.0'

This comment was marked as outdated.

@bruno-garcia bruno-garcia force-pushed the deps/scripts/update-android-stubs.sh branch 2 times, most recently from c89c496 to 948f63c Compare December 4, 2025 14:24
@bruno-garcia bruno-garcia force-pushed the deps/scripts/update-android-stubs.sh branch from 948f63c to 4e2155a Compare December 4, 2025 14:58

dependencies {
compileOnly 'io.sentry:sentry:8.27.1'
compileOnly 'io.sentry:sentry:8.28.0'

This comment was marked as outdated.

@antonis antonis changed the base branch from main to deps/scripts/update-android.sh December 4, 2025 15:21
@antonis antonis merged commit a148e66 into deps/scripts/update-android.sh Dec 4, 2025
27 of 31 checks passed
@antonis antonis deleted the deps/scripts/update-android-stubs.sh branch December 4, 2025 15:24
antonis added a commit that referenced this pull request Dec 4, 2025
* chore: update scripts/update-android.sh to 8.28.0

* chore: update scripts/update-android-stubs.sh to 8.28.0 (#5439)

Co-authored-by: GitHub <noreply@github.com>
Co-authored-by: Antonis Lilis <antonis.lilis@sentry.io>

* Update stub

---------

Co-authored-by: GitHub <noreply@github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Antonis Lilis <antonis.lilis@sentry.io>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants