File tree Expand file tree Collapse file tree 12 files changed +75
-70
lines changed
RollbarAUL/Sources/RollbarAUL
RollbarNotifier/Sources/RollbarNotifier/DTOs Expand file tree Collapse file tree 12 files changed +75
-70
lines changed Original file line number Diff line number Diff line change @@ -25,6 +25,11 @@ The change log has moved to this repo's [GitHub Releases Page](https://github.co
25
25
26
26
## Release Notes
27
27
28
+ ### 2.2.4
29
+
30
+ - fix: resolve #161 - Fix type conversion within RollbarAulEntitySnapper.m
31
+ - chore: resolve #109 - ARM64 slice excluded from cocoapods spec?
32
+
28
33
### 2.2.3
29
34
30
35
- fix: resolve #154 - Fix Cocoapods builds.
Original file line number Diff line number Diff line change 7
7
8
8
Pod ::Spec . new do |s |
9
9
10
- s . version = "2.2.3 "
10
+ s . version = "2.2.4 "
11
11
s . name = "RollbarAUL"
12
12
s . summary = "Application or client side SDK for interacting with the Rollbar API Server."
13
13
s . description = <<-DESC
@@ -61,10 +61,10 @@ Pod::Spec.new do |s|
61
61
"HEADER_SEARCH_PATHS" => "$(PODS_ROOT)/#{ s . name } /#{ s . name } /Sources/#{ s . name } /**"
62
62
}
63
63
64
- s . pod_target_xcconfig = { "ONLY_ACTIVE_ARCH" => "YES" , "EXCLUDED_ARCHS[sdk=iphonesimulator*]" => "arm64" }
65
- s . user_target_xcconfig = { "ONLY_ACTIVE_ARCH" => "YES" , "EXCLUDED_ARCHS[sdk=iphonesimulator*]" => "arm64" }
64
+ # s.pod_target_xcconfig = { "ONLY_ACTIVE_ARCH" => "YES", "EXCLUDED_ARCHS[sdk=iphonesimulator*]" => "arm64" }
65
+ # s.user_target_xcconfig = { "ONLY_ACTIVE_ARCH" => "YES", "EXCLUDED_ARCHS[sdk=iphonesimulator*]" => "arm64" }
66
66
67
- s . tvos . pod_target_xcconfig = { "ONLY_ACTIVE_ARCH" => "YES" , "EXCLUDED_ARCHS[sdk=appletvsimulator*]" => "arm64" }
68
- s . tvos . user_target_xcconfig = { "ONLY_ACTIVE_ARCH" => "YES" , "EXCLUDED_ARCHS[sdk=appletvsimulator*]" => "arm64" }
67
+ # s.tvos.pod_target_xcconfig = { "ONLY_ACTIVE_ARCH" => "YES", "EXCLUDED_ARCHS[sdk=appletvsimulator*]" => "arm64" }
68
+ # s.tvos.user_target_xcconfig = { "ONLY_ACTIVE_ARCH" => "YES", "EXCLUDED_ARCHS[sdk=appletvsimulator*]" => "arm64" }
69
69
70
70
end
Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ - (void)captureOSLogEntryActivity:(nullable OSLogEntryActivity *)entry
74
74
return ;
75
75
}
76
76
77
- snapshot[@" aul_parentActivityIdentifier" ] = [NSNumber numberWithUnsignedInt : entry.parentActivityIdentifier];
77
+ snapshot[@" aul_parentActivityIdentifier" ] = [NSNumber numberWithUnsignedLongLong : entry.parentActivityIdentifier];
78
78
}
79
79
80
80
- (void )captureOSLogEntrySignpost:(nullable OSLogEntrySignpost *)entry
@@ -84,7 +84,7 @@ - (void)captureOSLogEntrySignpost:(nullable OSLogEntrySignpost *)entry
84
84
return ;
85
85
}
86
86
87
- snapshot[@" aul_signpostIdentifier" ] = [NSNumber numberWithUnsignedInt : entry.signpostIdentifier];
87
+ snapshot[@" aul_signpostIdentifier" ] = [NSNumber numberWithUnsignedLongLong : entry.signpostIdentifier];
88
88
snapshot[@" aul_signpostName" ] = entry.signpostName ;
89
89
snapshot[@" aul_signpostType" ] = [NSNumber numberWithInteger: entry.signpostType];
90
90
}
@@ -96,11 +96,11 @@ - (void)captureOSLogEntryFromProcess:(nullable OSLogEntry<OSLogEntryFromProcess>
96
96
return ;
97
97
}
98
98
99
- snapshot[@" aul_activityIdentifier" ] = [NSNumber numberWithUnsignedInt : entry.activityIdentifier]; // uint64
99
+ snapshot[@" aul_activityIdentifier" ] = [NSNumber numberWithUnsignedLongLong : entry.activityIdentifier];
100
100
snapshot[@" aul_process" ] = entry.process ;
101
101
snapshot[@" aul_processIdentifier" ] = [NSNumber numberWithInt: entry.processIdentifier];
102
102
snapshot[@" aul_sender" ] = entry.sender ;
103
- snapshot[@" aul_threadIdentifier" ] = [NSNumber numberWithUnsignedInt : entry.threadIdentifier];
103
+ snapshot[@" aul_threadIdentifier" ] = [NSNumber numberWithUnsignedLongLong : entry.threadIdentifier];
104
104
}
105
105
106
106
- (void )captureOSLogEntryWithPayload:(nullable OSLogEntry<OSLogEntryWithPayload> *)entry
Original file line number Diff line number Diff line change 7
7
8
8
Pod ::Spec . new do |s |
9
9
10
- s . version = "2.2.3 "
10
+ s . version = "2.2.4 "
11
11
s . name = "RollbarCocoaLumberjack"
12
12
s . summary = "Application or client side SDK for interacting with the Rollbar API Server."
13
13
s . description = <<-DESC
Original file line number Diff line number Diff line change 7
7
8
8
Pod ::Spec . new do |s |
9
9
10
- s . version = "2.2.3 "
10
+ s . version = "2.2.4 "
11
11
s . name = "RollbarCommon"
12
12
s . summary = "Application or client side SDK for interacting with the Rollbar API Server."
13
13
s . description = <<-DESC
@@ -59,10 +59,10 @@ Pod::Spec.new do |s|
59
59
# "HEADER_SEARCH_PATHS" => "$(PODS_ROOT)/Sources/#{s.name}/**"
60
60
# }
61
61
62
- s . pod_target_xcconfig = { "ONLY_ACTIVE_ARCH" => "YES" , "EXCLUDED_ARCHS[sdk=iphonesimulator*]" => "arm64" }
63
- s . user_target_xcconfig = { "ONLY_ACTIVE_ARCH" => "YES" , "EXCLUDED_ARCHS[sdk=iphonesimulator*]" => "arm64" }
62
+ # s.pod_target_xcconfig = { "ONLY_ACTIVE_ARCH" => "YES", "EXCLUDED_ARCHS[sdk=iphonesimulator*]" => "arm64" }
63
+ # s.user_target_xcconfig = { "ONLY_ACTIVE_ARCH" => "YES", "EXCLUDED_ARCHS[sdk=iphonesimulator*]" => "arm64" }
64
64
65
- s . tvos . pod_target_xcconfig = { "ONLY_ACTIVE_ARCH" => "YES" , "EXCLUDED_ARCHS[sdk=appletvsimulator*]" => "arm64" }
66
- s . tvos . user_target_xcconfig = { "ONLY_ACTIVE_ARCH" => "YES" , "EXCLUDED_ARCHS[sdk=appletvsimulator*]" => "arm64" }
65
+ # s.tvos.pod_target_xcconfig = { "ONLY_ACTIVE_ARCH" => "YES", "EXCLUDED_ARCHS[sdk=appletvsimulator*]" => "arm64" }
66
+ # s.tvos.user_target_xcconfig = { "ONLY_ACTIVE_ARCH" => "YES", "EXCLUDED_ARCHS[sdk=appletvsimulator*]" => "arm64" }
67
67
68
68
end
Original file line number Diff line number Diff line change 7
7
8
8
Pod ::Spec . new do |s |
9
9
10
- s . version = "2.2.3 "
10
+ s . version = "2.2.4 "
11
11
s . name = "RollbarDeploys"
12
12
s . summary = "Application or client side SDK for interacting with the Rollbar API Server."
13
13
s . description = <<-DESC
@@ -60,10 +60,10 @@ Pod::Spec.new do |s|
60
60
# "HEADER_SEARCH_PATHS" => "$(PODS_ROOT)/Sources/#{s.name}/**"
61
61
# }
62
62
63
- s . pod_target_xcconfig = { "ONLY_ACTIVE_ARCH" => "YES" , "EXCLUDED_ARCHS[sdk=iphonesimulator*]" => "arm64" }
64
- s . user_target_xcconfig = { "ONLY_ACTIVE_ARCH" => "YES" , "EXCLUDED_ARCHS[sdk=iphonesimulator*]" => "arm64" }
63
+ # s.pod_target_xcconfig = { "ONLY_ACTIVE_ARCH" => "YES", "EXCLUDED_ARCHS[sdk=iphonesimulator*]" => "arm64" }
64
+ # s.user_target_xcconfig = { "ONLY_ACTIVE_ARCH" => "YES", "EXCLUDED_ARCHS[sdk=iphonesimulator*]" => "arm64" }
65
65
66
- s . tvos . pod_target_xcconfig = { "ONLY_ACTIVE_ARCH" => "YES" , "EXCLUDED_ARCHS[sdk=appletvsimulator*]" => "arm64" }
67
- s . tvos . user_target_xcconfig = { "ONLY_ACTIVE_ARCH" => "YES" , "EXCLUDED_ARCHS[sdk=appletvsimulator*]" => "arm64" }
66
+ # s.tvos.pod_target_xcconfig = { "ONLY_ACTIVE_ARCH" => "YES", "EXCLUDED_ARCHS[sdk=appletvsimulator*]" => "arm64" }
67
+ # s.tvos.user_target_xcconfig = { "ONLY_ACTIVE_ARCH" => "YES", "EXCLUDED_ARCHS[sdk=appletvsimulator*]" => "arm64" }
68
68
69
69
end
Original file line number Diff line number Diff line change 7
7
8
8
Pod ::Spec . new do |s |
9
9
10
- s . version = "2.2.3 "
10
+ s . version = "2.2.4 "
11
11
s . name = "RollbarKSCrash"
12
12
s . summary = "Application or client side SDK for interacting with the Rollbar API Server."
13
13
s . description = <<-DESC
@@ -61,10 +61,10 @@ Pod::Spec.new do |s|
61
61
# "HEADER_SEARCH_PATHS" => "$(PODS_ROOT)/Sources/#{s.name}/**"
62
62
# }
63
63
64
- s . pod_target_xcconfig = { "ONLY_ACTIVE_ARCH" => "YES" , "EXCLUDED_ARCHS[sdk=iphonesimulator*]" => "arm64" }
65
- s . user_target_xcconfig = { "ONLY_ACTIVE_ARCH" => "YES" , "EXCLUDED_ARCHS[sdk=iphonesimulator*]" => "arm64" }
64
+ # s.pod_target_xcconfig = { "ONLY_ACTIVE_ARCH" => "YES", "EXCLUDED_ARCHS[sdk=iphonesimulator*]" => "arm64" }
65
+ # s.user_target_xcconfig = { "ONLY_ACTIVE_ARCH" => "YES", "EXCLUDED_ARCHS[sdk=iphonesimulator*]" => "arm64" }
66
66
67
- s . tvos . pod_target_xcconfig = { "ONLY_ACTIVE_ARCH" => "YES" , "EXCLUDED_ARCHS[sdk=appletvsimulator*]" => "arm64" }
68
- s . tvos . user_target_xcconfig = { "ONLY_ACTIVE_ARCH" => "YES" , "EXCLUDED_ARCHS[sdk=appletvsimulator*]" => "arm64" }
67
+ # s.tvos.pod_target_xcconfig = { "ONLY_ACTIVE_ARCH" => "YES", "EXCLUDED_ARCHS[sdk=appletvsimulator*]" => "arm64" }
68
+ # s.tvos.user_target_xcconfig = { "ONLY_ACTIVE_ARCH" => "YES", "EXCLUDED_ARCHS[sdk=appletvsimulator*]" => "arm64" }
69
69
70
70
end
Original file line number Diff line number Diff line change 7
7
8
8
Pod ::Spec . new do |s |
9
9
10
- s . version = "2.2.3 "
10
+ s . version = "2.2.4 "
11
11
s . name = "RollbarNotifier"
12
12
s . summary = "Application or client side SDK for interacting with the Rollbar API Server."
13
13
s . description = <<-DESC
@@ -60,10 +60,10 @@ Pod::Spec.new do |s|
60
60
# "HEADER_SEARCH_PATHS" => "$(PODS_ROOT)/Sources/#{s.name}/**"
61
61
# }
62
62
63
- s . pod_target_xcconfig = { "ONLY_ACTIVE_ARCH" => "YES" , "EXCLUDED_ARCHS[sdk=iphonesimulator*]" => "arm64" }
64
- s . user_target_xcconfig = { "ONLY_ACTIVE_ARCH" => "YES" , "EXCLUDED_ARCHS[sdk=iphonesimulator*]" => "arm64" }
63
+ # s.pod_target_xcconfig = { "ONLY_ACTIVE_ARCH" => "YES", "EXCLUDED_ARCHS[sdk=iphonesimulator*]" => "arm64" }
64
+ # s.user_target_xcconfig = { "ONLY_ACTIVE_ARCH" => "YES", "EXCLUDED_ARCHS[sdk=iphonesimulator*]" => "arm64" }
65
65
66
- s . tvos . pod_target_xcconfig = { "ONLY_ACTIVE_ARCH" => "YES" , "EXCLUDED_ARCHS[sdk=appletvsimulator*]" => "arm64" }
67
- s . tvos . user_target_xcconfig = { "ONLY_ACTIVE_ARCH" => "YES" , "EXCLUDED_ARCHS[sdk=appletvsimulator*]" => "arm64" }
66
+ # s.tvos.pod_target_xcconfig = { "ONLY_ACTIVE_ARCH" => "YES", "EXCLUDED_ARCHS[sdk=appletvsimulator*]" => "arm64" }
67
+ # s.tvos.user_target_xcconfig = { "ONLY_ACTIVE_ARCH" => "YES", "EXCLUDED_ARCHS[sdk=appletvsimulator*]" => "arm64" }
68
68
69
69
end
Original file line number Diff line number Diff line change 14
14
15
15
#pragma mark - constants
16
16
17
- static NSString * const NOTIFIER_VERSION = @" 2.2.3 " ;
17
+ static NSString * const NOTIFIER_VERSION = @" 2.2.4 " ;
18
18
19
19
static NSString * const NOTIFIER_NAME = @" rollbar-apple" ;
20
20
Original file line number Diff line number Diff line change 7
7
8
8
Pod ::Spec . new do |s |
9
9
10
- s . version = "2.2.3 "
10
+ s . version = "2.2.4 "
11
11
s . name = "RollbarPLCrashReporter"
12
12
s . summary = "Application or client side SDK for interacting with the Rollbar API Server."
13
13
s . description = <<-DESC
@@ -62,10 +62,10 @@ Pod::Spec.new do |s|
62
62
# "HEADER_SEARCH_PATHS" => "$(PODS_ROOT)/Sources/#{s.name}/**"
63
63
# }
64
64
65
- s . pod_target_xcconfig = { "ONLY_ACTIVE_ARCH" => "YES" , "EXCLUDED_ARCHS[sdk=iphonesimulator*]" => "arm64" }
66
- s . user_target_xcconfig = { "ONLY_ACTIVE_ARCH" => "YES" , "EXCLUDED_ARCHS[sdk=iphonesimulator*]" => "arm64" }
65
+ # s.pod_target_xcconfig = { "ONLY_ACTIVE_ARCH" => "YES", "EXCLUDED_ARCHS[sdk=iphonesimulator*]" => "arm64" }
66
+ # s.user_target_xcconfig = { "ONLY_ACTIVE_ARCH" => "YES", "EXCLUDED_ARCHS[sdk=iphonesimulator*]" => "arm64" }
67
67
68
- s . tvos . pod_target_xcconfig = { "ONLY_ACTIVE_ARCH" => "YES" , "EXCLUDED_ARCHS[sdk=appletvsimulator*]" => "arm64" }
69
- s . tvos . user_target_xcconfig = { "ONLY_ACTIVE_ARCH" => "YES" , "EXCLUDED_ARCHS[sdk=appletvsimulator*]" => "arm64" }
68
+ # s.tvos.pod_target_xcconfig = { "ONLY_ACTIVE_ARCH" => "YES", "EXCLUDED_ARCHS[sdk=appletvsimulator*]" => "arm64" }
69
+ # s.tvos.user_target_xcconfig = { "ONLY_ACTIVE_ARCH" => "YES", "EXCLUDED_ARCHS[sdk=appletvsimulator*]" => "arm64" }
70
70
71
71
end
You can’t perform that action at this time.
0 commit comments