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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
- Removes deprecated useSpan function (#5591)
- Makes app hang tracking V2 the default and removes the option to enable/disable it (#5615)
- Removes `integrations` property from `SentryOptions` (#5749)
- Removes `defaultIntegrations` function from `SentryOptions` (#6664)
- Makes `SentryEventDecodable` internal (#5808)
- The `span` property on `SentryScope` is now readonly (#5866)
- Removes deprecated SentryDebugImageProvider class (#5598)
Expand Down
5 changes: 0 additions & 5 deletions Sources/Sentry/Public/SentryOptions.h
Original file line number Diff line number Diff line change
Expand Up @@ -207,11 +207,6 @@ NS_SWIFT_NAME(Options)
@property (nullable, nonatomic, copy)
SentryOnCrashedLastRunCallback onCrashedLastRun NS_SWIFT_SENDABLE;

/**
* Array of default integrations. Will be used if @c integrations is @c nil .
*/
+ (NSArray<NSString *> *)defaultIntegrations;

/**
* Indicates the percentage of events being sent to Sentry.
* @discussion Specifying @c 0 discards all events, @c 1.0 or @c nil sends all events, @c 0.01
Expand Down
5 changes: 5 additions & 0 deletions Sources/Sentry/include/SentryOptions+Private.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,11 @@ FOUNDATION_EXPORT NSString *const kSentryDefaultEnvironment;
@property (nonatomic, nullable, strong) SentryProfileOptions *profiling;
#endif // SENTRY_TARGET_PROFILING_SUPPORTED

/**
* Array of default integrations. Will be used if @c integrations is @c nil .
*/
+ (NSArray<NSString *> *)defaultIntegrations;

#if SENTRY_TARGET_REPLAY_SUPPORTED

- (BOOL)enableViewRendererV2;
Expand Down
33 changes: 0 additions & 33 deletions sdk_api.json
Original file line number Diff line number Diff line change
Expand Up @@ -16852,39 +16852,6 @@
}
]
},
{
"kind": "Function",
"name": "defaultIntegrations",
"printedName": "defaultIntegrations()",
"children": [
{
"kind": "TypeNominal",
"name": "Array",
"printedName": "[Swift.String]",
"children": [
{
"kind": "TypeNominal",
"name": "String",
"printedName": "Swift.String",
"usr": "s:SS"
}
],
"usr": "s:Sa"
}
],
"declKind": "Func",
"usr": "c:objc(cs)SentryOptions(cm)defaultIntegrations",
"moduleName": "Sentry",
"static": true,
"isOpen": true,
"objc_name": "defaultIntegrations",
"declAttributes": [
"DiscardableResult",
"ObjC",
"Dynamic"
],
"funcSelfKind": "NonMutating"
},
{
"kind": "Var",
"name": "sampleRate",
Expand Down
Loading