Skip to content

Commit ea1c0cf

Browse files
authored
ios: missing binding method (getsentry#2436)
1 parent cf89997 commit ea1c0cf

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

CHANGELOG.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
## Unreleased
44

5+
### Features
6+
7+
- Symbolication for Single File Apps ([#2425](https://github.com/getsentry/sentry-dotnet/pull/2425))
8+
- Add binding to `SwiftAsyncStacktraces` on iOS ([#2436](https://github.com/getsentry/sentry-dotnet/pull/2436))
9+
510
### Fixes
611

712
- Fix Sentry logger options for MAUI and Azure Functions ([#2423](https://github.com/getsentry/sentry-dotnet/pull/2423))
@@ -18,10 +23,6 @@
1823
- [changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md#6230)
1924
- [diff](https://github.com/getsentry/sentry-java/compare/6.22.0...6.23.0)
2025

21-
### Features
22-
23-
- Symbolication for Single File Apps ([#2425](https://github.com/getsentry/sentry-dotnet/pull/2425))
24-
2526
## 3.33.1
2627

2728
### Fixes

src/Sentry.Bindings.Cocoa/ApiDefinitions.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -874,6 +874,10 @@ interface SentryOptions
874874
// @property (nonatomic) BOOL enableTimeToFullDisplay;
875875
[Export ("enableTimeToFullDisplay")]
876876
bool EnableTimeToFullDisplay { get; set; }
877+
878+
// @property (assign, nonatomic) BOOL swiftAsyncStacktraces;
879+
[Export ("swiftAsyncStacktraces")]
880+
bool SwiftAsyncStacktraces { get; set; }
877881
}
878882

879883
// @protocol SentryIntegrationProtocol <NSObject>

0 commit comments

Comments
 (0)