Skip to content

Commit a8ec9ce

Browse files
committed
Bump back to 9.10.0
1 parent 580f42b commit a8ec9ce

2 files changed

Lines changed: 34 additions & 1 deletion

File tree

modules/sentry-cocoa

Submodule sentry-cocoa updated 58 files

src/Sentry.Bindings.Cocoa/ApiDefinitions.cs

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,10 @@ interface SentryBaggage
158158
[NullAllowed, Export("replayId", ArgumentSemantic.Strong)]
159159
string ReplayId { get; set; }
160160

161+
// @property (readonly, nonatomic) NSString * _Nullable orgId;
162+
[NullAllowed, Export("orgId")]
163+
string OrgId { get; }
164+
161165
// -(instancetype _Nonnull)initWithTraceId:(SentryId * _Nonnull)traceId publicKey:(NSString * _Nonnull)publicKey releaseName:(NSString * _Nullable)releaseName environment:(NSString * _Nullable)environment transaction:(NSString * _Nullable)transaction sampleRate:(NSString * _Nullable)sampleRate sampled:(NSString * _Nullable)sampled replayId:(NSString * _Nullable)replayId;
162166
[Export("initWithTraceId:publicKey:releaseName:environment:transaction:sampleRate:sampled:replayId:")]
163167
NativeHandle Constructor(SentryId traceId, string publicKey, [NullAllowed] string releaseName, [NullAllowed] string environment, [NullAllowed] string transaction, [NullAllowed] string sampleRate, [NullAllowed] string sampled, [NullAllowed] string replayId);
@@ -166,6 +170,10 @@ interface SentryBaggage
166170
[Export("initWithTraceId:publicKey:releaseName:environment:transaction:sampleRate:sampleRand:sampled:replayId:")]
167171
NativeHandle Constructor(SentryId traceId, string publicKey, [NullAllowed] string releaseName, [NullAllowed] string environment, [NullAllowed] string transaction, [NullAllowed] string sampleRate, [NullAllowed] string sampleRand, [NullAllowed] string sampled, [NullAllowed] string replayId);
168172

173+
// -(instancetype _Nonnull)initWithTraceId:(SentryId * _Nonnull)traceId publicKey:(NSString * _Nonnull)publicKey releaseName:(NSString * _Nullable)releaseName environment:(NSString * _Nullable)environment transaction:(NSString * _Nullable)transaction sampleRate:(NSString * _Nullable)sampleRate sampleRand:(NSString * _Nullable)sampleRand sampled:(NSString * _Nullable)sampled replayId:(NSString * _Nullable)replayId orgId:(NSString * _Nullable)orgId;
174+
[Export("initWithTraceId:publicKey:releaseName:environment:transaction:sampleRate:sampleRand:sampled:replayId:orgId:")]
175+
NativeHandle Constructor(SentryId traceId, string publicKey, [NullAllowed] string releaseName, [NullAllowed] string environment, [NullAllowed] string transaction, [NullAllowed] string sampleRate, [NullAllowed] string sampleRand, [NullAllowed] string sampled, [NullAllowed] string replayId, [NullAllowed] string orgId);
176+
169177
// -(NSString * _Nonnull)toHTTPHeaderWithOriginalBaggage:(NSDictionary * _Nullable)originalBaggage;
170178
[Export("toHTTPHeaderWithOriginalBaggage:")]
171179
string ToHTTPHeaderWithOriginalBaggage([NullAllowed] NSDictionary originalBaggage);
@@ -1368,6 +1376,10 @@ interface SentryTraceContext : SentrySerializable
13681376
[NullAllowed, Export("replayId")]
13691377
string ReplayId { get; }
13701378

1379+
// @property (readonly, nonatomic) NSString * _Nullable orgId;
1380+
[NullAllowed, Export("orgId")]
1381+
string OrgId { get; }
1382+
13711383
// -(SentryBaggage * _Nonnull)toBaggage;
13721384
[Export("toBaggage")]
13731385
SentryBaggage ToBaggage();
@@ -1656,6 +1668,11 @@ interface PrivateSentrySDKOnly
16561668
[Static]
16571669
[Export("setLogOutput:")]
16581670
void SetLogOutput(Action<NSString> output);
1671+
1672+
// +(void)ignoreNextSignal:(int)signum;
1673+
[Static]
1674+
[Export("ignoreNextSignal:")]
1675+
void IgnoreNextSignal(int signum);
16591676
}
16601677

16611678
// @interface SentryOptions : NSObject
@@ -1987,6 +2004,18 @@ interface SentryOptions
19872004
[Export("spotlightUrl")]
19882005
string SpotlightUrl { get; set; }
19892006

2007+
// @property (nonatomic) BOOL strictTraceContinuation;
2008+
[Export("strictTraceContinuation")]
2009+
bool StrictTraceContinuation { get; set; }
2010+
2011+
// @property (copy, nonatomic) NSString * _Nullable orgId;
2012+
[NullAllowed, Export("orgId")]
2013+
string OrgId { get; set; }
2014+
2015+
// @property (readonly, copy, nonatomic) NSString * _Nullable effectiveOrgId;
2016+
[NullAllowed, Export("effectiveOrgId")]
2017+
string EffectiveOrgId { get; }
2018+
19902019
// @property (nonatomic, strong) SentryExperimentalOptions * _Nonnull experimental;
19912020
[Export("experimental", ArgumentSemantic.Strong)]
19922021
SentryExperimentalOptions Experimental { get; set; }
@@ -2129,6 +2158,10 @@ interface SentryDsn
21292158
// -(NSURL * _Nonnull)getEnvelopeEndpoint __attribute__((warn_unused_result("")));
21302159
[Export("getEnvelopeEndpoint")]
21312160
NSUrl EnvelopeEndpoint { get; }
2161+
2162+
// @property (readonly, copy, nonatomic) NSString * _Nullable orgId;
2163+
[NullAllowed, Export("orgId")]
2164+
string OrgId { get; }
21322165
}
21332166

21342167
// @interface SentryExperimentalOptions : NSObject

0 commit comments

Comments
 (0)