Skip to content

Commit

Permalink
Upgrade Sentry to latest version 8.26.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
sbruens committed May 22, 2024
1 parent e644152 commit f1468bd
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion client/src/cordova/apple/OutlineAppleLib/Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ let package = Package(
],
dependencies: [
.package(url: "https://github.com/CocoaLumberjack/CocoaLumberjack.git", from: "3.7.4"),
.package(url: "https://github.com/getsentry/sentry-cocoa", from: "7.31.3"),
.package(url: "https://github.com/getsentry/sentry-cocoa", from: "8.26.0"),
],
targets: [
.target(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public class OutlineSentryLogger: DDAbstractLogger {
let breadcrumb = Breadcrumb(level: ddLogLevelToSentryLevel(logMessage.level), category:"App")
breadcrumb.message = logMessage.message
breadcrumb.timestamp = logMessage.timestamp
SentrySDK.addBreadcrumb(crumb: breadcrumb)
SentrySDK.addBreadcrumb(breadcrumb)
}

private func ddLogLevelToSentryLevel(_ level: DDLogLevel) -> SentryLevel {
Expand Down Expand Up @@ -88,7 +88,7 @@ public class OutlineSentryLogger: DDAbstractLogger {
let breadcrumb = Breadcrumb(level: .info, category: "VpnExtension")
breadcrumb.timestamp = dateFormatter.date(from: timestamp)
breadcrumb.message = message
SentrySDK.addBreadcrumb(crumb: breadcrumb)
SentrySDK.addBreadcrumb(breadcrumb)
numBreadcrumbsAdded += 1
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/getsentry/sentry-cocoa",
"state" : {
"revision" : "cf43eac1aa12017868c257ad3854ad87a5de0758",
"version" : "7.31.5"
"revision" : "7fc7ca43967e2980d8691a8e017c118a84133aac",
"version" : "8.26.0"
}
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/getsentry/sentry-cocoa",
"state" : {
"revision" : "cf43eac1aa12017868c257ad3854ad87a5de0758",
"version" : "7.31.5"
"revision" : "7fc7ca43967e2980d8691a8e017c118a84133aac",
"version" : "8.26.0"
}
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -984,7 +984,7 @@
repositoryURL = "https://github.com/getsentry/sentry-cocoa";
requirement = {
kind = upToNextMajorVersion;
minimumVersion = 7.31.3;
minimumVersion = 8.26.0;
};
};
52CBB847295BC79300D0073F /* XCRemoteSwiftPackageReference "CocoaLumberjack" */ = {
Expand Down

0 comments on commit f1468bd

Please sign in to comment.