Skip to content

Commit a61bab4

Browse files
authored
Merge pull request #8746 from davidmoore1/xcode14_3Carthage
chore(ios): Changes required for XCode 14.3
2 parents 4ad975d + a4ae39c commit a61bab4

5 files changed

Lines changed: 10 additions & 10 deletions

File tree

ios/Cartfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
github "marmelroy/Zip"
2-
github "DaveWoodCom/XCGLogger" ~> 6.1.0
2+
github "keymanapp/dependency-XCGLogger" "master"
33
github "devicekit/DeviceKit" ~> 5.0
44
github "ashleymills/Reachability.swift"
5-
github "getsentry/sentry-cocoa" ~> 6.2.1
5+
github "getsentry/sentry-cocoa" ~> 8.7.0

ios/Cartfile.resolved

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
github "DaveWoodCom/XCGLogger" "6.1.0"
21
github "ashleymills/Reachability.swift" "v5.1.0"
32
github "devicekit/DeviceKit" "5.0.0"
4-
github "getsentry/sentry-cocoa" "6.2.1"
3+
github "getsentry/sentry-cocoa" "8.7.0"
4+
github "keymanapp/dependency-XCGLogger" "57a7b975dbb6fe4fe90cef3d1bc52b8adbd89113"
55
github "marmelroy/Zip" "2.1.2"

ios/engine/KMEI/KeymanEngine/Classes/Errors/SentryManager.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ public class SentryManager {
167167
public static func breadcrumbAndLog(crumb: Sentry.Breadcrumb, logLevel: XCGLogger.Level? = nil) {
168168
// Guarded in case a library consumer decides against initializing Sentry.
169169
if _started {
170-
SentrySDK.addBreadcrumb(crumb: crumb)
170+
SentrySDK.addBreadcrumb(crumb)
171171
}
172172

173173
let level = logLevel ?? mapLoggingLevel(crumb.level)
@@ -193,7 +193,7 @@ public class SentryManager {
193193
}
194194

195195
public static func forceError() {
196-
SentrySDK.addBreadcrumb(crumb: Sentry.Breadcrumb(level: .info, category: "Deliberate testing error"))
196+
SentrySDK.addBreadcrumb(Sentry.Breadcrumb(level: .info, category: "Deliberate testing error"))
197197
SentrySDK.crash()
198198
}
199199
}

oem/firstvoices/ios/Cartfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
github "DaveWoodCom/XCGLogger" ~> 6.1.0
1+
github "keymanapp/dependency-XCGLogger" "master"
22
github "devicekit/DeviceKit" ~> 5.0
33
github "ashleymills/Reachability.swift"
4-
github "getsentry/sentry-cocoa" ~> 6.2.1
4+
github "getsentry/sentry-cocoa" ~> 8.7.0
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
github "DaveWoodCom/XCGLogger" "6.1.0"
21
github "ashleymills/Reachability.swift" "v5.1.0"
32
github "devicekit/DeviceKit" "5.0.0"
4-
github "getsentry/sentry-cocoa" "6.2.1"
3+
github "getsentry/sentry-cocoa" "8.7.0"
4+
github "keymanapp/dependency-XCGLogger" "57a7b975dbb6fe4fe90cef3d1bc52b8adbd89113"

0 commit comments

Comments
 (0)