Skip to content

Bump @sentry/react-native from 8.15.1 to 8.20.0 - #871

Closed
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/sentry/react-native-8.20.0
Closed

Bump @sentry/react-native from 8.15.1 to 8.20.0#871
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/sentry/react-native-8.20.0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 27, 2026

Copy link
Copy Markdown
Contributor

Bumps @sentry/react-native from 8.15.1 to 8.20.0.

Release notes

Sourced from @​sentry/react-native's releases.

8.20.0

Fixes

  • Fix iOS screenshots no longer being captured since 8.19.0 (Feedback Widget screenshot, attachScreenshot, Sentry.captureScreenshot()) by reverting the iOS SentrySDK.internal migration from #6380 (#6491, #6497)

  • Strip empty turbo_module.name / turbo_module.method tags in turboModuleContextIntegration so events captured outside an active TurboModule call no longer carry an ingestion "Processing Error" (#6506)

  • Make copySentryJsonConfiguration and the *_SentryUpload Gradle tasks compatible with the Gradle Configuration Cache (#6469)

    These tasks previously read project state at execution time — onlyIf predicates resolving closures from project.extra, plus project.rootDir, project.copy, project.logger, and Project.file inside task actions — which fails the build with Could not evaluate onlyIf predicate when org.gradle.configuration-cache=true (Gradle 9 defaults to recommending it). Environment reads are now captured at configuration time, file copies use an injected FileSystemOperations, and task actions use the task's own loggergetsentry/sentry-android-gradle-plugin#796

Dependencies

8.19.0

[!WARNING] ⚠️ Known Issue (iOS): screenshot capture returns empty in this release, affecting the Feedback Widget screenshot, attachScreenshot, and Sentry.captureScreenshot(). Android is unaffected. Please use 8.20.0.

Features

  • Aggregate TurboModule call counts + latency per (module, method, kind) and flush them on transaction finish and on a lazy periodic timer (#6377)

    Counters land on the finishing transaction as a synthetic turbo_modules.aggregate child span (per-call breakdown in span attributes) plus headline measurements on the root span (turbo_modules.call_count, turbo_modules.error_count, turbo_modules.total_ms, turbo_modules.top_module_ms). Long-running sessions without transactions emit a periodic info-level event (default every 30s, only when there's data).

    Sentry.init({
      integrations: [
        Sentry.turboModuleContextIntegration({
          // optional knobs (defaults shown):
          enableAggregateStats: true,
          aggregateFlushIntervalMs: 30_000,
          ignoreTurboModules: ['RNSentry'],
        }),
      ],
    });
  • Add Sentry.reportFullyDisplayed() imperative API for signaling Time to Full Display (#6419)

  • Add enableHistoricalTombstoneReporting option to report historical tombstones from Android's ApplicationExitInfo (#6450)

Changes

  • iOS: On React Native versions where React-hermes (or another RN pod) is not modularized by default (e.g. RN 0.71), add use_modular_headers! to your ios/Podfile above the target block. This is required because the RNSentry pod now contains Swift code (the new RNSentryInternal bridge over SentrySDK.internal) and CocoaPods refuses to integrate a Swift pod against non-modular ObjC dependencies. Newer React Native versions require no change (#6380).

Fixes

... (truncated)

Changelog

Sourced from @​sentry/react-native's changelog.

8.20.0

Fixes

  • Fix iOS screenshots no longer being captured since 8.19.0 (Feedback Widget screenshot, attachScreenshot, Sentry.captureScreenshot()) by reverting the iOS SentrySDK.internal migration from #6380 (#6491, #6497)

  • Strip empty turbo_module.name / turbo_module.method tags in turboModuleContextIntegration so events captured outside an active TurboModule call no longer carry an ingestion "Processing Error" (#6506)

  • Make copySentryJsonConfiguration and the *_SentryUpload Gradle tasks compatible with the Gradle Configuration Cache (#6469)

    These tasks previously read project state at execution time — onlyIf predicates resolving closures from project.extra, plus project.rootDir, project.copy, project.logger, and Project.file inside task actions — which fails the build with Could not evaluate onlyIf predicate when org.gradle.configuration-cache=true (Gradle 9 defaults to recommending it). Environment reads are now captured at configuration time, file copies use an injected FileSystemOperations, and task actions use the task's own loggergetsentry/sentry-android-gradle-plugin#796

Dependencies

8.19.0

[!WARNING] ⚠️ Known Issue (iOS): screenshot capture returns empty in this release, affecting the Feedback Widget screenshot, attachScreenshot, and Sentry.captureScreenshot(). Android is unaffected. Please use 8.20.0.

Features

  • Aggregate TurboModule call counts + latency per (module, method, kind) and flush them on transaction finish and on a lazy periodic timer (#6377)

    Counters land on the finishing transaction as a synthetic turbo_modules.aggregate child span (per-call breakdown in span attributes) plus headline measurements on the root span (turbo_modules.call_count, turbo_modules.error_count, turbo_modules.total_ms, turbo_modules.top_module_ms). Long-running sessions without transactions emit a periodic info-level event (default every 30s, only when there's data).

    Sentry.init({
      integrations: [
        Sentry.turboModuleContextIntegration({
          // optional knobs (defaults shown):
          enableAggregateStats: true,
          aggregateFlushIntervalMs: 30_000,
          ignoreTurboModules: ['RNSentry'],
        }),
      ],
    });
  • Add Sentry.reportFullyDisplayed() imperative API for signaling Time to Full Display (#6419)

  • Add enableHistoricalTombstoneReporting option to report historical tombstones from Android's ApplicationExitInfo (#6450)

Changes

  • iOS: On React Native versions where React-hermes (or another RN pod) is not modularized by default (e.g. RN 0.71), add use_modular_headers! to your ios/Podfile above the target block. This is required because the RNSentry pod now contains Swift code (the new RNSentryInternal bridge over SentrySDK.internal) and CocoaPods refuses to integrate a Swift pod against non-modular ObjC dependencies. Newer React Native versions require no change (#6380).

... (truncated)

Commits
  • 04f2009 release: 8.20.0
  • a2585ce revert(ios): Revert "Migrate from PrivateSentrySDKOnly to SentrySDK.internal ...
  • deca559 fix(core): Strip empty TurboModule sentinel tags in processEvent (#6506)
  • 2f8f2cc docs: Fix stale pod-install script names in CONTRIBUTING (#6495)
  • 1831892 fix(android): make Sentry Gradle tasks Configuration Cache compatible (#6469)
  • 70291c3 docs: Update 8.19.0 changelog (#6498)
  • 482538d chore(deps): bump fast-uri from 3.1.2 to 3.1.4 (#6496)
  • 0a131d8 chore(deps): pin glob 10.x resolution to ^10.5.0 to resolve command-injection...
  • e7d70bd chore(deps): bump minimatch/brace-expansion resolutions to ^2.1.2 to resolve ...
  • 081a95d chore(deps): add cross-spawn ^7.0.6 resolution to resolve ReDoS advisory (#6487)
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [@sentry/react-native](https://github.com/getsentry/sentry-react-native) from 8.15.1 to 8.20.0.
- [Release notes](https://github.com/getsentry/sentry-react-native/releases)
- [Changelog](https://github.com/getsentry/sentry-react-native/blob/main/CHANGELOG.md)
- [Commits](getsentry/sentry-react-native@8.15.1...8.20.0)

---
updated-dependencies:
- dependency-name: "@sentry/react-native"
  dependency-version: 8.20.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Jul 27, 2026
@coryzoon

coryzoon commented Aug 8, 2026

Copy link
Copy Markdown
Contributor

Handled in #858, closing

@coryzoon coryzoon closed this Aug 8, 2026
@dependabot @github

dependabot Bot commented on behalf of github Aug 8, 2026

Copy link
Copy Markdown
Contributor Author

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

@dependabot
dependabot Bot deleted the dependabot/npm_and_yarn/sentry/react-native-8.20.0 branch August 8, 2026 10:10
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 javascript Pull requests that update Javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant