fix: Disable SessionSentryReplayIntegration if the environment is unsafe#6573
Merged
fix: Disable SessionSentryReplayIntegration if the environment is unsafe#6573
Conversation
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## v8.x #6573 +/- ##
=============================================
+ Coverage 85.839% 86.087% +0.248%
=============================================
Files 441 441
Lines 27442 27443 +1
Branches 11916 11922 +6
=============================================
+ Hits 23556 23625 +69
+ Misses 3842 3544 -298
- Partials 44 274 +230
... and 41 files with indirect coverage changes Continue to review full report in Codecov by Sentry.
|
philprime
approved these changes
Oct 28, 2025
Tests/SentryTests/Integrations/SessionReplay/SentryReplayApiTests.swift
Outdated
Show resolved
Hide resolved
Contributor
Performance metrics 🚀
|
| Revision | Plain | With Sentry | Diff |
|---|---|---|---|
| b66be9b | 1218.22 ms | 1244.19 ms | 25.96 ms |
| a7a0a2b | 1218.61 ms | 1248.69 ms | 30.08 ms |
| ab82dac | 1213.12 ms | 1240.92 ms | 27.80 ms |
| 41834f1 | 1235.15 ms | 1256.31 ms | 21.17 ms |
| c11a8e0 | 1203.00 ms | 1223.23 ms | 20.23 ms |
| f76f6bf | 1207.70 ms | 1233.27 ms | 25.57 ms |
| ab82dac | 1249.73 ms | 1272.69 ms | 22.96 ms |
| e537c90 | 1226.22 ms | 1256.64 ms | 30.41 ms |
| 5e3fb04 | 1239.84 ms | 1267.39 ms | 27.55 ms |
| 3af1ae9 | 1225.60 ms | 1252.65 ms | 27.05 ms |
App size
| Revision | Plain | With Sentry | Diff |
|---|---|---|---|
| b66be9b | 23.75 KiB | 996.03 KiB | 972.28 KiB |
| a7a0a2b | 23.75 KiB | 996.04 KiB | 972.29 KiB |
| ab82dac | 23.75 KiB | 991.86 KiB | 968.11 KiB |
| 41834f1 | 23.75 KiB | 991.88 KiB | 968.13 KiB |
| c11a8e0 | 23.75 KiB | 991.86 KiB | 968.12 KiB |
| f76f6bf | 23.74 KiB | 981.30 KiB | 957.56 KiB |
| ab82dac | 23.75 KiB | 991.85 KiB | 968.10 KiB |
| e537c90 | 23.75 KiB | 992.03 KiB | 968.28 KiB |
| 5e3fb04 | 23.74 KiB | 981.30 KiB | 957.56 KiB |
| 3af1ae9 | 23.74 KiB | 981.29 KiB | 957.55 KiB |
Previous results on branch: itay/fix_replay_integration
Startup times
| Revision | Plain | With Sentry | Diff |
|---|---|---|---|
| 0e6aadf | 1213.44 ms | 1236.85 ms | 23.42 ms |
| 8ec220e | 1205.85 ms | 1233.22 ms | 27.37 ms |
App size
| Revision | Plain | With Sentry | Diff |
|---|---|---|---|
| 0e6aadf | 23.75 KiB | 991.67 KiB | 967.92 KiB |
| 8ec220e | 23.75 KiB | 991.67 KiB | 967.93 KiB |
itaybre
added a commit
that referenced
this pull request
Oct 30, 2025
* test: Ensure test is server running (#6300) Ensure that the test server is running with a retry mechanism to avoid flakiness in CI. * ci: Add v8.x branch to workflows (#6321) * chore: Explain v8 branch (#6323) Add decision log entry for v8 branch and explain how to release from it. * ci(v8): Bump Xcode from 26.0 to 26.0.1 (#6394) * docs: Add note to README with reference to v9 on main branch (#6402) * fix: Wrong Frame Delay when becoming active (#6393) The SDK reported false frame delay statistics when it moved from the background to the foreground, which also led to falsely reported app hangs. Fixes GH-6345 * fix(session-replay): Add detection for potential PII leaks disabling session replay (#6389) * release: 8.57.0 * chore: Bump simulators to 26.1 (#6578) * fix: Fix crash when last replay info is missing some keys (#6577) * fix: Fix crash when last replay info is missing keys * Update changelog * fix: Disable SessionSentryReplayIntegration if the environment is unsafe (#6573) * fix: Disable SessionSentryReplayIntegration if the environment is unsafe * Simplify shouldEnableSessionReplay * Rename test * Add log message * Update changelog * Safely unwrap SentryOptions * fix: Fix UITouch background thread access in SentryTouchTracker (#6584) * release: 8.57.1 * Fix merge issues * Fix another merge issue * More merge conflicts * Add SentryThreadInspector again * Fix tests on iOS 26 * Add `enableSessionReplayInUnreliableEnvironment` --------- Co-authored-by: Philipp Hofmann <[email protected]> Co-authored-by: Philip Niedertscheider <[email protected]> Co-authored-by: getsentry-bot <[email protected]> Co-authored-by: getsentry-bot <[email protected]>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR disable the SessionReplayIntegration instead of disabling SentrySessionReplay to avoid running any SessionReplay logic if not needed.