Skip to content

Commit 01fd299

Browse files
committed
8.53.2
1 parent 89a6f11 commit 01fd299

File tree

3 files changed

+33
-36
lines changed

3 files changed

+33
-36
lines changed

modules/sentry-cocoa.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
version = 8.51.1
1+
version = 8.53.2
22
repo = https://github.com/getsentry/sentry-cocoa

src/Sentry.Bindings.Cocoa/ApiDefinitions.cs

Lines changed: 5 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,7 @@ interface SentryDsn
384384
[Export ("getHash")]
385385
string Hash { get; }
386386

387-
// -(NSURL * _Nonnull)getStoreEndpoint;
387+
// -(NSURL * _Nonnull)getStoreEndpoint __attribute__((deprecated("This endpoint is no longer used")));
388388
[Export ("getStoreEndpoint")]
389389
NSUrl StoreEndpoint { get; }
390390

@@ -571,13 +571,6 @@ interface SentryEvent : SentrySerializable
571571
NativeHandle Constructor (NSError error);
572572
}
573573

574-
// @interface SentryEventDecodable : SentryEvent
575-
[BaseType (typeof(SentryEvent))]
576-
[Internal]
577-
interface SentryEventDecodable
578-
{
579-
}
580-
581574
// @interface SentryException : NSObject <SentrySerializable>
582575
[BaseType (typeof(NSObject))]
583576
[DisableDefaultCtor]
@@ -1652,6 +1645,10 @@ interface SentryOptions
16521645
[Export ("spotlightUrl")]
16531646
string SpotlightUrl { get; set; }
16541647

1648+
// @property (readonly, nonatomic) NSObject * _Nonnull _swiftExperimentalOptions;
1649+
[Export ("_swiftExperimentalOptions")]
1650+
NSObject _swiftExperimentalOptions { get; }
1651+
16551652
// @property (copy, nonatomic) API_AVAILABLE(ios(13.0)) SentryUserFeedbackConfigurationBlock configureUserFeedback __attribute__((availability(ios, introduced=13.0)));
16561653
[Export ("configureUserFeedback", ArgumentSemantic.Copy)]
16571654
SentryUserFeedbackConfigurationBlock ConfigureUserFeedback { get; set; }
@@ -2381,33 +2378,6 @@ interface SentryUser : SentrySerializable
23812378
nuint Hash { get; }
23822379
}
23832380

2384-
// @interface SentryUserFeedback : NSObject <SentrySerializable>
2385-
[BaseType (typeof(NSObject))]
2386-
[DisableDefaultCtor]
2387-
[Internal]
2388-
interface SentryUserFeedback : SentrySerializable
2389-
{
2390-
// -(instancetype _Nonnull)initWithEventId:(SentryId * _Nonnull)eventId;
2391-
[Export ("initWithEventId:")]
2392-
NativeHandle Constructor (SentryId eventId);
2393-
2394-
// @property (readonly, nonatomic, strong) SentryId * _Nonnull eventId;
2395-
[Export ("eventId", ArgumentSemantic.Strong)]
2396-
SentryId EventId { get; }
2397-
2398-
// @property (copy, nonatomic) NSString * _Nonnull name;
2399-
[Export ("name")]
2400-
string Name { get; set; }
2401-
2402-
// @property (copy, nonatomic) NSString * _Nonnull email;
2403-
[Export ("email")]
2404-
string Email { get; set; }
2405-
2406-
// @property (copy, nonatomic) NSString * _Nonnull comments;
2407-
[Export ("comments")]
2408-
string Comments { get; set; }
2409-
}
2410-
24112381
// @interface SentryScreenFrames : NSObject <NSCopying>
24122382
[BaseType (typeof(NSObject))]
24132383
[DisableDefaultCtor]

src/Sentry.Bindings.Cocoa/SwiftApiDefinitions.cs

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -248,6 +248,33 @@ interface SentryRRWebEvent : SentrySerializable
248248
new NSDictionary<NSString, NSObject> Serialize();
249249
}
250250

251+
// @interface SentryUserFeedback : NSObject <SentrySerializable>
252+
[BaseType(typeof(NSObject))]
253+
[DisableDefaultCtor]
254+
[Internal]
255+
interface SentryUserFeedback : SentrySerializable
256+
{
257+
// @property (nonatomic, readonly, strong) SentryId * _Nonnull eventId;
258+
[Export("eventId", ArgumentSemantic.Strong)]
259+
SentryId EventId { get; }
260+
261+
// @property (nonatomic, copy) NSString * _Nonnull name;
262+
[Export("name")]
263+
string Name { get; set; }
264+
265+
// @property (nonatomic, copy) NSString * _Nonnull email;
266+
[Export("email")]
267+
string Email { get; set; }
268+
269+
// @property (nonatomic, copy) NSString * _Nonnull comments;
270+
[Export("comments")]
271+
string Comments { get; set; }
272+
273+
// - (nonnull instancetype)initWithEventId:(SentryId * _Nonnull)eventId OBJC_DESIGNATED_INITIALIZER;
274+
[Export("initWithEventId:")]
275+
NativeHandle Constructor(SentryId eventId);
276+
}
277+
251278
[BaseType(typeof(NSObject), Name = "_TtC6Sentry31SentryUserFeedbackConfiguration")]
252279
[DisableDefaultCtor]
253280
[Internal]

0 commit comments

Comments
 (0)