Skip to content

Release-2.0.8 #152

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Feb 12, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Backtrace.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
Pod::Spec.new do |s|

s.name = "Backtrace"
s.version = "2.0.7"
s.version = "2.0.8"
s.swift_version = '5'
s.summary = "Backtrace's integration with iOS, macOS and tvOS"
s.description = "Reliable crash and hang reporting for iOS, macOS and tvOS."
Expand Down
4 changes: 2 additions & 2 deletions Backtrace.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -3430,7 +3430,7 @@
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
MACOSX_DEPLOYMENT_TARGET = 10.13;
MARKETING_VERSION = 2.0.7;
MARKETING_VERSION = 2.0.8;
STRIP_STYLE = debugging;
STRIP_SWIFT_SYMBOLS = NO;
SWIFT_VERSION = 5.0;
Expand All @@ -3444,7 +3444,7 @@
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
MACOSX_DEPLOYMENT_TARGET = 10.13;
MARKETING_VERSION = 2.0.7;
MARKETING_VERSION = 2.0.8;
STRIP_STYLE = debugging;
STRIP_SWIFT_SYMBOLS = NO;
SWIFT_VERSION = 5.0;
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Backtrace Cocoa Release Notes

## Version 2.0.8
- Fixes CoreData swift/objc attributes Interoperability (#149)
- Updates Transformer class to use NSSecureUnarchiveFromData secure coding (#150)
- Updates PersistentRepository to safely perform concurrent Core Data operations (#151)
- Fixes doc-comment parameter name mismatch ("level" → "type") (#153)

## Version 2.0.7
- Adds explicit BacktraceResources-Info.plist

Expand Down
2 changes: 1 addition & 1 deletion Sources/Features/Attributes/DefaultAttributes.swift
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ struct LibInfo: AttributesSource {
private static let applicationGuidKey = "backtrace.unique.user.identifier"
private static let applicationLangName = "backtrace-cocoa"

var backtraceVersion = "2.0.7"
var backtraceVersion = "2.0.8"

var immutable: [String: Any?] {
return ["guid": LibInfo.guid(store: UserDefaultsStore.self).uuidString,
Expand Down
1 change: 0 additions & 1 deletion Sources/Features/Repository/PersistentRepository.swift
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,6 @@ extension PersistentRepository: Repository {
try backgroundContext.save()
}
// File storage outside the Core Data backgroundContext (optional concurrency).
// TODO: Verify AttributesStorage for concurrency
try AttributesStorage.store(resource.attributes, fileName: resource.identifier.uuidString)
}

Expand Down
2 changes: 1 addition & 1 deletion Sources/Public/BacktraceClientCustomizing.swift
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ enum BacktraceUrlParsingError: Error {
///
/// - Parameters:
/// - message: The message to add.
/// - level: The breadcrumb severity level to add
/// - type: The Breadcrumb type to add
@objc func addBreadcrumb(_ message: String,
type: BacktraceBreadcrumbType) -> Bool

Expand Down