Skip to content

Commit faa691d

Browse files
github-actions[bot]web-flowjpnurmi
authored
chore(deps): update Cocoa SDK to v9.10.0 (#5132)
* chore: update modules/sentry-cocoa.properties to 9.10.0 * Update ApiDefinitions.cs --------- Co-authored-by: GitHub <noreply@github.com> Co-authored-by: J-P Nurmi <jpnurmi@gmail.com>
1 parent 2e8fab4 commit faa691d

2 files changed

Lines changed: 34 additions & 1 deletion

File tree

modules/sentry-cocoa.properties

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

src/Sentry.Bindings.Cocoa/ApiDefinitions.cs

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

162+
// @property (readonly, nonatomic) NSString * _Nullable orgId;
163+
[NullAllowed, Export("orgId")]
164+
string OrgId { get; }
165+
162166
// -(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;
163167
[Export("initWithTraceId:publicKey:releaseName:environment:transaction:sampleRate:sampled:replayId:")]
164168
NativeHandle Constructor(SentryId traceId, string publicKey, [NullAllowed] string releaseName, [NullAllowed] string environment, [NullAllowed] string transaction, [NullAllowed] string sampleRate, [NullAllowed] string sampled, [NullAllowed] string replayId);
@@ -167,6 +171,10 @@ interface SentryBaggage
167171
[Export("initWithTraceId:publicKey:releaseName:environment:transaction:sampleRate:sampleRand:sampled:replayId:")]
168172
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);
169173

174+
// -(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;
175+
[Export("initWithTraceId:publicKey:releaseName:environment:transaction:sampleRate:sampleRand:sampled:replayId:orgId:")]
176+
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);
177+
170178
// -(NSString * _Nonnull)toHTTPHeaderWithOriginalBaggage:(NSDictionary * _Nullable)originalBaggage;
171179
[Export("toHTTPHeaderWithOriginalBaggage:")]
172180
string ToHTTPHeaderWithOriginalBaggage([NullAllowed] NSDictionary originalBaggage);
@@ -1369,6 +1377,10 @@ interface SentryTraceContext : SentrySerializable
13691377
[NullAllowed, Export("replayId")]
13701378
string ReplayId { get; }
13711379

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

16621679
// @interface SentryOptions : NSObject
@@ -1988,6 +2005,18 @@ interface SentryOptions
19882005
[Export("spotlightUrl")]
19892006
string SpotlightUrl { get; set; }
19902007

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

21352168
// @interface SentryExperimentalOptions : NSObject

0 commit comments

Comments
 (0)