Build Information
Failed to build EmbraceIO, reference 6.18.0 (88ca21), with Swift 6.1 for macOS (SPM) on 22 Apr 2026 22:27:46 UTC.
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64Build Log
18 | @available(iOS 13, macOS 10.15, tvOS 13, watchOS 6.0, *)
19 | private struct EmbraceTraceEnvironmentKey: EnvironmentKey {
20 | static let defaultValue: EmbraceTraceViewContext = EmbraceTraceViewContext()
| |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'EmbraceTraceViewContext' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 | }
22 |
:
36 | /// disappear) all refer to the same parent span until the cycle completes.
37 | @available(iOS 13, macOS 10.15, tvOS 13, watchOS 6.0, *)
38 | final class EmbraceTraceViewContext {
| `- note: class 'EmbraceTraceViewContext' does not conform to the 'Sendable' protocol
39 | /// The parent span for the current render cycle. Reset to `nil` once ended.
40 | var firstCycleSpan: Span?
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/SwiftUI/Internal/EmbraceTraceViewLogger.swift:19:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'EmbraceTraceViewLogger' may have shared mutable state; this is an error in the Swift 6 language mode
17 | @available(iOS 13, macOS 10.15, tvOS 13, watchOS 6.0, *)
18 | private struct EmbraceTraceViewLoggerEnvironmentKey: EnvironmentKey {
19 | static let defaultValue: EmbraceTraceViewLogger = EmbraceTraceViewLogger(
| |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'EmbraceTraceViewLogger' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 | otel: Embrace.client,
21 | logger: Embrace.logger,
:
44 | /// If any dependency (OTel client, configuration, etc.) is absent, tracing is effectively disabled.
45 | @available(iOS 13, macOS 10.15, tvOS 13, watchOS 6.0, *)
46 | final class EmbraceTraceViewLogger {
| `- note: class 'EmbraceTraceViewLogger' does not conform to the 'Sendable' protocol
47 | // MARK: – Properties
48 |
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/SwiftUI/Internal/EmbraceTraceViewLogger.swift:197:13: warning: capture of 'self' with non-sendable type 'EmbraceTraceViewLogger' in a '@Sendable' closure
44 | /// If any dependency (OTel client, configuration, etc.) is absent, tracing is effectively disabled.
45 | @available(iOS 13, macOS 10.15, tvOS 13, watchOS 6.0, *)
46 | final class EmbraceTraceViewLogger {
| `- note: class 'EmbraceTraceViewLogger' does not conform to the 'Sendable' protocol
47 | // MARK: – Properties
48 |
:
195 | // Schedule end-of-span on next main run loop cycle so child spans can attach
196 | RunLoop.main.perform(inModes: [.common]) { [self] in
197 | endSpan(span)
| `- warning: capture of 'self' with non-sendable type 'EmbraceTraceViewLogger' in a '@Sendable' closure
198 | completed()
199 | }
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/SwiftUI/Internal/EmbraceTraceViewLogger.swift:197:21: warning: capture of 'span' with non-sendable type 'any Span' in a '@Sendable' closure
195 | // Schedule end-of-span on next main run loop cycle so child spans can attach
196 | RunLoop.main.perform(inModes: [.common]) { [self] in
197 | endSpan(span)
| `- warning: capture of 'span' with non-sendable type 'any Span' in a '@Sendable' closure
198 | completed()
199 | }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/opentelemetry-swift-core/Sources/OpenTelemetryApi/Trace/Span.swift:107:17: note: protocol 'Span' does not conform to the 'Sendable' protocol
105 | /// Spans are created by the SpanBuilder.startSpan method.
106 | /// Span must be ended by calling end().
107 | public protocol Span: SpanBase, SpanExceptionRecorder {
| `- note: protocol 'Span' does not conform to the 'Sendable' protocol
108 | /// End the span.
109 | func end()
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/SwiftUI/Internal/EmbraceTraceViewLogger.swift:198:13: warning: capture of 'completed' with non-sendable type '() -> Void' in a '@Sendable' closure
196 | RunLoop.main.perform(inModes: [.common]) { [self] in
197 | endSpan(span)
198 | completed()
| |- warning: capture of 'completed' with non-sendable type '() -> Void' in a '@Sendable' closure
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
199 | }
200 |
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/KeychainAccess.swift:19:16: warning: static property 'keychain' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
17 | private init() {}
18 |
19 | static var keychain: KeychainInterface = DefaultKeychainInterface()
| |- warning: static property 'keychain' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'keychain' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'keychain' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 | static var deviceId: UUID {
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/KeychainInterface.swift:67:17: warning: capture of 'completion' with non-sendable type '(OSStatus) -> Void' (aka '(Int32) -> ()') in a '@Sendable' closure
65 | queue.async {
66 | guard let dataFromString = value.data(using: String.Encoding.utf8, allowLossyConversion: false) else {
67 | completion(errSecParam)
| |- warning: capture of 'completion' with non-sendable type '(OSStatus) -> Void' (aka '(Int32) -> ()') in a '@Sendable' closure
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
68 | return
69 | }
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/KeychainInterface.swift:73:34: warning: capture of 'service' with non-sendable type 'CFString' in a '@Sendable' closure
71 | let query: NSMutableDictionary = [
72 | kSecClass: kSecClassGenericPassword,
73 | kSecAttrService: service,
| `- warning: capture of 'service' with non-sendable type 'CFString' in a '@Sendable' closure
74 | kSecAttrAccount: account,
75 | kSecValueData: dataFromString
CoreFoundation.CFString:1:14: note: class 'CFString' does not conform to the 'Sendable' protocol
1 | public class CFString : _CFObject {
| `- note: class 'CFString' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/KeychainInterface.swift:5:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreFoundation'
3 | //
4 |
5 | import Foundation
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreFoundation'
6 |
7 | protocol KeychainInterface {
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/KeychainInterface.swift:74:34: warning: capture of 'account' with non-sendable type 'CFString' in a '@Sendable' closure
72 | kSecClass: kSecClassGenericPassword,
73 | kSecAttrService: service,
74 | kSecAttrAccount: account,
| `- warning: capture of 'account' with non-sendable type 'CFString' in a '@Sendable' closure
75 | kSecValueData: dataFromString
76 | ]
CoreFoundation.CFString:1:14: note: class 'CFString' does not conform to the 'Sendable' protocol
1 | public class CFString : _CFObject {
| `- note: class 'CFString' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/NSObject+Embrace.swift:14:20: warning: static property 'embraceSpanKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | extension NSObject {
13 | private struct AssociatedKeys {
14 | static var embraceSpanKey: UInt8 = 8
| |- warning: static property 'embraceSpanKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'embraceSpanKey' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'embraceSpanKey' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | }
16 |
[1559/1594] Compiling EmbraceCore ProcessInfo+Embrace.swift
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/SwiftUI/Internal/EmbraceTraceViewContext.swift:20:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'EmbraceTraceViewContext' may have shared mutable state; this is an error in the Swift 6 language mode
18 | @available(iOS 13, macOS 10.15, tvOS 13, watchOS 6.0, *)
19 | private struct EmbraceTraceEnvironmentKey: EnvironmentKey {
20 | static let defaultValue: EmbraceTraceViewContext = EmbraceTraceViewContext()
| |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'EmbraceTraceViewContext' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 | }
22 |
:
36 | /// disappear) all refer to the same parent span until the cycle completes.
37 | @available(iOS 13, macOS 10.15, tvOS 13, watchOS 6.0, *)
38 | final class EmbraceTraceViewContext {
| `- note: class 'EmbraceTraceViewContext' does not conform to the 'Sendable' protocol
39 | /// The parent span for the current render cycle. Reset to `nil` once ended.
40 | var firstCycleSpan: Span?
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/SwiftUI/Internal/EmbraceTraceViewLogger.swift:19:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'EmbraceTraceViewLogger' may have shared mutable state; this is an error in the Swift 6 language mode
17 | @available(iOS 13, macOS 10.15, tvOS 13, watchOS 6.0, *)
18 | private struct EmbraceTraceViewLoggerEnvironmentKey: EnvironmentKey {
19 | static let defaultValue: EmbraceTraceViewLogger = EmbraceTraceViewLogger(
| |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'EmbraceTraceViewLogger' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 | otel: Embrace.client,
21 | logger: Embrace.logger,
:
44 | /// If any dependency (OTel client, configuration, etc.) is absent, tracing is effectively disabled.
45 | @available(iOS 13, macOS 10.15, tvOS 13, watchOS 6.0, *)
46 | final class EmbraceTraceViewLogger {
| `- note: class 'EmbraceTraceViewLogger' does not conform to the 'Sendable' protocol
47 | // MARK: – Properties
48 |
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/SwiftUI/Internal/EmbraceTraceViewLogger.swift:197:13: warning: capture of 'self' with non-sendable type 'EmbraceTraceViewLogger' in a '@Sendable' closure
44 | /// If any dependency (OTel client, configuration, etc.) is absent, tracing is effectively disabled.
45 | @available(iOS 13, macOS 10.15, tvOS 13, watchOS 6.0, *)
46 | final class EmbraceTraceViewLogger {
| `- note: class 'EmbraceTraceViewLogger' does not conform to the 'Sendable' protocol
47 | // MARK: – Properties
48 |
:
195 | // Schedule end-of-span on next main run loop cycle so child spans can attach
196 | RunLoop.main.perform(inModes: [.common]) { [self] in
197 | endSpan(span)
| `- warning: capture of 'self' with non-sendable type 'EmbraceTraceViewLogger' in a '@Sendable' closure
198 | completed()
199 | }
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/SwiftUI/Internal/EmbraceTraceViewLogger.swift:197:21: warning: capture of 'span' with non-sendable type 'any Span' in a '@Sendable' closure
195 | // Schedule end-of-span on next main run loop cycle so child spans can attach
196 | RunLoop.main.perform(inModes: [.common]) { [self] in
197 | endSpan(span)
| `- warning: capture of 'span' with non-sendable type 'any Span' in a '@Sendable' closure
198 | completed()
199 | }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/opentelemetry-swift-core/Sources/OpenTelemetryApi/Trace/Span.swift:107:17: note: protocol 'Span' does not conform to the 'Sendable' protocol
105 | /// Spans are created by the SpanBuilder.startSpan method.
106 | /// Span must be ended by calling end().
107 | public protocol Span: SpanBase, SpanExceptionRecorder {
| `- note: protocol 'Span' does not conform to the 'Sendable' protocol
108 | /// End the span.
109 | func end()
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/SwiftUI/Internal/EmbraceTraceViewLogger.swift:198:13: warning: capture of 'completed' with non-sendable type '() -> Void' in a '@Sendable' closure
196 | RunLoop.main.perform(inModes: [.common]) { [self] in
197 | endSpan(span)
198 | completed()
| |- warning: capture of 'completed' with non-sendable type '() -> Void' in a '@Sendable' closure
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
199 | }
200 |
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/KeychainAccess.swift:19:16: warning: static property 'keychain' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
17 | private init() {}
18 |
19 | static var keychain: KeychainInterface = DefaultKeychainInterface()
| |- warning: static property 'keychain' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'keychain' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'keychain' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 | static var deviceId: UUID {
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/KeychainInterface.swift:67:17: warning: capture of 'completion' with non-sendable type '(OSStatus) -> Void' (aka '(Int32) -> ()') in a '@Sendable' closure
65 | queue.async {
66 | guard let dataFromString = value.data(using: String.Encoding.utf8, allowLossyConversion: false) else {
67 | completion(errSecParam)
| |- warning: capture of 'completion' with non-sendable type '(OSStatus) -> Void' (aka '(Int32) -> ()') in a '@Sendable' closure
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
68 | return
69 | }
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/KeychainInterface.swift:73:34: warning: capture of 'service' with non-sendable type 'CFString' in a '@Sendable' closure
71 | let query: NSMutableDictionary = [
72 | kSecClass: kSecClassGenericPassword,
73 | kSecAttrService: service,
| `- warning: capture of 'service' with non-sendable type 'CFString' in a '@Sendable' closure
74 | kSecAttrAccount: account,
75 | kSecValueData: dataFromString
CoreFoundation.CFString:1:14: note: class 'CFString' does not conform to the 'Sendable' protocol
1 | public class CFString : _CFObject {
| `- note: class 'CFString' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/KeychainInterface.swift:5:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreFoundation'
3 | //
4 |
5 | import Foundation
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreFoundation'
6 |
7 | protocol KeychainInterface {
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/KeychainInterface.swift:74:34: warning: capture of 'account' with non-sendable type 'CFString' in a '@Sendable' closure
72 | kSecClass: kSecClassGenericPassword,
73 | kSecAttrService: service,
74 | kSecAttrAccount: account,
| `- warning: capture of 'account' with non-sendable type 'CFString' in a '@Sendable' closure
75 | kSecValueData: dataFromString
76 | ]
CoreFoundation.CFString:1:14: note: class 'CFString' does not conform to the 'Sendable' protocol
1 | public class CFString : _CFObject {
| `- note: class 'CFString' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/NSObject+Embrace.swift:14:20: warning: static property 'embraceSpanKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | extension NSObject {
13 | private struct AssociatedKeys {
14 | static var embraceSpanKey: UInt8 = 8
| |- warning: static property 'embraceSpanKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'embraceSpanKey' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'embraceSpanKey' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | }
16 |
[1560/1594] Compiling EmbraceCore URL+Embrace.swift
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/SwiftUI/Internal/EmbraceTraceViewContext.swift:20:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'EmbraceTraceViewContext' may have shared mutable state; this is an error in the Swift 6 language mode
18 | @available(iOS 13, macOS 10.15, tvOS 13, watchOS 6.0, *)
19 | private struct EmbraceTraceEnvironmentKey: EnvironmentKey {
20 | static let defaultValue: EmbraceTraceViewContext = EmbraceTraceViewContext()
| |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'EmbraceTraceViewContext' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 | }
22 |
:
36 | /// disappear) all refer to the same parent span until the cycle completes.
37 | @available(iOS 13, macOS 10.15, tvOS 13, watchOS 6.0, *)
38 | final class EmbraceTraceViewContext {
| `- note: class 'EmbraceTraceViewContext' does not conform to the 'Sendable' protocol
39 | /// The parent span for the current render cycle. Reset to `nil` once ended.
40 | var firstCycleSpan: Span?
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/SwiftUI/Internal/EmbraceTraceViewLogger.swift:19:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'EmbraceTraceViewLogger' may have shared mutable state; this is an error in the Swift 6 language mode
17 | @available(iOS 13, macOS 10.15, tvOS 13, watchOS 6.0, *)
18 | private struct EmbraceTraceViewLoggerEnvironmentKey: EnvironmentKey {
19 | static let defaultValue: EmbraceTraceViewLogger = EmbraceTraceViewLogger(
| |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'EmbraceTraceViewLogger' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 | otel: Embrace.client,
21 | logger: Embrace.logger,
:
44 | /// If any dependency (OTel client, configuration, etc.) is absent, tracing is effectively disabled.
45 | @available(iOS 13, macOS 10.15, tvOS 13, watchOS 6.0, *)
46 | final class EmbraceTraceViewLogger {
| `- note: class 'EmbraceTraceViewLogger' does not conform to the 'Sendable' protocol
47 | // MARK: – Properties
48 |
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/SwiftUI/Internal/EmbraceTraceViewLogger.swift:197:13: warning: capture of 'self' with non-sendable type 'EmbraceTraceViewLogger' in a '@Sendable' closure
44 | /// If any dependency (OTel client, configuration, etc.) is absent, tracing is effectively disabled.
45 | @available(iOS 13, macOS 10.15, tvOS 13, watchOS 6.0, *)
46 | final class EmbraceTraceViewLogger {
| `- note: class 'EmbraceTraceViewLogger' does not conform to the 'Sendable' protocol
47 | // MARK: – Properties
48 |
:
195 | // Schedule end-of-span on next main run loop cycle so child spans can attach
196 | RunLoop.main.perform(inModes: [.common]) { [self] in
197 | endSpan(span)
| `- warning: capture of 'self' with non-sendable type 'EmbraceTraceViewLogger' in a '@Sendable' closure
198 | completed()
199 | }
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/SwiftUI/Internal/EmbraceTraceViewLogger.swift:197:21: warning: capture of 'span' with non-sendable type 'any Span' in a '@Sendable' closure
195 | // Schedule end-of-span on next main run loop cycle so child spans can attach
196 | RunLoop.main.perform(inModes: [.common]) { [self] in
197 | endSpan(span)
| `- warning: capture of 'span' with non-sendable type 'any Span' in a '@Sendable' closure
198 | completed()
199 | }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/opentelemetry-swift-core/Sources/OpenTelemetryApi/Trace/Span.swift:107:17: note: protocol 'Span' does not conform to the 'Sendable' protocol
105 | /// Spans are created by the SpanBuilder.startSpan method.
106 | /// Span must be ended by calling end().
107 | public protocol Span: SpanBase, SpanExceptionRecorder {
| `- note: protocol 'Span' does not conform to the 'Sendable' protocol
108 | /// End the span.
109 | func end()
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/SwiftUI/Internal/EmbraceTraceViewLogger.swift:198:13: warning: capture of 'completed' with non-sendable type '() -> Void' in a '@Sendable' closure
196 | RunLoop.main.perform(inModes: [.common]) { [self] in
197 | endSpan(span)
198 | completed()
| |- warning: capture of 'completed' with non-sendable type '() -> Void' in a '@Sendable' closure
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
199 | }
200 |
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/KeychainAccess.swift:19:16: warning: static property 'keychain' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
17 | private init() {}
18 |
19 | static var keychain: KeychainInterface = DefaultKeychainInterface()
| |- warning: static property 'keychain' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'keychain' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'keychain' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 | static var deviceId: UUID {
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/KeychainInterface.swift:67:17: warning: capture of 'completion' with non-sendable type '(OSStatus) -> Void' (aka '(Int32) -> ()') in a '@Sendable' closure
65 | queue.async {
66 | guard let dataFromString = value.data(using: String.Encoding.utf8, allowLossyConversion: false) else {
67 | completion(errSecParam)
| |- warning: capture of 'completion' with non-sendable type '(OSStatus) -> Void' (aka '(Int32) -> ()') in a '@Sendable' closure
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
68 | return
69 | }
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/KeychainInterface.swift:73:34: warning: capture of 'service' with non-sendable type 'CFString' in a '@Sendable' closure
71 | let query: NSMutableDictionary = [
72 | kSecClass: kSecClassGenericPassword,
73 | kSecAttrService: service,
| `- warning: capture of 'service' with non-sendable type 'CFString' in a '@Sendable' closure
74 | kSecAttrAccount: account,
75 | kSecValueData: dataFromString
CoreFoundation.CFString:1:14: note: class 'CFString' does not conform to the 'Sendable' protocol
1 | public class CFString : _CFObject {
| `- note: class 'CFString' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/KeychainInterface.swift:5:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreFoundation'
3 | //
4 |
5 | import Foundation
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreFoundation'
6 |
7 | protocol KeychainInterface {
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/KeychainInterface.swift:74:34: warning: capture of 'account' with non-sendable type 'CFString' in a '@Sendable' closure
72 | kSecClass: kSecClassGenericPassword,
73 | kSecAttrService: service,
74 | kSecAttrAccount: account,
| `- warning: capture of 'account' with non-sendable type 'CFString' in a '@Sendable' closure
75 | kSecValueData: dataFromString
76 | ]
CoreFoundation.CFString:1:14: note: class 'CFString' does not conform to the 'Sendable' protocol
1 | public class CFString : _CFObject {
| `- note: class 'CFString' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/NSObject+Embrace.swift:14:20: warning: static property 'embraceSpanKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | extension NSObject {
13 | private struct AssociatedKeys {
14 | static var embraceSpanKey: UInt8 = 8
| |- warning: static property 'embraceSpanKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'embraceSpanKey' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'embraceSpanKey' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | }
16 |
[1561/1594] Compiling EmbraceCore W3C+TraceParent.swift
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/SwiftUI/Internal/EmbraceTraceViewContext.swift:20:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'EmbraceTraceViewContext' may have shared mutable state; this is an error in the Swift 6 language mode
18 | @available(iOS 13, macOS 10.15, tvOS 13, watchOS 6.0, *)
19 | private struct EmbraceTraceEnvironmentKey: EnvironmentKey {
20 | static let defaultValue: EmbraceTraceViewContext = EmbraceTraceViewContext()
| |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'EmbraceTraceViewContext' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 | }
22 |
:
36 | /// disappear) all refer to the same parent span until the cycle completes.
37 | @available(iOS 13, macOS 10.15, tvOS 13, watchOS 6.0, *)
38 | final class EmbraceTraceViewContext {
| `- note: class 'EmbraceTraceViewContext' does not conform to the 'Sendable' protocol
39 | /// The parent span for the current render cycle. Reset to `nil` once ended.
40 | var firstCycleSpan: Span?
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/SwiftUI/Internal/EmbraceTraceViewLogger.swift:19:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'EmbraceTraceViewLogger' may have shared mutable state; this is an error in the Swift 6 language mode
17 | @available(iOS 13, macOS 10.15, tvOS 13, watchOS 6.0, *)
18 | private struct EmbraceTraceViewLoggerEnvironmentKey: EnvironmentKey {
19 | static let defaultValue: EmbraceTraceViewLogger = EmbraceTraceViewLogger(
| |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'EmbraceTraceViewLogger' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 | otel: Embrace.client,
21 | logger: Embrace.logger,
:
44 | /// If any dependency (OTel client, configuration, etc.) is absent, tracing is effectively disabled.
45 | @available(iOS 13, macOS 10.15, tvOS 13, watchOS 6.0, *)
46 | final class EmbraceTraceViewLogger {
| `- note: class 'EmbraceTraceViewLogger' does not conform to the 'Sendable' protocol
47 | // MARK: – Properties
48 |
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/SwiftUI/Internal/EmbraceTraceViewLogger.swift:197:13: warning: capture of 'self' with non-sendable type 'EmbraceTraceViewLogger' in a '@Sendable' closure
44 | /// If any dependency (OTel client, configuration, etc.) is absent, tracing is effectively disabled.
45 | @available(iOS 13, macOS 10.15, tvOS 13, watchOS 6.0, *)
46 | final class EmbraceTraceViewLogger {
| `- note: class 'EmbraceTraceViewLogger' does not conform to the 'Sendable' protocol
47 | // MARK: – Properties
48 |
:
195 | // Schedule end-of-span on next main run loop cycle so child spans can attach
196 | RunLoop.main.perform(inModes: [.common]) { [self] in
197 | endSpan(span)
| `- warning: capture of 'self' with non-sendable type 'EmbraceTraceViewLogger' in a '@Sendable' closure
198 | completed()
199 | }
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/SwiftUI/Internal/EmbraceTraceViewLogger.swift:197:21: warning: capture of 'span' with non-sendable type 'any Span' in a '@Sendable' closure
195 | // Schedule end-of-span on next main run loop cycle so child spans can attach
196 | RunLoop.main.perform(inModes: [.common]) { [self] in
197 | endSpan(span)
| `- warning: capture of 'span' with non-sendable type 'any Span' in a '@Sendable' closure
198 | completed()
199 | }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/opentelemetry-swift-core/Sources/OpenTelemetryApi/Trace/Span.swift:107:17: note: protocol 'Span' does not conform to the 'Sendable' protocol
105 | /// Spans are created by the SpanBuilder.startSpan method.
106 | /// Span must be ended by calling end().
107 | public protocol Span: SpanBase, SpanExceptionRecorder {
| `- note: protocol 'Span' does not conform to the 'Sendable' protocol
108 | /// End the span.
109 | func end()
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/SwiftUI/Internal/EmbraceTraceViewLogger.swift:198:13: warning: capture of 'completed' with non-sendable type '() -> Void' in a '@Sendable' closure
196 | RunLoop.main.perform(inModes: [.common]) { [self] in
197 | endSpan(span)
198 | completed()
| |- warning: capture of 'completed' with non-sendable type '() -> Void' in a '@Sendable' closure
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
199 | }
200 |
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/KeychainAccess.swift:19:16: warning: static property 'keychain' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
17 | private init() {}
18 |
19 | static var keychain: KeychainInterface = DefaultKeychainInterface()
| |- warning: static property 'keychain' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'keychain' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'keychain' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 | static var deviceId: UUID {
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/KeychainInterface.swift:67:17: warning: capture of 'completion' with non-sendable type '(OSStatus) -> Void' (aka '(Int32) -> ()') in a '@Sendable' closure
65 | queue.async {
66 | guard let dataFromString = value.data(using: String.Encoding.utf8, allowLossyConversion: false) else {
67 | completion(errSecParam)
| |- warning: capture of 'completion' with non-sendable type '(OSStatus) -> Void' (aka '(Int32) -> ()') in a '@Sendable' closure
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
68 | return
69 | }
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/KeychainInterface.swift:73:34: warning: capture of 'service' with non-sendable type 'CFString' in a '@Sendable' closure
71 | let query: NSMutableDictionary = [
72 | kSecClass: kSecClassGenericPassword,
73 | kSecAttrService: service,
| `- warning: capture of 'service' with non-sendable type 'CFString' in a '@Sendable' closure
74 | kSecAttrAccount: account,
75 | kSecValueData: dataFromString
CoreFoundation.CFString:1:14: note: class 'CFString' does not conform to the 'Sendable' protocol
1 | public class CFString : _CFObject {
| `- note: class 'CFString' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/KeychainInterface.swift:5:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreFoundation'
3 | //
4 |
5 | import Foundation
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreFoundation'
6 |
7 | protocol KeychainInterface {
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/KeychainInterface.swift:74:34: warning: capture of 'account' with non-sendable type 'CFString' in a '@Sendable' closure
72 | kSecClass: kSecClassGenericPassword,
73 | kSecAttrService: service,
74 | kSecAttrAccount: account,
| `- warning: capture of 'account' with non-sendable type 'CFString' in a '@Sendable' closure
75 | kSecValueData: dataFromString
76 | ]
CoreFoundation.CFString:1:14: note: class 'CFString' does not conform to the 'Sendable' protocol
1 | public class CFString : _CFObject {
| `- note: class 'CFString' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/NSObject+Embrace.swift:14:20: warning: static property 'embraceSpanKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | extension NSObject {
13 | private struct AssociatedKeys {
14 | static var embraceSpanKey: UInt8 = 8
| |- warning: static property 'embraceSpanKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'embraceSpanKey' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'embraceSpanKey' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | }
16 |
[1562/1594] Compiling EmbraceCore W3C.swift
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/SwiftUI/Internal/EmbraceTraceViewContext.swift:20:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'EmbraceTraceViewContext' may have shared mutable state; this is an error in the Swift 6 language mode
18 | @available(iOS 13, macOS 10.15, tvOS 13, watchOS 6.0, *)
19 | private struct EmbraceTraceEnvironmentKey: EnvironmentKey {
20 | static let defaultValue: EmbraceTraceViewContext = EmbraceTraceViewContext()
| |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'EmbraceTraceViewContext' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 | }
22 |
:
36 | /// disappear) all refer to the same parent span until the cycle completes.
37 | @available(iOS 13, macOS 10.15, tvOS 13, watchOS 6.0, *)
38 | final class EmbraceTraceViewContext {
| `- note: class 'EmbraceTraceViewContext' does not conform to the 'Sendable' protocol
39 | /// The parent span for the current render cycle. Reset to `nil` once ended.
40 | var firstCycleSpan: Span?
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/SwiftUI/Internal/EmbraceTraceViewLogger.swift:19:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'EmbraceTraceViewLogger' may have shared mutable state; this is an error in the Swift 6 language mode
17 | @available(iOS 13, macOS 10.15, tvOS 13, watchOS 6.0, *)
18 | private struct EmbraceTraceViewLoggerEnvironmentKey: EnvironmentKey {
19 | static let defaultValue: EmbraceTraceViewLogger = EmbraceTraceViewLogger(
| |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'EmbraceTraceViewLogger' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 | otel: Embrace.client,
21 | logger: Embrace.logger,
:
44 | /// If any dependency (OTel client, configuration, etc.) is absent, tracing is effectively disabled.
45 | @available(iOS 13, macOS 10.15, tvOS 13, watchOS 6.0, *)
46 | final class EmbraceTraceViewLogger {
| `- note: class 'EmbraceTraceViewLogger' does not conform to the 'Sendable' protocol
47 | // MARK: – Properties
48 |
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/SwiftUI/Internal/EmbraceTraceViewLogger.swift:197:13: warning: capture of 'self' with non-sendable type 'EmbraceTraceViewLogger' in a '@Sendable' closure
44 | /// If any dependency (OTel client, configuration, etc.) is absent, tracing is effectively disabled.
45 | @available(iOS 13, macOS 10.15, tvOS 13, watchOS 6.0, *)
46 | final class EmbraceTraceViewLogger {
| `- note: class 'EmbraceTraceViewLogger' does not conform to the 'Sendable' protocol
47 | // MARK: – Properties
48 |
:
195 | // Schedule end-of-span on next main run loop cycle so child spans can attach
196 | RunLoop.main.perform(inModes: [.common]) { [self] in
197 | endSpan(span)
| `- warning: capture of 'self' with non-sendable type 'EmbraceTraceViewLogger' in a '@Sendable' closure
198 | completed()
199 | }
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/SwiftUI/Internal/EmbraceTraceViewLogger.swift:197:21: warning: capture of 'span' with non-sendable type 'any Span' in a '@Sendable' closure
195 | // Schedule end-of-span on next main run loop cycle so child spans can attach
196 | RunLoop.main.perform(inModes: [.common]) { [self] in
197 | endSpan(span)
| `- warning: capture of 'span' with non-sendable type 'any Span' in a '@Sendable' closure
198 | completed()
199 | }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/opentelemetry-swift-core/Sources/OpenTelemetryApi/Trace/Span.swift:107:17: note: protocol 'Span' does not conform to the 'Sendable' protocol
105 | /// Spans are created by the SpanBuilder.startSpan method.
106 | /// Span must be ended by calling end().
107 | public protocol Span: SpanBase, SpanExceptionRecorder {
| `- note: protocol 'Span' does not conform to the 'Sendable' protocol
108 | /// End the span.
109 | func end()
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/SwiftUI/Internal/EmbraceTraceViewLogger.swift:198:13: warning: capture of 'completed' with non-sendable type '() -> Void' in a '@Sendable' closure
196 | RunLoop.main.perform(inModes: [.common]) { [self] in
197 | endSpan(span)
198 | completed()
| |- warning: capture of 'completed' with non-sendable type '() -> Void' in a '@Sendable' closure
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
199 | }
200 |
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/KeychainAccess.swift:19:16: warning: static property 'keychain' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
17 | private init() {}
18 |
19 | static var keychain: KeychainInterface = DefaultKeychainInterface()
| |- warning: static property 'keychain' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'keychain' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'keychain' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 | static var deviceId: UUID {
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/KeychainInterface.swift:67:17: warning: capture of 'completion' with non-sendable type '(OSStatus) -> Void' (aka '(Int32) -> ()') in a '@Sendable' closure
65 | queue.async {
66 | guard let dataFromString = value.data(using: String.Encoding.utf8, allowLossyConversion: false) else {
67 | completion(errSecParam)
| |- warning: capture of 'completion' with non-sendable type '(OSStatus) -> Void' (aka '(Int32) -> ()') in a '@Sendable' closure
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
68 | return
69 | }
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/KeychainInterface.swift:73:34: warning: capture of 'service' with non-sendable type 'CFString' in a '@Sendable' closure
71 | let query: NSMutableDictionary = [
72 | kSecClass: kSecClassGenericPassword,
73 | kSecAttrService: service,
| `- warning: capture of 'service' with non-sendable type 'CFString' in a '@Sendable' closure
74 | kSecAttrAccount: account,
75 | kSecValueData: dataFromString
CoreFoundation.CFString:1:14: note: class 'CFString' does not conform to the 'Sendable' protocol
1 | public class CFString : _CFObject {
| `- note: class 'CFString' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/KeychainInterface.swift:5:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreFoundation'
3 | //
4 |
5 | import Foundation
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreFoundation'
6 |
7 | protocol KeychainInterface {
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/KeychainInterface.swift:74:34: warning: capture of 'account' with non-sendable type 'CFString' in a '@Sendable' closure
72 | kSecClass: kSecClassGenericPassword,
73 | kSecAttrService: service,
74 | kSecAttrAccount: account,
| `- warning: capture of 'account' with non-sendable type 'CFString' in a '@Sendable' closure
75 | kSecValueData: dataFromString
76 | ]
CoreFoundation.CFString:1:14: note: class 'CFString' does not conform to the 'Sendable' protocol
1 | public class CFString : _CFObject {
| `- note: class 'CFString' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/NSObject+Embrace.swift:14:20: warning: static property 'embraceSpanKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | extension NSObject {
13 | private struct AssociatedKeys {
14 | static var embraceSpanKey: UInt8 = 8
| |- warning: static property 'embraceSpanKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'embraceSpanKey' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'embraceSpanKey' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | }
16 |
[1563/1594] Compiling EmbraceCore resource_bundle_accessor.swift
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/SwiftUI/Internal/EmbraceTraceViewContext.swift:20:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'EmbraceTraceViewContext' may have shared mutable state; this is an error in the Swift 6 language mode
18 | @available(iOS 13, macOS 10.15, tvOS 13, watchOS 6.0, *)
19 | private struct EmbraceTraceEnvironmentKey: EnvironmentKey {
20 | static let defaultValue: EmbraceTraceViewContext = EmbraceTraceViewContext()
| |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'EmbraceTraceViewContext' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 | }
22 |
:
36 | /// disappear) all refer to the same parent span until the cycle completes.
37 | @available(iOS 13, macOS 10.15, tvOS 13, watchOS 6.0, *)
38 | final class EmbraceTraceViewContext {
| `- note: class 'EmbraceTraceViewContext' does not conform to the 'Sendable' protocol
39 | /// The parent span for the current render cycle. Reset to `nil` once ended.
40 | var firstCycleSpan: Span?
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/SwiftUI/Internal/EmbraceTraceViewLogger.swift:19:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'EmbraceTraceViewLogger' may have shared mutable state; this is an error in the Swift 6 language mode
17 | @available(iOS 13, macOS 10.15, tvOS 13, watchOS 6.0, *)
18 | private struct EmbraceTraceViewLoggerEnvironmentKey: EnvironmentKey {
19 | static let defaultValue: EmbraceTraceViewLogger = EmbraceTraceViewLogger(
| |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'EmbraceTraceViewLogger' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 | otel: Embrace.client,
21 | logger: Embrace.logger,
:
44 | /// If any dependency (OTel client, configuration, etc.) is absent, tracing is effectively disabled.
45 | @available(iOS 13, macOS 10.15, tvOS 13, watchOS 6.0, *)
46 | final class EmbraceTraceViewLogger {
| `- note: class 'EmbraceTraceViewLogger' does not conform to the 'Sendable' protocol
47 | // MARK: – Properties
48 |
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/SwiftUI/Internal/EmbraceTraceViewLogger.swift:197:13: warning: capture of 'self' with non-sendable type 'EmbraceTraceViewLogger' in a '@Sendable' closure
44 | /// If any dependency (OTel client, configuration, etc.) is absent, tracing is effectively disabled.
45 | @available(iOS 13, macOS 10.15, tvOS 13, watchOS 6.0, *)
46 | final class EmbraceTraceViewLogger {
| `- note: class 'EmbraceTraceViewLogger' does not conform to the 'Sendable' protocol
47 | // MARK: – Properties
48 |
:
195 | // Schedule end-of-span on next main run loop cycle so child spans can attach
196 | RunLoop.main.perform(inModes: [.common]) { [self] in
197 | endSpan(span)
| `- warning: capture of 'self' with non-sendable type 'EmbraceTraceViewLogger' in a '@Sendable' closure
198 | completed()
199 | }
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/SwiftUI/Internal/EmbraceTraceViewLogger.swift:197:21: warning: capture of 'span' with non-sendable type 'any Span' in a '@Sendable' closure
195 | // Schedule end-of-span on next main run loop cycle so child spans can attach
196 | RunLoop.main.perform(inModes: [.common]) { [self] in
197 | endSpan(span)
| `- warning: capture of 'span' with non-sendable type 'any Span' in a '@Sendable' closure
198 | completed()
199 | }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/opentelemetry-swift-core/Sources/OpenTelemetryApi/Trace/Span.swift:107:17: note: protocol 'Span' does not conform to the 'Sendable' protocol
105 | /// Spans are created by the SpanBuilder.startSpan method.
106 | /// Span must be ended by calling end().
107 | public protocol Span: SpanBase, SpanExceptionRecorder {
| `- note: protocol 'Span' does not conform to the 'Sendable' protocol
108 | /// End the span.
109 | func end()
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/SwiftUI/Internal/EmbraceTraceViewLogger.swift:198:13: warning: capture of 'completed' with non-sendable type '() -> Void' in a '@Sendable' closure
196 | RunLoop.main.perform(inModes: [.common]) { [self] in
197 | endSpan(span)
198 | completed()
| |- warning: capture of 'completed' with non-sendable type '() -> Void' in a '@Sendable' closure
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
199 | }
200 |
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/KeychainAccess.swift:19:16: warning: static property 'keychain' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
17 | private init() {}
18 |
19 | static var keychain: KeychainInterface = DefaultKeychainInterface()
| |- warning: static property 'keychain' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'keychain' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'keychain' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 | static var deviceId: UUID {
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/KeychainInterface.swift:67:17: warning: capture of 'completion' with non-sendable type '(OSStatus) -> Void' (aka '(Int32) -> ()') in a '@Sendable' closure
65 | queue.async {
66 | guard let dataFromString = value.data(using: String.Encoding.utf8, allowLossyConversion: false) else {
67 | completion(errSecParam)
| |- warning: capture of 'completion' with non-sendable type '(OSStatus) -> Void' (aka '(Int32) -> ()') in a '@Sendable' closure
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
68 | return
69 | }
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/KeychainInterface.swift:73:34: warning: capture of 'service' with non-sendable type 'CFString' in a '@Sendable' closure
71 | let query: NSMutableDictionary = [
72 | kSecClass: kSecClassGenericPassword,
73 | kSecAttrService: service,
| `- warning: capture of 'service' with non-sendable type 'CFString' in a '@Sendable' closure
74 | kSecAttrAccount: account,
75 | kSecValueData: dataFromString
CoreFoundation.CFString:1:14: note: class 'CFString' does not conform to the 'Sendable' protocol
1 | public class CFString : _CFObject {
| `- note: class 'CFString' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/KeychainInterface.swift:5:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreFoundation'
3 | //
4 |
5 | import Foundation
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreFoundation'
6 |
7 | protocol KeychainInterface {
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/KeychainInterface.swift:74:34: warning: capture of 'account' with non-sendable type 'CFString' in a '@Sendable' closure
72 | kSecClass: kSecClassGenericPassword,
73 | kSecAttrService: service,
74 | kSecAttrAccount: account,
| `- warning: capture of 'account' with non-sendable type 'CFString' in a '@Sendable' closure
75 | kSecValueData: dataFromString
76 | ]
CoreFoundation.CFString:1:14: note: class 'CFString' does not conform to the 'Sendable' protocol
1 | public class CFString : _CFObject {
| `- note: class 'CFString' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/NSObject+Embrace.swift:14:20: warning: static property 'embraceSpanKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | extension NSObject {
13 | private struct AssociatedKeys {
14 | static var embraceSpanKey: UInt8 = 8
| |- warning: static property 'embraceSpanKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'embraceSpanKey' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'embraceSpanKey' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | }
16 |
[1564/1594] Compiling SwiftIfConfig SyntaxProtocol+IfConfig.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/SwiftUI/Internal/EmbraceTraceViewContext.swift:20:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'EmbraceTraceViewContext' may have shared mutable state; this is an error in the Swift 6 language mode
18 | @available(iOS 13, macOS 10.15, tvOS 13, watchOS 6.0, *)
19 | private struct EmbraceTraceEnvironmentKey: EnvironmentKey {
20 | static let defaultValue: EmbraceTraceViewContext = EmbraceTraceViewContext()
| |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'EmbraceTraceViewContext' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 | }
22 |
:
36 | /// disappear) all refer to the same parent span until the cycle completes.
37 | @available(iOS 13, macOS 10.15, tvOS 13, watchOS 6.0, *)
38 | final class EmbraceTraceViewContext {
| `- note: class 'EmbraceTraceViewContext' does not conform to the 'Sendable' protocol
39 | /// The parent span for the current render cycle. Reset to `nil` once ended.
40 | var firstCycleSpan: Span?
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/SwiftUI/Internal/EmbraceTraceViewLogger.swift:19:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'EmbraceTraceViewLogger' may have shared mutable state; this is an error in the Swift 6 language mode
17 | @available(iOS 13, macOS 10.15, tvOS 13, watchOS 6.0, *)
18 | private struct EmbraceTraceViewLoggerEnvironmentKey: EnvironmentKey {
19 | static let defaultValue: EmbraceTraceViewLogger = EmbraceTraceViewLogger(
| |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'EmbraceTraceViewLogger' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 | otel: Embrace.client,
21 | logger: Embrace.logger,
:
44 | /// If any dependency (OTel client, configuration, etc.) is absent, tracing is effectively disabled.
45 | @available(iOS 13, macOS 10.15, tvOS 13, watchOS 6.0, *)
46 | final class EmbraceTraceViewLogger {
| `- note: class 'EmbraceTraceViewLogger' does not conform to the 'Sendable' protocol
47 | // MARK: – Properties
48 |
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/SwiftUI/Internal/EmbraceTraceViewLogger.swift:197:13: warning: capture of 'self' with non-sendable type 'EmbraceTraceViewLogger' in a '@Sendable' closure
44 | /// If any dependency (OTel client, configuration, etc.) is absent, tracing is effectively disabled.
45 | @available(iOS 13, macOS 10.15, tvOS 13, watchOS 6.0, *)
46 | final class EmbraceTraceViewLogger {
| `- note: class 'EmbraceTraceViewLogger' does not conform to the 'Sendable' protocol
47 | // MARK: – Properties
48 |
:
195 | // Schedule end-of-span on next main run loop cycle so child spans can attach
196 | RunLoop.main.perform(inModes: [.common]) { [self] in
197 | endSpan(span)
| `- warning: capture of 'self' with non-sendable type 'EmbraceTraceViewLogger' in a '@Sendable' closure
198 | completed()
199 | }
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/SwiftUI/Internal/EmbraceTraceViewLogger.swift:197:21: warning: capture of 'span' with non-sendable type 'any Span' in a '@Sendable' closure
195 | // Schedule end-of-span on next main run loop cycle so child spans can attach
196 | RunLoop.main.perform(inModes: [.common]) { [self] in
197 | endSpan(span)
| `- warning: capture of 'span' with non-sendable type 'any Span' in a '@Sendable' closure
198 | completed()
199 | }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/opentelemetry-swift-core/Sources/OpenTelemetryApi/Trace/Span.swift:107:17: note: protocol 'Span' does not conform to the 'Sendable' protocol
105 | /// Spans are created by the SpanBuilder.startSpan method.
106 | /// Span must be ended by calling end().
107 | public protocol Span: SpanBase, SpanExceptionRecorder {
| `- note: protocol 'Span' does not conform to the 'Sendable' protocol
108 | /// End the span.
109 | func end()
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/SwiftUI/Internal/EmbraceTraceViewLogger.swift:198:13: warning: capture of 'completed' with non-sendable type '() -> Void' in a '@Sendable' closure
196 | RunLoop.main.perform(inModes: [.common]) { [self] in
197 | endSpan(span)
198 | completed()
| |- warning: capture of 'completed' with non-sendable type '() -> Void' in a '@Sendable' closure
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
199 | }
200 |
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/KeychainAccess.swift:19:16: warning: static property 'keychain' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
17 | private init() {}
18 |
19 | static var keychain: KeychainInterface = DefaultKeychainInterface()
| |- warning: static property 'keychain' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'keychain' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'keychain' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 | static var deviceId: UUID {
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/KeychainInterface.swift:67:17: warning: capture of 'completion' with non-sendable type '(OSStatus) -> Void' (aka '(Int32) -> ()') in a '@Sendable' closure
65 | queue.async {
66 | guard let dataFromString = value.data(using: String.Encoding.utf8, allowLossyConversion: false) else {
67 | completion(errSecParam)
| |- warning: capture of 'completion' with non-sendable type '(OSStatus) -> Void' (aka '(Int32) -> ()') in a '@Sendable' closure
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
68 | return
69 | }
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/KeychainInterface.swift:73:34: warning: capture of 'service' with non-sendable type 'CFString' in a '@Sendable' closure
71 | let query: NSMutableDictionary = [
72 | kSecClass: kSecClassGenericPassword,
73 | kSecAttrService: service,
| `- warning: capture of 'service' with non-sendable type 'CFString' in a '@Sendable' closure
74 | kSecAttrAccount: account,
75 | kSecValueData: dataFromString
CoreFoundation.CFString:1:14: note: class 'CFString' does not conform to the 'Sendable' protocol
1 | public class CFString : _CFObject {
| `- note: class 'CFString' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/KeychainInterface.swift:5:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreFoundation'
3 | //
4 |
5 | import Foundation
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreFoundation'
6 |
7 | protocol KeychainInterface {
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/KeychainInterface.swift:74:34: warning: capture of 'account' with non-sendable type 'CFString' in a '@Sendable' closure
72 | kSecClass: kSecClassGenericPassword,
73 | kSecAttrService: service,
74 | kSecAttrAccount: account,
| `- warning: capture of 'account' with non-sendable type 'CFString' in a '@Sendable' closure
75 | kSecValueData: dataFromString
76 | ]
CoreFoundation.CFString:1:14: note: class 'CFString' does not conform to the 'Sendable' protocol
1 | public class CFString : _CFObject {
| `- note: class 'CFString' does not conform to the 'Sendable' protocol
2 | }
Fetching https://github.com/open-telemetry/opentelemetry-swift-core
Fetching https://github.com/kstenerud/KSCrash
Fetching https://github.com/swiftlang/swift-syntax.git from cache
[1/14002] Fetching opentelemetry-swift-core
[2522/39670] Fetching opentelemetry-swift-core, kscrash
Fetched https://github.com/kstenerud/KSCrash from cache (2.19s)
Fetched https://github.com/open-telemetry/opentelemetry-swift-core from cache (2.19s)
Fetched https://github.com/swiftlang/swift-syntax.git from cache (2.28s)
Computing version for https://github.com/kstenerud/KSCrash
Computed https://github.com/kstenerud/KSCrash at 2.5.1 (2.99s)
Computing version for https://github.com/open-telemetry/opentelemetry-swift-core
Computed https://github.com/open-telemetry/opentelemetry-swift-core at 2.4.1 (2.53s)
Fetching https://github.com/apple/swift-atomics.git from cache
Fetched https://github.com/apple/swift-atomics.git from cache (0.68s)
Computing version for https://github.com/apple/swift-atomics.git
Computed https://github.com/apple/swift-atomics.git at 1.3.0 (1.19s)
Computing version for https://github.com/swiftlang/swift-syntax.git
Computed https://github.com/swiftlang/swift-syntax.git at 603.0.1 (0.67s)
Creating working copy for https://github.com/open-telemetry/opentelemetry-swift-core
Working copy of https://github.com/open-telemetry/opentelemetry-swift-core resolved at 2.4.1
Creating working copy for https://github.com/swiftlang/swift-syntax.git
Working copy of https://github.com/swiftlang/swift-syntax.git resolved at 603.0.1
Creating working copy for https://github.com/kstenerud/KSCrash
Working copy of https://github.com/kstenerud/KSCrash resolved at 2.5.1
Creating working copy for https://github.com/apple/swift-atomics.git
Working copy of https://github.com/apple/swift-atomics.git resolved at 1.3.0
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64
[0/1] Planning build
Building for debugging...
[0/3] Write swift-version-2F0A5646E1D333AE.txt
[2/31] Compiling SwiftSyntax601 Empty.swift
[3/31] Compiling SwiftSyntax509 Empty.swift
[4/31] Emitting module SwiftSyntax509
[5/31] Emitting module SwiftSyntax601
[6/31] Emitting module SwiftSyntax602
[7/31] Emitting module SwiftSyntax510
[8/31] Compiling SwiftSyntax510 Empty.swift
[9/31] Emitting module SwiftSyntax600
[10/31] Compiling SwiftSyntax600 Empty.swift
[11/31] Compiling SwiftSyntax602 Empty.swift
[12/31] Emitting module SwiftSyntax603
[13/31] Compiling SwiftSyntax603 Empty.swift
[14/341] Emitting module EmbraceConfiguration
[16/341] Compiling EmbraceConfiguration EmbraceConfigurable.swift
[17/341] Compiling EmbraceConfiguration DefaultConfig.swift
[18/341] Compiling EmbraceConfiguration HangLimits.swift
[19/341] Compiling EmbraceConfiguration EmbraceConfigurable.swift
[20/341] Compiling EmbraceConfiguration SpanEventsLimits.swift
[21/341] Compiling EmbraceConfiguration InternalLogLimits.swift
[22/341] Compiling EmbraceConfiguration DefaultConfig.swift
[23/341] Compiling EmbraceConfiguration HangLimits.swift
[24/341] Compiling EmbraceConfiguration SpanEventsLimits.swift
[25/341] Compiling EmbraceConfiguration InternalLogLimits.swift
[26/341] Compiling EmbraceConfiguration LogsLimits.swift
[27/341] Compiling EmbraceConfiguration NetworkPayloadCaptureRule.swift
[29/341] Compiling EmbraceConfiguration LogsLimits.swift
[30/405] Compiling OpenTelemetryApi Nfs_attributes.swift
[31/405] Compiling OpenTelemetryApi Nodejs_attributes.swift
[32/405] Compiling OpenTelemetryApi Oci_attributes.swift
[33/405] Compiling OpenTelemetryApi OncRpc_attributes.swift
[34/405] Compiling OpenTelemetryApi Openai_attributes.swift
[35/405] Compiling OpenTelemetryApi Openshift_attributes.swift
[36/405] Compiling OpenTelemetryApi Opentracing_attributes.swift
[37/405] Compiling OpenTelemetryApi Os_attributes.swift
[38/405] Compiling OpenTelemetryApi Otel_attributes.swift
[39/405] Compiling OpenTelemetryApi Peer_attributes.swift
[40/405] Compiling OpenTelemetryApi Pprof_attributes.swift
[41/405] Compiling OpenTelemetryApi Process_attributes.swift
[42/405] Compiling OpenTelemetryApi Profile_attributes.swift
[43/405] Compiling OpenTelemetryApi Rpc_attributes.swift
[44/405] Compiling OpenTelemetryApi SecurityRule_attributes.swift
[45/405] Compiling OpenTelemetryApi Server_attributes.swift
[46/405] Compiling OpenTelemetryApi Service_attributes.swift
[47/422] Compiling OpenTelemetryApi BaggageBuilder.swift
[48/422] Compiling OpenTelemetryApi BaggageManager.swift
[49/422] Compiling OpenTelemetryApi BaggageManagerProvider.swift
[50/422] Compiling OpenTelemetryApi DefaultBaggage.swift
[51/422] Compiling OpenTelemetryApi DefaultBaggageBuilder.swift
[52/422] Compiling OpenTelemetryApi DefaultBaggageManager.swift
[53/422] Compiling OpenTelemetryApi DefaultBaggageManagerProvider.swift
[54/422] Compiling OpenTelemetryApi EmptyBaggage.swift
[55/422] Compiling OpenTelemetryApi EmptyBaggageBuilder.swift
[56/422] Compiling OpenTelemetryApi Entry.swift
[57/422] Compiling OpenTelemetryApi EntryKey.swift
[58/422] Compiling OpenTelemetryApi EntryMetadata.swift
[59/422] Compiling OpenTelemetryApi EntryValue.swift
[60/422] Compiling OpenTelemetryApi JaegerBaggagePropagator.swift
[61/422] Compiling OpenTelemetryApi TextMapBaggagePropagator.swift
[62/422] Compiling OpenTelemetryApi W3CBaggagePropagator.swift
[63/422] Compiling OpenTelemetryApi ZipkinBaggagePropagator.swift
[64/422] Compiling OpenTelemetryApi OpenTelemetryContextProvider.swift
[65/422] Compiling OpenTelemetryApi TaskLocalContextManager.swift
[66/422] Compiling OpenTelemetryApi StringUtils.swift
[67/422] Compiling OpenTelemetryApi SwiftExtensions.swift
[68/422] Compiling OpenTelemetryApi TracestateUtils.swift
[69/422] Compiling OpenTelemetryApi DefaultLogger.swift
[70/422] Compiling OpenTelemetryApi DefaultLoggerProvider.swift
[71/422] Compiling OpenTelemetryApi EventBuilder.swift
[72/422] Compiling OpenTelemetryApi LogRecordBuilder.swift
[73/422] Compiling OpenTelemetryApi Logger.swift
[74/422] Compiling OpenTelemetryApi LoggerBuilder.swift
[75/422] Compiling OpenTelemetryApi LoggerProvider.swift
[76/422] Compiling OpenTelemetryApi Severity.swift
[77/422] Compiling OpenTelemetryApi DefaultMeter.swift
[78/422] Compiling OpenTelemetryApi DefaultMeterProvider.swift
[79/422] Compiling OpenTelemetryApi DoubleCounter.swift
[80/422] Compiling OpenTelemetryApi Baggage.swift
[81/422] Compiling SwiftSyntax SwiftSyntaxCompatibility.swift
[82/422] Compiling SwiftSyntax Syntax.swift
[83/422] Compiling SwiftSyntax SyntaxChildren.swift
[84/422] Compiling SwiftSyntax SyntaxCollection.swift
[85/422] Compiling SwiftSyntax SyntaxHashable.swift
[86/422] Compiling SwiftSyntax SyntaxIdentifier.swift
[87/422] Compiling SwiftSyntax SyntaxNodeStructure.swift
[88/422] Compiling SwiftSyntax Tokens.swift
[89/422] Compiling SwiftSyntax TriviaPieces.swift
[90/422] Compiling SwiftSyntax RawSyntaxNodesAB.swift
[91/422] Compiling SwiftSyntax RawSyntaxNodesC.swift
[92/422] Compiling SwiftSyntax RawSyntaxNodesD.swift
[93/422] Compiling SwiftSyntax RawSyntaxNodesEF.swift
[94/422] Compiling SwiftSyntax RawSyntaxNodesGHI.swift
[95/422] Compiling SwiftSyntax CustomTraits.swift
[96/422] Compiling SwiftSyntax EditorPlaceholder.swift
[97/422] Compiling SwiftSyntax Identifier.swift
[98/422] Compiling SwiftSyntax MemoryLayout.swift
[99/422] Compiling SwiftSyntax MissingNodeInitializers.swift
[100/422] Compiling SwiftSyntax RawSyntax.swift
[101/422] Compiling SwiftSyntax RawSyntaxArena.swift
[102/422] Compiling SwiftSyntax RawSyntaxNodesJKLMN.swift
[103/422] Compiling SwiftSyntax RawSyntaxNodesOP.swift
[104/422] Compiling SwiftSyntax RawSyntaxNodesQRS.swift
[105/422] Compiling SwiftSyntax RawSyntaxNodesTUVWXYZ.swift
[106/422] Compiling SwiftSyntax RawSyntaxValidation.swift
[107/422] Compiling SwiftSyntax SyntaxNodesAB.swift
[108/422] Compiling SwiftSyntax SyntaxNodesC.swift
[109/422] Compiling OpenTelemetryApi LongHistogramBuilder.swift
[110/422] Compiling OpenTelemetryApi LongUpDownCounter.swift
[111/422] Compiling OpenTelemetryApi LongUpDownCounterBuilder.swift
[112/422] Compiling OpenTelemetryApi Meter.swift
[113/422] Compiling OpenTelemetryApi MeterBuilder.swift
[114/422] Compiling OpenTelemetryApi ContextManager.swift
[115/422] Compiling SwiftSyntax Convenience.swift
[132/439] Compiling SwiftSyntax SyntaxProtocol.swift
[133/439] Compiling SwiftSyntax SyntaxText.swift
[134/439] Compiling SwiftSyntax SyntaxTreeViewMode.swift
[135/439] Compiling SwiftSyntax TokenDiagnostic.swift
[136/439] Compiling SwiftSyntax TokenSequence.swift
[137/439] Compiling SwiftSyntax TokenSyntax.swift
[138/439] Compiling SwiftSyntax Trivia.swift
[139/439] Compiling SwiftSyntax Utils.swift
[140/439] Compiling SwiftSyntax ChildNameForKeyPath.swift
[141/439] Compiling SwiftSyntax Keyword.swift
[142/439] Compiling SwiftSyntax RenamedChildrenCompatibility.swift
[143/439] Compiling SwiftSyntax RenamedNodesCompatibility.swift
[144/439] Compiling SwiftSyntax SyntaxAnyVisitor.swift
[145/439] Compiling SwiftSyntax SyntaxBaseNodes.swift
[146/439] Compiling SwiftSyntax RawSyntaxLayoutView.swift
[147/439] Compiling SwiftSyntax RawSyntaxNodeProtocol.swift
[148/439] Compiling SwiftSyntax RawSyntaxTokenView.swift
[149/439] Compiling SwiftSyntax SourceEdit.swift
[150/439] Compiling SwiftSyntax SourceLength.swift
[151/439] Compiling SwiftSyntax SourceLocation.swift
[152/439] Compiling SwiftSyntax SourcePresence.swift
[153/439] Compiling SwiftSyntax SyntaxCollections.swift
[154/439] Compiling SwiftSyntax SyntaxEnum.swift
[155/439] Compiling SwiftSyntax SyntaxKind.swift
[156/439] Compiling SwiftSyntax SyntaxRewriter.swift
[157/439] Compiling SwiftSyntax SyntaxTraits.swift
[158/439] Compiling SwiftSyntax SyntaxVisitor.swift
[159/439] Compiling SwiftSyntax TokenKind.swift
[160/439] Compiling SwiftSyntax AbsolutePosition.swift
[161/439] Compiling SwiftSyntax AbsoluteSyntaxInfo.swift
[162/439] Compiling SwiftSyntax ArenaAllocatedBuffer.swift
[163/439] Compiling SwiftSyntax Assert.swift
[164/439] Compiling SwiftSyntax BumpPtrAllocator.swift
[165/439] Compiling SwiftSyntax CommonAncestor.swift
[201/439] Compiling OpenTelemetryApi Container_attributes.swift
[202/439] Compiling OpenTelemetryApi Cpu_attributes.swift
[203/439] Compiling OpenTelemetryApi Cpython_attributes.swift
[204/439] Compiling OpenTelemetryApi Db_attributes.swift
[205/439] Compiling OpenTelemetryApi Deployment_attributes.swift
[206/439] Compiling OpenTelemetryApi Destination_attributes.swift
[207/439] Compiling OpenTelemetryApi Device_attributes.swift
[208/439] Compiling OpenTelemetryApi Disk_attributes.swift
[209/439] Compiling OpenTelemetryApi Dns_attributes.swift
[210/439] Compiling OpenTelemetryApi Dotnet_attributes.swift
[211/439] Compiling OpenTelemetryApi Elasticsearch_attributes.swift
[212/439] Compiling OpenTelemetryApi Enduser_attributes.swift
[213/439] Compiling OpenTelemetryApi Error_attributes.swift
[214/439] Compiling OpenTelemetryApi Exception_attributes.swift
[215/439] Compiling OpenTelemetryApi Faas_attributes.swift
[216/439] Compiling OpenTelemetryApi FeatureFlag_attributes.swift
[217/439] Compiling OpenTelemetryApi File_attributes.swift
[218/439] Compiling OpenTelemetryApi Session_attributes.swift
[219/439] Compiling OpenTelemetryApi Signalr_attributes.swift
[220/439] Compiling OpenTelemetryApi Source_attributes.swift
[221/439] Compiling OpenTelemetryApi System_attributes.swift
[222/439] Compiling OpenTelemetryApi Telemetry_attributes.swift
[223/439] Compiling OpenTelemetryApi Test_attributes.swift
[224/439] Compiling OpenTelemetryApi Thread_attributes.swift
[225/439] Compiling OpenTelemetryApi Tls_attributes.swift
[226/439] Compiling OpenTelemetryApi Url_attributes.swift
[227/439] Compiling OpenTelemetryApi UserAgent_attributes.swift
[228/439] Compiling OpenTelemetryApi User_attributes.swift
[229/439] Compiling OpenTelemetryApi V8js_attributes.swift
[230/439] Compiling OpenTelemetryApi Vcs_attributes.swift
[231/439] Compiling OpenTelemetryApi Webengine_attributes.swift
[232/439] Compiling OpenTelemetryApi Zos_attributes.swift
[233/439] Compiling OpenTelemetryApi SemanticConventions.swift
[234/439] Compiling OpenTelemetryApi ActivityContextManager.swift
[304/439] Emitting module OpenTelemetryApi
[340/439] Compiling OpenTelemetryApi BinaryFormattable.swift
[341/439] Compiling OpenTelemetryApi JaegerPropagator.swift
[342/439] Compiling OpenTelemetryApi TextMapPropagator.swift
[343/439] Compiling OpenTelemetryApi W3CTraceContextPropagator.swift
[344/439] Compiling OpenTelemetryApi SemanticAttributes.swift
[345/439] Compiling OpenTelemetryApi Span.swift
[346/439] Compiling OpenTelemetryApi SpanBuilder.swift
[347/439] Compiling OpenTelemetryApi SpanContext.swift
[348/439] Compiling OpenTelemetryApi SpanException.swift
[349/439] Compiling OpenTelemetryApi SpanId.swift
[350/439] Compiling OpenTelemetryApi SpanKind.swift
[351/439] Compiling OpenTelemetryApi Status.swift
[352/439] Compiling OpenTelemetryApi TraceFlags.swift
[353/439] Compiling OpenTelemetryApi TraceId.swift
[354/439] Compiling OpenTelemetryApi TraceState.swift
[355/439] Compiling OpenTelemetryApi Tracer.swift
[356/439] Compiling OpenTelemetryApi TracerProvider.swift
[374/707] Compiling OpenTelemetrySdk RegisteredReader.swift
[375/707] Compiling OpenTelemetrySdk ViewRegistry.swift
[376/707] Compiling OpenTelemetrySdk EnvVarResource.swift
[377/707] Compiling OpenTelemetrySdk Resource.swift
[378/707] Compiling OpenTelemetrySdk ResourceAttributes.swift
[379/707] Compiling OpenTelemetrySdk ArrayWithCapacity.swift
[380/707] Compiling OpenTelemetrySdk AttributesDictionary.swift
[381/707] Compiling OpenTelemetrySdk SpanData.swift
[382/707] Compiling OpenTelemetrySdk MultiSpanExporter.swift
[383/707] Compiling OpenTelemetrySdk SpanExporter.swift
[384/707] Compiling OpenTelemetrySdk IdGenerator.swift
[385/707] Compiling OpenTelemetrySdk EnvironmentContextPropagator.swift
[386/707] Compiling OpenTelemetrySdk RandomIdsGenerator.swift
[387/707] Compiling OpenTelemetrySdk ReadableSpan.swift
[388/707] Compiling OpenTelemetrySdk Sampler.swift
[389/721] Compiling OpenTelemetrySdk Clock.swift
[390/721] Compiling OpenTelemetrySdk ComponentRegistry.swift
[391/721] Compiling OpenTelemetrySdk ExportResult.swift
[392/721] Compiling OpenTelemetrySdk InstrumentationLibraryInfo.swift
[393/721] Compiling OpenTelemetrySdk WorkerThread.swift
[394/721] Compiling OpenTelemetrySdk autoreleasepool.swift
[395/721] Compiling OpenTelemetrySdk Locks.swift
[396/721] Compiling OpenTelemetrySdk MillisClock.swift
[397/721] Compiling OpenTelemetrySdk MonotonicClock.swift
[398/721] Compiling OpenTelemetrySdk ReadableLogRecord.swift
[399/721] Compiling OpenTelemetrySdk InMemoryLogRecordExporter.swift
[400/721] Compiling OpenTelemetrySdk LogRecordExporter.swift
[401/721] Compiling OpenTelemetrySdk MultiLogRecordExporter.swift
[402/721] Compiling OpenTelemetrySdk NoopLogRecordExporter.swift
[403/721] Compiling OpenTelemetrySdk LogLimits.swift
[404/721] Compiling OpenTelemetrySdk LoggerBuilderSdk.swift
[405/721] Compiling OpenTelemetrySdk LoggerProviderBuilder.swift
[406/721] Compiling OpenTelemetrySdk LoggerProviderSdk.swift
[407/721] Compiling OpenTelemetrySdk LoggerSdk.swift
[408/721] Compiling OpenTelemetrySdk LoggerSharedState.swift
[409/721] Compiling OpenTelemetrySdk BatchLogRecordProcessor.swift
[410/721] Compiling OpenTelemetrySdk LogRecordProcessor.swift
[411/721] Compiling OpenTelemetrySdk MultiLogRecordProcessor.swift
[412/721] Compiling OpenTelemetrySdk NoopLogRecordProcessor.swift
[413/721] Compiling OpenTelemetrySdk SimpleLogRecordProcessor.swift
[414/721] Compiling OpenTelemetrySdk AdaptingCircularBufferCounter.swift
[415/721] Compiling OpenTelemetrySdk AdaptingIntegerArray.swift
[416/721] Compiling OpenTelemetrySdk Aggregation.swift
[417/721] Compiling OpenTelemetrySdk AggregationSelector.swift
[418/721] Compiling OpenTelemetrySdk LongSumAggregator.swift
[419/721] Compiling OpenTelemetrySdk Aggregator.swift
[420/721] Compiling OpenTelemetrySdk AggregatorFactory.swift
[421/721] Compiling OpenTelemetrySdk AggregatorHandle.swift
[422/721] Compiling OpenTelemetrySdk Base2ExponentialHistogramAggregation.swift
[423/721] Compiling OpenTelemetrySdk DefaultAggregation.swift
[424/721] Compiling OpenTelemetrySdk DoubleBase2ExponentialHistogramAggregator.swift
[425/721] Compiling OpenTelemetrySdk DoubleExplicitBucketHistogramAggregator.swift
[426/721] Compiling OpenTelemetrySdk DoubleLastValueAggregator.swift
[427/721] Compiling OpenTelemetrySdk DoubleSumAggregator.swift
[428/721] Compiling OpenTelemetrySdk DropAggregation.swift
[429/721] Compiling OpenTelemetrySdk DropAggregator.swift
[430/721] Compiling OpenTelemetrySdk ExplicitBucketHistogramAggregation.swift
[431/721] Compiling OpenTelemetrySdk LastValueAggregation.swift
[432/721] Compiling OpenTelemetrySdk LongLastValueAggregator.swift
[433/721] Compiling OpenTelemetrySdk LogRecordBuilderSdk.swift
[434/721] Compiling OpenTelemetrySdk SumAggregation.swift
[435/721] Compiling OpenTelemetrySdk SumAggregator.swift
[436/721] Compiling OpenTelemetrySdk CallbackRegistration.swift
[437/721] Compiling OpenTelemetrySdk ExemplarData.swift
[438/721] Compiling OpenTelemetrySdk Base2ExponentialHistogramIndexer.swift
[439/721] Compiling OpenTelemetrySdk DoubleBase2ExponentialHistogramBuckets.swift
[440/721] Compiling OpenTelemetrySdk DoublePointData.swift
[441/721] Compiling OpenTelemetrySdk EmptyExponentialHistogramBuckets.swift
[442/721] Compiling OpenTelemetrySdk ExponentialHistogramBuckets.swift
[443/721] Compiling OpenTelemetrySdk ExponentialHistogramPointData.swift
[444/721] Compiling OpenTelemetrySdk HistogramPointData.swift
[445/721] Compiling OpenTelemetrySdk LongPointData.swift
[446/721] Compiling OpenTelemetrySdk SummaryPointData.swift
[447/721] Compiling OpenTelemetrySdk MetricData.swift
[448/721] Compiling OpenTelemetrySdk CollectionRegistration.swift
[449/721] Emitting module OpenTelemetrySdk
[450/721] Compiling OpenTelemetrySdk ReservoirCellSelector.swift
[451/721] Compiling OpenTelemetrySdk LongGaugeSdk.swift
[452/721] Compiling OpenTelemetrySdk LongHistogramMeterBuilderSdk.swift
[453/721] Compiling OpenTelemetrySdk LongHistogramMeterSdk.swift
[454/721] Compiling OpenTelemetrySdk LongUpDownCounterBuilderSdk.swift
[455/721] Compiling OpenTelemetrySdk LongUpDownCounterSdk.swift
[456/721] Compiling OpenTelemetrySdk Measurement.swift
[457/721] Compiling OpenTelemetrySdk MeterBuilderSdk.swift
[458/721] Compiling OpenTelemetrySdk MeterProviderBuilder.swift
[459/721] Compiling OpenTelemetrySdk MeterProviderSdk.swift
[460/721] Compiling OpenTelemetrySdk MeterSdk.swift
[461/721] Compiling OpenTelemetrySdk MetricDescriptor.swift
[462/721] Compiling OpenTelemetrySdk MetricReader.swift
[463/721] Compiling OpenTelemetrySdk NoopMeterProviderBuilder.swift
[464/721] Compiling OpenTelemetrySdk ObservableInstrumentSdk.swift
[480/735] Compiling OpenTelemetrySdk AsynchronousMetricStorage.swift
[481/735] Compiling OpenTelemetrySdk EmptyMetricStorage.swift
[482/735] Compiling OpenTelemetrySdk MeterProviderSharedState.swift
[483/735] Compiling OpenTelemetrySdk MeterSharedState.swift
[484/735] Compiling OpenTelemetrySdk MetricStorage.swift
[485/735] Compiling OpenTelemetrySdk MetricStorageRegistry.swift
[486/735] Compiling OpenTelemetrySdk MultiWritableMetricStorage.swift
[487/735] Compiling OpenTelemetrySdk ObservableMeasurement.swift
[488/735] Compiling OpenTelemetrySdk SynchronousMetricStorage.swift
[489/735] Compiling OpenTelemetrySdk ValueAtQuantile.swift
[490/735] Compiling OpenTelemetrySdk AttributeProcessor.swift
[491/735] Compiling OpenTelemetrySdk RegisteredView.swift
[492/735] Compiling OpenTelemetrySdk View.swift
[493/735] Compiling OpenTelemetrySdk ViewBuilder.swift
[494/735] Compiling OpenTelemetrySdk MetricExporter.swift
[495/735] Compiling OpenTelemetrySdk MetricProducer.swift
[496/735] Compiling OpenTelemetrySdk PeriodicMeterReaderBuilder.swift
[497/735] Compiling OpenTelemetrySdk PeriodicMetricReaderSdk.swift
[498/735] Compiling OpenTelemetrySdk Instrument.swift
[499/735] Compiling OpenTelemetrySdk InstrumentBuilder.swift
[500/735] Compiling OpenTelemetrySdk InstrumentDescriptor.swift
[501/735] Compiling OpenTelemetrySdk InstrumentSelector.swift
[502/735] Compiling OpenTelemetrySdk InstrumentSelectorBuilder.swift
[503/735] Compiling OpenTelemetrySdk InstrumentType.swift
[504/735] Compiling OpenTelemetrySdk InstrumentValueType.swift
[505/735] Compiling OpenTelemetrySdk LongCounterMeterBuilderSdk.swift
[506/735] Compiling OpenTelemetrySdk LongCounterSdk.swift
[507/735] Compiling OpenTelemetrySdk LongGaugeBuilderSdk.swift
[508/735] Compiling OpenTelemetrySdk PointData.swift
[509/735] Compiling OpenTelemetrySdk DoubleCounterMeterBuilderSdk.swift
[510/735] Compiling OpenTelemetrySdk DoubleGaugeBuilderSdk.swift
[511/735] Compiling OpenTelemetrySdk DoubleGaugeSdk.swift
[512/735] Compiling OpenTelemetrySdk DoubleHistogramMeterBuilderSdk.swift
[513/735] Compiling OpenTelemetrySdk DoubleHistogramMeterSdk.swift
[514/735] Compiling OpenTelemetrySdk DoubleUpDownCounterBuilderSdk.swift
[515/735] Compiling OpenTelemetrySdk DoubleUpDownCounterSdk.swift
[516/735] Compiling OpenTelemetrySdk ExemplarFilter.swift
[517/735] Compiling OpenTelemetrySdk ExemplarReservoir.swift
[518/735] Compiling OpenTelemetrySdk FilteredExemplarReservoir.swift
[519/735] Compiling OpenTelemetrySdk HistogramExemplarReservoir.swift
[520/735] Compiling OpenTelemetrySdk LongToDoubleExemplarReservoir.swift
[521/735] Compiling OpenTelemetrySdk ReservoirCell.swift
[536/735] Compiling OpenTelemetrySdk AggregationTemporality.swift
[611/735] Emitting module OpenTelemetrySdk
[642/735] Compiling OpenTelemetrySdk Samplers.swift
[643/735] Compiling OpenTelemetrySdk SpanBuilderSdk.swift
[644/735] Compiling OpenTelemetrySdk SpanLimits.swift
[645/735] Compiling OpenTelemetrySdk SpanProcessor.swift
[646/735] Compiling OpenTelemetrySdk BatchSpanProcessor.swift
[647/735] Compiling OpenTelemetrySdk MultiSpanProcessor.swift
[648/735] Compiling OpenTelemetrySdk NoopSpanProcessor.swift
[649/735] Compiling OpenTelemetrySdk SimpleSpanProcessor.swift
[650/735] Compiling OpenTelemetrySdk SpanSdk.swift
[651/735] Compiling OpenTelemetrySdk TracerProviderBuilder.swift
[652/735] Compiling OpenTelemetrySdk TracerProviderSdk.swift
[653/735] Compiling OpenTelemetrySdk TracerSdk.swift
[654/735] Compiling OpenTelemetrySdk TracerSharedState.swift
[655/735] Compiling OpenTelemetrySdk Version.swift
[670/815] Compiling EmbraceCommonInternal EmbraceStackTraceError.swift
[671/815] Compiling EmbraceCommonInternal EmbraceSwizzableError.swift
[672/815] Compiling EmbraceCommonInternal Date.swift
[673/815] Compiling EmbraceCommonInternal SessionState.swift
[674/819] Compiling EmbraceCommonInternal LogType.swift
[675/819] Compiling EmbraceCommonInternal SpanEventType.swift
[676/819] Compiling EmbraceCommonInternal SpanType+Declarations.swift
[677/819] Compiling EmbraceCommonInternal CrashReporterContext.swift
[678/819] Compiling EmbraceCommonInternal JournalMode.swift
[679/819] Compiling EmbraceCommonInternal EmbraceLog.swift
[680/819] Compiling EmbraceCommonInternal EmbraceLogAttribute.swift
[681/819] Compiling EmbraceCommonInternal UnfairLock.swift
[682/819] Compiling EmbraceCommonInternal StackTraceBehavior.swift
[683/819] Compiling EmbraceCommonInternal DispatchableQueue.swift
[684/819] Compiling EmbraceCommonInternal EmbraceSDKStateProvider.swift
[685/819] Compiling EmbraceCommonInternal FilePathProvider.swift
[686/819] Compiling EmbraceCommonInternal MetricKitSpan.swift
[687/819] Compiling EmbraceCommonInternal EmbraceStackTrace.swift
[688/819] Compiling EmbraceCommonInternal LogSeverity.swift
[689/819] Compiling EmbraceCommonInternal EmbraceMeta.swift
[690/819] Compiling EmbraceCommonInternal EmbraceType.swift
[691/819] Compiling EmbraceCommonInternal CrashSignal.swift
[692/819] Compiling EmbraceCommonInternal HangEvent.swift
[693/819] Compiling EmbraceCommonInternal EmbraceARM64_32Helpers.swift
[694/819] Compiling EmbraceCommonInternal EmbraceIdentifier.swift
[695/819] Compiling EmbraceCommonInternal CrashReporter.swift
[696/819] Compiling EmbraceCommonInternal ProcessInfo.swift
[697/819] Compiling EmbraceCommonInternal InternalLogger.swift
[698/819] Compiling EmbraceCommonInternal EmbraceMutex.swift
[699/819] Compiling EmbraceCommonInternal ReadWriteLock.swift
[700/819] Compiling EmbraceCommonInternal EmbraceAtomic.swift
[701/819] Compiling EmbraceCommonInternal EmbraceAtomic+Imp.swift
[702/819] Compiling EmbraceCommonInternal EmbraceClock.swift
[703/819] Compiling EmbraceCommonInternal CrashReport.swift
[704/819] Emitting module EmbraceCommonInternal
[709/823] Compiling EmbraceCommonInternal SpanType.swift
[713/823] Compiling EmbraceCommonInternal EmbraceMetadata.swift
[714/823] Compiling EmbraceCommonInternal EmbraceSession.swift
[715/823] Compiling EmbraceCommonInternal EmbraceSpan.swift
[716/823] Compiling EmbraceCommonInternal EmbraceSpanEvent.swift
[744/823] Compiling EmbraceCommonInternal StorageMechanism.swift
[745/823] Compiling EmbraceCommonInternal EmbraceSwizzler.swift
[746/823] Compiling EmbraceCommonInternal Swizzlable.swift
[747/823] Compiling EmbraceCommonInternal SwizzleCache.swift
[748/823] Emitting module EmbraceCommonInternal
[758/889] Compiling EmbraceSemantics SpanEventSemantics+PushNotification.swift
[759/889] Compiling EmbraceSemantics SpanEventSemantics+Tap.swift
[760/889] Compiling EmbraceSemantics LogType+Declarations.swift
[761/889] Compiling EmbraceSemantics SpanErrorCode.swift
[762/889] Compiling EmbraceSemantics SpanSemantics.swift
[763/889] Compiling EmbraceSemantics SpanEventSemantics+Breadcrumb.swift
[764/889] Compiling EmbraceSemantics LogSemantics+NetworkCapture.swift
[765/889] Compiling EmbraceSemantics LogSemantics.swift
[766/889] Compiling EmbraceSemantics SpanSemantics+NetworkRequest.swift
[767/889] Compiling EmbraceSemantics SpanSemantics+Session.swift
[768/889] Compiling EmbraceSemantics LogSemantics+MetricKitMetrics.swift
[769/889] Compiling EmbraceSemantics SpanSemantics+Startup.swift
[770/889] Compiling EmbraceSemantics SpanSemantics+View.swift
[771/889] Compiling EmbraceSemantics EmbraceLogAttachment.swift
[772/889] Compiling EmbraceSemantics LogSemantics+Crash.swift
[773/889] Compiling EmbraceSemantics LogSemantics+Hang.swift
[774/889] Compiling EmbraceSemantics SpanSemantics+Hang.swift
[775/889] Compiling EmbraceSemantics SpanSemantics+LowPower.swift
[776/889] Compiling EmbraceSemantics SpanEventSemantics+Hang.swift
[777/889] Compiling EmbraceSemantics SpanEventSemantics+LowMemory.swift
[778/891] Emitting module EmbraceKSCrashBacktraceSupport
[779/891] Emitting module EmbraceSemantics
[780/891] Emitting module EmbraceKSCrashBacktraceSupport
[781/891] Compiling EmbraceKSCrashBacktraceSupport EmbraceKSCrashBacktraceSupport.swift
[782/891] Compiling EmbraceCrashlyticsSupport CrashlyticsReporter.swift
[783/891] Compiling EmbraceCrashlyticsSupport CrashlyticsWrapper.swift
[784/891] Emitting module EmbraceCrashlyticsSupport
[802/893] Compiling EmbraceKSCrashBacktraceSupport EmbraceKSCrashBacktraceSupport.swift
[806/893] Compiling EmbraceCrashlyticsSupport CrashlyticsReporter.swift
[807/893] Emitting module EmbraceCrashlyticsSupport
[808/893] Compiling EmbraceCrashlyticsSupport CrashlyticsWrapper.swift
[809/893] Emitting module EmbraceSemantics
[810/900] Compiling EmbraceSemantics SpanEventSemantics+WebView.swift
[811/900] Compiling EmbraceSemantics SpanEventSemantics.swift
[812/900] Compiling EmbraceCoreDataInternal WorkTracker.swift
[813/900] Emitting module EmbraceCrash
[814/900] Compiling EmbraceCrash KSCrashReporter.swift
[815/907] Compiling EmbraceConfigInternal RemoteConfigFetcher.swift
[816/907] Compiling EmbraceConfigInternal EmbraceConfig.swift
[817/907] Compiling EmbraceConfigInternal RemoteConfig.swift
[818/907] Compiling EmbraceConfigInternal RemoteConfig+Options.swift
[819/907] Emitting module EmbraceConfigInternal
[820/907] Compiling EmbraceConfigInternal EmbraceConfig+Options.swift
[821/907] Compiling EmbraceConfigInternal RemoteConfigPayload.swift
[822/907] Compiling EmbraceCoreDataInternal CoreDataWrapper+Options.swift
[823/907] Compiling EmbraceCoreDataInternal BackgroundTaskAssertion.swift
[824/907] Emitting module EmbraceCoreDataInternal
[825/907] Compiling EmbraceCoreDataInternal CoreDataWrapper.swift
[828/921] Emitting module SwiftSyntax
[829/928] Emitting module EmbraceCoreDataInternal
[830/928] Compiling EmbraceCrash KSCrashReporter.swift
[831/928] Emitting module EmbraceCrash
[832/928] Compiling EmbraceCoreDataInternal CoreDataWrapper.swift
[833/928] Compiling EmbraceCoreDataInternal CoreDataWrapper+Options.swift
[834/928] Compiling EmbraceCoreDataInternal WorkTracker.swift
[835/928] Compiling EmbraceCoreDataInternal BackgroundTaskAssertion.swift
[836/928] Compiling EmbraceStorageInternal SpanEventRecord.swift
[837/929] Compiling EmbraceConfigInternal RemoteConfig.swift
[838/929] Compiling EmbraceConfigInternal RemoteConfig+Options.swift
[839/929] Compiling EmbraceConfigInternal EmbraceConfig+Options.swift
[840/929] Emitting module EmbraceConfigInternal
[841/929] Compiling EmbraceConfigInternal EmbraceConfig.swift
[842/929] Compiling EmbraceConfigInternal RemoteConfigPayload.swift
[843/929] Compiling EmbraceConfigInternal RemoteConfigFetcher.swift
[844/943] Compiling EmbraceStorageInternal MetadataRecord.swift
[845/943] Compiling EmbraceStorageInternal SessionRecord.swift
[846/943] Compiling EmbraceStorageInternal EmbraceStorage+Span.swift
[847/943] Compiling EmbraceStorageInternal EmbraceStorageRecord.swift
[848/943] Compiling EmbraceStorageInternal LogRecord.swift
[849/943] Compiling EmbraceStorageInternal LogAttributeRecord.swift
[850/943] Compiling EmbraceStorageInternal EmbraceStorageError.swift
[851/943] Compiling EmbraceStorageInternal EmbraceStorage+Log.swift
[852/943] Compiling EmbraceStorageInternal EmbraceStorage+Options.swift
[853/943] Compiling EmbraceStorageInternal EmbraceStorage.swift
[854/943] Emitting module EmbraceStorageInternal
[855/943] Compiling EmbraceStorageInternal EmbraceStorage+Metadata.swift
[856/943] Compiling EmbraceStorageInternal EmbraceStorage+Session.swift
[857/943] Compiling EmbraceStorageInternal SpanRecord.swift
[858/943] Compiling EmbraceStorageInternal MetadataRecord.swift
[859/943] Compiling EmbraceStorageInternal SessionRecord.swift
[860/943] Compiling EmbraceStorageInternal SpanEventRecord.swift
[863/966] Compiling EmbraceOTelInternal EmbraceLoggerSharedState.swift
[864/966] Compiling EmbraceOTelInternal LogRecord+Embrace.swift
[865/966] Compiling EmbraceOTelInternal EmbraceLogRecordBuilder.swift
[866/966] Compiling EmbraceOTelInternal EmbraceLoggerProvider.swift
[867/966] Compiling EmbraceStorageInternal LogAttributeRecord.swift
[868/966] Emitting module EmbraceStorageInternal
[869/966] Compiling EmbraceOTelInternal SingleLogRecordProcessor.swift
[870/966] Compiling EmbraceOTelInternal Severity+LogSeverity.swift
[871/966] Compiling EmbraceStorageInternal LogRecord.swift
[886/966] Compiling EmbraceOTelInternal EmbraceLoggerConfig.swift
[887/966] Compiling EmbraceOTelInternal RecordingSpanEvent.swift
[888/966] Compiling EmbraceOTelInternal RecordingSpanLink.swift
[889/966] Compiling EmbraceOTelInternal SpanData+Embrace.swift
[890/966] Compiling EmbraceOTelInternal SpanBuilder+Embrace.swift
[891/966] Compiling EmbraceOTelInternal EmbraceResourceProvider.swift
[892/966] Compiling EmbraceOTelInternal Span+Embrace.swift
[893/966] Compiling EmbraceStorageInternal SpanRecord.swift
[894/966] Emitting module EmbraceOTelInternal
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceOTelInternal/Logs/EmbraceLoggerProvider.swift:14:7: warning: non-final class 'DefaultEmbraceLoggerProvider' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
12 | }
13 |
14 | class DefaultEmbraceLoggerProvider: EmbraceLoggerProvider {
| `- warning: non-final class 'DefaultEmbraceLoggerProvider' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
15 | private lazy var logger: EmbraceLogger = EmbraceLogger(sharedState: sharedState)
16 |
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceOTelInternal/Logs/EmbraceLoggerProvider.swift:15:22: warning: stored property '$__lazy_storage_$_logger' of 'Sendable'-conforming class 'DefaultEmbraceLoggerProvider' is mutable; this is an error in the Swift 6 language mode
13 |
14 | class DefaultEmbraceLoggerProvider: EmbraceLoggerProvider {
15 | private lazy var logger: EmbraceLogger = EmbraceLogger(sharedState: sharedState)
| `- warning: stored property '$__lazy_storage_$_logger' of 'Sendable'-conforming class 'DefaultEmbraceLoggerProvider' is mutable; this is an error in the Swift 6 language mode
16 |
17 | let sharedState: EmbraceLogSharedState
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceOTelInternal/Trace/Tracer/Span/Processor/StorageSpanExporter.swift:23:15: warning: non-final class 'StorageSpanExporter' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
21 |
22 | // Synchronization on StorageSpanExporter is expected to be done at a higher level.
23 | package class StorageSpanExporter: SpanExporter {
| `- warning: non-final class 'StorageSpanExporter' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
24 |
25 | private(set) weak var storage: EmbraceStorage?
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceOTelInternal/Trace/Tracer/Span/Processor/StorageSpanExporter.swift:25:27: warning: stored property 'storage' of 'Sendable'-conforming class 'StorageSpanExporter' is mutable; this is an error in the Swift 6 language mode
23 | package class StorageSpanExporter: SpanExporter {
24 |
25 | private(set) weak var storage: EmbraceStorage?
| `- warning: stored property 'storage' of 'Sendable'-conforming class 'StorageSpanExporter' is mutable; this is an error in the Swift 6 language mode
26 | private weak var logger: InternalLogger?
27 |
[897/968] Compiling EmbraceOTelInternal EmbraceLogger.swift
[898/968] Compiling EmbraceOTelInternal EmbraceLoggerBuilder.swift
[900/968] Compiling EmbraceOTelInternal BatchLimits.swift
[901/968] Compiling EmbraceOTelInternal EmbraceLogRecordProcessor.swift
[906/968] Compiling EmbraceOTelInternal EmbraceOTel.swift
[907/968] Compiling EmbraceOTelInternal EmbraceOpenTelemetry.swift
[909/990] Compiling EmbraceOTelInternal SpanEvent.swift
[910/990] Compiling EmbraceOTelInternal SpanLink.swift
[911/990] Compiling EmbraceOTelInternal Severity+LogSeverity.swift
[912/990] Compiling EmbraceOTelInternal SpanData+Embrace.swift
[913/990] Compiling EmbraceOTelInternal SpanBuilder+Embrace.swift
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceOTelInternal/Trace/Tracer/Span/Processor/StorageSpanExporter.swift:23:15: warning: non-final class 'StorageSpanExporter' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
21 |
22 | // Synchronization on StorageSpanExporter is expected to be done at a higher level.
23 | package class StorageSpanExporter: SpanExporter {
| `- warning: non-final class 'StorageSpanExporter' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
24 |
25 | private(set) weak var storage: EmbraceStorage?
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceOTelInternal/Trace/Tracer/Span/Processor/StorageSpanExporter.swift:25:27: warning: stored property 'storage' of 'Sendable'-conforming class 'StorageSpanExporter' is mutable; this is an error in the Swift 6 language mode
23 | package class StorageSpanExporter: SpanExporter {
24 |
25 | private(set) weak var storage: EmbraceStorage?
| `- warning: stored property 'storage' of 'Sendable'-conforming class 'StorageSpanExporter' is mutable; this is an error in the Swift 6 language mode
26 | private weak var logger: InternalLogger?
27 |
[914/990] Compiling EmbraceOTelInternal EmbraceLoggerProvider.swift
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceOTelInternal/Trace/Tracer/Span/Processor/StorageSpanExporter.swift:23:15: warning: non-final class 'StorageSpanExporter' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
21 |
22 | // Synchronization on StorageSpanExporter is expected to be done at a higher level.
23 | package class StorageSpanExporter: SpanExporter {
| `- warning: non-final class 'StorageSpanExporter' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
24 |
25 | private(set) weak var storage: EmbraceStorage?
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceOTelInternal/Trace/Tracer/Span/Processor/StorageSpanExporter.swift:25:27: warning: stored property 'storage' of 'Sendable'-conforming class 'StorageSpanExporter' is mutable; this is an error in the Swift 6 language mode
23 | package class StorageSpanExporter: SpanExporter {
24 |
25 | private(set) weak var storage: EmbraceStorage?
| `- warning: stored property 'storage' of 'Sendable'-conforming class 'StorageSpanExporter' is mutable; this is an error in the Swift 6 language mode
26 | private weak var logger: InternalLogger?
27 |
[915/990] Compiling EmbraceOTelInternal EmbraceResourceProvider.swift
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceOTelInternal/Logs/EmbraceLoggerProvider.swift:14:7: warning: non-final class 'DefaultEmbraceLoggerProvider' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
12 | }
13 |
14 | class DefaultEmbraceLoggerProvider: EmbraceLoggerProvider {
| `- warning: non-final class 'DefaultEmbraceLoggerProvider' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
15 | private lazy var logger: EmbraceLogger = EmbraceLogger(sharedState: sharedState)
16 |
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceOTelInternal/Logs/EmbraceLoggerProvider.swift:15:22: warning: stored property '$__lazy_storage_$_logger' of 'Sendable'-conforming class 'DefaultEmbraceLoggerProvider' is mutable; this is an error in the Swift 6 language mode
13 |
14 | class DefaultEmbraceLoggerProvider: EmbraceLoggerProvider {
15 | private lazy var logger: EmbraceLogger = EmbraceLogger(sharedState: sharedState)
| `- warning: stored property '$__lazy_storage_$_logger' of 'Sendable'-conforming class 'DefaultEmbraceLoggerProvider' is mutable; this is an error in the Swift 6 language mode
16 |
17 | let sharedState: EmbraceLogSharedState
[916/990] Compiling EmbraceOTelInternal Span+Embrace.swift
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceOTelInternal/Logs/EmbraceLoggerProvider.swift:14:7: warning: non-final class 'DefaultEmbraceLoggerProvider' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
12 | }
13 |
14 | class DefaultEmbraceLoggerProvider: EmbraceLoggerProvider {
| `- warning: non-final class 'DefaultEmbraceLoggerProvider' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
15 | private lazy var logger: EmbraceLogger = EmbraceLogger(sharedState: sharedState)
16 |
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceOTelInternal/Logs/EmbraceLoggerProvider.swift:15:22: warning: stored property '$__lazy_storage_$_logger' of 'Sendable'-conforming class 'DefaultEmbraceLoggerProvider' is mutable; this is an error in the Swift 6 language mode
13 |
14 | class DefaultEmbraceLoggerProvider: EmbraceLoggerProvider {
15 | private lazy var logger: EmbraceLogger = EmbraceLogger(sharedState: sharedState)
| `- warning: stored property '$__lazy_storage_$_logger' of 'Sendable'-conforming class 'DefaultEmbraceLoggerProvider' is mutable; this is an error in the Swift 6 language mode
16 |
17 | let sharedState: EmbraceLogSharedState
[917/990] Compiling EmbraceOTelInternal SingleLogRecordProcessor.swift
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceOTelInternal/Logs/EmbraceLoggerProvider.swift:14:7: warning: non-final class 'DefaultEmbraceLoggerProvider' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
12 | }
13 |
14 | class DefaultEmbraceLoggerProvider: EmbraceLoggerProvider {
| `- warning: non-final class 'DefaultEmbraceLoggerProvider' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
15 | private lazy var logger: EmbraceLogger = EmbraceLogger(sharedState: sharedState)
16 |
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceOTelInternal/Logs/EmbraceLoggerProvider.swift:15:22: warning: stored property '$__lazy_storage_$_logger' of 'Sendable'-conforming class 'DefaultEmbraceLoggerProvider' is mutable; this is an error in the Swift 6 language mode
13 |
14 | class DefaultEmbraceLoggerProvider: EmbraceLoggerProvider {
15 | private lazy var logger: EmbraceLogger = EmbraceLogger(sharedState: sharedState)
| `- warning: stored property '$__lazy_storage_$_logger' of 'Sendable'-conforming class 'DefaultEmbraceLoggerProvider' is mutable; this is an error in the Swift 6 language mode
16 |
17 | let sharedState: EmbraceLogSharedState
[946/990] Compiling EmbraceOTelInternal EmbraceLogger.swift
[947/990] Compiling EmbraceOTelInternal EmbraceLoggerBuilder.swift
[948/990] Compiling EmbraceOTelInternal EmbraceLoggerConfig.swift
[949/992] Emitting module EmbraceOTelInternal
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceOTelInternal/Logs/EmbraceLoggerProvider.swift:14:7: warning: non-final class 'DefaultEmbraceLoggerProvider' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
12 | }
13 |
14 | class DefaultEmbraceLoggerProvider: EmbraceLoggerProvider {
| `- warning: non-final class 'DefaultEmbraceLoggerProvider' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
15 | private lazy var logger: EmbraceLogger = EmbraceLogger(sharedState: sharedState)
16 |
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceOTelInternal/Logs/EmbraceLoggerProvider.swift:15:22: warning: stored property '$__lazy_storage_$_logger' of 'Sendable'-conforming class 'DefaultEmbraceLoggerProvider' is mutable; this is an error in the Swift 6 language mode
13 |
14 | class DefaultEmbraceLoggerProvider: EmbraceLoggerProvider {
15 | private lazy var logger: EmbraceLogger = EmbraceLogger(sharedState: sharedState)
| `- warning: stored property '$__lazy_storage_$_logger' of 'Sendable'-conforming class 'DefaultEmbraceLoggerProvider' is mutable; this is an error in the Swift 6 language mode
16 |
17 | let sharedState: EmbraceLogSharedState
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceOTelInternal/Trace/Tracer/Span/Processor/StorageSpanExporter.swift:23:15: warning: non-final class 'StorageSpanExporter' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
21 |
22 | // Synchronization on StorageSpanExporter is expected to be done at a higher level.
23 | package class StorageSpanExporter: SpanExporter {
| `- warning: non-final class 'StorageSpanExporter' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
24 |
25 | private(set) weak var storage: EmbraceStorage?
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceOTelInternal/Trace/Tracer/Span/Processor/StorageSpanExporter.swift:25:27: warning: stored property 'storage' of 'Sendable'-conforming class 'StorageSpanExporter' is mutable; this is an error in the Swift 6 language mode
23 | package class StorageSpanExporter: SpanExporter {
24 |
25 | private(set) weak var storage: EmbraceStorage?
| `- warning: stored property 'storage' of 'Sendable'-conforming class 'StorageSpanExporter' is mutable; this is an error in the Swift 6 language mode
26 | private weak var logger: InternalLogger?
27 |
[950/1010] Compiling EmbraceOTelInternal SpanEvent.swift
[951/1010] Compiling EmbraceOTelInternal SpanLink.swift
[952/1010] Compiling EmbraceCaptureService CaptureServiceState.swift
[953/1010] Compiling EmbraceUploadInternal EmbraceUpload+MetadataOptions.swift
[954/1010] Compiling EmbraceUploadInternal EmbraceUpload+ExponentialBackoff.swift
[955/1010] Compiling EmbraceUploadInternal EmbraceUpload+Options.swift
[956/1010] Compiling EmbraceUploadInternal EmbraceUpload+EndpointOptions.swift
[957/1011] Compiling EmbraceOTelInternal RecordingSpanEvent.swift
[958/1011] Compiling EmbraceOTelInternal RecordingSpanLink.swift
[959/1011] Compiling EmbraceOTelInternal EmbraceOTel.swift
[960/1011] Compiling EmbraceOTelInternal EmbraceOpenTelemetry.swift
[961/1011] Compiling EmbraceOTelInternal EmbraceLogRecordBuilder.swift
[962/1011] Compiling EmbraceOTelInternal BatchLimits.swift
[963/1011] Compiling EmbraceOTelInternal EmbraceLogRecordProcessor.swift
[964/1011] Compiling EmbraceUploadInternal EmbraceUploadError.swift
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceOTelInternal/Logs/EmbraceLoggerProvider.swift:14:7: warning: non-final class 'DefaultEmbraceLoggerProvider' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
12 | }
13 |
14 | class DefaultEmbraceLoggerProvider: EmbraceLoggerProvider {
| `- warning: non-final class 'DefaultEmbraceLoggerProvider' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
15 | private lazy var logger: EmbraceLogger = EmbraceLogger(sharedState: sharedState)
16 |
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceOTelInternal/Logs/EmbraceLoggerProvider.swift:15:22: warning: stored property '$__lazy_storage_$_logger' of 'Sendable'-conforming class 'DefaultEmbraceLoggerProvider' is mutable; this is an error in the Swift 6 language mode
13 |
14 | class DefaultEmbraceLoggerProvider: EmbraceLoggerProvider {
15 | private lazy var logger: EmbraceLogger = EmbraceLogger(sharedState: sharedState)
| `- warning: stored property '$__lazy_storage_$_logger' of 'Sendable'-conforming class 'DefaultEmbraceLoggerProvider' is mutable; this is an error in the Swift 6 language mode
16 |
17 | let sharedState: EmbraceLogSharedState
[965/1011] Compiling EmbraceOTelInternal EmbraceLoggerSharedState.swift
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceOTelInternal/Logs/EmbraceLoggerProvider.swift:14:7: warning: non-final class 'DefaultEmbraceLoggerProvider' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
12 | }
13 |
14 | class DefaultEmbraceLoggerProvider: EmbraceLoggerProvider {
| `- warning: non-final class 'DefaultEmbraceLoggerProvider' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
15 | private lazy var logger: EmbraceLogger = EmbraceLogger(sharedState: sharedState)
16 |
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceOTelInternal/Logs/EmbraceLoggerProvider.swift:15:22: warning: stored property '$__lazy_storage_$_logger' of 'Sendable'-conforming class 'DefaultEmbraceLoggerProvider' is mutable; this is an error in the Swift 6 language mode
13 |
14 | class DefaultEmbraceLoggerProvider: EmbraceLoggerProvider {
15 | private lazy var logger: EmbraceLogger = EmbraceLogger(sharedState: sharedState)
| `- warning: stored property '$__lazy_storage_$_logger' of 'Sendable'-conforming class 'DefaultEmbraceLoggerProvider' is mutable; this is an error in the Swift 6 language mode
16 |
17 | let sharedState: EmbraceLogSharedState
[966/1011] Compiling EmbraceOTelInternal LogRecord+Embrace.swift
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceOTelInternal/Logs/EmbraceLoggerProvider.swift:14:7: warning: non-final class 'DefaultEmbraceLoggerProvider' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
12 | }
13 |
14 | class DefaultEmbraceLoggerProvider: EmbraceLoggerProvider {
| `- warning: non-final class 'DefaultEmbraceLoggerProvider' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
15 | private lazy var logger: EmbraceLogger = EmbraceLogger(sharedState: sharedState)
16 |
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceOTelInternal/Logs/EmbraceLoggerProvider.swift:15:22: warning: stored property '$__lazy_storage_$_logger' of 'Sendable'-conforming class 'DefaultEmbraceLoggerProvider' is mutable; this is an error in the Swift 6 language mode
13 |
14 | class DefaultEmbraceLoggerProvider: EmbraceLoggerProvider {
15 | private lazy var logger: EmbraceLogger = EmbraceLogger(sharedState: sharedState)
| `- warning: stored property '$__lazy_storage_$_logger' of 'Sendable'-conforming class 'DefaultEmbraceLoggerProvider' is mutable; this is an error in the Swift 6 language mode
16 |
17 | let sharedState: EmbraceLogSharedState
[967/1011] Compiling EmbraceUploadInternal EmbraceAttachmentUploadOperation.swift
[968/1011] Compiling EmbraceUploadInternal EmbraceUploadType.swift
[969/1011] Compiling EmbraceUploadInternal EmbraceUpload.swift
[970/1011] Compiling EmbraceUploadInternal AsyncOperation.swift
[971/1011] Compiling EmbraceOTelInternal EmbraceSpanProcessor.swift
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceOTelInternal/Trace/Tracer/Span/Processor/StorageSpanExporter.swift:23:15: warning: non-final class 'StorageSpanExporter' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
21 |
22 | // Synchronization on StorageSpanExporter is expected to be done at a higher level.
23 | package class StorageSpanExporter: SpanExporter {
| `- warning: non-final class 'StorageSpanExporter' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
24 |
25 | private(set) weak var storage: EmbraceStorage?
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceOTelInternal/Trace/Tracer/Span/Processor/StorageSpanExporter.swift:25:27: warning: stored property 'storage' of 'Sendable'-conforming class 'StorageSpanExporter' is mutable; this is an error in the Swift 6 language mode
23 | package class StorageSpanExporter: SpanExporter {
24 |
25 | private(set) weak var storage: EmbraceStorage?
| `- warning: stored property 'storage' of 'Sendable'-conforming class 'StorageSpanExporter' is mutable; this is an error in the Swift 6 language mode
26 | private weak var logger: InternalLogger?
27 |
[972/1011] Compiling EmbraceOTelInternal StorageSpanExporter.swift
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceOTelInternal/Trace/Tracer/Span/Processor/StorageSpanExporter.swift:23:15: warning: non-final class 'StorageSpanExporter' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
21 |
22 | // Synchronization on StorageSpanExporter is expected to be done at a higher level.
23 | package class StorageSpanExporter: SpanExporter {
| `- warning: non-final class 'StorageSpanExporter' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
24 |
25 | private(set) weak var storage: EmbraceStorage?
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceOTelInternal/Trace/Tracer/Span/Processor/StorageSpanExporter.swift:25:27: warning: stored property 'storage' of 'Sendable'-conforming class 'StorageSpanExporter' is mutable; this is an error in the Swift 6 language mode
23 | package class StorageSpanExporter: SpanExporter {
24 |
25 | private(set) weak var storage: EmbraceStorage?
| `- warning: stored property 'storage' of 'Sendable'-conforming class 'StorageSpanExporter' is mutable; this is an error in the Swift 6 language mode
26 | private weak var logger: InternalLogger?
27 |
[973/1011] Compiling EmbraceUploadInternal EmbraceUpload+CacheOptions.swift
[974/1011] Compiling EmbraceUploadInternal EmbraceReachabilityMonitor.swift
[975/1011] Compiling EmbraceCaptureService CaptureService.swift
[976/1011] Emitting module EmbraceCaptureService
[981/1011] Compiling EmbraceUploadInternal EmbraceUploadOperation.swift
[983/1011] Compiling EmbraceUploadInternal EmbraceUploadCache.swift
[984/1011] Compiling EmbraceUploadInternal UploadDataRecord.swift
[985/1011] Emitting module EmbraceUploadInternal
[988/1011] Compiling EmbraceUploadInternal EmbraceUpload+RedundancyOptions.swift
[989/1029] Emitting module EmbraceCaptureService
[990/1029] Compiling EmbraceCaptureService CaptureServiceState.swift
[991/1029] Compiling EmbraceCaptureService CaptureService.swift
[992/1029] Compiling EmbraceUploadInternal EmbraceUpload+MetadataOptions.swift
[993/1029] Compiling EmbraceUploadInternal EmbraceUpload+Options.swift
[994/1166] Compiling EmbraceUploadInternal EmbraceUpload+EndpointOptions.swift
[995/1166] Compiling EmbraceCore ProcessMetadata.swift
[996/1166] Compiling EmbraceCore AppResourceKey.swift
[997/1166] Compiling EmbraceUploadInternal EmbraceUpload+ExponentialBackoff.swift
[998/1166] Compiling EmbraceCore MetricKitHandler.swift
[999/1166] Compiling EmbraceCore MetricKitMetric.swift
[1000/1166] Compiling EmbraceCore DeviceResourceKey.swift
[1001/1166] Compiling EmbraceCore UserResourceKey.swift
[1002/1166] Compiling EmbraceCore DefaultInternalLogger.swift
[1003/1166] Compiling EmbraceCore MetricKitCrashPayloadProvider.swift
[1004/1166] Compiling EmbraceCore LogController.swift
[1005/1166] Compiling EmbraceCore BaseInternalLogger.swift
[1006/1166] Emitting module EmbraceUploadInternal
[1007/1166] Compiling EmbraceUploadInternal EmbraceUpload+RedundancyOptions.swift
[1008/1302] Compiling EmbraceCore ViewInstrumentationState.swift
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:148:29: error: 'MXSignpostIntervalData' is unavailable in macOS
146 | @available(tvOS, unavailable)
147 | @available(watchOS, unavailable)
148 | init?(intervalData: MXSignpostIntervalData?) {
| `- error: 'MXSignpostIntervalData' is unavailable in macOS
149 | guard let intervalData = intervalData else { return nil }
150 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXSignpostMetric.h:26:12: note: 'MXSignpostIntervalData' has been explicitly marked unavailable here
24 | */
25 | API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(macos, tvos, watchos)
26 | @interface MXSignpostIntervalData : NSObject <NSSecureCoding>
| `- note: 'MXSignpostIntervalData' has been explicitly marked unavailable here
27 |
28 | /*!
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:171:23: error: 'MXMetricPayload' is unavailable in macOS
169 | @available(tvOS, unavailable)
170 | @available(watchOS, unavailable)
171 | init(payload: MXMetricPayload) {
| `- error: 'MXMetricPayload' is unavailable in macOS
172 | self.latestApplicationVersion = payload.latestApplicationVersion
173 | self.includesMultipleApplicationVersions = payload.includesMultipleApplicationVersions
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXMetricPayload.h:38:12: note: 'MXMetricPayload' has been explicitly marked unavailable here
36 | */
37 | API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(macos, tvos, watchos)
38 | @interface MXMetricPayload : NSObject <NSSecureCoding>
| `- note: 'MXMetricPayload' has been explicitly marked unavailable here
39 |
40 | /*!
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:99:46: error: 'dictionaryRepresentation()' is unavailable in macOS
97 |
98 | // bundle identifier is special, it appeared in iOS 26 but is avaialble in the JSON.
99 | self.bundleIdentifier = metaData.dictionaryRepresentation()["bundleIdentifier"] as? String ?? ""
| `- error: 'dictionaryRepresentation()' is unavailable in macOS
100 |
101 | self.regionFormat = metaData.regionFormat
MetricKit.MXMetaData.dictionaryRepresentation:3:13: note: 'dictionaryRepresentation()' has been explicitly marked unavailable here
1 | class MXMetaData {
2 | @available(macOS, unavailable)
3 | open func dictionaryRepresentation() -> [AnyHashable : Any]}
| `- note: 'dictionaryRepresentation()' has been explicitly marked unavailable here
4 |
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:157:62: error: 'cumulativeHitchTimeRatio' is unavailable in macOS
155 |
156 | if #available(iOS 15.0, *) {
157 | self.cumulativeHitchTimeRatio = intervalData.cumulativeHitchTimeRatio?.value ?? 0
| `- error: 'cumulativeHitchTimeRatio' is unavailable in macOS
158 | } else {
159 | self.cumulativeHitchTimeRatio = 0
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXSignpostMetric.h:60:65: note: 'cumulativeHitchTimeRatio' has been explicitly marked unavailable here
58 | @discussion This property is null when signposts with the associated signpostName and signpostCategory contain no interval metric data.
59 | */
60 | @property (readonly, strong, nullable) NSMeasurement<NSUnit *> *cumulativeHitchTimeRatio API_AVAILABLE(ios(15.0)) API_UNAVAILABLE(macos, tvos, watchos);
| `- note: 'cumulativeHitchTimeRatio' has been explicitly marked unavailable here
61 |
62 | @end
[1009/1302] Compiling EmbraceCore WKWebView+Embrace.swift
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:148:29: error: 'MXSignpostIntervalData' is unavailable in macOS
146 | @available(tvOS, unavailable)
147 | @available(watchOS, unavailable)
148 | init?(intervalData: MXSignpostIntervalData?) {
| `- error: 'MXSignpostIntervalData' is unavailable in macOS
149 | guard let intervalData = intervalData else { return nil }
150 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXSignpostMetric.h:26:12: note: 'MXSignpostIntervalData' has been explicitly marked unavailable here
24 | */
25 | API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(macos, tvos, watchos)
26 | @interface MXSignpostIntervalData : NSObject <NSSecureCoding>
| `- note: 'MXSignpostIntervalData' has been explicitly marked unavailable here
27 |
28 | /*!
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:171:23: error: 'MXMetricPayload' is unavailable in macOS
169 | @available(tvOS, unavailable)
170 | @available(watchOS, unavailable)
171 | init(payload: MXMetricPayload) {
| `- error: 'MXMetricPayload' is unavailable in macOS
172 | self.latestApplicationVersion = payload.latestApplicationVersion
173 | self.includesMultipleApplicationVersions = payload.includesMultipleApplicationVersions
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXMetricPayload.h:38:12: note: 'MXMetricPayload' has been explicitly marked unavailable here
36 | */
37 | API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(macos, tvos, watchos)
38 | @interface MXMetricPayload : NSObject <NSSecureCoding>
| `- note: 'MXMetricPayload' has been explicitly marked unavailable here
39 |
40 | /*!
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:99:46: error: 'dictionaryRepresentation()' is unavailable in macOS
97 |
98 | // bundle identifier is special, it appeared in iOS 26 but is avaialble in the JSON.
99 | self.bundleIdentifier = metaData.dictionaryRepresentation()["bundleIdentifier"] as? String ?? ""
| `- error: 'dictionaryRepresentation()' is unavailable in macOS
100 |
101 | self.regionFormat = metaData.regionFormat
MetricKit.MXMetaData.dictionaryRepresentation:3:13: note: 'dictionaryRepresentation()' has been explicitly marked unavailable here
1 | class MXMetaData {
2 | @available(macOS, unavailable)
3 | open func dictionaryRepresentation() -> [AnyHashable : Any]}
| `- note: 'dictionaryRepresentation()' has been explicitly marked unavailable here
4 |
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:157:62: error: 'cumulativeHitchTimeRatio' is unavailable in macOS
155 |
156 | if #available(iOS 15.0, *) {
157 | self.cumulativeHitchTimeRatio = intervalData.cumulativeHitchTimeRatio?.value ?? 0
| `- error: 'cumulativeHitchTimeRatio' is unavailable in macOS
158 | } else {
159 | self.cumulativeHitchTimeRatio = 0
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXSignpostMetric.h:60:65: note: 'cumulativeHitchTimeRatio' has been explicitly marked unavailable here
58 | @discussion This property is null when signposts with the associated signpostName and signpostCategory contain no interval metric data.
59 | */
60 | @property (readonly, strong, nullable) NSMeasurement<NSUnit *> *cumulativeHitchTimeRatio API_AVAILABLE(ios(15.0)) API_UNAVAILABLE(macos, tvos, watchos);
| `- note: 'cumulativeHitchTimeRatio' has been explicitly marked unavailable here
61 |
62 | @end
[1010/1302] Compiling EmbraceCore WebViewCaptureService+Options.swift
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:148:29: error: 'MXSignpostIntervalData' is unavailable in macOS
146 | @available(tvOS, unavailable)
147 | @available(watchOS, unavailable)
148 | init?(intervalData: MXSignpostIntervalData?) {
| `- error: 'MXSignpostIntervalData' is unavailable in macOS
149 | guard let intervalData = intervalData else { return nil }
150 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXSignpostMetric.h:26:12: note: 'MXSignpostIntervalData' has been explicitly marked unavailable here
24 | */
25 | API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(macos, tvos, watchos)
26 | @interface MXSignpostIntervalData : NSObject <NSSecureCoding>
| `- note: 'MXSignpostIntervalData' has been explicitly marked unavailable here
27 |
28 | /*!
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:171:23: error: 'MXMetricPayload' is unavailable in macOS
169 | @available(tvOS, unavailable)
170 | @available(watchOS, unavailable)
171 | init(payload: MXMetricPayload) {
| `- error: 'MXMetricPayload' is unavailable in macOS
172 | self.latestApplicationVersion = payload.latestApplicationVersion
173 | self.includesMultipleApplicationVersions = payload.includesMultipleApplicationVersions
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXMetricPayload.h:38:12: note: 'MXMetricPayload' has been explicitly marked unavailable here
36 | */
37 | API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(macos, tvos, watchos)
38 | @interface MXMetricPayload : NSObject <NSSecureCoding>
| `- note: 'MXMetricPayload' has been explicitly marked unavailable here
39 |
40 | /*!
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:99:46: error: 'dictionaryRepresentation()' is unavailable in macOS
97 |
98 | // bundle identifier is special, it appeared in iOS 26 but is avaialble in the JSON.
99 | self.bundleIdentifier = metaData.dictionaryRepresentation()["bundleIdentifier"] as? String ?? ""
| `- error: 'dictionaryRepresentation()' is unavailable in macOS
100 |
101 | self.regionFormat = metaData.regionFormat
MetricKit.MXMetaData.dictionaryRepresentation:3:13: note: 'dictionaryRepresentation()' has been explicitly marked unavailable here
1 | class MXMetaData {
2 | @available(macOS, unavailable)
3 | open func dictionaryRepresentation() -> [AnyHashable : Any]}
| `- note: 'dictionaryRepresentation()' has been explicitly marked unavailable here
4 |
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:157:62: error: 'cumulativeHitchTimeRatio' is unavailable in macOS
155 |
156 | if #available(iOS 15.0, *) {
157 | self.cumulativeHitchTimeRatio = intervalData.cumulativeHitchTimeRatio?.value ?? 0
| `- error: 'cumulativeHitchTimeRatio' is unavailable in macOS
158 | } else {
159 | self.cumulativeHitchTimeRatio = 0
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXSignpostMetric.h:60:65: note: 'cumulativeHitchTimeRatio' has been explicitly marked unavailable here
58 | @discussion This property is null when signposts with the associated signpostName and signpostCategory contain no interval metric data.
59 | */
60 | @property (readonly, strong, nullable) NSMeasurement<NSUnit *> *cumulativeHitchTimeRatio API_AVAILABLE(ios(15.0)) API_UNAVAILABLE(macos, tvos, watchos);
| `- note: 'cumulativeHitchTimeRatio' has been explicitly marked unavailable here
61 |
62 | @end
[1011/1302] Compiling EmbraceCore WebViewCaptureService.swift
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:148:29: error: 'MXSignpostIntervalData' is unavailable in macOS
146 | @available(tvOS, unavailable)
147 | @available(watchOS, unavailable)
148 | init?(intervalData: MXSignpostIntervalData?) {
| `- error: 'MXSignpostIntervalData' is unavailable in macOS
149 | guard let intervalData = intervalData else { return nil }
150 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXSignpostMetric.h:26:12: note: 'MXSignpostIntervalData' has been explicitly marked unavailable here
24 | */
25 | API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(macos, tvos, watchos)
26 | @interface MXSignpostIntervalData : NSObject <NSSecureCoding>
| `- note: 'MXSignpostIntervalData' has been explicitly marked unavailable here
27 |
28 | /*!
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:171:23: error: 'MXMetricPayload' is unavailable in macOS
169 | @available(tvOS, unavailable)
170 | @available(watchOS, unavailable)
171 | init(payload: MXMetricPayload) {
| `- error: 'MXMetricPayload' is unavailable in macOS
172 | self.latestApplicationVersion = payload.latestApplicationVersion
173 | self.includesMultipleApplicationVersions = payload.includesMultipleApplicationVersions
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXMetricPayload.h:38:12: note: 'MXMetricPayload' has been explicitly marked unavailable here
36 | */
37 | API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(macos, tvos, watchos)
38 | @interface MXMetricPayload : NSObject <NSSecureCoding>
| `- note: 'MXMetricPayload' has been explicitly marked unavailable here
39 |
40 | /*!
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:99:46: error: 'dictionaryRepresentation()' is unavailable in macOS
97 |
98 | // bundle identifier is special, it appeared in iOS 26 but is avaialble in the JSON.
99 | self.bundleIdentifier = metaData.dictionaryRepresentation()["bundleIdentifier"] as? String ?? ""
| `- error: 'dictionaryRepresentation()' is unavailable in macOS
100 |
101 | self.regionFormat = metaData.regionFormat
MetricKit.MXMetaData.dictionaryRepresentation:3:13: note: 'dictionaryRepresentation()' has been explicitly marked unavailable here
1 | class MXMetaData {
2 | @available(macOS, unavailable)
3 | open func dictionaryRepresentation() -> [AnyHashable : Any]}
| `- note: 'dictionaryRepresentation()' has been explicitly marked unavailable here
4 |
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:157:62: error: 'cumulativeHitchTimeRatio' is unavailable in macOS
155 |
156 | if #available(iOS 15.0, *) {
157 | self.cumulativeHitchTimeRatio = intervalData.cumulativeHitchTimeRatio?.value ?? 0
| `- error: 'cumulativeHitchTimeRatio' is unavailable in macOS
158 | } else {
159 | self.cumulativeHitchTimeRatio = 0
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXSignpostMetric.h:60:65: note: 'cumulativeHitchTimeRatio' has been explicitly marked unavailable here
58 | @discussion This property is null when signposts with the associated signpostName and signpostCategory contain no interval metric data.
59 | */
60 | @property (readonly, strong, nullable) NSMeasurement<NSUnit *> *cumulativeHitchTimeRatio API_AVAILABLE(ios(15.0)) API_UNAVAILABLE(macos, tvos, watchos);
| `- note: 'cumulativeHitchTimeRatio' has been explicitly marked unavailable here
61 |
62 | @end
[1012/1302] Compiling EmbraceCore EmbraceCrashReporter.swift
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:148:29: error: 'MXSignpostIntervalData' is unavailable in macOS
146 | @available(tvOS, unavailable)
147 | @available(watchOS, unavailable)
148 | init?(intervalData: MXSignpostIntervalData?) {
| `- error: 'MXSignpostIntervalData' is unavailable in macOS
149 | guard let intervalData = intervalData else { return nil }
150 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXSignpostMetric.h:26:12: note: 'MXSignpostIntervalData' has been explicitly marked unavailable here
24 | */
25 | API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(macos, tvos, watchos)
26 | @interface MXSignpostIntervalData : NSObject <NSSecureCoding>
| `- note: 'MXSignpostIntervalData' has been explicitly marked unavailable here
27 |
28 | /*!
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:171:23: error: 'MXMetricPayload' is unavailable in macOS
169 | @available(tvOS, unavailable)
170 | @available(watchOS, unavailable)
171 | init(payload: MXMetricPayload) {
| `- error: 'MXMetricPayload' is unavailable in macOS
172 | self.latestApplicationVersion = payload.latestApplicationVersion
173 | self.includesMultipleApplicationVersions = payload.includesMultipleApplicationVersions
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXMetricPayload.h:38:12: note: 'MXMetricPayload' has been explicitly marked unavailable here
36 | */
37 | API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(macos, tvos, watchos)
38 | @interface MXMetricPayload : NSObject <NSSecureCoding>
| `- note: 'MXMetricPayload' has been explicitly marked unavailable here
39 |
40 | /*!
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:99:46: error: 'dictionaryRepresentation()' is unavailable in macOS
97 |
98 | // bundle identifier is special, it appeared in iOS 26 but is avaialble in the JSON.
99 | self.bundleIdentifier = metaData.dictionaryRepresentation()["bundleIdentifier"] as? String ?? ""
| `- error: 'dictionaryRepresentation()' is unavailable in macOS
100 |
101 | self.regionFormat = metaData.regionFormat
MetricKit.MXMetaData.dictionaryRepresentation:3:13: note: 'dictionaryRepresentation()' has been explicitly marked unavailable here
1 | class MXMetaData {
2 | @available(macOS, unavailable)
3 | open func dictionaryRepresentation() -> [AnyHashable : Any]}
| `- note: 'dictionaryRepresentation()' has been explicitly marked unavailable here
4 |
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:157:62: error: 'cumulativeHitchTimeRatio' is unavailable in macOS
155 |
156 | if #available(iOS 15.0, *) {
157 | self.cumulativeHitchTimeRatio = intervalData.cumulativeHitchTimeRatio?.value ?? 0
| `- error: 'cumulativeHitchTimeRatio' is unavailable in macOS
158 | } else {
159 | self.cumulativeHitchTimeRatio = 0
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXSignpostMetric.h:60:65: note: 'cumulativeHitchTimeRatio' has been explicitly marked unavailable here
58 | @discussion This property is null when signposts with the associated signpostName and signpostCategory contain no interval metric data.
59 | */
60 | @property (readonly, strong, nullable) NSMeasurement<NSUnit *> *cumulativeHitchTimeRatio API_AVAILABLE(ios(15.0)) API_UNAVAILABLE(macos, tvos, watchos);
| `- note: 'cumulativeHitchTimeRatio' has been explicitly marked unavailable here
61 |
62 | @end
[1013/1302] Compiling EmbraceCore Embrace.swift
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:148:29: error: 'MXSignpostIntervalData' is unavailable in macOS
146 | @available(tvOS, unavailable)
147 | @available(watchOS, unavailable)
148 | init?(intervalData: MXSignpostIntervalData?) {
| `- error: 'MXSignpostIntervalData' is unavailable in macOS
149 | guard let intervalData = intervalData else { return nil }
150 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXSignpostMetric.h:26:12: note: 'MXSignpostIntervalData' has been explicitly marked unavailable here
24 | */
25 | API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(macos, tvos, watchos)
26 | @interface MXSignpostIntervalData : NSObject <NSSecureCoding>
| `- note: 'MXSignpostIntervalData' has been explicitly marked unavailable here
27 |
28 | /*!
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:171:23: error: 'MXMetricPayload' is unavailable in macOS
169 | @available(tvOS, unavailable)
170 | @available(watchOS, unavailable)
171 | init(payload: MXMetricPayload) {
| `- error: 'MXMetricPayload' is unavailable in macOS
172 | self.latestApplicationVersion = payload.latestApplicationVersion
173 | self.includesMultipleApplicationVersions = payload.includesMultipleApplicationVersions
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXMetricPayload.h:38:12: note: 'MXMetricPayload' has been explicitly marked unavailable here
36 | */
37 | API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(macos, tvos, watchos)
38 | @interface MXMetricPayload : NSObject <NSSecureCoding>
| `- note: 'MXMetricPayload' has been explicitly marked unavailable here
39 |
40 | /*!
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:99:46: error: 'dictionaryRepresentation()' is unavailable in macOS
97 |
98 | // bundle identifier is special, it appeared in iOS 26 but is avaialble in the JSON.
99 | self.bundleIdentifier = metaData.dictionaryRepresentation()["bundleIdentifier"] as? String ?? ""
| `- error: 'dictionaryRepresentation()' is unavailable in macOS
100 |
101 | self.regionFormat = metaData.regionFormat
MetricKit.MXMetaData.dictionaryRepresentation:3:13: note: 'dictionaryRepresentation()' has been explicitly marked unavailable here
1 | class MXMetaData {
2 | @available(macOS, unavailable)
3 | open func dictionaryRepresentation() -> [AnyHashable : Any]}
| `- note: 'dictionaryRepresentation()' has been explicitly marked unavailable here
4 |
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:157:62: error: 'cumulativeHitchTimeRatio' is unavailable in macOS
155 |
156 | if #available(iOS 15.0, *) {
157 | self.cumulativeHitchTimeRatio = intervalData.cumulativeHitchTimeRatio?.value ?? 0
| `- error: 'cumulativeHitchTimeRatio' is unavailable in macOS
158 | } else {
159 | self.cumulativeHitchTimeRatio = 0
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXSignpostMetric.h:60:65: note: 'cumulativeHitchTimeRatio' has been explicitly marked unavailable here
58 | @discussion This property is null when signposts with the associated signpostName and signpostCategory contain no interval metric data.
59 | */
60 | @property (readonly, strong, nullable) NSMeasurement<NSUnit *> *cumulativeHitchTimeRatio API_AVAILABLE(ios(15.0)) API_UNAVAILABLE(macos, tvos, watchos);
| `- note: 'cumulativeHitchTimeRatio' has been explicitly marked unavailable here
61 |
62 | @end
[1014/1302] Compiling EmbraceCore EmbraceSetupError.swift
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:148:29: error: 'MXSignpostIntervalData' is unavailable in macOS
146 | @available(tvOS, unavailable)
147 | @available(watchOS, unavailable)
148 | init?(intervalData: MXSignpostIntervalData?) {
| `- error: 'MXSignpostIntervalData' is unavailable in macOS
149 | guard let intervalData = intervalData else { return nil }
150 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXSignpostMetric.h:26:12: note: 'MXSignpostIntervalData' has been explicitly marked unavailable here
24 | */
25 | API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(macos, tvos, watchos)
26 | @interface MXSignpostIntervalData : NSObject <NSSecureCoding>
| `- note: 'MXSignpostIntervalData' has been explicitly marked unavailable here
27 |
28 | /*!
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:171:23: error: 'MXMetricPayload' is unavailable in macOS
169 | @available(tvOS, unavailable)
170 | @available(watchOS, unavailable)
171 | init(payload: MXMetricPayload) {
| `- error: 'MXMetricPayload' is unavailable in macOS
172 | self.latestApplicationVersion = payload.latestApplicationVersion
173 | self.includesMultipleApplicationVersions = payload.includesMultipleApplicationVersions
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXMetricPayload.h:38:12: note: 'MXMetricPayload' has been explicitly marked unavailable here
36 | */
37 | API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(macos, tvos, watchos)
38 | @interface MXMetricPayload : NSObject <NSSecureCoding>
| `- note: 'MXMetricPayload' has been explicitly marked unavailable here
39 |
40 | /*!
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:99:46: error: 'dictionaryRepresentation()' is unavailable in macOS
97 |
98 | // bundle identifier is special, it appeared in iOS 26 but is avaialble in the JSON.
99 | self.bundleIdentifier = metaData.dictionaryRepresentation()["bundleIdentifier"] as? String ?? ""
| `- error: 'dictionaryRepresentation()' is unavailable in macOS
100 |
101 | self.regionFormat = metaData.regionFormat
MetricKit.MXMetaData.dictionaryRepresentation:3:13: note: 'dictionaryRepresentation()' has been explicitly marked unavailable here
1 | class MXMetaData {
2 | @available(macOS, unavailable)
3 | open func dictionaryRepresentation() -> [AnyHashable : Any]}
| `- note: 'dictionaryRepresentation()' has been explicitly marked unavailable here
4 |
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:157:62: error: 'cumulativeHitchTimeRatio' is unavailable in macOS
155 |
156 | if #available(iOS 15.0, *) {
157 | self.cumulativeHitchTimeRatio = intervalData.cumulativeHitchTimeRatio?.value ?? 0
| `- error: 'cumulativeHitchTimeRatio' is unavailable in macOS
158 | } else {
159 | self.cumulativeHitchTimeRatio = 0
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXSignpostMetric.h:60:65: note: 'cumulativeHitchTimeRatio' has been explicitly marked unavailable here
58 | @discussion This property is null when signposts with the associated signpostName and signpostCategory contain no interval metric data.
59 | */
60 | @property (readonly, strong, nullable) NSMeasurement<NSUnit *> *cumulativeHitchTimeRatio API_AVAILABLE(ios(15.0)) API_UNAVAILABLE(macos, tvos, watchos);
| `- note: 'cumulativeHitchTimeRatio' has been explicitly marked unavailable here
61 |
62 | @end
[1015/1302] Compiling EmbraceCore CrashHelper.swift
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:148:29: error: 'MXSignpostIntervalData' is unavailable in macOS
146 | @available(tvOS, unavailable)
147 | @available(watchOS, unavailable)
148 | init?(intervalData: MXSignpostIntervalData?) {
| `- error: 'MXSignpostIntervalData' is unavailable in macOS
149 | guard let intervalData = intervalData else { return nil }
150 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXSignpostMetric.h:26:12: note: 'MXSignpostIntervalData' has been explicitly marked unavailable here
24 | */
25 | API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(macos, tvos, watchos)
26 | @interface MXSignpostIntervalData : NSObject <NSSecureCoding>
| `- note: 'MXSignpostIntervalData' has been explicitly marked unavailable here
27 |
28 | /*!
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:171:23: error: 'MXMetricPayload' is unavailable in macOS
169 | @available(tvOS, unavailable)
170 | @available(watchOS, unavailable)
171 | init(payload: MXMetricPayload) {
| `- error: 'MXMetricPayload' is unavailable in macOS
172 | self.latestApplicationVersion = payload.latestApplicationVersion
173 | self.includesMultipleApplicationVersions = payload.includesMultipleApplicationVersions
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXMetricPayload.h:38:12: note: 'MXMetricPayload' has been explicitly marked unavailable here
36 | */
37 | API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(macos, tvos, watchos)
38 | @interface MXMetricPayload : NSObject <NSSecureCoding>
| `- note: 'MXMetricPayload' has been explicitly marked unavailable here
39 |
40 | /*!
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:99:46: error: 'dictionaryRepresentation()' is unavailable in macOS
97 |
98 | // bundle identifier is special, it appeared in iOS 26 but is avaialble in the JSON.
99 | self.bundleIdentifier = metaData.dictionaryRepresentation()["bundleIdentifier"] as? String ?? ""
| `- error: 'dictionaryRepresentation()' is unavailable in macOS
100 |
101 | self.regionFormat = metaData.regionFormat
MetricKit.MXMetaData.dictionaryRepresentation:3:13: note: 'dictionaryRepresentation()' has been explicitly marked unavailable here
1 | class MXMetaData {
2 | @available(macOS, unavailable)
3 | open func dictionaryRepresentation() -> [AnyHashable : Any]}
| `- note: 'dictionaryRepresentation()' has been explicitly marked unavailable here
4 |
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:157:62: error: 'cumulativeHitchTimeRatio' is unavailable in macOS
155 |
156 | if #available(iOS 15.0, *) {
157 | self.cumulativeHitchTimeRatio = intervalData.cumulativeHitchTimeRatio?.value ?? 0
| `- error: 'cumulativeHitchTimeRatio' is unavailable in macOS
158 | } else {
159 | self.cumulativeHitchTimeRatio = 0
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXSignpostMetric.h:60:65: note: 'cumulativeHitchTimeRatio' has been explicitly marked unavailable here
58 | @discussion This property is null when signposts with the associated signpostName and signpostCategory contain no interval metric data.
59 | */
60 | @property (readonly, strong, nullable) NSMeasurement<NSUnit *> *cumulativeHitchTimeRatio API_AVAILABLE(ios(15.0)) API_UNAVAILABLE(macos, tvos, watchos);
| `- note: 'cumulativeHitchTimeRatio' has been explicitly marked unavailable here
61 |
62 | @end
[1016/1302] Compiling EmbraceCore EmbraceFilePathProvider.swift
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:148:29: error: 'MXSignpostIntervalData' is unavailable in macOS
146 | @available(tvOS, unavailable)
147 | @available(watchOS, unavailable)
148 | init?(intervalData: MXSignpostIntervalData?) {
| `- error: 'MXSignpostIntervalData' is unavailable in macOS
149 | guard let intervalData = intervalData else { return nil }
150 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXSignpostMetric.h:26:12: note: 'MXSignpostIntervalData' has been explicitly marked unavailable here
24 | */
25 | API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(macos, tvos, watchos)
26 | @interface MXSignpostIntervalData : NSObject <NSSecureCoding>
| `- note: 'MXSignpostIntervalData' has been explicitly marked unavailable here
27 |
28 | /*!
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:171:23: error: 'MXMetricPayload' is unavailable in macOS
169 | @available(tvOS, unavailable)
170 | @available(watchOS, unavailable)
171 | init(payload: MXMetricPayload) {
| `- error: 'MXMetricPayload' is unavailable in macOS
172 | self.latestApplicationVersion = payload.latestApplicationVersion
173 | self.includesMultipleApplicationVersions = payload.includesMultipleApplicationVersions
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXMetricPayload.h:38:12: note: 'MXMetricPayload' has been explicitly marked unavailable here
36 | */
37 | API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(macos, tvos, watchos)
38 | @interface MXMetricPayload : NSObject <NSSecureCoding>
| `- note: 'MXMetricPayload' has been explicitly marked unavailable here
39 |
40 | /*!
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:99:46: error: 'dictionaryRepresentation()' is unavailable in macOS
97 |
98 | // bundle identifier is special, it appeared in iOS 26 but is avaialble in the JSON.
99 | self.bundleIdentifier = metaData.dictionaryRepresentation()["bundleIdentifier"] as? String ?? ""
| `- error: 'dictionaryRepresentation()' is unavailable in macOS
100 |
101 | self.regionFormat = metaData.regionFormat
MetricKit.MXMetaData.dictionaryRepresentation:3:13: note: 'dictionaryRepresentation()' has been explicitly marked unavailable here
1 | class MXMetaData {
2 | @available(macOS, unavailable)
3 | open func dictionaryRepresentation() -> [AnyHashable : Any]}
| `- note: 'dictionaryRepresentation()' has been explicitly marked unavailable here
4 |
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:157:62: error: 'cumulativeHitchTimeRatio' is unavailable in macOS
155 |
156 | if #available(iOS 15.0, *) {
157 | self.cumulativeHitchTimeRatio = intervalData.cumulativeHitchTimeRatio?.value ?? 0
| `- error: 'cumulativeHitchTimeRatio' is unavailable in macOS
158 | } else {
159 | self.cumulativeHitchTimeRatio = 0
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXSignpostMetric.h:60:65: note: 'cumulativeHitchTimeRatio' has been explicitly marked unavailable here
58 | @discussion This property is null when signposts with the associated signpostName and signpostCategory contain no interval metric data.
59 | */
60 | @property (readonly, strong, nullable) NSMeasurement<NSUnit *> *cumulativeHitchTimeRatio API_AVAILABLE(ios(15.0)) API_UNAVAILABLE(macos, tvos, watchos);
| `- note: 'cumulativeHitchTimeRatio' has been explicitly marked unavailable here
61 |
62 | @end
[1017/1302] Compiling EmbraceCore EmbraceFileSystem.swift
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:148:29: error: 'MXSignpostIntervalData' is unavailable in macOS
146 | @available(tvOS, unavailable)
147 | @available(watchOS, unavailable)
148 | init?(intervalData: MXSignpostIntervalData?) {
| `- error: 'MXSignpostIntervalData' is unavailable in macOS
149 | guard let intervalData = intervalData else { return nil }
150 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXSignpostMetric.h:26:12: note: 'MXSignpostIntervalData' has been explicitly marked unavailable here
24 | */
25 | API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(macos, tvos, watchos)
26 | @interface MXSignpostIntervalData : NSObject <NSSecureCoding>
| `- note: 'MXSignpostIntervalData' has been explicitly marked unavailable here
27 |
28 | /*!
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:171:23: error: 'MXMetricPayload' is unavailable in macOS
169 | @available(tvOS, unavailable)
170 | @available(watchOS, unavailable)
171 | init(payload: MXMetricPayload) {
| `- error: 'MXMetricPayload' is unavailable in macOS
172 | self.latestApplicationVersion = payload.latestApplicationVersion
173 | self.includesMultipleApplicationVersions = payload.includesMultipleApplicationVersions
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXMetricPayload.h:38:12: note: 'MXMetricPayload' has been explicitly marked unavailable here
36 | */
37 | API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(macos, tvos, watchos)
38 | @interface MXMetricPayload : NSObject <NSSecureCoding>
| `- note: 'MXMetricPayload' has been explicitly marked unavailable here
39 |
40 | /*!
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:99:46: error: 'dictionaryRepresentation()' is unavailable in macOS
97 |
98 | // bundle identifier is special, it appeared in iOS 26 but is avaialble in the JSON.
99 | self.bundleIdentifier = metaData.dictionaryRepresentation()["bundleIdentifier"] as? String ?? ""
| `- error: 'dictionaryRepresentation()' is unavailable in macOS
100 |
101 | self.regionFormat = metaData.regionFormat
MetricKit.MXMetaData.dictionaryRepresentation:3:13: note: 'dictionaryRepresentation()' has been explicitly marked unavailable here
1 | class MXMetaData {
2 | @available(macOS, unavailable)
3 | open func dictionaryRepresentation() -> [AnyHashable : Any]}
| `- note: 'dictionaryRepresentation()' has been explicitly marked unavailable here
4 |
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:157:62: error: 'cumulativeHitchTimeRatio' is unavailable in macOS
155 |
156 | if #available(iOS 15.0, *) {
157 | self.cumulativeHitchTimeRatio = intervalData.cumulativeHitchTimeRatio?.value ?? 0
| `- error: 'cumulativeHitchTimeRatio' is unavailable in macOS
158 | } else {
159 | self.cumulativeHitchTimeRatio = 0
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXSignpostMetric.h:60:65: note: 'cumulativeHitchTimeRatio' has been explicitly marked unavailable here
58 | @discussion This property is null when signposts with the associated signpostName and signpostCategory contain no interval metric data.
59 | */
60 | @property (readonly, strong, nullable) NSMeasurement<NSUnit *> *cumulativeHitchTimeRatio API_AVAILABLE(ios(15.0)) API_UNAVAILABLE(macos, tvos, watchos);
| `- note: 'cumulativeHitchTimeRatio' has been explicitly marked unavailable here
61 |
62 | @end
[1018/1302] Compiling EmbraceCore Embrace+Config.swift
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:148:29: error: 'MXSignpostIntervalData' is unavailable in macOS
146 | @available(tvOS, unavailable)
147 | @available(watchOS, unavailable)
148 | init?(intervalData: MXSignpostIntervalData?) {
| `- error: 'MXSignpostIntervalData' is unavailable in macOS
149 | guard let intervalData = intervalData else { return nil }
150 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXSignpostMetric.h:26:12: note: 'MXSignpostIntervalData' has been explicitly marked unavailable here
24 | */
25 | API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(macos, tvos, watchos)
26 | @interface MXSignpostIntervalData : NSObject <NSSecureCoding>
| `- note: 'MXSignpostIntervalData' has been explicitly marked unavailable here
27 |
28 | /*!
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:171:23: error: 'MXMetricPayload' is unavailable in macOS
169 | @available(tvOS, unavailable)
170 | @available(watchOS, unavailable)
171 | init(payload: MXMetricPayload) {
| `- error: 'MXMetricPayload' is unavailable in macOS
172 | self.latestApplicationVersion = payload.latestApplicationVersion
173 | self.includesMultipleApplicationVersions = payload.includesMultipleApplicationVersions
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXMetricPayload.h:38:12: note: 'MXMetricPayload' has been explicitly marked unavailable here
36 | */
37 | API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(macos, tvos, watchos)
38 | @interface MXMetricPayload : NSObject <NSSecureCoding>
| `- note: 'MXMetricPayload' has been explicitly marked unavailable here
39 |
40 | /*!
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:99:46: error: 'dictionaryRepresentation()' is unavailable in macOS
97 |
98 | // bundle identifier is special, it appeared in iOS 26 but is avaialble in the JSON.
99 | self.bundleIdentifier = metaData.dictionaryRepresentation()["bundleIdentifier"] as? String ?? ""
| `- error: 'dictionaryRepresentation()' is unavailable in macOS
100 |
101 | self.regionFormat = metaData.regionFormat
MetricKit.MXMetaData.dictionaryRepresentation:3:13: note: 'dictionaryRepresentation()' has been explicitly marked unavailable here
1 | class MXMetaData {
2 | @available(macOS, unavailable)
3 | open func dictionaryRepresentation() -> [AnyHashable : Any]}
| `- note: 'dictionaryRepresentation()' has been explicitly marked unavailable here
4 |
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:157:62: error: 'cumulativeHitchTimeRatio' is unavailable in macOS
155 |
156 | if #available(iOS 15.0, *) {
157 | self.cumulativeHitchTimeRatio = intervalData.cumulativeHitchTimeRatio?.value ?? 0
| `- error: 'cumulativeHitchTimeRatio' is unavailable in macOS
158 | } else {
159 | self.cumulativeHitchTimeRatio = 0
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXSignpostMetric.h:60:65: note: 'cumulativeHitchTimeRatio' has been explicitly marked unavailable here
58 | @discussion This property is null when signposts with the associated signpostName and signpostCategory contain no interval metric data.
59 | */
60 | @property (readonly, strong, nullable) NSMeasurement<NSUnit *> *cumulativeHitchTimeRatio API_AVAILABLE(ios(15.0)) API_UNAVAILABLE(macos, tvos, watchos);
| `- note: 'cumulativeHitchTimeRatio' has been explicitly marked unavailable here
61 |
62 | @end
[1019/1302] Compiling EmbraceCore Embrace+EmbraceMetricKitStateProvider.swift
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:148:29: error: 'MXSignpostIntervalData' is unavailable in macOS
146 | @available(tvOS, unavailable)
147 | @available(watchOS, unavailable)
148 | init?(intervalData: MXSignpostIntervalData?) {
| `- error: 'MXSignpostIntervalData' is unavailable in macOS
149 | guard let intervalData = intervalData else { return nil }
150 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXSignpostMetric.h:26:12: note: 'MXSignpostIntervalData' has been explicitly marked unavailable here
24 | */
25 | API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(macos, tvos, watchos)
26 | @interface MXSignpostIntervalData : NSObject <NSSecureCoding>
| `- note: 'MXSignpostIntervalData' has been explicitly marked unavailable here
27 |
28 | /*!
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:171:23: error: 'MXMetricPayload' is unavailable in macOS
169 | @available(tvOS, unavailable)
170 | @available(watchOS, unavailable)
171 | init(payload: MXMetricPayload) {
| `- error: 'MXMetricPayload' is unavailable in macOS
172 | self.latestApplicationVersion = payload.latestApplicationVersion
173 | self.includesMultipleApplicationVersions = payload.includesMultipleApplicationVersions
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXMetricPayload.h:38:12: note: 'MXMetricPayload' has been explicitly marked unavailable here
36 | */
37 | API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(macos, tvos, watchos)
38 | @interface MXMetricPayload : NSObject <NSSecureCoding>
| `- note: 'MXMetricPayload' has been explicitly marked unavailable here
39 |
40 | /*!
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:99:46: error: 'dictionaryRepresentation()' is unavailable in macOS
97 |
98 | // bundle identifier is special, it appeared in iOS 26 but is avaialble in the JSON.
99 | self.bundleIdentifier = metaData.dictionaryRepresentation()["bundleIdentifier"] as? String ?? ""
| `- error: 'dictionaryRepresentation()' is unavailable in macOS
100 |
101 | self.regionFormat = metaData.regionFormat
MetricKit.MXMetaData.dictionaryRepresentation:3:13: note: 'dictionaryRepresentation()' has been explicitly marked unavailable here
1 | class MXMetaData {
2 | @available(macOS, unavailable)
3 | open func dictionaryRepresentation() -> [AnyHashable : Any]}
| `- note: 'dictionaryRepresentation()' has been explicitly marked unavailable here
4 |
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:157:62: error: 'cumulativeHitchTimeRatio' is unavailable in macOS
155 |
156 | if #available(iOS 15.0, *) {
157 | self.cumulativeHitchTimeRatio = intervalData.cumulativeHitchTimeRatio?.value ?? 0
| `- error: 'cumulativeHitchTimeRatio' is unavailable in macOS
158 | } else {
159 | self.cumulativeHitchTimeRatio = 0
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXSignpostMetric.h:60:65: note: 'cumulativeHitchTimeRatio' has been explicitly marked unavailable here
58 | @discussion This property is null when signposts with the associated signpostName and signpostCategory contain no interval metric data.
59 | */
60 | @property (readonly, strong, nullable) NSMeasurement<NSUnit *> *cumulativeHitchTimeRatio API_AVAILABLE(ios(15.0)) API_UNAVAILABLE(macos, tvos, watchos);
| `- note: 'cumulativeHitchTimeRatio' has been explicitly marked unavailable here
61 |
62 | @end
[1020/1302] Compiling EmbraceCore Embrace+EmbraceSDKStateProvider.swift
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:148:29: error: 'MXSignpostIntervalData' is unavailable in macOS
146 | @available(tvOS, unavailable)
147 | @available(watchOS, unavailable)
148 | init?(intervalData: MXSignpostIntervalData?) {
| `- error: 'MXSignpostIntervalData' is unavailable in macOS
149 | guard let intervalData = intervalData else { return nil }
150 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXSignpostMetric.h:26:12: note: 'MXSignpostIntervalData' has been explicitly marked unavailable here
24 | */
25 | API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(macos, tvos, watchos)
26 | @interface MXSignpostIntervalData : NSObject <NSSecureCoding>
| `- note: 'MXSignpostIntervalData' has been explicitly marked unavailable here
27 |
28 | /*!
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:171:23: error: 'MXMetricPayload' is unavailable in macOS
169 | @available(tvOS, unavailable)
170 | @available(watchOS, unavailable)
171 | init(payload: MXMetricPayload) {
| `- error: 'MXMetricPayload' is unavailable in macOS
172 | self.latestApplicationVersion = payload.latestApplicationVersion
173 | self.includesMultipleApplicationVersions = payload.includesMultipleApplicationVersions
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXMetricPayload.h:38:12: note: 'MXMetricPayload' has been explicitly marked unavailable here
36 | */
37 | API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(macos, tvos, watchos)
38 | @interface MXMetricPayload : NSObject <NSSecureCoding>
| `- note: 'MXMetricPayload' has been explicitly marked unavailable here
39 |
40 | /*!
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:99:46: error: 'dictionaryRepresentation()' is unavailable in macOS
97 |
98 | // bundle identifier is special, it appeared in iOS 26 but is avaialble in the JSON.
99 | self.bundleIdentifier = metaData.dictionaryRepresentation()["bundleIdentifier"] as? String ?? ""
| `- error: 'dictionaryRepresentation()' is unavailable in macOS
100 |
101 | self.regionFormat = metaData.regionFormat
MetricKit.MXMetaData.dictionaryRepresentation:3:13: note: 'dictionaryRepresentation()' has been explicitly marked unavailable here
1 | class MXMetaData {
2 | @available(macOS, unavailable)
3 | open func dictionaryRepresentation() -> [AnyHashable : Any]}
| `- note: 'dictionaryRepresentation()' has been explicitly marked unavailable here
4 |
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:157:62: error: 'cumulativeHitchTimeRatio' is unavailable in macOS
155 |
156 | if #available(iOS 15.0, *) {
157 | self.cumulativeHitchTimeRatio = intervalData.cumulativeHitchTimeRatio?.value ?? 0
| `- error: 'cumulativeHitchTimeRatio' is unavailable in macOS
158 | } else {
159 | self.cumulativeHitchTimeRatio = 0
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXSignpostMetric.h:60:65: note: 'cumulativeHitchTimeRatio' has been explicitly marked unavailable here
58 | @discussion This property is null when signposts with the associated signpostName and signpostCategory contain no interval metric data.
59 | */
60 | @property (readonly, strong, nullable) NSMeasurement<NSUnit *> *cumulativeHitchTimeRatio API_AVAILABLE(ios(15.0)) API_UNAVAILABLE(macos, tvos, watchos);
| `- note: 'cumulativeHitchTimeRatio' has been explicitly marked unavailable here
61 |
62 | @end
[1021/1302] Compiling EmbraceCore Embrace+InternalLogger.swift
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:148:29: error: 'MXSignpostIntervalData' is unavailable in macOS
146 | @available(tvOS, unavailable)
147 | @available(watchOS, unavailable)
148 | init?(intervalData: MXSignpostIntervalData?) {
| `- error: 'MXSignpostIntervalData' is unavailable in macOS
149 | guard let intervalData = intervalData else { return nil }
150 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXSignpostMetric.h:26:12: note: 'MXSignpostIntervalData' has been explicitly marked unavailable here
24 | */
25 | API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(macos, tvos, watchos)
26 | @interface MXSignpostIntervalData : NSObject <NSSecureCoding>
| `- note: 'MXSignpostIntervalData' has been explicitly marked unavailable here
27 |
28 | /*!
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:171:23: error: 'MXMetricPayload' is unavailable in macOS
169 | @available(tvOS, unavailable)
170 | @available(watchOS, unavailable)
171 | init(payload: MXMetricPayload) {
| `- error: 'MXMetricPayload' is unavailable in macOS
172 | self.latestApplicationVersion = payload.latestApplicationVersion
173 | self.includesMultipleApplicationVersions = payload.includesMultipleApplicationVersions
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXMetricPayload.h:38:12: note: 'MXMetricPayload' has been explicitly marked unavailable here
36 | */
37 | API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(macos, tvos, watchos)
38 | @interface MXMetricPayload : NSObject <NSSecureCoding>
| `- note: 'MXMetricPayload' has been explicitly marked unavailable here
39 |
40 | /*!
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:99:46: error: 'dictionaryRepresentation()' is unavailable in macOS
97 |
98 | // bundle identifier is special, it appeared in iOS 26 but is avaialble in the JSON.
99 | self.bundleIdentifier = metaData.dictionaryRepresentation()["bundleIdentifier"] as? String ?? ""
| `- error: 'dictionaryRepresentation()' is unavailable in macOS
100 |
101 | self.regionFormat = metaData.regionFormat
MetricKit.MXMetaData.dictionaryRepresentation:3:13: note: 'dictionaryRepresentation()' has been explicitly marked unavailable here
1 | class MXMetaData {
2 | @available(macOS, unavailable)
3 | open func dictionaryRepresentation() -> [AnyHashable : Any]}
| `- note: 'dictionaryRepresentation()' has been explicitly marked unavailable here
4 |
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:157:62: error: 'cumulativeHitchTimeRatio' is unavailable in macOS
155 |
156 | if #available(iOS 15.0, *) {
157 | self.cumulativeHitchTimeRatio = intervalData.cumulativeHitchTimeRatio?.value ?? 0
| `- error: 'cumulativeHitchTimeRatio' is unavailable in macOS
158 | } else {
159 | self.cumulativeHitchTimeRatio = 0
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXSignpostMetric.h:60:65: note: 'cumulativeHitchTimeRatio' has been explicitly marked unavailable here
58 | @discussion This property is null when signposts with the associated signpostName and signpostCategory contain no interval metric data.
59 | */
60 | @property (readonly, strong, nullable) NSMeasurement<NSUnit *> *cumulativeHitchTimeRatio API_AVAILABLE(ios(15.0)) API_UNAVAILABLE(macos, tvos, watchos);
| `- note: 'cumulativeHitchTimeRatio' has been explicitly marked unavailable here
61 |
62 | @end
[1022/1302] Compiling EmbraceCore Embrace+OTelResources.swift
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:148:29: error: 'MXSignpostIntervalData' is unavailable in macOS
146 | @available(tvOS, unavailable)
147 | @available(watchOS, unavailable)
148 | init?(intervalData: MXSignpostIntervalData?) {
| `- error: 'MXSignpostIntervalData' is unavailable in macOS
149 | guard let intervalData = intervalData else { return nil }
150 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXSignpostMetric.h:26:12: note: 'MXSignpostIntervalData' has been explicitly marked unavailable here
24 | */
25 | API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(macos, tvos, watchos)
26 | @interface MXSignpostIntervalData : NSObject <NSSecureCoding>
| `- note: 'MXSignpostIntervalData' has been explicitly marked unavailable here
27 |
28 | /*!
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:171:23: error: 'MXMetricPayload' is unavailable in macOS
169 | @available(tvOS, unavailable)
170 | @available(watchOS, unavailable)
171 | init(payload: MXMetricPayload) {
| `- error: 'MXMetricPayload' is unavailable in macOS
172 | self.latestApplicationVersion = payload.latestApplicationVersion
173 | self.includesMultipleApplicationVersions = payload.includesMultipleApplicationVersions
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXMetricPayload.h:38:12: note: 'MXMetricPayload' has been explicitly marked unavailable here
36 | */
37 | API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(macos, tvos, watchos)
38 | @interface MXMetricPayload : NSObject <NSSecureCoding>
| `- note: 'MXMetricPayload' has been explicitly marked unavailable here
39 |
40 | /*!
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:99:46: error: 'dictionaryRepresentation()' is unavailable in macOS
97 |
98 | // bundle identifier is special, it appeared in iOS 26 but is avaialble in the JSON.
99 | self.bundleIdentifier = metaData.dictionaryRepresentation()["bundleIdentifier"] as? String ?? ""
| `- error: 'dictionaryRepresentation()' is unavailable in macOS
100 |
101 | self.regionFormat = metaData.regionFormat
MetricKit.MXMetaData.dictionaryRepresentation:3:13: note: 'dictionaryRepresentation()' has been explicitly marked unavailable here
1 | class MXMetaData {
2 | @available(macOS, unavailable)
3 | open func dictionaryRepresentation() -> [AnyHashable : Any]}
| `- note: 'dictionaryRepresentation()' has been explicitly marked unavailable here
4 |
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:157:62: error: 'cumulativeHitchTimeRatio' is unavailable in macOS
155 |
156 | if #available(iOS 15.0, *) {
157 | self.cumulativeHitchTimeRatio = intervalData.cumulativeHitchTimeRatio?.value ?? 0
| `- error: 'cumulativeHitchTimeRatio' is unavailable in macOS
158 | } else {
159 | self.cumulativeHitchTimeRatio = 0
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXSignpostMetric.h:60:65: note: 'cumulativeHitchTimeRatio' has been explicitly marked unavailable here
58 | @discussion This property is null when signposts with the associated signpostName and signpostCategory contain no interval metric data.
59 | */
60 | @property (readonly, strong, nullable) NSMeasurement<NSUnit *> *cumulativeHitchTimeRatio API_AVAILABLE(ios(15.0)) API_UNAVAILABLE(macos, tvos, watchos);
| `- note: 'cumulativeHitchTimeRatio' has been explicitly marked unavailable here
61 |
62 | @end
error: emit-module command failed with exit code 1 (use -v to see invocation)
[1023/1316] Compiling EmbraceCore PayloadUtils.swift
[1024/1316] Compiling EmbraceCore Embrace+CrashHelper.swift
[1025/1316] Compiling EmbraceCore Embrace+CrashReporter.swift
[1026/1316] Compiling EmbraceCore Embrace+OTel.swift
[1027/1316] Compiling EmbraceCore EmbraceSDKState.swift
[1028/1316] Compiling EmbraceCore Breadcrumb.swift
[1029/1316] Compiling EmbraceCore LastRunEndState.swift
[1030/1316] Compiling EmbraceCore LogLevel.swift
[1031/1316] Compiling EmbraceCore MetadataError.swift
[1032/1316] Compiling EmbraceCore MetadataHandler+Personas.swift
[1033/1316] Compiling EmbraceCore MetadataHandler+User.swift
[1034/1316] Compiling EmbraceCore MetadataHandler.swift
[1035/1316] Compiling EmbraceCore MetadataRecordTmp.swift
[1036/1316] Compiling EmbraceCore PersonaTag.swift
[1037/1316] Compiling EmbraceCore OpenTelemetryExport.swift
[1038/1316] Compiling EmbraceCore LogController.swift
[1039/1316] Compiling EmbraceCore BaseInternalLogger.swift
[1040/1316] Compiling EmbraceCore DefaultInternalLogger.swift
[1041/1316] Compiling EmbraceCore MetricKitCrashPayloadProvider.swift
[1042/1316] Compiling EmbraceCore MetricKitHandler.swift
[1043/1316] Compiling EmbraceCore MetricKitMetric.swift
[1044/1316] Compiling EmbraceCore ProcessMetadata.swift
[1045/1316] Compiling EmbraceCore AppResourceKey.swift
[1046/1316] Compiling EmbraceCore DeviceResourceKey.swift
[1047/1316] Compiling EmbraceCore UserResourceKey.swift
[1048/1316] Compiling EmbraceCore ResourceStorageExporter.swift
[1049/1316] Compiling EmbraceCore DefaultStartupDataProvider.swift
[1050/1316] Compiling EmbraceCore StartupDataProvider.swift
[1051/1316] Compiling EmbraceCore StartupInstrumentation.swift
[1052/1316] Compiling EmbraceCore EmbraceSpanProcessor+Setup.swift
[1053/1316] Compiling EmbraceCore Embrace+Setup.swift
[1054/1316] Compiling EmbraceCore EmbraceMeta+UserAgent.swift
[1055/1316] Compiling EmbraceCore SpanEventsLimiter.swift
[1056/1316] Compiling EmbraceCore DeviceIdentifier+Persistence.swift
[1057/1316] Compiling EmbraceCore DefaultEmbraceLogSharedState.swift
[1058/1316] Compiling EmbraceCore DefaultEmbraceLoggerConfig.swift
[1059/1316] Compiling EmbraceCore EmbraceLogAttributesBuilder.swift
[1060/1316] Compiling EmbraceCore DefaultLogBatcher.swift
[1061/1316] Compiling EmbraceCore LogBatch.swift
[1062/1316] Compiling EmbraceCore LogBatchLimits.swift
[1063/1316] Compiling EmbraceCore StorageEmbraceLogExporter.swift
[1064/1316] Compiling EmbraceCore Collection+LogDataValidator.swift
[1065/1316] Compiling EmbraceCore LogDataValidation.swift
[1066/1316] Compiling EmbraceCore LogDataValidator.swift
[1067/1316] Compiling EmbraceCore LengthOfBodyValidator.swift
[1068/1316] Compiling EmbraceCore Embrace+Endpoints.swift
[1069/1316] Compiling EmbraceCore Embrace+Options.swift
[1070/1316] Compiling EmbraceCore Platform.swift
[1071/1316] Compiling EmbraceCore AppInfoPayload.swift
[1072/1316] Compiling EmbraceCore Attribute.swift
[1073/1316] Compiling EmbraceCore LogPayloadBuilder.swift
[1074/1316] Compiling EmbraceCore SessionPayloadBuilder.swift
[1075/1316] Compiling EmbraceCore SpansPayloadBuilder.swift
[1076/1316] Compiling EmbraceCore LogPayload.swift
[1077/1316] Compiling EmbraceCore MetadataPayload.swift
[1078/1316] Compiling EmbraceCore PayloadEnvelope.swift
[1079/1316] Compiling EmbraceCore ResourcePayload.swift
[1080/1316] Compiling EmbraceCore SpanEventPayload.swift
[1081/1316] Compiling EmbraceCore SpanLinkPayload.swift
[1082/1316] Compiling EmbraceCore SpanPayload.swift
[1083/1316] Emitting module EmbraceCore
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:148:29: error: 'MXSignpostIntervalData' is unavailable in macOS
146 | @available(tvOS, unavailable)
147 | @available(watchOS, unavailable)
148 | init?(intervalData: MXSignpostIntervalData?) {
| `- error: 'MXSignpostIntervalData' is unavailable in macOS
149 | guard let intervalData = intervalData else { return nil }
150 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXSignpostMetric.h:26:12: note: 'MXSignpostIntervalData' has been explicitly marked unavailable here
24 | */
25 | API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(macos, tvos, watchos)
26 | @interface MXSignpostIntervalData : NSObject <NSSecureCoding>
| `- note: 'MXSignpostIntervalData' has been explicitly marked unavailable here
27 |
28 | /*!
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:171:23: error: 'MXMetricPayload' is unavailable in macOS
169 | @available(tvOS, unavailable)
170 | @available(watchOS, unavailable)
171 | init(payload: MXMetricPayload) {
| `- error: 'MXMetricPayload' is unavailable in macOS
172 | self.latestApplicationVersion = payload.latestApplicationVersion
173 | self.includesMultipleApplicationVersions = payload.includesMultipleApplicationVersions
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXMetricPayload.h:38:12: note: 'MXMetricPayload' has been explicitly marked unavailable here
36 | */
37 | API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(macos, tvos, watchos)
38 | @interface MXMetricPayload : NSObject <NSSecureCoding>
| `- note: 'MXMetricPayload' has been explicitly marked unavailable here
39 |
40 | /*!
[1084/1316] Compiling EmbraceCore URLRequest+Extension.swift
[1085/1316] Compiling EmbraceCore URLSessionCaptureService+Options.swift
[1086/1316] Compiling EmbraceCore URLSessionCaptureService.swift
[1087/1316] Compiling EmbraceCore URLSessionRequestsDataSource.swift
[1088/1316] Compiling EmbraceCore URLSessionSwizzlerProvider.swift
[1089/1316] Compiling EmbraceCore URLSessionTask+Extension.swift
[1090/1316] Compiling EmbraceCore URLSessionTaskHandler.swift
[1091/1316] Compiling EmbraceCore AppInfoCaptureService.swift
[1092/1316] Compiling EmbraceCore DeviceInfoCaptureService.swift
[1093/1316] Compiling EmbraceCore PushNotificationCaptureService+Options.swift
[1094/1316] Compiling EmbraceCore PushNotificationCaptureService.swift
[1095/1316] Compiling EmbraceCore UNUserNotificationCenterDelegateProxy.swift
[1096/1316] Compiling EmbraceCore ResourceCaptureService.swift
[1097/1316] Compiling EmbraceCore LowMemoryWarningCaptureService.swift
[1098/1316] Compiling EmbraceCore LowPowerModeCaptureService.swift
[1099/1316] Compiling EmbraceCore PowerModeProvider.swift
[1100/1316] Compiling EmbraceCore TapCaptureService+Options.swift
[1101/1316] Compiling EmbraceCore TapCaptureService.swift
[1102/1316] Compiling EmbraceCore TapCaptureServiceDelegate.swift
[1103/1316] Compiling EmbraceCore CaptureServices+UIViewController.swift
[1104/1316] Compiling EmbraceCore EmbraceViewControllerCustomization.swift
[1105/1316] Compiling EmbraceCore InstrumentableViewController.swift
[1106/1316] Compiling EmbraceCore InteractableViewController.swift
[1107/1316] Compiling EmbraceCore UIViewController+Embrace.swift
[1108/1316] Compiling EmbraceCore UIViewControllerHandler.swift
[1109/1316] Compiling EmbraceCore ViewCaptureService+Options.swift
[1110/1316] Compiling EmbraceCore ViewCaptureService.swift
[1111/1316] Compiling EmbraceCore ViewCaptureServiceError.swift
[1112/1316] Compiling EmbraceCore ViewCaptureServiceSwizzleCache.swift
[1113/1316] Compiling EmbraceCore ViewControllerBlockList.swift
[1114/1316] Compiling EmbraceCore OpenTelemetryProcessor.swift
[1115/1316] Compiling EmbraceCore PushNotificationError.swift
[1116/1316] Compiling EmbraceCore PushNotificationEvent.swift
[1117/1316] Compiling EmbraceCore StartupInstrumentation+Customization.swift
[1118/1316] Compiling EmbraceCore UnsentDataHandler.swift
[1119/1316] Compiling EmbraceCore ManualSessionLifecycle.swift
[1120/1316] Compiling EmbraceCore iOSSessionLifecycle.swift
[1121/1316] Compiling EmbraceCore SessionLifecycle.swift
[1122/1316] Compiling EmbraceCore SessionControllable.swift
[1123/1316] Compiling EmbraceCore SessionController.swift
[1124/1316] Compiling EmbraceCore SessionHeartbeat.swift
[1125/1316] Compiling EmbraceCore SessionSpanUtils.swift
[1126/1316] Compiling EmbraceCore DefaultSessionUploader.swift
[1127/1316] Compiling EmbraceCore EmbraceTraceView.swift
[1128/1316] Compiling EmbraceCore EmbraceTraceViewModifier.swift
[1129/1316] Compiling EmbraceCore EmbraceBacktrace+Internal.swift
[1130/1316] Compiling EmbraceCore EmbraceBacktrace.swift
[1131/1316] Compiling EmbraceCore CaptureServiceFactory.swift
[1132/1316] Compiling EmbraceCore CaptureServices.swift
[1133/1316] Compiling EmbraceCore HangCaptureService.swift
[1134/1316] Compiling EmbraceCore HangWatchdog.swift
[1135/1316] Compiling EmbraceCore EmbraceMetricKitStateProvider.swift
[1136/1316] Compiling EmbraceCore MetricKitCaptureServiceOptions.swift
[1137/1316] Compiling EmbraceCore MetricKitCrashCaptureService.swift
[1138/1316] Compiling EmbraceCore MetricKitHangCaptureService.swift
[1139/1316] Compiling EmbraceCore MetricKitMetricsCaptureService.swift
[1140/1316] Compiling EmbraceCore EncryptedNetworkPayload.swift
[1141/1316] Compiling EmbraceCore EncryptionHelper.swift
[1142/1316] Compiling EmbraceCore NetworkPayloadCaptureHandler.swift
[1143/1316] Compiling EmbraceCore URLSessionTaskCaptureRule.swift
[1144/1316] Compiling EmbraceCore EmbraceTraceViewContext.swift
[1145/1316] Compiling EmbraceCore EmbraceTraceViewLogger.swift
[1146/1316] Compiling EmbraceCore EmbraceTraceViewState.swift
[1147/1316] Compiling EmbraceCore CGPoint+toString.swift
[1148/1316] Compiling EmbraceCore Data+Gzip.swift
[1149/1316] Compiling EmbraceCore Encodable+JSON.swift
[1150/1316] Compiling EmbraceCore KeychainAccess.swift
[1151/1316] Compiling EmbraceCore KeychainInterface.swift
[1152/1316] Compiling EmbraceCore NSObject+Embrace.swift
[1153/1316] Compiling EmbraceCore ProcessInfo+Embrace.swift
[1154/1316] Compiling EmbraceCore URL+Embrace.swift
[1155/1316] Compiling EmbraceCore W3C+TraceParent.swift
[1156/1316] Compiling EmbraceCore W3C.swift
[1157/1316] Compiling EmbraceCore resource_bundle_accessor.swift
BUILD FAILURE 6.1 macosSpm