The Swift Package Index logo.Swift Package Index

Build Information

Successful build of HAKit, reference 0.4.14 (e66483), with Swift 6.1 for macOS (Xcode) using Xcode 16.3 on 20 Apr 2026 00:54:43 UTC.

Swift 6 data race errors: 87

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme HAKit -destination platform=macOS,arch=arm64 OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures

Build Log

        HAGlobal.date = { date2 }
                 ^
/Users/admin/builder/spi-builder-workspace/Source/HAGlobal.swift:16:23: note: static property declared here
    public static var date: () -> Date = Date.init
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HAReconnectManager.test.swift:122:18: warning: reference to static property 'date' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        HAGlobal.date = { date3 }
                 ^
/Users/admin/builder/spi-builder-workspace/Source/HAGlobal.swift:16:23: note: static property declared here
    public static var date: () -> Date = Date.init
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HAReconnectManager.test.swift:129:18: warning: reference to static property 'date' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        HAGlobal.date = { date4 }
                 ^
/Users/admin/builder/spi-builder-workspace/Source/HAGlobal.swift:16:23: note: static property declared here
    public static var date: () -> Date = Date.init
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HAReconnectManager.test.swift:136:18: warning: reference to static property 'date' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        HAGlobal.date = { date5 }
                 ^
/Users/admin/builder/spi-builder-workspace/Source/HAGlobal.swift:16:23: note: static property declared here
    public static var date: () -> Date = Date.init
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HAReconnectManager.test.swift:191:18: warning: reference to static property 'date' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        HAGlobal.date = { now }
                 ^
/Users/admin/builder/spi-builder-workspace/Source/HAGlobal.swift:16:23: note: static property declared here
    public static var date: () -> Date = Date.init
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestInvocationSingle.test.swift:30:35: warning: reference to static property 'callService' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
            request: .init(type: .callService, data: [:]),
                                  ^
/Users/admin/builder/spi-builder-workspace/Source/Requests/HARequestType.swift:56:23: note: static property declared here
    public static var callService: Self = "call_service"
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestInvocationSingle.test.swift:50:35: warning: reference to static property 'callService' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
            request: .init(type: .callService, data: [:]),
                                  ^
/Users/admin/builder/spi-builder-workspace/Source/Requests/HARequestType.swift:56:23: note: static property declared here
    public static var callService: Self = "call_service"
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestInvocationSingle.test.swift:67:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 10.0)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestInvocationSingle.test.swift:41:10: note: add '@MainActor' to make instance method 'testCompletionInvokedOnceAndCleared()' part of global actor 'MainActor'
    func testCompletionInvokedOnceAndCleared() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/HARequestInvocationSubscription.test.swift:45:35: warning: reference to static property 'callService' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
            request: .init(type: .callService, data: [:]),
                                  ^
