Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@

### Dependencies

- Bump Cocoa SDK from v8.50.2 to v8.51.1 ([#4843](https://github.com/getsentry/sentry-react-native/pull/4843))
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/main/CHANGELOG.md#8511)
- [diff](https://github.com/getsentry/sentry-cocoa/compare/8.50.0...8.51.1)
- Bump Android SDK from v8.11.1 to v8.12.0 ([#4847](https://github.com/getsentry/sentry-react-native/pull/4847))
- [changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md#8120)
- [diff](https://github.com/getsentry/sentry-java/compare/8.11.1...8.12.0)
Expand Down
2 changes: 1 addition & 1 deletion packages/core/RNSentry.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Pod::Spec.new do |s|

s.compiler_flags = other_cflags

s.dependency 'Sentry/HybridSDK', '8.50.0'
s.dependency 'Sentry/HybridSDK', '8.51.1'

if defined? install_modules_dependencies
# Default React Native dependencies for 0.71 and above (new and legacy architecture)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ final class RNSentryReplayOptions: XCTestCase {
XCTAssertEqual(actualOptions.sessionReplay.maskAllText, false)
XCTAssertEqual(actualOptions.sessionReplay.maskedViewClasses.count, 0)
}
Comment thread
lucas-zimerman marked this conversation as resolved.

func testEnableExperimentalViewRendererDefault() {
let optionsDict = ([
"dsn": "https://abc@def.ingest.sentry.io/1234567",
Expand All @@ -177,9 +177,9 @@ final class RNSentryReplayOptions: XCTestCase {

let actualOptions = try! Options(dict: optionsDict as! [String: Any])

XCTAssertFalse(actualOptions.sessionReplay.enableExperimentalViewRenderer)
XCTAssertTrue(actualOptions.sessionReplay.enableExperimentalViewRenderer)
}

func testEnableExperimentalViewRendererTrue() {
let optionsDict = ([
"dsn": "https://abc@def.ingest.sentry.io/1234567",
Expand All @@ -193,7 +193,7 @@ final class RNSentryReplayOptions: XCTestCase {

XCTAssertTrue(actualOptions.sessionReplay.enableExperimentalViewRenderer)
}

func testEnableExperimentalViewRendererFalse() {
let optionsDict = ([
"dsn": "https://abc@def.ingest.sentry.io/1234567",
Expand All @@ -207,7 +207,7 @@ final class RNSentryReplayOptions: XCTestCase {

XCTAssertFalse(actualOptions.sessionReplay.enableExperimentalViewRenderer)
}

func testEnableFastViewRenderingDefault() {
let optionsDict = ([
"dsn": "https://abc@def.ingest.sentry.io/1234567",
Expand All @@ -220,7 +220,7 @@ final class RNSentryReplayOptions: XCTestCase {

XCTAssertFalse(actualOptions.sessionReplay.enableFastViewRendering)
}

func testEnableFastViewRenderingTrue() {
let optionsDict = ([
"dsn": "https://abc@def.ingest.sentry.io/1234567",
Expand All @@ -234,7 +234,7 @@ final class RNSentryReplayOptions: XCTestCase {

XCTAssertTrue(actualOptions.sessionReplay.enableFastViewRendering)
}

func testEnableFastViewRenderingFalse() {
let optionsDict = ([
"dsn": "https://abc@def.ingest.sentry.io/1234567",
Expand Down
Loading