-
-
Notifications
You must be signed in to change notification settings - Fork 353
Removes temporary flags after Cocoa Bump #5038
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
antonis
merged 50 commits into
deps/scripts/update-cocoa.sh
from
antonis/remove_cocoa_flags
Sep 5, 2025
Merged
Changes from all commits
Commits
Show all changes
50 commits
Select commit
Hold shift + click to select a range
6b7aad8
chore: update scripts/update-cocoa.sh to 8.54.0
web-flow 83f91bb
Remove Cocoa Flags
antonis 8ae835d
Update sample app native initialisation example
antonis 702b2fc
Remove unused imports
antonis ed6a296
chore: update scripts/update-cocoa.sh to 8.54.0
web-flow 1d95a86
Merge branch 'deps/scripts/update-cocoa.sh' into antonis/remove_cocoa…
antonis 54af75e
Test with cocoa fix
antonis c59bb69
Trigger CI
antonis a67956f
Revert "Trigger CI"
antonis d6c0afc
Revert "Test with cocoa fix"
antonis ef4dd63
chore: update scripts/update-cocoa.sh to 8.54.0
web-flow eed4e18
Merge branch 'deps/scripts/update-cocoa.sh' into antonis/remove_cocoa…
antonis 8956b09
Test with 8.54.1-alpha.1
antonis 3d17397
Test with 8.54.1-apha.2
antonis 4ea0cda
trigger ci
antonis 4f3abd3
chore: update scripts/update-cocoa.sh to 8.55.0
web-flow 584af1e
Merge branch 'deps/scripts/update-cocoa.sh' into antonis/remove_cocoa…
antonis dcd3b15
chore: update scripts/update-cocoa.sh to 8.55.0
web-flow 5124b3c
Merge branch 'deps/scripts/update-cocoa.sh' into antonis/remove_cocoa…
antonis 4b795ed
Remove duplicate changelog
antonis 29f79b9
ref: Rename SentryNativeInitialiser to SentryNativeInitializer
antonis c3af0db
Revert unneeded changes
antonis 61df9c3
chore: update scripts/update-cocoa.sh to 8.55.0
web-flow 5dc8855
Merge branch 'deps/scripts/update-cocoa.sh' into antonis/remove_cocoa…
antonis 8543783
chore: update scripts/update-cocoa.sh to 8.55.0
web-flow d32b25b
Merge branch 'deps/scripts/update-cocoa.sh' into antonis/remove_cocoa…
antonis b86a0dc
chore: update scripts/update-cocoa.sh to 8.55.0
web-flow 8f067d0
Set SDK_V9=0
antonis 2c989fd
Merge branch 'deps/scripts/update-cocoa.sh' into antonis/remove_cocoa…
antonis b721a66
Revert "Set SDK_V9=0"
antonis bc32ea1
Set SDK_V9=0 in sample app dev build
antonis d0f56da
Revert "Set SDK_V9=0 in sample app dev build"
antonis e9deb82
Reapply "Set SDK_V9=0 in sample app dev build"
antonis b4b5d0f
Revert "Reapply "Set SDK_V9=0 in sample app dev build""
antonis 338ce7e
chore: update scripts/update-cocoa.sh to 8.55.0
web-flow bdf9fb6
Merge branch 'deps/scripts/update-cocoa.sh' into antonis/remove_cocoa…
antonis b4ee848
chore: update scripts/update-cocoa.sh to 8.55.0
web-flow b125adf
Merge branch 'deps/scripts/update-cocoa.sh' into antonis/remove_cocoa…
antonis b4fd131
Remove changelog duplication
antonis 12fa4f7
Remove flags
antonis f8540d0
chore: update scripts/update-cocoa.sh to 8.55.0
web-flow 32601ac
test without bundler-cache
antonis 67cc946
Revert "test without bundler-cache"
antonis c93f801
Merge branch 'deps/scripts/update-cocoa.sh' into antonis/remove_cocoa…
antonis 55c7ed5
Try force disabling sdk-v9
antonis 2c77f33
Revert "Try force disabling sdk-v9"
antonis 6520cb7
chore: update scripts/update-cocoa.sh to 8.55.0
web-flow 4f34583
Merge branch 'deps/scripts/update-cocoa.sh' into antonis/remove_cocoa…
antonis 7920e7f
Test with xcode 16.2
antonis 9ec4293
Merge branch 'deps/scripts/update-cocoa.sh' into antonis/remove_cocoa…
antonis File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -67,11 +67,7 @@ final class RNSentryReplayOptions: XCTestCase { | |
] as NSDictionary).mutableCopy() as! NSMutableDictionary | ||
RNSentryReplay.updateOptions(optionsDict) | ||
|
||
#if CROSS_PLATFORM_TEST | ||
let actualOptions = try! SentryOptionsInternal.initWithDict(optionsDict as! [String: Any]) | ||
#else | ||
let actualOptions = try! Options(dict: optionsDict as! [String: Any]) | ||
#endif | ||
XCTAssertEqual(actualOptions.sessionReplay.sessionSampleRate, 0.75) | ||
} | ||
|
||
|
@@ -82,11 +78,7 @@ final class RNSentryReplayOptions: XCTestCase { | |
] as NSDictionary).mutableCopy() as! NSMutableDictionary | ||
RNSentryReplay.updateOptions(optionsDict) | ||
|
||
#if CROSS_PLATFORM_TEST | ||
let actualOptions = try! SentryOptionsInternal.initWithDict(optionsDict as! [String: Any]) | ||
#else | ||
let actualOptions = try! Options(dict: optionsDict as! [String: Any]) | ||
#endif | ||
XCTAssertEqual(actualOptions.sessionReplay.onErrorSampleRate, 0.75) | ||
} | ||
|
||
|
@@ -116,11 +108,7 @@ final class RNSentryReplayOptions: XCTestCase { | |
|
||
RNSentryReplay.updateOptions(optionsDict) | ||
|
||
#if CROSS_PLATFORM_TEST | ||
let actualOptions = try! SentryOptionsInternal.initWithDict(optionsDict as! [String: Any]) | ||
#else | ||
let actualOptions = try! Options(dict: optionsDict as! [String: Any]) | ||
#endif | ||
|
||
XCTAssertEqual(actualOptions.sessionReplay.maskAllImages, true) | ||
assertContainsClass(classArray: actualOptions.sessionReplay.maskedViewClasses, stringClass: "RCTImageView") | ||
|
@@ -135,11 +123,7 @@ final class RNSentryReplayOptions: XCTestCase { | |
|
||
RNSentryReplay.updateOptions(optionsDict) | ||
|
||
#if CROSS_PLATFORM_TEST | ||
let actualOptions = try! SentryOptionsInternal.initWithDict(optionsDict as! [String: Any]) | ||
#else | ||
let actualOptions = try! Options(dict: optionsDict as! [String: Any]) | ||
#endif | ||
|
||
XCTAssertEqual(actualOptions.sessionReplay.maskAllImages, false) | ||
XCTAssertEqual(actualOptions.sessionReplay.maskedViewClasses.count, 0) | ||
|
@@ -154,11 +138,7 @@ final class RNSentryReplayOptions: XCTestCase { | |
|
||
RNSentryReplay.updateOptions(optionsDict) | ||
|
||
#if CROSS_PLATFORM_TEST | ||
let actualOptions = try! SentryOptionsInternal.initWithDict(optionsDict as! [String: Any]) | ||
#else | ||
let actualOptions = try! Options(dict: optionsDict as! [String: Any]) | ||
#endif | ||
|
||
XCTAssertEqual(actualOptions.sessionReplay.maskAllText, true) | ||
assertContainsClass(classArray: actualOptions.sessionReplay.maskedViewClasses, stringClass: "RCTTextView") | ||
|
@@ -182,11 +162,7 @@ final class RNSentryReplayOptions: XCTestCase { | |
|
||
RNSentryReplay.updateOptions(optionsDict) | ||
|
||
#if CROSS_PLATFORM_TEST | ||
let actualOptions = try! SentryOptionsInternal.initWithDict(optionsDict as! [String: Any]) | ||
#else | ||
let actualOptions = try! Options(dict: optionsDict as! [String: Any]) | ||
#endif | ||
|
||
XCTAssertEqual(actualOptions.sessionReplay.maskAllText, false) | ||
XCTAssertEqual(actualOptions.sessionReplay.maskedViewClasses.count, 0) | ||
|
@@ -200,11 +176,7 @@ final class RNSentryReplayOptions: XCTestCase { | |
|
||
RNSentryReplay.updateOptions(optionsDict) | ||
|
||
#if CROSS_PLATFORM_TEST | ||
let actualOptions = try! SentryOptionsInternal.initWithDict(optionsDict as! [String: Any]) | ||
#else | ||
let actualOptions = try! Options(dict: optionsDict as! [String: Any]) | ||
#endif | ||
|
||
XCTAssertTrue(actualOptions.sessionReplay.enableExperimentalViewRenderer) | ||
} | ||
|
@@ -218,11 +190,7 @@ final class RNSentryReplayOptions: XCTestCase { | |
|
||
RNSentryReplay.updateOptions(optionsDict) | ||
|
||
#if CROSS_PLATFORM_TEST | ||
let actualOptions = try! SentryOptionsInternal.initWithDict(optionsDict as! [String: Any]) | ||
#else | ||
let actualOptions = try! Options(dict: optionsDict as! [String: Any]) | ||
#endif | ||
|
||
XCTAssertTrue(actualOptions.sessionReplay.enableViewRendererV2) | ||
} | ||
|
@@ -236,11 +204,7 @@ final class RNSentryReplayOptions: XCTestCase { | |
|
||
RNSentryReplay.updateOptions(optionsDict) | ||
|
||
#if CROSS_PLATFORM_TEST | ||
let actualOptions = try! SentryOptionsInternal.initWithDict(optionsDict as! [String: Any]) | ||
#else | ||
let actualOptions = try! Options(dict: optionsDict as! [String: Any]) | ||
#endif | ||
|
||
XCTAssertFalse(actualOptions.sessionReplay.enableViewRendererV2) | ||
} | ||
|
@@ -253,11 +217,7 @@ final class RNSentryReplayOptions: XCTestCase { | |
|
||
RNSentryReplay.updateOptions(optionsDict) | ||
|
||
#if CROSS_PLATFORM_TEST | ||
let actualOptions = try! SentryOptionsInternal.initWithDict(optionsDict as! [String: Any]) | ||
#else | ||
let actualOptions = try! Options(dict: optionsDict as! [String: Any]) | ||
#endif | ||
|
||
XCTAssertFalse(actualOptions.sessionReplay.enableFastViewRendering) | ||
} | ||
|
@@ -271,11 +231,7 @@ final class RNSentryReplayOptions: XCTestCase { | |
|
||
RNSentryReplay.updateOptions(optionsDict) | ||
|
||
#if CROSS_PLATFORM_TEST | ||
let actualOptions = try! SentryOptionsInternal.initWithDict(optionsDict as! [String: Any]) | ||
#else | ||
let actualOptions = try! Options(dict: optionsDict as! [String: Any]) | ||
#endif | ||
|
||
XCTAssertTrue(actualOptions.sessionReplay.enableFastViewRendering) | ||
} | ||
|
@@ -289,15 +245,11 @@ final class RNSentryReplayOptions: XCTestCase { | |
|
||
RNSentryReplay.updateOptions(optionsDict) | ||
|
||
#if CROSS_PLATFORM_TEST | ||
let actualOptions = try! SentryOptionsInternal.initWithDict(optionsDict as! [String: Any]) | ||
#else | ||
let actualOptions = try! Options(dict: optionsDict as! [String: Any]) | ||
#endif | ||
|
||
XCTAssertFalse(actualOptions.sessionReplay.enableFastViewRendering) | ||
} | ||
|
||
func testReplayQualityDefault() { | ||
let optionsDict = ([ | ||
"dsn": "https://[email protected]/1234567", | ||
|
@@ -306,11 +258,7 @@ final class RNSentryReplayOptions: XCTestCase { | |
|
||
RNSentryReplay.updateOptions(optionsDict) | ||
|
||
#if CROSS_PLATFORM_TEST | ||
let actualOptions = try! SentryOptionsInternal.initWithDict(optionsDict as! [String: Any]) | ||
#else | ||
let actualOptions = try! Options(dict: optionsDict as! [String: Any]) | ||
#endif | ||
|
||
XCTAssertEqual(actualOptions.sessionReplay.quality, SentryReplayOptions.SentryReplayQuality.medium) | ||
} | ||
|
@@ -324,11 +272,7 @@ final class RNSentryReplayOptions: XCTestCase { | |
|
||
RNSentryReplay.updateOptions(optionsDict) | ||
|
||
#if CROSS_PLATFORM_TEST | ||
let actualOptions = try! SentryOptionsInternal.initWithDict(optionsDict as! [String: Any]) | ||
#else | ||
let actualOptions = try! Options(dict: optionsDict as! [String: Any]) | ||
#endif | ||
|
||
XCTAssertEqual(actualOptions.sessionReplay.quality, SentryReplayOptions.SentryReplayQuality.low) | ||
} | ||
|
@@ -342,11 +286,7 @@ final class RNSentryReplayOptions: XCTestCase { | |
|
||
RNSentryReplay.updateOptions(optionsDict) | ||
|
||
#if CROSS_PLATFORM_TEST | ||
let actualOptions = try! SentryOptionsInternal.initWithDict(optionsDict as! [String: Any]) | ||
#else | ||
let actualOptions = try! Options(dict: optionsDict as! [String: Any]) | ||
#endif | ||
|
||
XCTAssertEqual(actualOptions.sessionReplay.quality, SentryReplayOptions.SentryReplayQuality.medium) | ||
} | ||
|
@@ -360,11 +300,7 @@ final class RNSentryReplayOptions: XCTestCase { | |
|
||
RNSentryReplay.updateOptions(optionsDict) | ||
|
||
#if CROSS_PLATFORM_TEST | ||
let actualOptions = try! SentryOptionsInternal.initWithDict(optionsDict as! [String: Any]) | ||
#else | ||
let actualOptions = try! Options(dict: optionsDict as! [String: Any]) | ||
#endif | ||
|
||
XCTAssertEqual(actualOptions.sessionReplay.quality, SentryReplayOptions.SentryReplayQuality.high) | ||
} | ||
|
@@ -378,11 +314,7 @@ final class RNSentryReplayOptions: XCTestCase { | |
|
||
RNSentryReplay.updateOptions(optionsDict) | ||
|
||
#if CROSS_PLATFORM_TEST | ||
let actualOptions = try! SentryOptionsInternal.initWithDict(optionsDict as! [String: Any]) | ||
#else | ||
let actualOptions = try! Options(dict: optionsDict as! [String: Any]) | ||
#endif | ||
|
||
XCTAssertEqual(actualOptions.sessionReplay.quality, SentryReplayOptions.SentryReplayQuality.medium) | ||
} | ||
|
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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#import <Foundation/Foundation.h> | ||
|
||
@interface SentryNativeInitializer : NSObject | ||
|
||
+ (void)initializeSentry; | ||
|
||
@end |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
#import "SentryNativeInitializer.h" | ||
@import Sentry; | ||
|
||
@implementation SentryNativeInitializer | ||
|
||
+ (void)initializeSentry | ||
{ | ||
[SentrySDK startWithConfigureOptions:^(SentryOptions *options) { | ||
// Only options set here will apply to the iOS SDK | ||
// Options from JS are not passed to the iOS SDK when initialized manually | ||
options.dsn = @"https://[email protected]/5428561"; | ||
options.debug = YES; // Enabled debug when first installing is always helpful | ||
|
||
options.beforeSend = ^SentryEvent *(SentryEvent *event) | ||
{ | ||
// We don't want to send an event after startup that came from a Unhandled JS Exception | ||
// of react native Because we sent it already before the app crashed. | ||
if (nil != event.exceptions.firstObject.type && | ||
[event.exceptions.firstObject.type rangeOfString:@"Unhandled JS Exception"].location | ||
!= NSNotFound) { | ||
NSLog(@"Unhandled JS Exception"); | ||
return nil; | ||
} | ||
|
||
return event; | ||
}; | ||
|
||
// Enable the App start and Frames tracking measurements | ||
// If this is disabled the app start and frames tracking | ||
// won't be passed from native to JS transactions | ||
PrivateSentrySDKOnly.appStartMeasurementHybridSDKMode = true; | ||
#if TARGET_OS_IPHONE || TARGET_OS_MACCATALYST | ||
PrivateSentrySDKOnly.framesTrackingMeasurementHybridSDKMode = true; | ||
#endif | ||
}]; | ||
} | ||
|
||
@end |
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.