Skip to content

chore(deps-v7): update Cocoa SDK to v8.51.1 #4843

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
May 26, 2025
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)
}

func testEnableExperimentalViewRendererDefault() {
let optionsDict = ([
"dsn": "https://[email protected]/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://[email protected]/1234567",
Expand All @@ -193,7 +193,7 @@ final class RNSentryReplayOptions: XCTestCase {

XCTAssertTrue(actualOptions.sessionReplay.enableExperimentalViewRenderer)
}

func testEnableExperimentalViewRendererFalse() {
let optionsDict = ([
"dsn": "https://[email protected]/1234567",
Expand All @@ -207,7 +207,7 @@ final class RNSentryReplayOptions: XCTestCase {

XCTAssertFalse(actualOptions.sessionReplay.enableExperimentalViewRenderer)
}

func testEnableFastViewRenderingDefault() {
let optionsDict = ([
"dsn": "https://[email protected]/1234567",
Expand All @@ -220,7 +220,7 @@ final class RNSentryReplayOptions: XCTestCase {

XCTAssertFalse(actualOptions.sessionReplay.enableFastViewRendering)
}

func testEnableFastViewRenderingTrue() {
let optionsDict = ([
"dsn": "https://[email protected]/1234567",
Expand All @@ -234,7 +234,7 @@ final class RNSentryReplayOptions: XCTestCase {

XCTAssertTrue(actualOptions.sessionReplay.enableFastViewRendering)
}

func testEnableFastViewRenderingFalse() {
let optionsDict = ([
"dsn": "https://[email protected]/1234567",
Expand Down
Loading