/Users/admin/builder/spi-builder-workspace/Source/Requests/HARequestType.swift:56:23: note: static property declared here
    public static var callService: Self = "call_service"
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HAURLSessionDelegate.test.swift:331:15: warning: non-final class 'MockURLAuthenticationChallengeSender' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
private class MockURLAuthenticationChallengeSender: NSObject, URLAuthenticationChallengeSender {
              ^
/Users/admin/builder/spi-builder-workspace/Tests/HAURLSessionDelegate.test.swift:105:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 1.0)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/HAURLSessionDelegate.test.swift:72:10: note: add '@MainActor' to make instance method 'testClientCertificateChallenge()' part of global actor 'MainActor'
    func testClientCertificateChallenge() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/HAURLSessionDelegate.test.swift:141:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 1.0)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/HAURLSessionDelegate.test.swift:108:10: note: add '@MainActor' to make instance method 'testServerTrustChallengeWithoutTrust()' part of global actor 'MainActor'
    func testServerTrustChallengeWithoutTrust() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/HAURLSessionDelegate.test.swift:178:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 1.0)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/HAURLSessionDelegate.test.swift:144:10: note: add '@MainActor' to make instance method 'testDefaultAuthenticationChallenge()' part of global actor 'MainActor'
    func testDefaultAuthenticationChallenge() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/HAURLSessionDelegate.test.swift:214:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 1.0)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/HAURLSessionDelegate.test.swift:181:10: note: add '@MainActor' to make instance method 'testProviderRejectsClientCertificate()' part of global actor 'MainActor'
    func testProviderRejectsClientCertificate() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/HAURLSessionDelegate.test.swift:251:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 1.0)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/HAURLSessionDelegate.test.swift:217:10: note: add '@MainActor' to make instance method 'testServerTrustChallengeWithTrust()' part of global actor 'MainActor'
    func testServerTrustChallengeWithTrust() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/HAURLSessionDelegate.test.swift:290:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 1.0)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/HAURLSessionDelegate.test.swift:254:10: note: add '@MainActor' to make instance method 'testProviderRejectsServerTrust()' part of global actor 'MainActor'
    func testProviderRejectsServerTrust() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/HAWebSocketResponseFixture.swift:9:16: warning: static property 'authRequired' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var authRequired = JSONIfy("""
               ^
/Users/admin/builder/spi-builder-workspace/Tests/HAWebSocketResponseFixture.swift:9:16: note: convert 'authRequired' to a 'let' constant to make 'Sendable' shared state immutable
    static var authRequired = JSONIfy("""
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/Tests/HAWebSocketResponseFixture.swift:9:16: note: add '@MainActor' to make static property 'authRequired' part of global actor 'MainActor'
    static var authRequired = JSONIfy("""
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/HAWebSocketResponseFixture.swift:9:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var authRequired = JSONIfy("""
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/HAWebSocketResponseFixture.swift:13:16: warning: static property 'authOK' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var authOK = JSONIfy("""
               ^
/Users/admin/builder/spi-builder-workspace/Tests/HAWebSocketResponseFixture.swift:13:16: note: convert 'authOK' to a 'let' constant to make 'Sendable' shared state immutable
    static var authOK = JSONIfy("""
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/Tests/HAWebSocketResponseFixture.swift:13:16: note: add '@MainActor' to make static property 'authOK' part of global actor 'MainActor'
    static var authOK = JSONIfy("""
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/HAWebSocketResponseFixture.swift:13:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var authOK = JSONIfy("""
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/HAWebSocketResponseFixture.swift:17:16: warning: static property 'authOKMissingVersion' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var authOKMissingVersion = JSONIfy("""
               ^
/Users/admin/builder/spi-builder-workspace/Tests/HAWebSocketResponseFixture.swift:17:16: note: convert 'authOKMissingVersion' to a 'let' constant to make 'Sendable' shared state immutable
    static var authOKMissingVersion = JSONIfy("""
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/Tests/HAWebSocketResponseFixture.swift:17:16: note: add '@MainActor' to make static property 'authOKMissingVersion' part of global actor 'MainActor'
    static var authOKMissingVersion = JSONIfy("""
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/HAWebSocketResponseFixture.swift:17:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var authOKMissingVersion = JSONIfy("""
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/HAWebSocketResponseFixture.swift:21:16: warning: static property 'authInvalid' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var authInvalid = JSONIfy("""
               ^
/Users/admin/builder/spi-builder-workspace/Tests/HAWebSocketResponseFixture.swift:21:16: note: convert 'authInvalid' to a 'let' constant to make 'Sendable' shared state immutable
    static var authInvalid = JSONIfy("""
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/Tests/HAWebSocketResponseFixture.swift:21:16: note: add '@MainActor' to make static property 'authInvalid' part of global actor 'MainActor'
    static var authInvalid = JSONIfy("""
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/HAWebSocketResponseFixture.swift:21:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var authInvalid = JSONIfy("""
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/HAWebSocketResponseFixture.swift:25:16: warning: static property 'responseEmptyResult' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var responseEmptyResult = JSONIfy("""
               ^
/Users/admin/builder/spi-builder-workspace/Tests/HAWebSocketResponseFixture.swift:25:16: note: convert 'responseEmptyResult' to a 'let' constant to make 'Sendable' shared state immutable
    static var responseEmptyResult = JSONIfy("""
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/Tests/HAWebSocketResponseFixture.swift:25:16: note: add '@MainActor' to make static property 'responseEmptyResult' part of global actor 'MainActor'
    static var responseEmptyResult = JSONIfy("""
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/HAWebSocketResponseFixture.swift:25:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var responseEmptyResult = JSONIfy("""
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/HAWebSocketResponseFixture.swift:29:16: warning: static property 'responseDictionaryResult' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var responseDictionaryResult = JSONIfy("""
               ^
/Users/admin/builder/spi-builder-workspace/Tests/HAWebSocketResponseFixture.swift:29:16: note: convert 'responseDictionaryResult' to a 'let' constant to make 'Sendable' shared state immutable
    static var responseDictionaryResult = JSONIfy("""
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/Tests/HAWebSocketResponseFixture.swift:29:16: note: add '@MainActor' to make static property 'responseDictionaryResult' part of global actor 'MainActor'
    static var responseDictionaryResult = JSONIfy("""
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/HAWebSocketResponseFixture.swift:29:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var responseDictionaryResult = JSONIfy("""
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/HAWebSocketResponseFixture.swift:33:16: warning: static property 'responseArrayResult' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var responseArrayResult = JSONIfy("""
               ^
/Users/admin/builder/spi-builder-workspace/Tests/HAWebSocketResponseFixture.swift:33:16: note: convert 'responseArrayResult' to a 'let' constant to make 'Sendable' shared state immutable
    static var responseArrayResult = JSONIfy("""
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/Tests/HAWebSocketResponseFixture.swift:33:16: note: add '@MainActor' to make static property 'responseArrayResult' part of global actor 'MainActor'
    static var responseArrayResult = JSONIfy("""
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/HAWebSocketResponseFixture.swift:33:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var responseArrayResult = JSONIfy("""
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/HAWebSocketResponseFixture.swift:37:16: warning: static property 'responseMissingID' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var responseMissingID = JSONIfy("""
               ^
/Users/admin/builder/spi-builder-workspace/Tests/HAWebSocketResponseFixture.swift:37:16: note: convert 'responseMissingID' to a 'let' constant to make 'Sendable' shared state immutable
    static var responseMissingID = JSONIfy("""
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/Tests/HAWebSocketResponseFixture.swift:37:16: note: add '@MainActor' to make static property 'responseMissingID' part of global actor 'MainActor'
    static var responseMissingID = JSONIfy("""
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/HAWebSocketResponseFixture.swift:37:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var responseMissingID = JSONIfy("""
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/HAWebSocketResponseFixture.swift:41:16: warning: static property 'responseInvalidID' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var responseInvalidID = JSONIfy("""
               ^
/Users/admin/builder/spi-builder-workspace/Tests/HAWebSocketResponseFixture.swift:41:16: note: convert 'responseInvalidID' to a 'let' constant to make 'Sendable' shared state immutable
    static var responseInvalidID = JSONIfy("""
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/Tests/HAWebSocketResponseFixture.swift:41:16: note: add '@MainActor' to make static property 'responseInvalidID' part of global actor 'MainActor'
    static var responseInvalidID = JSONIfy("""
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/HAWebSocketResponseFixture.swift:41:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var responseInvalidID = JSONIfy("""
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/HAWebSocketResponseFixture.swift:45:16: warning: static property 'responseMissingType' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var responseMissingType = JSONIfy("""
               ^
/Users/admin/builder/spi-builder-workspace/Tests/HAWebSocketResponseFixture.swift:45:16: note: convert 'responseMissingType' to a 'let' constant to make 'Sendable' shared state immutable
    static var responseMissingType = JSONIfy("""
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/Tests/HAWebSocketResponseFixture.swift:45:16: note: add '@MainActor' to make static property 'responseMissingType' part of global actor 'MainActor'
    static var responseMissingType = JSONIfy("""
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/HAWebSocketResponseFixture.swift:45:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var responseMissingType = JSONIfy("""
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/HAWebSocketResponseFixture.swift:49:16: warning: static property 'responseInvalidType' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var responseInvalidType = JSONIfy("""
               ^
/Users/admin/builder/spi-builder-workspace/Tests/HAWebSocketResponseFixture.swift:49:16: note: convert 'responseInvalidType' to a 'let' constant to make 'Sendable' shared state immutable
    static var responseInvalidType = JSONIfy("""
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/Tests/HAWebSocketResponseFixture.swift:49:16: note: add '@MainActor' to make static property 'responseInvalidType' part of global actor 'MainActor'
    static var responseInvalidType = JSONIfy("""
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/HAWebSocketResponseFixture.swift:49:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var responseInvalidType = JSONIfy("""
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/HAWebSocketResponseFixture.swift:53:16: warning: static property 'responseError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var responseError = JSONIfy("""
               ^
/Users/admin/builder/spi-builder-workspace/Tests/HAWebSocketResponseFixture.swift:53:16: note: convert 'responseError' to a 'let' constant to make 'Sendable' shared state immutable
    static var responseError = JSONIfy("""
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/Tests/HAWebSocketResponseFixture.swift:53:16: note: add '@MainActor' to make static property 'responseError' part of global actor 'MainActor'
    static var responseError = JSONIfy("""
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/HAWebSocketResponseFixture.swift:53:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var responseError = JSONIfy("""
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/HAWebSocketResponseFixture.swift:57:16: warning: static property 'responseEvent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var responseEvent = JSONIfy("""
               ^
/Users/admin/builder/spi-builder-workspace/Tests/HAWebSocketResponseFixture.swift:57:16: note: convert 'responseEvent' to a 'let' constant to make 'Sendable' shared state immutable
    static var responseEvent = JSONIfy("""
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/Tests/HAWebSocketResponseFixture.swift:57:16: note: add '@MainActor' to make static property 'responseEvent' part of global actor 'MainActor'
    static var responseEvent = JSONIfy("""
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/HAWebSocketResponseFixture.swift:57:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var responseEvent = JSONIfy("""
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/HAWebSocketResponseFixture.swift:61:16: warning: static property 'responsePong' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var responsePong = JSONIfy("""
               ^
/Users/admin/builder/spi-builder-workspace/Tests/HAWebSocketResponseFixture.swift:61:16: note: convert 'responsePong' to a 'let' constant to make 'Sendable' shared state immutable
    static var responsePong = JSONIfy("""
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/Tests/HAWebSocketResponseFixture.swift:61:16: note: add '@MainActor' to make static property 'responsePong' part of global actor 'MainActor'
    static var responsePong = JSONIfy("""
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/HAWebSocketResponseFixture.swift:61:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var responsePong = JSONIfy("""
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/StubbingURLProtocol.swift:6:24: warning: static property 'pending' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    private static var pending = [URL: PendingResult]()
                       ^
/Users/admin/builder/spi-builder-workspace/Tests/StubbingURLProtocol.swift:6:24: note: convert 'pending' to a 'let' constant to make 'Sendable' shared state immutable
    private static var pending = [URL: PendingResult]()
                   ~~~ ^
                   let
/Users/admin/builder/spi-builder-workspace/Tests/StubbingURLProtocol.swift:6:24: note: add '@MainActor' to make static property 'pending' part of global actor 'MainActor'
    private static var pending = [URL: PendingResult]()
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/StubbingURLProtocol.swift:6:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    private static var pending = [URL: PendingResult]()
                       ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/StubbingURLProtocol.swift:7:16: warning: static property 'received' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var received = [URL: URLRequest]()
               ^
/Users/admin/builder/spi-builder-workspace/Tests/StubbingURLProtocol.swift:7:16: note: convert 'received' to a 'let' constant to make 'Sendable' shared state immutable
    static var received = [URL: URLRequest]()
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/Tests/StubbingURLProtocol.swift:7:16: note: add '@MainActor' to make static property 'received' part of global actor 'MainActor'
    static var received = [URL: URLRequest]()
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/StubbingURLProtocol.swift:7:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var received = [URL: URLRequest]()
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/HAKit.test.swift:100:9: warning: sending value of non-Sendable type 'HAKitTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 10.0)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/HAKit.test.swift:100:9: note: sending task-isolated value of non-Sendable type 'HAKitTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 10.0)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestInvocationSingle.test.swift:67:9: warning: sending value of non-Sendable type 'HARequestInvocationSingleTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 10.0)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/HARequestInvocationSingle.test.swift:67:9: note: sending task-isolated value of non-Sendable type 'HARequestInvocationSingleTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 10.0)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/HAURLSessionDelegate.test.swift:105:9: warning: sending value of non-Sendable type 'HAURLSessionDelegateTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 1.0)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/HAURLSessionDelegate.test.swift:105:9: note: sending task-isolated value of non-Sendable type 'HAURLSessionDelegateTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 1.0)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/HAURLSessionDelegate.test.swift:141:9: warning: sending value of non-Sendable type 'HAURLSessionDelegateTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 1.0)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/HAURLSessionDelegate.test.swift:141:9: note: sending task-isolated value of non-Sendable type 'HAURLSessionDelegateTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 1.0)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/HAURLSessionDelegate.test.swift:178:9: warning: sending value of non-Sendable type 'HAURLSessionDelegateTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 1.0)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/HAURLSessionDelegate.test.swift:178:9: note: sending task-isolated value of non-Sendable type 'HAURLSessionDelegateTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 1.0)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/HAURLSessionDelegate.test.swift:214:9: warning: sending value of non-Sendable type 'HAURLSessionDelegateTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 1.0)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/HAURLSessionDelegate.test.swift:214:9: note: sending task-isolated value of non-Sendable type 'HAURLSessionDelegateTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 1.0)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/HAURLSessionDelegate.test.swift:251:9: warning: sending value of non-Sendable type 'HAURLSessionDelegateTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 1.0)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/HAURLSessionDelegate.test.swift:251:9: note: sending task-isolated value of non-Sendable type 'HAURLSessionDelegateTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 1.0)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/HAURLSessionDelegate.test.swift:290:9: warning: sending value of non-Sendable type 'HAURLSessionDelegateTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 1.0)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/HAURLSessionDelegate.test.swift:290:9: note: sending task-isolated value of non-Sendable type 'HAURLSessionDelegateTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 1.0)
        ^
SwiftCompile normal arm64 Compiling\ HAResponseVoid.test.swift,\ HAURLSessionDelegate.test.swift,\ HAWebSocketResponse.test.swift /Users/admin/builder/spi-builder-workspace/Tests/HAResponseVoid.test.swift /Users/admin/builder/spi-builder-workspace/Tests/HAURLSessionDelegate.test.swift /Users/admin/builder/spi-builder-workspace/Tests/HAWebSocketResponse.test.swift (in target 'Tests' from project 'HAKit')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/HAResponseVoid.test.swift (in target 'Tests' from project 'HAKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/HAURLSessionDelegate.test.swift (in target 'Tests' from project 'HAKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Tests/HAURLSessionDelegate.test.swift:331:15: warning: non-final class 'MockURLAuthenticationChallengeSender' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
private class MockURLAuthenticationChallengeSender: NSObject, URLAuthenticationChallengeSender {
              ^
/Users/admin/builder/spi-builder-workspace/Tests/HAURLSessionDelegate.test.swift:105:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 1.0)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/HAURLSessionDelegate.test.swift:72:10: note: add '@MainActor' to make instance method 'testClientCertificateChallenge()' part of global actor 'MainActor'
    func testClientCertificateChallenge() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/HAURLSessionDelegate.test.swift:141:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 1.0)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/HAURLSessionDelegate.test.swift:108:10: note: add '@MainActor' to make instance method 'testServerTrustChallengeWithoutTrust()' part of global actor 'MainActor'
    func testServerTrustChallengeWithoutTrust() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/HAURLSessionDelegate.test.swift:178:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 1.0)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/HAURLSessionDelegate.test.swift:144:10: note: add '@MainActor' to make instance method 'testDefaultAuthenticationChallenge()' part of global actor 'MainActor'
    func testDefaultAuthenticationChallenge() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/HAURLSessionDelegate.test.swift:214:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 1.0)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/HAURLSessionDelegate.test.swift:181:10: note: add '@MainActor' to make instance method 'testProviderRejectsClientCertificate()' part of global actor 'MainActor'
    func testProviderRejectsClientCertificate() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/HAURLSessionDelegate.test.swift:251:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 1.0)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/HAURLSessionDelegate.test.swift:217:10: note: add '@MainActor' to make instance method 'testServerTrustChallengeWithTrust()' part of global actor 'MainActor'
    func testServerTrustChallengeWithTrust() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/HAURLSessionDelegate.test.swift:290:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 1.0)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/HAURLSessionDelegate.test.swift:254:10: note: add '@MainActor' to make instance method 'testProviderRejectsServerTrust()' part of global actor 'MainActor'
    func testProviderRejectsServerTrust() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/HAURLSessionDelegate.test.swift:105:9: warning: sending value of non-Sendable type 'HAURLSessionDelegateTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 1.0)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/HAURLSessionDelegate.test.swift:105:9: note: sending task-isolated value of non-Sendable type 'HAURLSessionDelegateTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 1.0)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/HAURLSessionDelegate.test.swift:141:9: warning: sending value of non-Sendable type 'HAURLSessionDelegateTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 1.0)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/HAURLSessionDelegate.test.swift:141:9: note: sending task-isolated value of non-Sendable type 'HAURLSessionDelegateTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 1.0)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/HAURLSessionDelegate.test.swift:178:9: warning: sending value of non-Sendable type 'HAURLSessionDelegateTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 1.0)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/HAURLSessionDelegate.test.swift:178:9: note: sending task-isolated value of non-Sendable type 'HAURLSessionDelegateTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 1.0)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/HAURLSessionDelegate.test.swift:214:9: warning: sending value of non-Sendable type 'HAURLSessionDelegateTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 1.0)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/HAURLSessionDelegate.test.swift:214:9: note: sending task-isolated value of non-Sendable type 'HAURLSessionDelegateTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 1.0)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/HAURLSessionDelegate.test.swift:251:9: warning: sending value of non-Sendable type 'HAURLSessionDelegateTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 1.0)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/HAURLSessionDelegate.test.swift:251:9: note: sending task-isolated value of non-Sendable type 'HAURLSessionDelegateTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 1.0)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/HAURLSessionDelegate.test.swift:290:9: warning: sending value of non-Sendable type 'HAURLSessionDelegateTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 1.0)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/HAURLSessionDelegate.test.swift:290:9: note: sending task-isolated value of non-Sendable type 'HAURLSessionDelegateTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 1.0)
        ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/HAWebSocketResponse.test.swift (in target 'Tests' from project 'HAKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ CurrentUser.test.swift,\ Event.test.swift,\ FakeEngine.swift,\ HACache.test.swift /Users/admin/builder/spi-builder-workspace/Tests/CurrentUser.test.swift /Users/admin/builder/spi-builder-workspace/Tests/Event.test.swift /Users/admin/builder/spi-builder-workspace/Tests/FakeEngine.swift /Users/admin/builder/spi-builder-workspace/Tests/HACache.test.swift (in target 'Tests' from project 'HAKit')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/CurrentUser.test.swift (in target 'Tests' from project 'HAKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Tests/CurrentUser.test.swift:7:47: warning: reference to static property 'currentUser' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        XCTAssertEqual(request.request.type, .currentUser)
                                              ^
/Users/admin/builder/spi-builder-workspace/Source/Requests/HARequestType.swift:58:23: note: static property declared here
    public static var currentUser: Self = "auth/current_user"
                      ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/Event.test.swift (in target 'Tests' from project 'HAKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Tests/Event.test.swift:6:68: warning: reference to static property 'all' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        let request = HATypedSubscription<HAResponseEvent>.events(.all)
                                                                   ^
/Users/admin/builder/spi-builder-workspace/Source/Convenience/Event.swift:56:23: note: static property declared here
    public static var all: Self = nil
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/Event.test.swift:7:47: warning: reference to static property 'subscribeEvents' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        XCTAssertEqual(request.request.type, .subscribeEvents)
                                              ^
/Users/admin/builder/spi-builder-workspace/Source/Requests/HARequestType.swift:69:23: note: static property declared here
    public static var subscribeEvents: Self = "subscribe_events"
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/Event.test.swift:14:47: warning: reference to static property 'subscribeEvents' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        XCTAssertEqual(request.request.type, .subscribeEvents)
                                              ^
/Users/admin/builder/spi-builder-workspace/Source/Requests/HARequestType.swift:69:23: note: static property declared here
    public static var subscribeEvents: Self = "subscribe_events"
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/Event.test.swift:21:47: warning: reference to static property 'unsubscribeEvents' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        XCTAssertEqual(request.request.type, .unsubscribeEvents)
                                              ^
/Users/admin/builder/spi-builder-workspace/Source/Requests/HARequestType.swift:71:23: note: static property declared here
    public static var unsubscribeEvents: Self = "unsubscribe_events"
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/Event.test.swift:41:40: warning: reference to static property 'stateChanged' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        XCTAssertEqual(response.type, .stateChanged)
                                       ^
/Users/admin/builder/spi-builder-workspace/Source/Convenience/Event.swift:87:23: note: static property declared here
    public static var stateChanged: Self = "state_changed"
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/Event.test.swift:61:40: warning: reference to static property 'stateChanged' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        XCTAssertEqual(response.type, .stateChanged)
                                       ^
/Users/admin/builder/spi-builder-workspace/Source/Convenience/Event.swift:87:23: note: static property declared here
    public static var stateChanged: Self = "state_changed"
                      ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/FakeEngine.swift (in target 'Tests' from project 'HAKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/HACache.test.swift (in target 'Tests' from project 'HAKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Tests/HACache.test.swift:147:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 10.0)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/HACache.test.swift:136:10: note: add '@MainActor' to make instance method 'testConstantValue()' part of global actor 'MainActor'
    func testConstantValue() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/HACache.test.swift:155:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 10.0)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/HACache.test.swift:136:10: note: add '@MainActor' to make instance method 'testConstantValue()' part of global actor 'MainActor'
    func testConstantValue() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/HACache.test.swift:287:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 10.0)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/HACache.test.swift:264:10: note: add '@MainActor' to make instance method 'testPopulateFailsThenConnectionStateChanges()' part of global actor 'MainActor'
    func testPopulateFailsThenConnectionStateChanges() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/HACache.test.swift:336:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 10.0)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/HACache.test.swift:290:10: note: add '@MainActor' to make instance method 'testPopulateThenSubscribes()' part of global actor 'MainActor'
    func testPopulateThenSubscribes() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/HACache.test.swift:392:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 10.0)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/HACache.test.swift:349:10: note: add '@MainActor' to make instance method 'testPopulateAfterReissueWorks()' part of global actor 'MainActor'
    func testPopulateAfterReissueWorks() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/HACache.test.swift:437:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 10.0)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/HACache.test.swift:408:10: note: add '@MainActor' to make instance method 'testReissuesPopulateAndSubscribeOnReconnect()' part of global actor 'MainActor'
    func testReissuesPopulateAndSubscribeOnReconnect() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/HACache.test.swift:463:13: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            waitForExpectations(timeout: 10.0)
            ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/HACache.test.swift:504:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 10.0)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/HACache.test.swift:471:10: note: add '@MainActor' to make instance method 'testMultipleSubscriptions()' part of global actor 'MainActor'
    func testMultipleSubscriptions() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/HACache.test.swift:534:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 10.0)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/HACache.test.swift:509:10: note: add '@MainActor' to make instance method 'testMapWithoutExistingValue()' part of global actor 'MainActor'
    func testMapWithoutExistingValue() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/HACache.test.swift:566:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 10.0)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/HACache.test.swift:546:10: note: add '@MainActor' to make instance method 'testMapWithExistingValue()' part of global actor 'MainActor'
    func testMapWithExistingValue() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/HACache.test.swift:591:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 10.0)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/HACache.test.swift:570:10: note: add '@MainActor' to make instance method 'testOnceBeforeInitial()' part of global actor 'MainActor'
    func testOnceBeforeInitial() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/HACache.test.swift:624:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 10.0)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/HACache.test.swift:601:10: note: add '@MainActor' to make instance method 'testOnceAfterInitial()' part of global actor 'MainActor'
    func testOnceAfterInitial() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/HACache.test.swift:734:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 10.0)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/HACache.test.swift:714:10: note: add '@MainActor' to make instance method 'testSubscriptionWithNilPopulateInfo()' part of global actor 'MainActor'
    func testSubscriptionWithNilPopulateInfo() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/HACache.test.swift:760:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 10.0)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/HACache.test.swift:741:10: note: add '@MainActor' to make instance method 'testSubscriptionWithConnectionStateChanges()' part of global actor 'MainActor'
    func testSubscriptionWithConnectionStateChanges() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/HACache.test.swift:147:9: warning: sending value of non-Sendable type 'HACacheTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 10.0)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/HACache.test.swift:147:9: note: sending task-isolated value of non-Sendable type 'HACacheTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 10.0)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/HACache.test.swift:155:9: warning: sending value of non-Sendable type 'HACacheTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 10.0)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/HACache.test.swift:155:9: note: sending task-isolated value of non-Sendable type 'HACacheTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 10.0)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/HACache.test.swift:287:9: warning: sending value of non-Sendable type 'HACacheTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 10.0)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/HACache.test.swift:287:9: note: sending task-isolated value of non-Sendable type 'HACacheTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 10.0)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/HACache.test.swift:336:9: warning: sending value of non-Sendable type 'HACacheTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 10.0)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/HACache.test.swift:336:9: note: sending task-isolated value of non-Sendable type 'HACacheTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 10.0)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/HACache.test.swift:392:9: warning: sending value of non-Sendable type 'HACacheTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 10.0)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/HACache.test.swift:392:9: note: sending task-isolated value of non-Sendable type 'HACacheTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 10.0)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/HACache.test.swift:437:9: warning: sending value of non-Sendable type 'HACacheTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 10.0)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/HACache.test.swift:437:9: note: sending task-isolated value of non-Sendable type 'HACacheTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 10.0)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/HACache.test.swift:463:13: warning: sending value of non-Sendable type 'HACacheTests' risks causing data races; this is an error in the Swift 6 language mode
            waitForExpectations(timeout: 10.0)
            ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/HACache.test.swift:463:13: note: sending task-isolated value of non-Sendable type 'HACacheTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
            waitForExpectations(timeout: 10.0)
            ^
/Users/admin/builder/spi-builder-workspace/Tests/HACache.test.swift:504:9: warning: sending value of non-Sendable type 'HACacheTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 10.0)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/HACache.test.swift:504:9: note: sending task-isolated value of non-Sendable type 'HACacheTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 10.0)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/HACache.test.swift:534:9: warning: sending value of non-Sendable type 'HACacheTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 10.0)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/HACache.test.swift:534:9: note: sending task-isolated value of non-Sendable type 'HACacheTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 10.0)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/HACache.test.swift:566:9: warning: sending value of non-Sendable type 'HACacheTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 10.0)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/HACache.test.swift:566:9: note: sending task-isolated value of non-Sendable type 'HACacheTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 10.0)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/HACache.test.swift:591:9: warning: sending value of non-Sendable type 'HACacheTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 10.0)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/HACache.test.swift:591:9: note: sending task-isolated value of non-Sendable type 'HACacheTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 10.0)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/HACache.test.swift:624:9: warning: sending value of non-Sendable type 'HACacheTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 10.0)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/HACache.test.swift:624:9: note: sending task-isolated value of non-Sendable type 'HACacheTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 10.0)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/HACache.test.swift:734:9: warning: sending value of non-Sendable type 'HACacheTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 10.0)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/HACache.test.swift:734:9: note: sending task-isolated value of non-Sendable type 'HACacheTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 10.0)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/HACache.test.swift:760:9: warning: sending value of non-Sendable type 'HACacheTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 10.0)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/HACache.test.swift:760:9: note: sending task-isolated value of non-Sendable type 'HACacheTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 10.0)
        ^
SwiftCompile normal arm64 Compiling\ HAEntity+CompressedEntity.test.swift,\ HAEntity.test.swift,\ HAError.test.swift,\ HAKit.test.swift /Users/admin/builder/spi-builder-workspace/Tests/HAEntity+CompressedEntity.test.swift /Users/admin/builder/spi-builder-workspace/Tests/HAEntity.test.swift /Users/admin/builder/spi-builder-workspace/Tests/HAError.test.swift /Users/admin/builder/spi-builder-workspace/Tests/HAKit.test.swift (in target 'Tests' from project 'HAKit')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/HAEntity+CompressedEntity.test.swift (in target 'Tests' from project 'HAKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/HAEntity.test.swift (in target 'Tests' from project 'HAKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/HAError.test.swift (in target 'Tests' from project 'HAKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/HAKit.test.swift (in target 'Tests' from project 'HAKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Tests/HAKit.test.swift:18:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 10.0)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/HAKit.test.swift:5:10: note: add '@MainActor' to make instance method 'testCreation()' part of global actor 'MainActor'
    func testCreation() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/HAKit.test.swift:40:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 10.0)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/HAKit.test.swift:21:10: note: add '@MainActor' to make instance method 'testCreationWithCustomURLSession()' part of global actor 'MainActor'
    func testCreationWithCustomURLSession() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/HAKit.test.swift:100:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 10.0)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/HAKit.test.swift:54:10: note: add '@MainActor' to make instance method 'testCreationWithCustomDelegateSession()' part of global actor 'MainActor'
    func testCreationWithCustomDelegateSession() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/HAKit.test.swift:18:9: warning: sending value of non-Sendable type 'HAKitTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 10.0)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/HAKit.test.swift:18:9: note: sending task-isolated value of non-Sendable type 'HAKitTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 10.0)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/HAKit.test.swift:40:9: warning: sending value of non-Sendable type 'HAKitTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 10.0)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/HAKit.test.swift:40:9: note: sending task-isolated value of non-Sendable type 'HAKitTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 10.0)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/HAKit.test.swift:100:9: warning: sending value of non-Sendable type 'HAKitTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 10.0)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/HAKit.test.swift:100:9: note: sending task-isolated value of non-Sendable type 'HAKitTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 10.0)
        ^
SwiftDriverJobDiscovery normal arm64 Compiling HACache.swift, HACacheKeyStates.swift, HACachePopulateInfo.swift, HACacheSubscribeInfo.swift, HACacheTransformInfo.swift, HACachedStates.swift (in target 'HAKit' from project 'HAKit')
SwiftCompile normal arm64 Compiling\ HARequestInvocationSubscription.test.swift,\ HAResetLock.test.swift,\ HAResponseController.test.swift /Users/admin/builder/spi-builder-workspace/Tests/HARequestInvocationSubscription.test.swift /Users/admin/builder/spi-builder-workspace/Tests/HAResetLock.test.swift /Users/admin/builder/spi-builder-workspace/Tests/HAResponseController.test.swift (in target 'Tests' from project 'HAKit')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/HARequestInvocationSubscription.test.swift (in target 'Tests' from project 'HAKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Tests/HARequestInvocationSubscription.test.swift:7:35: warning: reference to static property 'callService' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
            request: .init(type: .callService, data: [:]),
                                  ^
/Users/admin/builder/spi-builder-workspace/Source/Requests/HARequestType.swift:56:23: note: static property declared here
    public static var callService: Self = "call_service"
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestInvocationSubscription.test.swift:16:35: warning: reference to static property 'callService' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
            request: .init(type: .callService, data: [:]),
                                  ^
/Users/admin/builder/spi-builder-workspace/Source/Requests/HARequestType.swift:56:23: note: static property declared here
    public static var callService: Self = "call_service"
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestInvocationSubscription.test.swift:23:47: warning: reference to static property 'unsubscribeEvents' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        XCTAssertEqual(request.request.type, .unsubscribeEvents)
                                              ^
/Users/admin/builder/spi-builder-workspace/Source/Requests/HARequestType.swift:71:23: note: static property declared here
    public static var unsubscribeEvents: Self = "unsubscribe_events"
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestInvocationSubscription.test.swift:29:35: warning: reference to static property 'callService' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
            request: .init(type: .callService, data: [:]),
                                  ^
/Users/admin/builder/spi-builder-workspace/Source/Requests/HARequestType.swift:56:23: note: static property declared here
    public static var callService: Self = "call_service"
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestInvocationSubscription.test.swift:45:35: warning: reference to static property 'callService' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
            request: .init(type: .callService, data: [:]),
                                  ^
/Users/admin/builder/spi-builder-workspace/Source/Requests/HARequestType.swift:56:23: note: static property declared here
    public static var callService: Self = "call_service"
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestInvocationSubscription.test.swift:61:35: warning: reference to static property 'callService' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
            request: .init(type: .callService, data: [:]),
                                  ^
/Users/admin/builder/spi-builder-workspace/Source/Requests/HARequestType.swift:56:23: note: static property declared here
    public static var callService: Self = "call_service"
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestInvocationSubscription.test.swift:87:35: warning: reference to static property 'callService' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
            request: .init(type: .callService, data: [:]),
                                  ^
/Users/admin/builder/spi-builder-workspace/Source/Requests/HARequestType.swift:56:23: note: static property declared here
    public static var callService: Self = "call_service"
                      ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/HAResetLock.test.swift (in target 'Tests' from project 'HAKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Tests/HAResetLock.test.swift:64:13: warning: capture of 'block' with non-sendable type '(Int, HAResetLock<HAResetLockTests.LockValue>) -> Void' (aka '(Int, HAResetLock<() -> ()>) -> ()') in a '@Sendable' closure
            block($0, lock)
            ^
/Users/admin/builder/spi-builder-workspace/Tests/HAResetLock.test.swift:64:13: note: a function type must be marked '@Sendable' to conform to 'Sendable'
            block($0, lock)
            ^
/Users/admin/builder/spi-builder-workspace/Tests/HAResetLock.test.swift:64:23: warning: capture of 'lock' with non-sendable type 'HAResetLock<() -> Void>' in a '@Sendable' closure
            block($0, lock)
                      ^
/Users/admin/builder/spi-builder-workspace/Source/Internal/HAResetLock.swift:3:16: note: generic class 'HAResetLock' does not conform to the 'Sendable' protocol
internal class HAResetLock<Value> {
               ^
/Users/admin/builder/spi-builder-workspace/Tests/HAResetLock.test.swift:1:11: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'HAKit'
@testable import HAKit
          ^
          @preconcurrency
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/HAResponseController.test.swift (in target 'Tests' from project 'HAKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Tests/HAResponseController.test.swift:276:18: warning: reference to static property 'log' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        HAGlobal.log = { level, message in
                 ^
/Users/admin/builder/spi-builder-workspace/Source/HAGlobal.swift:14:23: note: static property declared here
    public static var log: (LogLevel, String) -> Void = { _, _ in }
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HAResponseController.test.swift:279:22: warning: reference to static property 'log' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
            HAGlobal.log = { _, _ in }
                     ^
/Users/admin/builder/spi-builder-workspace/Source/HAGlobal.swift:14:23: note: static property declared here
    public static var log: (LogLevel, String) -> Void = { _, _ in }
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HAResponseController.test.swift:296:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 10.0)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/HAResponseController.test.swift:288:10: note: add '@MainActor' to make instance method 'waitForCallback()' part of global actor 'MainActor'
    func waitForCallback() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/HAResponseController.test.swift:296:9: warning: sending value of non-Sendable type 'HAResponseControllerTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 10.0)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/HAResponseController.test.swift:296:9: note: sending task-isolated value of non-Sendable type 'HAResponseControllerTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 10.0)
        ^
SwiftDriverJobDiscovery normal arm64 Compiling HAConnectionConfiguration.swift, HAConnectionInfo.swift, HAError.swift, HAGlobal.swift, HAKit.swift (in target 'HAKit' from project 'HAKit')
SwiftCompile normal arm64 Compiling\ HACachedUser.test.swift,\ HACachesContainer.test.swift,\ HACancellableImpl.test.swift,\ HAConnectionConfiguration.test.swift /Users/admin/builder/spi-builder-workspace/Tests/HACachedUser.test.swift /Users/admin/builder/spi-builder-workspace/Tests/HACachesContainer.test.swift /Users/admin/builder/spi-builder-workspace/Tests/HACancellableImpl.test.swift /Users/admin/builder/spi-builder-workspace/Tests/HAConnectionConfiguration.test.swift (in target 'Tests' from project 'HAKit')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/HACachedUser.test.swift (in target 'Tests' from project 'HAKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Tests/HACachedUser.test.swift:26:48: warning: reference to static property 'currentUser' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        XCTAssertEqual(populate.request.type, .currentUser)
                                               ^
/Users/admin/builder/spi-builder-workspace/Source/Requests/HARequestType.swift:58:23: note: static property declared here
    public static var currentUser: Self = "auth/current_user"
                      ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/HACachesContainer.test.swift (in target 'Tests' from project 'HAKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/HACancellableImpl.test.swift (in target 'Tests' from project 'HAKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Tests/HACancellableImpl.test.swift:19:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 10.0)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/HACancellableImpl.test.swift:5:10: note: add '@MainActor' to make instance method 'testInvokingHandler()' part of global actor 'MainActor'
    func testInvokingHandler() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/HACancellableImpl.test.swift:19:9: warning: sending value of non-Sendable type 'HACancellableImplTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 10.0)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/HACancellableImpl.test.swift:19:9: note: sending task-isolated value of non-Sendable type 'HACancellableImplTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 10.0)
        ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/HAConnectionConfiguration.test.swift (in target 'Tests' from project 'HAKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling HAConnectionImpl.swift, HAProtected.swift, HAReconnectManager.swift, HAResetLock.swift, HASchedulingTimer.swift (in target 'HAKit' from project 'HAKit')
SwiftCompile normal arm64 Compiling\ States.test.swift,\ StubbingURLProtocol.swift,\ TestAdditions.swift /Users/admin/builder/spi-builder-workspace/Tests/States.test.swift /Users/admin/builder/spi-builder-workspace/Tests/StubbingURLProtocol.swift /Users/admin/builder/spi-builder-workspace/Tests/TestAdditions.swift (in target 'Tests' from project 'HAKit')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/States.test.swift (in target 'Tests' from project 'HAKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Tests/States.test.swift:7:47: warning: reference to static property 'subscribeEvents' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        XCTAssertEqual(request.request.type, .subscribeEvents)
                                              ^
/Users/admin/builder/spi-builder-workspace/Source/Requests/HARequestType.swift:69:23: note: static property declared here
    public static var subscribeEvents: Self = "subscribe_events"
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/States.test.swift:8:83: warning: reference to static property 'stateChanged' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        XCTAssertEqual(request.request.data["event_type"] as? String, HAEventType.stateChanged.rawValue)
                                                                                  ^
/Users/admin/builder/spi-builder-workspace/Source/Convenience/Event.swift:87:23: note: static property declared here
    public static var stateChanged: Self = "state_changed"
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/States.test.swift:70:46: warning: reference to static property 'stateChanged' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        XCTAssertEqual(response.event.type, .stateChanged)
                                             ^
/Users/admin/builder/spi-builder-workspace/Source/Convenience/Event.swift:87:23: note: static property declared here
    public static var stateChanged: Self = "state_changed"
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/States.test.swift:114:46: warning: reference to static property 'stateChanged' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        XCTAssertEqual(response.event.type, .stateChanged)
                                             ^
/Users/admin/builder/spi-builder-workspace/Source/Convenience/Event.swift:87:23: note: static property declared here
    public static var stateChanged: Self = "state_changed"
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/States.test.swift:137:46: warning: reference to static property 'stateChanged' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        XCTAssertEqual(response.event.type, .stateChanged)
                                             ^
/Users/admin/builder/spi-builder-workspace/Source/Convenience/Event.swift:87:23: note: static property declared here
    public static var stateChanged: Self = "state_changed"
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/States.test.swift:145:47: warning: reference to static property 'subscribeEntities' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        XCTAssertEqual(request.request.type, .subscribeEntities)
                                              ^
/Users/admin/builder/spi-builder-workspace/Source/Requests/HARequestType.swift:73:23: note: static property declared here
    public static var subscribeEntities: Self = "subscribe_entities"
                      ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/StubbingURLProtocol.swift (in target 'Tests' from project 'HAKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Tests/StubbingURLProtocol.swift:6:24: warning: static property 'pending' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    private static var pending = [URL: PendingResult]()
                       ^
/Users/admin/builder/spi-builder-workspace/Tests/StubbingURLProtocol.swift:6:24: note: convert 'pending' to a 'let' constant to make 'Sendable' shared state immutable
    private static var pending = [URL: PendingResult]()
                   ~~~ ^
                   let
/Users/admin/builder/spi-builder-workspace/Tests/StubbingURLProtocol.swift:6:24: note: add '@MainActor' to make static property 'pending' part of global actor 'MainActor'
    private static var pending = [URL: PendingResult]()
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/StubbingURLProtocol.swift:6:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    private static var pending = [URL: PendingResult]()
                       ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/StubbingURLProtocol.swift:7:16: warning: static property 'received' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var received = [URL: URLRequest]()
               ^
/Users/admin/builder/spi-builder-workspace/Tests/StubbingURLProtocol.swift:7:16: note: convert 'received' to a 'let' constant to make 'Sendable' shared state immutable
    static var received = [URL: URLRequest]()
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/Tests/StubbingURLProtocol.swift:7:16: note: add '@MainActor' to make static property 'received' part of global actor 'MainActor'
    static var received = [URL: URLRequest]()
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/StubbingURLProtocol.swift:7:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var received = [URL: URLRequest]()
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/TestAdditions.swift (in target 'Tests' from project 'HAKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling HAConnection+Mock.swift (in target 'HAKit+Mocks' from project 'HAKit')
SwiftCompile normal arm64 Compiling\ HAReconnectManager.test.swift,\ HARequestController.test.swift,\ HARequestInvocation.test.swift,\ HARequestInvocationSingle.test.swift /Users/admin/builder/spi-builder-workspace/Tests/HAReconnectManager.test.swift /Users/admin/builder/spi-builder-workspace/Tests/HARequestController.test.swift /Users/admin/builder/spi-builder-workspace/Tests/HARequestInvocation.test.swift /Users/admin/builder/spi-builder-workspace/Tests/HARequestInvocationSingle.test.swift (in target 'Tests' from project 'HAKit')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/HAReconnectManager.test.swift (in target 'Tests' from project 'HAKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Tests/HAReconnectManager.test.swift:13:22: warning: reference to static property 'date' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        _ = HAGlobal.date()
                     ^
/Users/admin/builder/spi-builder-workspace/Source/HAGlobal.swift:16:23: note: static property declared here
    public static var date: () -> Date = Date.init
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HAReconnectManager.test.swift:104:18: warning: reference to static property 'date' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        HAGlobal.date = { date1 }
                 ^
/Users/admin/builder/spi-builder-workspace/Source/HAGlobal.swift:16:23: note: static property declared here
    public static var date: () -> Date = Date.init
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HAReconnectManager.test.swift:115:18: warning: reference to static property 'date' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        HAGlobal.date = { date2 }
                 ^
/Users/admin/builder/spi-builder-workspace/Source/HAGlobal.swift:16:23: note: static property declared here
    public static var date: () -> Date = Date.init
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HAReconnectManager.test.swift:122:18: warning: reference to static property 'date' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        HAGlobal.date = { date3 }
                 ^
/Users/admin/builder/spi-builder-workspace/Source/HAGlobal.swift:16:23: note: static property declared here
    public static var date: () -> Date = Date.init
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HAReconnectManager.test.swift:129:18: warning: reference to static property 'date' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        HAGlobal.date = { date4 }
                 ^
/Users/admin/builder/spi-builder-workspace/Source/HAGlobal.swift:16:23: note: static property declared here
    public static var date: () -> Date = Date.init
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HAReconnectManager.test.swift:136:18: warning: reference to static property 'date' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        HAGlobal.date = { date5 }
                 ^
/Users/admin/builder/spi-builder-workspace/Source/HAGlobal.swift:16:23: note: static property declared here
    public static var date: () -> Date = Date.init
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HAReconnectManager.test.swift:161:18: warning: reference to static property 'date' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        HAGlobal.date = { now }
                 ^
/Users/admin/builder/spi-builder-workspace/Source/HAGlobal.swift:16:23: note: static property declared here
    public static var date: () -> Date = Date.init
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HAReconnectManager.test.swift:175:18: warning: reference to static property 'date' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        HAGlobal.date = { now.addingTimeInterval(latency) }
                 ^
/Users/admin/builder/spi-builder-workspace/Source/HAGlobal.swift:16:23: note: static property declared here
    public static var date: () -> Date = Date.init
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HAReconnectManager.test.swift:191:18: warning: reference to static property 'date' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        HAGlobal.date = { now }
                 ^
/Users/admin/builder/spi-builder-workspace/Source/HAGlobal.swift:16:23: note: static property declared here
    public static var date: () -> Date = Date.init
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HAReconnectManager.test.swift:217:18: warning: reference to static property 'date' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        HAGlobal.date = { now }
                 ^
/Users/admin/builder/spi-builder-workspace/Source/HAGlobal.swift:16:23: note: static property declared here
    public static var date: () -> Date = Date.init
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HAReconnectManager.test.swift:239:18: warning: reference to static property 'date' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        HAGlobal.date = { now }
                 ^
/Users/admin/builder/spi-builder-workspace/Source/HAGlobal.swift:16:23: note: static property declared here
    public static var date: () -> Date = Date.init
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HAReconnectManager.test.swift:247:18: warning: reference to static property 'date' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        HAGlobal.date = { timer.fireDate.addingTimeInterval(500) }
                 ^
/Users/admin/builder/spi-builder-workspace/Source/HAGlobal.swift:16:23: note: static property declared here
    public static var date: () -> Date = Date.init
                      ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/HARequestController.test.swift (in target 'Tests' from project 'HAKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Tests/HARequestController.test.swift:60:41: warning: reference to static property 'get' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
            request: .init(type: .rest(.get, "test1"), data: [:]),
                                        ^
/Users/admin/builder/spi-builder-workspace/Source/Requests/HAHTTPMethod.swift:12:23: note: static property declared here
    public static var get: Self = "GET"
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestController.test.swift:65:41: warning: reference to static property 'post' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
            request: .init(type: .rest(.post, "test2"), data: [:]),
                                        ^
/Users/admin/builder/spi-builder-workspace/Source/Requests/HAHTTPMethod.swift:13:23: note: static property declared here
    public static var post: Self = "POST"
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestController.test.swift:105:41: warning: reference to static property 'get' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
            request: .init(type: .rest(.get, "test1"), data: [:]),
                                        ^
/Users/admin/builder/spi-builder-workspace/Source/Requests/HAHTTPMethod.swift:12:23: note: static property declared here
    public static var get: Self = "GET"
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestController.test.swift:276:46: warning: reference to static property 'unsubscribeEvents' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        XCTAssertEqual(cancel.request.type, .unsubscribeEvents)
                                             ^
/Users/admin/builder/spi-builder-workspace/Source/Requests/HARequestType.swift:71:23: note: static property declared here
    public static var unsubscribeEvents: Self = "unsubscribe_events"
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestController.test.swift:300:72: warning: reference to static property 'componentLoaded' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        XCTAssertEqual(Set(controller.retrySubscriptionsEvents), Set([.componentLoaded, .coreConfigUpdated]))
                                                                       ^
/Users/admin/builder/spi-builder-workspace/Source/Convenience/Event.swift:63:23: note: static property declared here
    public static var componentLoaded: Self = "component_loaded"
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestController.test.swift:300:90: warning: reference to static property 'coreConfigUpdated' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        XCTAssertEqual(Set(controller.retrySubscriptionsEvents), Set([.componentLoaded, .coreConfigUpdated]))
                                                                                         ^
/Users/admin/builder/spi-builder-workspace/Source/Convenience/Event.swift:65:23: note: static property declared here
    public static var coreConfigUpdated: Self = "core_config_updated"
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestController.test.swift:347:18: warning: reference to static property 'date' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        HAGlobal.date = { date1 }
                 ^
/Users/admin/builder/spi-builder-workspace/Source/HAGlobal.swift:16:23: note: static property declared here
    public static var date: () -> Date = Date.init
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestController.test.swift:355:18: warning: reference to static property 'date' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        HAGlobal.date = { date2 }
                 ^
/Users/admin/builder/spi-builder-workspace/Source/HAGlobal.swift:16:23: note: static property declared here
    public static var date: () -> Date = Date.init
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestController.test.swift:378:18: warning: reference to static property 'date' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        HAGlobal.date = { startDate }
                 ^
/Users/admin/builder/spi-builder-workspace/Source/HAGlobal.swift:16:23: note: static property declared here
    public static var date: () -> Date = Date.init
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestController.test.swift:393:18: warning: reference to static property 'date' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        HAGlobal.date = { startDate.addingTimeInterval(5.0) }
                 ^
/Users/admin/builder/spi-builder-workspace/Source/HAGlobal.swift:16:23: note: static property declared here
    public static var date: () -> Date = Date.init
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestController.test.swift:409:18: warning: reference to static property 'date' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        HAGlobal.date = { startDate }
                 ^
/Users/admin/builder/spi-builder-workspace/Source/HAGlobal.swift:16:23: note: static property declared here
    public static var date: () -> Date = Date.init
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestController.test.swift:424:18: warning: reference to static property 'date' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        HAGlobal.date = { startDate.addingTimeInterval(15.0) }
                 ^
/Users/admin/builder/spi-builder-workspace/Source/HAGlobal.swift:16:23: note: static property declared here
    public static var date: () -> Date = Date.init
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestController.test.swift:437:18: warning: reference to static property 'date' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        HAGlobal.date = { startDate }
                 ^
/Users/admin/builder/spi-builder-workspace/Source/HAGlobal.swift:16:23: note: static property declared here
    public static var date: () -> Date = Date.init
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestController.test.swift:464:18: warning: reference to static property 'date' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        HAGlobal.date = { startDate.addingTimeInterval(10.0) }
                 ^
/Users/admin/builder/spi-builder-workspace/Source/HAGlobal.swift:16:23: note: static property declared here
    public static var date: () -> Date = Date.init
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestController.test.swift:483:18: warning: reference to static property 'date' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        HAGlobal.date = { startDate }
                 ^
/Users/admin/builder/spi-builder-workspace/Source/HAGlobal.swift:16:23: note: static property declared here
    public static var date: () -> Date = Date.init
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestController.test.swift:498:18: warning: reference to static property 'date' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        HAGlobal.date = { startDate.addingTimeInterval(3600.0) }
                 ^
/Users/admin/builder/spi-builder-workspace/Source/HAGlobal.swift:16:23: note: static property declared here
    public static var date: () -> Date = Date.init
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestController.test.swift:511:18: warning: reference to static property 'date' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        HAGlobal.date = { startDate }
                 ^
/Users/admin/builder/spi-builder-workspace/Source/HAGlobal.swift:16:23: note: static property declared here
    public static var date: () -> Date = Date.init
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestController.test.swift:531:18: warning: reference to static property 'date' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        HAGlobal.date = { startDate.addingTimeInterval(15.0) }
                 ^
/Users/admin/builder/spi-builder-workspace/Source/HAGlobal.swift:16:23: note: static property declared here
    public static var date: () -> Date = Date.init
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestController.test.swift:544:18: warning: reference to static property 'date' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        HAGlobal.date = { startDate }
                 ^
/Users/admin/builder/spi-builder-workspace/Source/HAGlobal.swift:16:23: note: static property declared here
    public static var date: () -> Date = Date.init
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestController.test.swift:560:18: warning: reference to static property 'date' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        HAGlobal.date = { startDate.addingTimeInterval(15.0) }
                 ^
/Users/admin/builder/spi-builder-workspace/Source/HAGlobal.swift:16:23: note: static property declared here
    public static var date: () -> Date = Date.init
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestController.test.swift:573:18: warning: reference to static property 'date' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        HAGlobal.date = { startDate }
                 ^
/Users/admin/builder/spi-builder-workspace/Source/HAGlobal.swift:16:23: note: static property declared here
    public static var date: () -> Date = Date.init
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestController.test.swift:588:18: warning: reference to static property 'date' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        HAGlobal.date = { startDate.addingTimeInterval(9.0) }
                 ^
/Users/admin/builder/spi-builder-workspace/Source/HAGlobal.swift:16:23: note: static property declared here
    public static var date: () -> Date = Date.init
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestController.test.swift:597:18: warning: reference to static property 'date' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        HAGlobal.date = { startDate.addingTimeInterval(11.0) }
                 ^
/Users/admin/builder/spi-builder-workspace/Source/HAGlobal.swift:16:23: note: static property declared here
    public static var date: () -> Date = Date.init
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestController.test.swift:607:18: warning: reference to static property 'date' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        HAGlobal.date = { startDate }
                 ^
/Users/admin/builder/spi-builder-workspace/Source/HAGlobal.swift:16:23: note: static property declared here
    public static var date: () -> Date = Date.init
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestController.test.swift:622:18: warning: reference to static property 'date' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        HAGlobal.date = { startDate.addingTimeInterval(60.0) }
                 ^
/Users/admin/builder/spi-builder-workspace/Source/HAGlobal.swift:16:23: note: static property declared here
    public static var date: () -> Date = Date.init
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestController.test.swift:631:18: warning: reference to static property 'date' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        HAGlobal.date = { startDate.addingTimeInterval(180.0) }
                 ^
/Users/admin/builder/spi-builder-workspace/Source/HAGlobal.swift:16:23: note: static property declared here
    public static var date: () -> Date = Date.init
                      ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/HARequestInvocation.test.swift (in target 'Tests' from project 'HAKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Tests/HARequestInvocation.test.swift:6:40: warning: reference to static property 'callService' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        let request = HARequest(type: .callService, data: [:])
                                       ^
/Users/admin/builder/spi-builder-workspace/Source/Requests/HARequestType.swift:56:23: note: static property declared here
    public static var callService: Self = "call_service"
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestInvocation.test.swift:17:20: warning: reference to static property 'renderTemplate' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
            type: .renderTemplate,
                   ^
/Users/admin/builder/spi-builder-workspace/Source/Requests/HARequestType.swift:78:23: note: static property declared here
    public static var renderTemplate: Self = "render_template"
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestInvocation.test.swift:28:20: warning: reference to static property 'renderTemplate' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
            type: .renderTemplate,
                   ^
/Users/admin/builder/spi-builder-workspace/Source/Requests/HARequestType.swift:78:23: note: static property declared here
    public static var renderTemplate: Self = "render_template"
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestInvocation.test.swift:39:18: warning: reference to static property 'date' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        HAGlobal.date = { currentDate }
                 ^
/Users/admin/builder/spi-builder-workspace/Source/HAGlobal.swift:16:23: note: static property declared here
    public static var date: () -> Date = Date.init
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestInvocation.test.swift:41:40: warning: reference to static property 'callService' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        let request = HARequest(type: .callService, data: [:], retryDuration: .init(value: 10, unit: .seconds))
                                       ^
/Users/admin/builder/spi-builder-workspace/Source/Requests/HARequestType.swift:56:23: note: static property declared here
    public static var callService: Self = "call_service"
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestInvocation.test.swift:48:18: warning: reference to static property 'date' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        HAGlobal.date = { currentDate.addingTimeInterval(5.0) }
                 ^
/Users/admin/builder/spi-builder-workspace/Source/HAGlobal.swift:16:23: note: static property declared here
    public static var date: () -> Date = Date.init
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestInvocation.test.swift:52:18: warning: reference to static property 'date' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        HAGlobal.date = { currentDate.addingTimeInterval(9.9) }
                 ^
/Users/admin/builder/spi-builder-workspace/Source/HAGlobal.swift:16:23: note: static property declared here
    public static var date: () -> Date = Date.init
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestInvocation.test.swift:56:18: warning: reference to static property 'date' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        HAGlobal.date = { currentDate.addingTimeInterval(10.0) }
                 ^
/Users/admin/builder/spi-builder-workspace/Source/HAGlobal.swift:16:23: note: static property declared here
    public static var date: () -> Date = Date.init
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestInvocation.test.swift:62:18: warning: reference to static property 'date' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        HAGlobal.date = { currentDate }
                 ^
/Users/admin/builder/spi-builder-workspace/Source/HAGlobal.swift:16:23: note: static property declared here
    public static var date: () -> Date = Date.init
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestInvocation.test.swift:64:40: warning: reference to static property 'callService' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        let request = HARequest(type: .callService, data: [:], retryDuration: .init(value: 10, unit: .seconds))
                                       ^
/Users/admin/builder/spi-builder-workspace/Source/Requests/HARequestType.swift:56:23: note: static property declared here
    public static var callService: Self = "call_service"
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestInvocation.test.swift:68:18: warning: reference to static property 'date' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        HAGlobal.date = { currentDate.addingTimeInterval(10.1) }
                 ^
/Users/admin/builder/spi-builder-workspace/Source/HAGlobal.swift:16:23: note: static property declared here
    public static var date: () -> Date = Date.init
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestInvocation.test.swift:72:18: warning: reference to static property 'date' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        HAGlobal.date = { currentDate.addingTimeInterval(60.0) }
                 ^
/Users/admin/builder/spi-builder-workspace/Source/HAGlobal.swift:16:23: note: static property declared here
    public static var date: () -> Date = Date.init
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestInvocation.test.swift:78:18: warning: reference to static property 'date' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        HAGlobal.date = { currentDate }
                 ^
/Users/admin/builder/spi-builder-workspace/Source/HAGlobal.swift:16:23: note: static property declared here
    public static var date: () -> Date = Date.init
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestInvocation.test.swift:80:40: warning: reference to static property 'callService' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        let request = HARequest(type: .callService, data: [:], retryDuration: nil)
                                       ^
/Users/admin/builder/spi-builder-workspace/Source/Requests/HARequestType.swift:56:23: note: static property declared here
    public static var callService: Self = "call_service"
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestInvocation.test.swift:87:18: warning: reference to static property 'date' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        HAGlobal.date = { currentDate.addingTimeInterval(3600.0) }
                 ^
/Users/admin/builder/spi-builder-workspace/Source/HAGlobal.swift:16:23: note: static property declared here
    public static var date: () -> Date = Date.init
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestInvocation.test.swift:91:18: warning: reference to static property 'date' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        HAGlobal.date = { currentDate.addingTimeInterval(86400.0) }
                 ^
/Users/admin/builder/spi-builder-workspace/Source/HAGlobal.swift:16:23: note: static property declared here
    public static var date: () -> Date = Date.init
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestInvocation.test.swift:97:18: warning: reference to static property 'date' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        HAGlobal.date = { currentDate }
                 ^
/Users/admin/builder/spi-builder-workspace/Source/HAGlobal.swift:16:23: note: static property declared here
    public static var date: () -> Date = Date.init
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestInvocation.test.swift:99:40: warning: reference to static property 'callService' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        let request = HARequest(type: .callService, data: [:], retryDuration: .init(value: 30, unit: .seconds))
                                       ^
/Users/admin/builder/spi-builder-workspace/Source/Requests/HARequestType.swift:56:23: note: static property declared here
    public static var callService: Self = "call_service"
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestInvocation.test.swift:103:18: warning: reference to static property 'date' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        HAGlobal.date = { currentDate.addingTimeInterval(20.0) }
                 ^
/Users/admin/builder/spi-builder-workspace/Source/HAGlobal.swift:16:23: note: static property declared here
    public static var date: () -> Date = Date.init
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestInvocation.test.swift:107:18: warning: reference to static property 'date' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        HAGlobal.date = { currentDate.addingTimeInterval(31.0) }
                 ^
/Users/admin/builder/spi-builder-workspace/Source/HAGlobal.swift:16:23: note: static property declared here
    public static var date: () -> Date = Date.init
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestInvocation.test.swift:113:18: warning: reference to static property 'date' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        HAGlobal.date = { currentDate }
                 ^
/Users/admin/builder/spi-builder-workspace/Source/HAGlobal.swift:16:23: note: static property declared here
    public static var date: () -> Date = Date.init
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestInvocation.test.swift:115:40: warning: reference to static property 'callService' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        let request = HARequest(type: .callService, data: [:], retryDuration: .init(value: 500, unit: .milliseconds))
                                       ^
/Users/admin/builder/spi-builder-workspace/Source/Requests/HARequestType.swift:56:23: note: static property declared here
    public static var callService: Self = "call_service"
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestInvocation.test.swift:119:18: warning: reference to static property 'date' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        HAGlobal.date = { currentDate.addingTimeInterval(0.3) }
                 ^
/Users/admin/builder/spi-builder-workspace/Source/HAGlobal.swift:16:23: note: static property declared here
    public static var date: () -> Date = Date.init
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestInvocation.test.swift:123:18: warning: reference to static property 'date' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        HAGlobal.date = { currentDate.addingTimeInterval(0.6) }
                 ^
/Users/admin/builder/spi-builder-workspace/Source/HAGlobal.swift:16:23: note: static property declared here
    public static var date: () -> Date = Date.init
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestInvocation.test.swift:129:18: warning: reference to static property 'date' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        HAGlobal.date = { currentDate }
                 ^
/Users/admin/builder/spi-builder-workspace/Source/HAGlobal.swift:16:23: note: static property declared here
    public static var date: () -> Date = Date.init
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestInvocation.test.swift:131:40: warning: reference to static property 'callService' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        let request = HARequest(type: .callService, data: [:])
                                       ^
/Users/admin/builder/spi-builder-workspace/Source/Requests/HARequestType.swift:56:23: note: static property declared here
    public static var callService: Self = "call_service"
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestInvocation.test.swift:140:18: warning: reference to static property 'date' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        HAGlobal.date = { currentDate }
                 ^
/Users/admin/builder/spi-builder-workspace/Source/HAGlobal.swift:16:23: note: static property declared here
    public static var date: () -> Date = Date.init
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestInvocation.test.swift:143:40: warning: reference to static property 'callService' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        let request = HARequest(type: .callService, data: [:], retryDuration: .init(value: 0, unit: .seconds))
                                       ^
/Users/admin/builder/spi-builder-workspace/Source/Requests/HARequestType.swift:56:23: note: static property declared here
    public static var callService: Self = "call_service"
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestInvocation.test.swift:147:18: warning: reference to static property 'date' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        HAGlobal.date = { currentDate.addingTimeInterval(0.001) }
                 ^
/Users/admin/builder/spi-builder-workspace/Source/HAGlobal.swift:16:23: note: static property declared here
    public static var date: () -> Date = Date.init
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestInvocation.test.swift:153:18: warning: reference to static property 'date' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        HAGlobal.date = { currentDate }
                 ^
/Users/admin/builder/spi-builder-workspace/Source/HAGlobal.swift:16:23: note: static property declared here
    public static var date: () -> Date = Date.init
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestInvocation.test.swift:156:41: warning: reference to static property 'callService' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        let request1 = HARequest(type: .callService, data: [:], retryDuration: .init(value: 1, unit: .minutes))
                                        ^
/Users/admin/builder/spi-builder-workspace/Source/Requests/HARequestType.swift:56:23: note: static property declared here
    public static var callService: Self = "call_service"
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestInvocation.test.swift:159:18: warning: reference to static property 'date' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        HAGlobal.date = { currentDate.addingTimeInterval(59.0) }
                 ^
/Users/admin/builder/spi-builder-workspace/Source/HAGlobal.swift:16:23: note: static property declared here
    public static var date: () -> Date = Date.init
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestInvocation.test.swift:162:18: warning: reference to static property 'date' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        HAGlobal.date = { currentDate.addingTimeInterval(61.0) }
                 ^
/Users/admin/builder/spi-builder-workspace/Source/HAGlobal.swift:16:23: note: static property declared here
    public static var date: () -> Date = Date.init
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestInvocation.test.swift:166:18: warning: reference to static property 'date' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        HAGlobal.date = { currentDate }
                 ^
/Users/admin/builder/spi-builder-workspace/Source/HAGlobal.swift:16:23: note: static property declared here
    public static var date: () -> Date = Date.init
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestInvocation.test.swift:167:41: warning: reference to static property 'callService' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        let request2 = HARequest(type: .callService, data: [:], retryDuration: .init(value: 1, unit: .hours))
                                        ^
/Users/admin/builder/spi-builder-workspace/Source/Requests/HARequestType.swift:56:23: note: static property declared here
    public static var callService: Self = "call_service"
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestInvocation.test.swift:170:18: warning: reference to static property 'date' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        HAGlobal.date = { currentDate.addingTimeInterval(3599.0) }
                 ^
/Users/admin/builder/spi-builder-workspace/Source/HAGlobal.swift:16:23: note: static property declared here
    public static var date: () -> Date = Date.init
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestInvocation.test.swift:173:18: warning: reference to static property 'date' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        HAGlobal.date = { currentDate.addingTimeInterval(3601.0) }
                 ^
/Users/admin/builder/spi-builder-workspace/Source/HAGlobal.swift:16:23: note: static property declared here
    public static var date: () -> Date = Date.init
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestInvocation.test.swift:179:18: warning: reference to static property 'date' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        HAGlobal.date = { startDate }
                 ^
/Users/admin/builder/spi-builder-workspace/Source/HAGlobal.swift:16:23: note: static property declared here
    public static var date: () -> Date = Date.init
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestInvocation.test.swift:181:40: warning: reference to static property 'callService' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        let request = HARequest(type: .callService, data: [:])
                                       ^
/Users/admin/builder/spi-builder-workspace/Source/Requests/HARequestType.swift:56:23: note: static property declared here
    public static var callService: Self = "call_service"
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestInvocation.test.swift:187:18: warning: reference to static property 'date' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        HAGlobal.date = { startDate.addingTimeInterval(100) }
                 ^
/Users/admin/builder/spi-builder-workspace/Source/HAGlobal.swift:16:23: note: static property declared here
    public static var date: () -> Date = Date.init
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestInvocation.test.swift:193:18: warning: reference to static property 'date' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        HAGlobal.date = { requestCreationDate }
                 ^
/Users/admin/builder/spi-builder-workspace/Source/HAGlobal.swift:16:23: note: static property declared here
    public static var date: () -> Date = Date.init
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestInvocation.test.swift:196:40: warning: reference to static property 'callService' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        let request = HARequest(type: .callService, data: [:], retryDuration: .init(value: 10, unit: .seconds))
                                       ^
/Users/admin/builder/spi-builder-workspace/Source/Requests/HARequestType.swift:56:23: note: static property declared here
    public static var callService: Self = "call_service"
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestInvocation.test.swift:200:18: warning: reference to static property 'date' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        HAGlobal.date = { invocationCreationDate }
                 ^
/Users/admin/builder/spi-builder-workspace/Source/HAGlobal.swift:16:23: note: static property declared here
    public static var date: () -> Date = Date.init
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestInvocation.test.swift:210:18: warning: reference to static property 'date' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        HAGlobal.date = { requestCreationDate.addingTimeInterval(10.0) }
                 ^
/Users/admin/builder/spi-builder-workspace/Source/HAGlobal.swift:16:23: note: static property declared here
    public static var date: () -> Date = Date.init
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestInvocation.test.swift:214:18: warning: reference to static property 'date' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        HAGlobal.date = { requestCreationDate.addingTimeInterval(16.0) }
                 ^
/Users/admin/builder/spi-builder-workspace/Source/HAGlobal.swift:16:23: note: static property declared here
    public static var date: () -> Date = Date.init
                      ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/HARequestInvocationSingle.test.swift (in target 'Tests' from project 'HAKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Tests/HARequestInvocationSingle.test.swift:7:35: warning: reference to static property 'callService' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
            request: .init(type: .callService, data: [:]),
                                  ^
/Users/admin/builder/spi-builder-workspace/Source/Requests/HARequestType.swift:56:23: note: static property declared here
    public static var callService: Self = "call_service"
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestInvocationSingle.test.swift:15:35: warning: reference to static property 'callService' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
            request: .init(type: .callService, data: [:]),
                                  ^
/Users/admin/builder/spi-builder-workspace/Source/Requests/HARequestType.swift:56:23: note: static property declared here
    public static var callService: Self = "call_service"
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestInvocationSingle.test.swift:30:35: warning: reference to static property 'callService' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
            request: .init(type: .callService, data: [:]),
                                  ^
/Users/admin/builder/spi-builder-workspace/Source/Requests/HARequestType.swift:56:23: note: static property declared here
    public static var callService: Self = "call_service"
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestInvocationSingle.test.swift:50:35: warning: reference to static property 'callService' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
            request: .init(type: .callService, data: [:]),
                                  ^
/Users/admin/builder/spi-builder-workspace/Source/Requests/HARequestType.swift:56:23: note: static property declared here
    public static var callService: Self = "call_service"
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestInvocationSingle.test.swift:67:9: warning: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 10.0)
        ^
XCTest.XCTestCase.waitForExpectations:2:22: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable ((any Error)?) -> Void)? = nil)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/HARequestInvocationSingle.test.swift:41:10: note: add '@MainActor' to make instance method 'testCompletionInvokedOnceAndCleared()' part of global actor 'MainActor'
    func testCompletionInvokedOnceAndCleared() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/HARequestInvocationSingle.test.swift:67:9: warning: sending value of non-Sendable type 'HARequestInvocationSingleTests' risks causing data races; this is an error in the Swift 6 language mode
        waitForExpectations(timeout: 10.0)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/HARequestInvocationSingle.test.swift:67:9: note: sending task-isolated value of non-Sendable type 'HARequestInvocationSingleTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
        waitForExpectations(timeout: 10.0)
        ^
SwiftDriverJobDiscovery normal arm64 Emitting module for Tests (in target 'Tests' from project 'HAKit')
SwiftDriver\ Compilation\ Requirements Tests normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Tests' from project 'HAKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Tests -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/Tests.build/Objects-normal/arm64/Tests.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos14.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -sanitize\=thread -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/Tests.build/Objects-normal-tsan/arm64/Tests-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/Tests.build/Objects-normal-tsan/arm64/Tests.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/Tests.build/Objects-normal-tsan/arm64/Tests_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/Tests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/Tests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/Tests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling HAResponseVoid.test.swift, HAURLSessionDelegate.test.swift, HAWebSocketResponse.test.swift (in target 'Tests' from project 'HAKit')
SwiftDriver\ Compilation HAKit normal arm64 com.apple.xcode.tools.swift.compiler (in target 'HAKit' from project 'HAKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name HAKit -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/HAKit.build/Objects-normal/arm64/HAKit.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos10.14 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -sanitize\=thread -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/HAKit.build/Objects-normal-tsan/arm64/HAKit-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/HAKit.build/Objects-normal-tsan/arm64/HAKit.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/HAKit.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/HAKit.build/Objects-normal-tsan/arm64/HAKit_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/HAKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/HAKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/HAKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/HAKit.build/Objects-normal-tsan/arm64/HAKit-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriver\ Compilation HAKit+Mocks normal arm64 com.apple.xcode.tools.swift.compiler (in target 'HAKit+Mocks' from project 'HAKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name HAKit_Mocks -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/HAKit+Mocks.build/Objects-normal/arm64/HAKit+Mocks.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos10.14 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -sanitize\=thread -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -parse-as-library -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/HAKit+Mocks.build/Objects-normal-tsan/arm64/HAKit+Mocks-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/HAKit+Mocks.build/Objects-normal-tsan/arm64/HAKit_Mocks.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/HAKit+Mocks.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/HAKit+Mocks.build/Objects-normal-tsan/arm64/HAKit+Mocks_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/HAKit+Mocks.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/HAKit+Mocks.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/HAKit+Mocks.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/HAKit+Mocks.build/Objects-normal-tsan/arm64/HAKit+Mocks-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling HACachedUser.test.swift, HACachesContainer.test.swift, HACancellableImpl.test.swift, HAConnectionConfiguration.test.swift (in target 'Tests' from project 'HAKit')
SwiftDriverJobDiscovery normal arm64 Compiling HAWebSocketResponseFixture.swift, RenderTemplate.test.swift, Services.test.swift (in target 'Tests' from project 'HAKit')
SwiftDriverJobDiscovery normal arm64 Compiling HAReconnectManager.test.swift, HARequestController.test.swift, HARequestInvocation.test.swift, HARequestInvocationSingle.test.swift (in target 'Tests' from project 'HAKit')
SwiftDriverJobDiscovery normal arm64 Compiling HAEntity+CompressedEntity.test.swift, HAEntity.test.swift, HAError.test.swift, HAKit.test.swift (in target 'Tests' from project 'HAKit')
SwiftDriverJobDiscovery normal arm64 Compiling States.test.swift, StubbingURLProtocol.swift, TestAdditions.swift (in target 'Tests' from project 'HAKit')
SwiftDriverJobDiscovery normal arm64 Compiling CurrentUser.test.swift, Event.test.swift, FakeEngine.swift, HACache.test.swift (in target 'Tests' from project 'HAKit')
SwiftDriverJobDiscovery normal arm64 Compiling HARequestInvocationSubscription.test.swift, HAResetLock.test.swift, HAResponseController.test.swift (in target 'Tests' from project 'HAKit')
SwiftDriverJobDiscovery normal arm64 Compiling HACacheKeyStates.test.swift, HACachePopulateInfo.test.swift, HACacheSubscribeInfo.test.swift, HACachedStates.test.swift (in target 'Tests' from project 'HAKit')
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/HAKit.o normal (in target 'HAKit' from project 'HAKit')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-macos10.14 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/HAKit.build/Objects-normal/arm64/HAKit.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/HAKit.build/Objects-normal-tsan/arm64/HAKit_lto.o -rdynamic -Xlinker -no_deduplicate -fsanitize\=thread -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/HAKit.build/Objects-normal-tsan/arm64/HAKit_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/HAKit.build/Objects-normal-tsan/arm64/HAKit.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/HAKit.o
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Tests.swiftmodule/arm64-apple-macos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/Tests.build/Objects-normal-tsan/arm64/Tests.swiftmodule (in target 'Tests' from project 'HAKit')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/Tests.build/Objects-normal-tsan/arm64/Tests.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Tests.swiftmodule/arm64-apple-macos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Tests.swiftmodule/arm64-apple-macos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/Tests.build/Objects-normal-tsan/arm64/Tests.swiftdoc (in target 'Tests' from project 'HAKit')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/Tests.build/Objects-normal-tsan/arm64/Tests.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Tests.swiftmodule/arm64-apple-macos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Tests.swiftmodule/arm64-apple-macos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/Tests.build/Objects-normal-tsan/arm64/Tests.abi.json (in target 'Tests' from project 'HAKit')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/Tests.build/Objects-normal-tsan/arm64/Tests.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Tests.swiftmodule/arm64-apple-macos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Tests.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/Tests.build/Objects-normal-tsan/arm64/Tests.swiftsourceinfo (in target 'Tests' from project 'HAKit')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/Tests.build/Objects-normal-tsan/arm64/Tests.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Tests.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo
ExtractAppIntentsMetadata (in target 'HAKit' from project 'HAKit')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name HAKit --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk --xcode-version 16E140 --platform-family macOS --deployment-target 10.14 --bundle-identifier spi-builder-workspace.HAKit --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/HAKit.appintents --target-triple arm64-apple-macos10.14 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/HAKit.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/HAKit.build/Objects-normal-tsan/arm64/HAKit_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/HAKit.build/Objects-normal-tsan/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/HAKit.build/Objects-normal/arm64/HAKit.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/HAKit.build/HAKit.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/HAKit.build/HAKit.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/HAKit.build/Objects-normal/arm64/HAKit.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2026-04-19 17:54:41.248 appintentsmetadataprocessor[1157:5924] Starting appintentsmetadataprocessor export
2026-04-19 17:54:41.283 appintentsmetadataprocessor[1157:5924] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/HAKit.o (in target 'HAKit' from project 'HAKit')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/HAKit.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/HAKit+PromiseKit.o normal (in target 'HAKit+PromiseKit' from project 'HAKit')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-macos10.14 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/HAKit+PromiseKit.build/Objects-normal/arm64/HAKit+PromiseKit.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/HAKit+PromiseKit.build/Objects-normal-tsan/arm64/HAKit+PromiseKit_lto.o -rdynamic -Xlinker -no_deduplicate -fsanitize\=thread -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/HAKit+PromiseKit.build/Objects-normal-tsan/arm64/HAKit+PromiseKit_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/HAKit+PromiseKit.build/Objects-normal-tsan/arm64/HAKit_PromiseKit.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/HAKit+PromiseKit.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/HAKit+Mocks.o normal (in target 'HAKit+Mocks' from project 'HAKit')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-macos10.14 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/HAKit+Mocks.build/Objects-normal/arm64/HAKit+Mocks.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/HAKit+Mocks.build/Objects-normal-tsan/arm64/HAKit+Mocks_lto.o -rdynamic -Xlinker -no_deduplicate -fsanitize\=thread -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/HAKit+Mocks.build/Objects-normal-tsan/arm64/HAKit+Mocks_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/HAKit+Mocks.build/Objects-normal-tsan/arm64/HAKit_Mocks.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/HAKit+Mocks.o
ExtractAppIntentsMetadata (in target 'HAKit+PromiseKit' from project 'HAKit')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name HAKit_PromiseKit --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk --xcode-version 16E140 --platform-family macOS --deployment-target 10.14 --bundle-identifier spi-builder-workspace.HAKit-PromiseKit --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/HAKit_PromiseKit.appintents --target-triple arm64-apple-macos10.14 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/HAKit+PromiseKit.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/HAKit+PromiseKit.build/Objects-normal-tsan/arm64/HAKit+PromiseKit_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/HAKit+PromiseKit.build/Objects-normal-tsan/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/HAKit+PromiseKit.build/Objects-normal/arm64/HAKit+PromiseKit.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/HAKit+PromiseKit.build/HAKit+PromiseKit.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/HAKit+PromiseKit.build/HAKit+PromiseKit.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/HAKit+PromiseKit.build/Objects-normal/arm64/HAKit+PromiseKit.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2026-04-19 17:54:41.332 appintentsmetadataprocessor[1162:5954] Starting appintentsmetadataprocessor export
2026-04-19 17:54:41.367 appintentsmetadataprocessor[1162:5954] Extracted no relevant App Intents symbols, skipping writing output
ExtractAppIntentsMetadata (in target 'HAKit+Mocks' from project 'HAKit')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name HAKit_Mocks --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk --xcode-version 16E140 --platform-family macOS --deployment-target 10.14 --bundle-identifier spi-builder-workspace.HAKit-Mocks --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/HAKit_Mocks.appintents --target-triple arm64-apple-macos10.14 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/HAKit+Mocks.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/HAKit+Mocks.build/Objects-normal-tsan/arm64/HAKit+Mocks_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/HAKit+Mocks.build/Objects-normal-tsan/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/HAKit+Mocks.build/Objects-normal/arm64/HAKit+Mocks.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/HAKit+Mocks.build/HAKit+Mocks.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/HAKit+Mocks.build/HAKit+Mocks.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/HAKit+Mocks.build/Objects-normal/arm64/HAKit+Mocks.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2026-04-19 17:54:41.332 appintentsmetadataprocessor[1163:5955] Starting appintentsmetadataprocessor export
2026-04-19 17:54:41.367 appintentsmetadataprocessor[1163:5955] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/HAKit+PromiseKit.o (in target 'HAKit+PromiseKit' from project 'HAKit')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/HAKit+PromiseKit.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/HAKit+Mocks.o (in target 'HAKit+Mocks' from project 'HAKit')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/HAKit+Mocks.o
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Tests.xctest/Contents/Resources/Starscream_Starscream.bundle /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Starscream_Starscream.bundle (in target 'Tests' from project 'HAKit')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Starscream_Starscream.bundle /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Tests.xctest/Contents/Resources
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Tests.xctest/Contents/Resources/PromiseKit_PromiseKit.bundle /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PromiseKit_PromiseKit.bundle (in target 'Tests' from project 'HAKit')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PromiseKit_PromiseKit.bundle /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Tests.xctest/Contents/Resources
ProcessInfoPlistFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Tests.xctest/Contents/Info.plist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/Tests.build/empty-Tests.plist (in target 'Tests' from project 'HAKit')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-infoPlistUtility /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/Tests.build/empty-Tests.plist -producttype com.apple.product-type.bundle.unit-test -expandbuildsettings -platform macosx -scanforprivacyfile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Tests.xctest/Contents/Resources/PromiseKit_PromiseKit.bundle -scanforprivacyfile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Tests.xctest/Contents/Resources/Starscream_Starscream.bundle -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Tests.xctest/Contents/Info.plist
SwiftDriverJobDiscovery normal arm64 Compiling HAConnectionImpl.test.swift, HAConnectionInfo.test.swift, HAData.test.swift, HADataDecodable.test.swift (in target 'Tests' from project 'HAKit')
SwiftDriver\ Compilation Tests normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Tests' from project 'HAKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Tests -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/Tests.build/Objects-normal/arm64/Tests.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos14.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -sanitize\=thread -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/Tests.build/Objects-normal-tsan/arm64/Tests-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/Tests.build/Objects-normal-tsan/arm64/Tests.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/Tests.build/Objects-normal-tsan/arm64/Tests_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/Tests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/Tests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/Tests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Tests.xctest/Contents/MacOS/Tests normal (in target 'Tests' from project 'HAKit')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-macos14.0 -bundle -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/Tests.build/Objects-normal/arm64/Tests.LinkFileList -Xlinker -rpath -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -Xlinker -rpath -Xlinker @loader_path/Frameworks -Xlinker -rpath -Xlinker @loader_path/../Frameworks -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/Tests.build/Objects-normal-tsan/arm64/Tests_lto.o -rdynamic -Xlinker -no_deduplicate -fsanitize\=thread -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/Tests.build/Objects-normal-tsan/arm64/Tests_dependency_info.dat -fobjc-link-runtime -fprofile-instr-generate -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/Tests.build/Objects-normal-tsan/arm64/Tests.swiftmodule -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -framework XCTest -lXCTestSwiftSupport -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Tests.xctest/Contents/MacOS/Tests -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Starscream.build/Debug/Starscream.build/Objects-normal-tsan/arm64/Starscream.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/HAKit.build/Objects-normal-tsan/arm64/HAKit.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PromiseKit.build/Debug/PromiseKit.build/Objects-normal-tsan/arm64/PromiseKit.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/HAKit+PromiseKit.build/Objects-normal-tsan/arm64/HAKit_PromiseKit.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/HAKit+Mocks.build/Objects-normal-tsan/arm64/HAKit_Mocks.swiftmodule
CopySwiftLibs /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Tests.xctest (in target 'Tests' from project 'HAKit')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftStdLibTool --copy --verbose --scan-executable /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Tests.xctest/Contents/MacOS/Tests --scan-folder /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Tests.xctest/Contents/Frameworks --scan-folder /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Tests.xctest/Contents/PlugIns --scan-folder /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Tests.xctest/Contents/Library/SystemExtensions --scan-folder /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Tests.xctest/Contents/Extensions --platform macosx --toolchain /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --destination /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Tests.xctest/Contents/Frameworks --strip-bitcode --scan-executable /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/libXCTestSwiftSupport.dylib --strip-bitcode-tool /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip --emit-dependency-info /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/Tests.build/SwiftStdLibToolInputDependencies.dep --filter-for-swift-os
Ignoring --strip-bitcode because --sign was not passed
ExtractAppIntentsMetadata (in target 'Tests' from project 'HAKit')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name Tests --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk --xcode-version 16E140 --platform-family macOS --deployment-target 14.0 --bundle-identifier spi-builder-workspace.Tests --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Tests.xctest/Contents/Resources --target-triple arm64-apple-macos14.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Tests.xctest/Contents/MacOS/Tests --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/Tests.build/Objects-normal-tsan/arm64/Tests_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/Tests.build/Objects-normal-tsan/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/Tests.build/Objects-normal/arm64/Tests.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/Tests.build/Tests.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/Tests.build/Tests.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug/Tests.build/Objects-normal/arm64/Tests.SwiftConstValuesFileList --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2026-04-19 17:54:42.038 appintentsmetadataprocessor[1166:5989] Starting appintentsmetadataprocessor export
2026-04-19 17:54:42.040 appintentsmetadataprocessor[1166:5989] warning: Metadata extraction skipped. No AppIntents.framework dependency found.
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Tests.xctest (in target 'Tests' from project 'HAKit')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Tests.xctest
Touch /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Tests.xctest (in target 'Tests' from project 'HAKit')
    cd /Users/admin/builder/spi-builder-workspace
    /usr/bin/touch -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Tests.xctest
** BUILD SUCCEEDED **
--- xcodebuild: WARNING: Using the first of multiple matching destinations:
{ platform:macOS, arch:arm64, id:b3cb70c3df69de2bea9902e6d78ce7f49f7f914c, name:My Mac }
{ platform:macOS, arch:arm64, variant:Mac Catalyst, id:b3cb70c3df69de2bea9902e6d78ce7f49f7f914c, name:My Mac }
{ platform:macOS, arch:arm64, variant:DriverKit, id:b3cb70c3df69de2bea9902e6d78ce7f49f7f914c, name:My Mac }
{ platform:macOS, arch:arm64, variant:Designed for [iPad,iPhone], id:b3cb70c3df69de2bea9902e6d78ce7f49f7f914c, name:My Mac }
Build complete.
{
  "dependencies" : [
    {
      "identity" : "starscream",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "4.0.9",
            "upper_bound" : "5.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/bgoncal/Starscream"
    },
    {
      "identity" : "promisekit",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "8.1.1",
            "upper_bound" : "9.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/mxcl/PromiseKit"
    }
  ],
  "manifest_display_name" : "HAKit",
  "name" : "HAKit",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "12.0"
    },
    {
      "name" : "macos",
      "version" : "10.14"
    },
    {
      "name" : "tvos",
      "version" : "12.0"
    },
    {
      "name" : "watchos",
      "version" : "5.0"
    }
  ],
  "products" : [
    {
      "name" : "HAKit",
      "targets" : [
        "HAKit"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "Tests",
      "module_type" : "SwiftTarget",
      "name" : "Tests",
      "path" : "Tests",
      "sources" : [
        "CurrentUser.test.swift",
        "Event.test.swift",
        "FakeEngine.swift",
        "HACache.test.swift",
        "HACacheKeyStates.test.swift",
        "HACachePopulateInfo.test.swift",
        "HACacheSubscribeInfo.test.swift",
        "HACachedStates.test.swift",
        "HACachedUser.test.swift",
        "HACachesContainer.test.swift",
        "HACancellableImpl.test.swift",
        "HAConnectionConfiguration.test.swift",
        "HAConnectionImpl.test.swift",
        "HAConnectionInfo.test.swift",
        "HAData.test.swift",
        "HADataDecodable.test.swift",
        "HAEntity+CompressedEntity.test.swift",
        "HAEntity.test.swift",
        "HAError.test.swift",
        "HAKit.test.swift",
        "HAReconnectManager.test.swift",
        "HARequestController.test.swift",
        "HARequestInvocation.test.swift",
        "HARequestInvocationSingle.test.swift",
        "HARequestInvocationSubscription.test.swift",
        "HAResetLock.test.swift",
        "HAResponseController.test.swift",
        "HAResponseVoid.test.swift",
        "HAURLSessionDelegate.test.swift",
        "HAWebSocketResponse.test.swift",
        "HAWebSocketResponseFixture.swift",
        "RenderTemplate.test.swift",
        "Services.test.swift",
        "States.test.swift",
        "StubbingURLProtocol.swift",
        "TestAdditions.swift"
      ],
      "target_dependencies" : [
        "HAKit",
        "HAKit+PromiseKit",
        "HAKit+Mocks"
      ],
      "type" : "test"
    },
    {
      "c99name" : "HAKit_PromiseKit",
      "module_type" : "SwiftTarget",
      "name" : "HAKit+PromiseKit",
      "path" : "Extensions/PromiseKit",
      "product_dependencies" : [
        "PromiseKit"
      ],
      "sources" : [
        "HACache+PromiseKit.swift",
        "HAConnection+PromiseKit.swift"
      ],
      "target_dependencies" : [
        "HAKit"
      ],
      "type" : "library"
    },
    {
      "c99name" : "HAKit_Mocks",
      "module_type" : "SwiftTarget",
      "name" : "HAKit+Mocks",
      "path" : "Extensions/Mocks",
      "sources" : [
        "HAConnection+Mock.swift"
      ],
      "target_dependencies" : [
        "HAKit"
      ],
      "type" : "library"
    },
    {
      "c99name" : "HAKit",
      "module_type" : "SwiftTarget",
      "name" : "HAKit",
      "path" : "Source",
      "product_dependencies" : [
        "Starscream"
      ],
      "product_memberships" : [
        "HAKit"
      ],
      "sources" : [
        "Caches/HACache.swift",
        "Caches/HACacheKeyStates.swift",
        "Caches/HACachePopulateInfo.swift",
        "Caches/HACacheSubscribeInfo.swift",
        "Caches/HACacheTransformInfo.swift",
        "Caches/HACachedStates.swift",
        "Caches/HACachedUser.swift",
        "Caches/HACachesContainer.swift",
        "Convenience/CurrentUser.swift",
        "Convenience/Event.swift",
        "Convenience/RenderTemplate.swift",
        "Convenience/Services.swift",
        "Convenience/States.swift",
        "Data/HACompressedEntity.swift",
        "Data/HAData.swift",
        "Data/HADataDecodable.swift",
        "Data/HADecodeTransformable.swift",
        "Data/HAEntity+CompressedEntity.swift",
        "Data/HAEntity.swift",
        "Data/HAService.swift",
        "HAConnection.swift",
        "HAConnectionConfiguration.swift",
        "HAConnectionInfo.swift",
        "HAError.swift",
        "HAGlobal.swift",
        "HAKit.swift",
        "HARequestToken.swift",
        "HAURLSessionDelegate.swift",
        "Internal/HACancellableImpl.swift",
        "Internal/HAConnectionImpl+Requests.swift",
        "Internal/HAConnectionImpl+Responses.swift",
        "Internal/HAConnectionImpl.swift",
        "Internal/HAProtected.swift",
        "Internal/HAReconnectManager.swift",
        "Internal/HAResetLock.swift",
        "Internal/HASchedulingTimer.swift",
        "Internal/HAStarscreamCertificatePinningImpl.swift",
        "Internal/RequestController/HARequestController.swift",
        "Internal/RequestController/HARequestIdentifier.swift",
        "Internal/RequestController/HARequestInvocation.swift",
        "Internal/RequestController/HARequestInvocationSingle.swift",
        "Internal/RequestController/HARequestInvocationSubscription.swift",
        "Internal/ResponseController/HAResponseController.swift",
        "Internal/ResponseController/HAWebSocketResponse.swift",
        "Requests/HAHTTPMethod.swift",
        "Requests/HARequest.swift",
        "Requests/HARequestType.swift",
        "Requests/HAResponseVoid.swift",
        "Requests/HASttData.swift",
        "Requests/HATypedRequest.swift",
        "Requests/HATypedSubscription.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.3"
}
Done.