Build Information
Successful build of HAKit, reference 0.4.14 (e66483), with Swift 6.1 for visionOS using Xcode 16.3 on 20 Apr 2026 00:52:35 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 generic/platform=xrOS 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 InferSendableFromCapturesBuild Log
^
/Users/admin/builder/spi-builder-workspace/Tests/HAConnectionImpl.test.swift:27:18: note: add '@MainActor' to make instance method 'waitForCallbackQueue()' part of global actor 'MainActor'
private func waitForCallbackQueue() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/HAConnectionImpl.test.swift:36: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/HAConnectionImpl.test.swift:33:18: note: add '@MainActor' to make instance method 'waitForWorkQueue()' part of global actor 'MainActor'
private func waitForWorkQueue() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/HAConnectionImpl.test.swift:130:27: 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
if method == .get {
^
/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/HAConnectionImpl.test.swift:236:13: warning: capture of 'self' with non-sendable type 'HAConnectionImplTests' in a '@Sendable' closure
connection.connect()
^
/Users/admin/builder/spi-builder-workspace/Tests/HAConnectionImpl.test.swift:9:16: note: class 'HAConnectionImplTests' does not conform to the 'Sendable' protocol
internal class HAConnectionImplTests: XCTestCase {
^
/Users/admin/builder/spi-builder-workspace/Tests/HAConnectionImpl.test.swift:250:13: warning: capture of 'self' with non-sendable type 'HAConnectionImplTests' in a '@Sendable' closure
connection.disconnect()
^
/Users/admin/builder/spi-builder-workspace/Tests/HAConnectionImpl.test.swift:9:16: note: class 'HAConnectionImplTests' does not conform to the 'Sendable' protocol
internal class HAConnectionImplTests: XCTestCase {
^
/Users/admin/builder/spi-builder-workspace/Tests/HAConnectionImpl.test.swift:443:53: warning: reference to static property 'ping' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
.first(where: { $0.request.type == .ping }) as? HARequestInvocationSingle
^
/Users/admin/builder/spi-builder-workspace/Source/Requests/HARequestType.swift:84:23: note: static property declared here
public static var ping: Self = "ping"
^
/Users/admin/builder/spi-builder-workspace/Tests/HAConnectionImpl.test.swift:447: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/HAConnectionImpl.test.swift:431:10: note: add '@MainActor' to make instance method 'testReconnectManagerSendsPingAndSucceeds()' part of global actor 'MainActor'
func testReconnectManagerSendsPingAndSucceeds() throws {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/HAConnectionImpl.test.swift:463:53: warning: reference to static property 'ping' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
.first(where: { $0.request.type == .ping }) as? HARequestInvocationSingle
^
/Users/admin/builder/spi-builder-workspace/Source/Requests/HARequestType.swift:84:23: note: static property declared here
public static var ping: Self = "ping"
^
/Users/admin/builder/spi-builder-workspace/Tests/HAConnectionImpl.test.swift:467: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/HAConnectionImpl.test.swift:451:10: note: add '@MainActor' to make instance method 'testReconnectManagerSendsPingAndFails()' part of global actor 'MainActor'
func testReconnectManagerSendsPingAndFails() throws {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/HAConnectionImpl.test.swift:481:53: warning: reference to static property 'ping' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
.first(where: { $0.request.type == .ping }) as? HARequestInvocationSingle
^
/Users/admin/builder/spi-builder-workspace/Source/Requests/HARequestType.swift:84:23: note: static property declared here
public static var ping: Self = "ping"
^
/Users/admin/builder/spi-builder-workspace/Tests/HAConnectionImpl.test.swift:595:46: 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
let request = HARequest(type: .rest(.post, "some_path"), 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/HAConnectionImpl.test.swift:614:26: 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
type: .rest(.post, "some_path"),
^
/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/HAConnectionImpl.test.swift:640:26: 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
type: .rest(.get, "some_path"),
^
/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/HAConnectionImpl.test.swift:668:26: 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
type: .rest(.post, "some_path"),
^
/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/HAConnectionImpl.test.swift:696:26: 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
type: .rest(.post, "some_path"),
^
/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/HAConnectionImpl.test.swift:737:20: warning: reference to static property 'auth' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
type: .auth,
^
/Users/admin/builder/spi-builder-workspace/Source/Requests/HARequestType.swift:88:23: note: static property declared here
public static var auth: Self = "auth"
^
/Users/admin/builder/spi-builder-workspace/Tests/HAConnectionImpl.test.swift:762:20: warning: reference to static property 'auth' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
type: .auth,
^
/Users/admin/builder/spi-builder-workspace/Source/Requests/HARequestType.swift:88:23: note: static property declared here
public static var auth: Self = "auth"
^
/Users/admin/builder/spi-builder-workspace/Tests/HAConnectionImpl.test.swift:982: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/HAConnectionImpl.test.swift:961:10: note: add '@MainActor' to make instance method 'testResponseResultSingle()' part of global actor 'MainActor'
func testResponseResultSingle() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/HAConnectionImpl.test.swift:1010: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/HAConnectionImpl.test.swift:987:10: note: add '@MainActor' to make instance method 'testResponseResultSubscription()' part of global actor 'MainActor'
func testResponseResultSubscription() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/HAConnectionImpl.test.swift:1046: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/HAConnectionImpl.test.swift:1013:10: note: add '@MainActor' to make instance method 'testResponseEventExists()' part of global actor 'MainActor'
func testResponseEventExists() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/HAConnectionImpl.test.swift:1099: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/HAConnectionImpl.test.swift:1085:10: note: add '@MainActor' to make instance method 'testPlainSendSentSuccessful()' part of global actor 'MainActor'
func testPlainSendSentSuccessful() throws {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/HAConnectionImpl.test.swift:1117: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/HAConnectionImpl.test.swift:1102:10: note: add '@MainActor' to make instance method 'testPlainSendSentSuccessfulPromise()' part of global actor 'MainActor'
func testPlainSendSentSuccessfulPromise() throws {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/HAConnectionImpl.test.swift:1134: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/HAConnectionImpl.test.swift:1120:10: note: add '@MainActor' to make instance method 'testPlainSendSentFailure()' part of global actor 'MainActor'
func testPlainSendSentFailure() throws {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/HAConnectionImpl.test.swift:1151: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/HAConnectionImpl.test.swift:1137:10: note: add '@MainActor' to make instance method 'testPlainSendSentFailurePromise()' part of global actor 'MainActor'
func testPlainSendSentFailurePromise() throws {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/HAConnectionImpl.test.swift:1198: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)
^
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/HAConnectionImpl.test.swift:1183:10: note: add '@MainActor' to make instance method 'testTypedRequestSentSuccessfullyDecodeSuccessful()' part of global actor 'MainActor'
func testTypedRequestSentSuccessfullyDecodeSuccessful() throws {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/HAConnectionImpl.test.swift:1214: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)
^
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/HAConnectionImpl.test.swift:1201:10: note: add '@MainActor' to make instance method 'testTypedRequestSentSuccessfulPromise()' part of global actor 'MainActor'
func testTypedRequestSentSuccessfulPromise() throws {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/HAConnectionImpl.test.swift:1239: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)
^
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/HAConnectionImpl.test.swift:1217:10: note: add '@MainActor' to make instance method 'testTypedRequestSentSuccessfullyDecodeFailure()' part of global actor 'MainActor'
func testTypedRequestSentSuccessfullyDecodeFailure() throws {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/HAConnectionImpl.test.swift:1261: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)
^
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/HAConnectionImpl.test.swift:1242:10: note: add '@MainActor' to make instance method 'testTypedRequestSentFailure()' part of global actor 'MainActor'
func testTypedRequestSentFailure() throws {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/HAConnectionImpl.test.swift:1278: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)
^
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/HAConnectionImpl.test.swift:1264:10: note: add '@MainActor' to make instance method 'testTypedRequestSentFailurePromise()' part of global actor 'MainActor'
func testTypedRequestSentFailurePromise() throws {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/HAConnectionImpl.test.swift:1337: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)
^
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/HAConnectionImpl.test.swift:1308:10: note: add '@MainActor' to make instance method 'testPlainSubscribeSuccess()' part of global actor 'MainActor'
func testPlainSubscribeSuccess() throws {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/HAConnectionImpl.test.swift:1369: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)
^
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/HAConnectionImpl.test.swift:1340:10: note: add '@MainActor' to make instance method 'testPlainSubscribeFailure()' part of global actor 'MainActor'
func testPlainSubscribeFailure() throws {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/HAConnectionImpl.test.swift:1401: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)
^
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/HAConnectionImpl.test.swift:1372:10: note: add '@MainActor' to make instance method 'testPlainSubscribeEvent()' part of global actor 'MainActor'
func testPlainSubscribeEvent() throws {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/HAConnectionImpl.test.swift:1466: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)
^
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/HAConnectionImpl.test.swift:1434:10: note: add '@MainActor' to make instance method 'testTypedSubscribeSuccess()' part of global actor 'MainActor'
func testTypedSubscribeSuccess() throws {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/HAConnectionImpl.test.swift:1501: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)
^
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/HAConnectionImpl.test.swift:1469:10: note: add '@MainActor' to make instance method 'testTypedSubscribeFailure()' part of global actor 'MainActor'
func testTypedSubscribeFailure() throws {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/HAConnectionImpl.test.swift:1535: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)
^
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/HAConnectionImpl.test.swift:1504:10: note: add '@MainActor' to make instance method 'testTypedSubscribeEventSucceedsDecode()' part of global actor 'MainActor'
func testTypedSubscribeEventSucceedsDecode() throws {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/HAConnectionImpl.test.swift:1655: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/HAConnectionImpl.test.swift:1647:10: note: add '@MainActor' to make instance method 'testSendSttRequestSentSuccessful()' part of global actor 'MainActor'
func testSendSttRequestSentSuccessful() throws {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/HAConnectionImpl.test.swift:1684: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: 5.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/HAConnectionImpl.test.swift:1665:10: note: add '@MainActor' to make instance method 'testSendSettDataClearsOnCompletion()' part of global actor 'MainActor'
func testSendSettDataClearsOnCompletion() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/HAConnectionImpl.test.swift:1743:17: warning: capture of 'self' with non-sendable type 'FakeHAConnectionDelegate?' in a '@Sendable' closure
self?.notifiedCount += 1
^
/Users/admin/builder/spi-builder-workspace/Tests/HAConnectionImpl.test.swift:1734:15: note: class 'FakeHAConnectionDelegate' does not conform to the 'Sendable' protocol
private class FakeHAConnectionDelegate: HAConnectionDelegate {
^
/Users/admin/builder/spi-builder-workspace/Tests/HAConnectionImpl.test.swift:30:9: warning: sending value of non-Sendable type 'HAConnectionImplTests' 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/HAConnectionImpl.test.swift:30:9: note: sending task-isolated value of non-Sendable type 'HAConnectionImplTests' 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/HAConnectionImpl.test.swift:36:9: warning: sending value of non-Sendable type 'HAConnectionImplTests' 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/HAConnectionImpl.test.swift:36:9: note: sending task-isolated value of non-Sendable type 'HAConnectionImplTests' 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/HAConnectionImpl.test.swift:447:9: warning: sending value of non-Sendable type 'HAConnectionImplTests' 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/HAConnectionImpl.test.swift:447:9: note: sending task-isolated value of non-Sendable type 'HAConnectionImplTests' 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/HAConnectionImpl.test.swift:467:9: warning: sending value of non-Sendable type 'HAConnectionImplTests' 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/HAConnectionImpl.test.swift:467:9: note: sending task-isolated value of non-Sendable type 'HAConnectionImplTests' 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/HAConnectionImpl.test.swift:982:9: warning: sending value of non-Sendable type 'HAConnectionImplTests' 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/HAConnectionImpl.test.swift:982:9: note: sending task-isolated value of non-Sendable type 'HAConnectionImplTests' 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/HAConnectionImpl.test.swift:1010:9: warning: sending value of non-Sendable type 'HAConnectionImplTests' 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/HAConnectionImpl.test.swift:1010:9: note: sending task-isolated value of non-Sendable type 'HAConnectionImplTests' 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/HAConnectionImpl.test.swift:1046:9: warning: sending value of non-Sendable type 'HAConnectionImplTests' 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/HAConnectionImpl.test.swift:1046:9: note: sending task-isolated value of non-Sendable type 'HAConnectionImplTests' 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/HAConnectionImpl.test.swift:1099:9: warning: sending value of non-Sendable type 'HAConnectionImplTests' 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/HAConnectionImpl.test.swift:1099:9: note: sending task-isolated value of non-Sendable type 'HAConnectionImplTests' 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/HAConnectionImpl.test.swift:1117:9: warning: sending value of non-Sendable type 'HAConnectionImplTests' 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/HAConnectionImpl.test.swift:1117:9: note: sending task-isolated value of non-Sendable type 'HAConnectionImplTests' 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/HAConnectionImpl.test.swift:1134:9: warning: sending value of non-Sendable type 'HAConnectionImplTests' 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/HAConnectionImpl.test.swift:1134:9: note: sending task-isolated value of non-Sendable type 'HAConnectionImplTests' 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/HAConnectionImpl.test.swift:1151:9: warning: sending value of non-Sendable type 'HAConnectionImplTests' 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/HAConnectionImpl.test.swift:1151:9: note: sending task-isolated value of non-Sendable type 'HAConnectionImplTests' 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/HAConnectionImpl.test.swift:1198:9: warning: sending value of non-Sendable type 'HAConnectionImplTests' risks causing data races; this is an error in the Swift 6 language mode
waitForExpectations(timeout: 10)
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/HAConnectionImpl.test.swift:1198:9: note: sending task-isolated value of non-Sendable type 'HAConnectionImplTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
waitForExpectations(timeout: 10)
^
/Users/admin/builder/spi-builder-workspace/Tests/HAConnectionImpl.test.swift:1214:9: warning: sending value of non-Sendable type 'HAConnectionImplTests' risks causing data races; this is an error in the Swift 6 language mode
waitForExpectations(timeout: 10)
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/HAConnectionImpl.test.swift:1214:9: note: sending task-isolated value of non-Sendable type 'HAConnectionImplTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
waitForExpectations(timeout: 10)
^
/Users/admin/builder/spi-builder-workspace/Tests/HAConnectionImpl.test.swift:1239:9: warning: sending value of non-Sendable type 'HAConnectionImplTests' risks causing data races; this is an error in the Swift 6 language mode
waitForExpectations(timeout: 10)
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/HAConnectionImpl.test.swift:1239:9: note: sending task-isolated value of non-Sendable type 'HAConnectionImplTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
waitForExpectations(timeout: 10)
^
/Users/admin/builder/spi-builder-workspace/Tests/HAConnectionImpl.test.swift:1261:9: warning: sending value of non-Sendable type 'HAConnectionImplTests' risks causing data races; this is an error in the Swift 6 language mode
waitForExpectations(timeout: 10)
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/HAConnectionImpl.test.swift:1261:9: note: sending task-isolated value of non-Sendable type 'HAConnectionImplTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
waitForExpectations(timeout: 10)
^
/Users/admin/builder/spi-builder-workspace/Tests/HAConnectionImpl.test.swift:1278:9: warning: sending value of non-Sendable type 'HAConnectionImplTests' risks causing data races; this is an error in the Swift 6 language mode
waitForExpectations(timeout: 10)
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/HAConnectionImpl.test.swift:1278:9: note: sending task-isolated value of non-Sendable type 'HAConnectionImplTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
waitForExpectations(timeout: 10)
^
/Users/admin/builder/spi-builder-workspace/Tests/HAConnectionImpl.test.swift:1337:9: warning: sending value of non-Sendable type 'HAConnectionImplTests' risks causing data races; this is an error in the Swift 6 language mode
waitForExpectations(timeout: 10)
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/HAConnectionImpl.test.swift:1337:9: note: sending task-isolated value of non-Sendable type 'HAConnectionImplTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
waitForExpectations(timeout: 10)
^
/Users/admin/builder/spi-builder-workspace/Tests/HAConnectionImpl.test.swift:1369:9: warning: sending value of non-Sendable type 'HAConnectionImplTests' risks causing data races; this is an error in the Swift 6 language mode
waitForExpectations(timeout: 10)
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/HAConnectionImpl.test.swift:1369:9: note: sending task-isolated value of non-Sendable type 'HAConnectionImplTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
waitForExpectations(timeout: 10)
^
/Users/admin/builder/spi-builder-workspace/Tests/HAConnectionImpl.test.swift:1401:9: warning: sending value of non-Sendable type 'HAConnectionImplTests' risks causing data races; this is an error in the Swift 6 language mode
waitForExpectations(timeout: 10)
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/HAConnectionImpl.test.swift:1401:9: note: sending task-isolated value of non-Sendable type 'HAConnectionImplTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
waitForExpectations(timeout: 10)
^
/Users/admin/builder/spi-builder-workspace/Tests/HAConnectionImpl.test.swift:1466:9: warning: sending value of non-Sendable type 'HAConnectionImplTests' risks causing data races; this is an error in the Swift 6 language mode
waitForExpectations(timeout: 10)
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/HAConnectionImpl.test.swift:1466:9: note: sending task-isolated value of non-Sendable type 'HAConnectionImplTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
waitForExpectations(timeout: 10)
^
/Users/admin/builder/spi-builder-workspace/Tests/HAConnectionImpl.test.swift:1501:9: warning: sending value of non-Sendable type 'HAConnectionImplTests' risks causing data races; this is an error in the Swift 6 language mode
waitForExpectations(timeout: 10)
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/HAConnectionImpl.test.swift:1501:9: note: sending task-isolated value of non-Sendable type 'HAConnectionImplTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
waitForExpectations(timeout: 10)
^
/Users/admin/builder/spi-builder-workspace/Tests/HAConnectionImpl.test.swift:1535:9: warning: sending value of non-Sendable type 'HAConnectionImplTests' risks causing data races; this is an error in the Swift 6 language mode
waitForExpectations(timeout: 10)
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/HAConnectionImpl.test.swift:1535:9: note: sending task-isolated value of non-Sendable type 'HAConnectionImplTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
waitForExpectations(timeout: 10)
^
/Users/admin/builder/spi-builder-workspace/Tests/HAConnectionImpl.test.swift:1655:9: warning: sending value of non-Sendable type 'HAConnectionImplTests' 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/HAConnectionImpl.test.swift:1655:9: note: sending task-isolated value of non-Sendable type 'HAConnectionImplTests' 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/HAConnectionImpl.test.swift:1684:9: warning: sending value of non-Sendable type 'HAConnectionImplTests' risks causing data races; this is an error in the Swift 6 language mode
waitForExpectations(timeout: 5.0)
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/HAConnectionImpl.test.swift:1684:9: note: sending task-isolated value of non-Sendable type 'HAConnectionImplTests' to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' risks causing races in between task-isolated and main actor-isolated uses
waitForExpectations(timeout: 5.0)
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/HAConnectionInfo.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/HAData.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/HADataDecodable.test.swift (in target 'Tests' from project 'HAKit')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Tests/HADataDecodable.test.swift:79:16: warning: static property 'shouldThrow' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var shouldThrow = false
^
/Users/admin/builder/spi-builder-workspace/Tests/HADataDecodable.test.swift:79:16: note: convert 'shouldThrow' to a 'let' constant to make 'Sendable' shared state immutable
static var shouldThrow = false
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Tests/HADataDecodable.test.swift:79:16: note: add '@MainActor' to make static property 'shouldThrow' part of global actor 'MainActor'
static var shouldThrow = false
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/HADataDecodable.test.swift:79:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var shouldThrow = false
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/HADataDecodable.test.swift:33: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/HADataDecodable.test.swift:36:26: 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
defer { 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/HADataDecodable.test.swift:55: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/HADataDecodable.test.swift:58:26: 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
defer { 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 }
^
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)
^
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
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)
^
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 Compiling HADecodeTransformable.swift, HAEntity+CompressedEntity.swift, HAEntity.swift, HAService.swift, HAConnection.swift (in target 'HAKit' from project 'HAKit')
SwiftCompile normal arm64 Compiling\ HACacheKeyStates.test.swift,\ HACachePopulateInfo.test.swift,\ HACacheSubscribeInfo.test.swift,\ HACachedStates.test.swift /Users/admin/builder/spi-builder-workspace/Tests/HACacheKeyStates.test.swift /Users/admin/builder/spi-builder-workspace/Tests/HACachePopulateInfo.test.swift /Users/admin/builder/spi-builder-workspace/Tests/HACacheSubscribeInfo.test.swift /Users/admin/builder/spi-builder-workspace/Tests/HACachedStates.test.swift (in target 'Tests' from project 'HAKit')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/HACacheKeyStates.test.swift (in target 'Tests' from project 'HAKit')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Tests/HACacheKeyStates.test.swift:223: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/HACacheKeyStates.test.swift:227: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 }
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/HACachePopulateInfo.test.swift (in target 'Tests' from project 'HAKit')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Tests/HACachePopulateInfo.test.swift:65: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/HACachePopulateInfo.test.swift:42:10: note: add '@MainActor' to make instance method 'testSendSucceeds()' part of global actor 'MainActor'
func testSendSucceeds() throws {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/HACachePopulateInfo.test.swift:65:9: warning: sending value of non-Sendable type 'HACachePopulateInfoTests' 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/HACachePopulateInfo.test.swift:65:9: note: sending task-isolated value of non-Sendable type 'HACachePopulateInfoTests' 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/HACacheSubscribeInfo.test.swift (in target 'Tests' from project 'HAKit')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Tests/HACacheSubscribeInfo.test.swift:78: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/HACacheSubscribeInfo.test.swift:56:10: note: add '@MainActor' to make instance method 'testSubscribeHandlerInvoked()' part of global actor 'MainActor'
func testSubscribeHandlerInvoked() throws {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/HACacheSubscribeInfo.test.swift:78:9: warning: sending value of non-Sendable type 'HACacheSubscribeInfoTests' 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/HACacheSubscribeInfo.test.swift:78:9: note: sending task-isolated value of non-Sendable type 'HACacheSubscribeInfoTests' 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/HACachedStates.test.swift (in target 'Tests' from project 'HAKit')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Tests/HACachedStates.test.swift:27:57: 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(subscribeOnlyInfo.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"
^
SwiftDriverJobDiscovery normal arm64 Compiling HAConnection+Mock.swift (in target 'HAKit+Mocks' from project 'HAKit')
SwiftCompile normal arm64 Compiling\ HAWebSocketResponseFixture.swift,\ RenderTemplate.test.swift,\ Services.test.swift /Users/admin/builder/spi-builder-workspace/Tests/HAWebSocketResponseFixture.swift /Users/admin/builder/spi-builder-workspace/Tests/RenderTemplate.test.swift /Users/admin/builder/spi-builder-workspace/Tests/Services.test.swift (in target 'Tests' from project 'HAKit')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/HAWebSocketResponseFixture.swift (in target 'Tests' from project 'HAKit')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/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)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/RenderTemplate.test.swift (in target 'Tests' from project 'HAKit')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Tests/RenderTemplate.test.swift:7:47: 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
XCTAssertEqual(request.request.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/RenderTemplate.test.swift:20:47: 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
XCTAssertEqual(request.request.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"
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/Services.test.swift (in target 'Tests' from project 'HAKit')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Tests/Services.test.swift:10:47: 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
XCTAssertEqual(request.request.type, .callService)
^
/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/Services.test.swift:27:47: 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
XCTAssertEqual(request.request.type, .callService)
^
/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/Services.test.swift:48:47: warning: reference to static property 'getServices' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
XCTAssertEqual(request.request.type, .getServices)
^
/Users/admin/builder/spi-builder-workspace/Source/Requests/HARequestType.swift:64:23: note: static property declared here
public static var getServices: Self = "get_services"
^
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-xros/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/XROS.platform/Developer/SDKs/XROS2.4.sdk -target arm64-apple-xros1.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -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-xros -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.4-22O233-407b76dbb837030756cbe1ab3f0b01b6.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug-xros/Tests.build/Objects-normal/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-xros/Tests.build/Objects-normal/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-xros/Tests.build/Objects-normal/arm64/Tests_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug-xros/Tests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug-xros/Tests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug-xros/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 States.test.swift, StubbingURLProtocol.swift, TestAdditions.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-xros/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/XROS.platform/Developer/SDKs/XROS2.4.sdk -target arm64-apple-xros1.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -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-xros -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.4-22O233-407b76dbb837030756cbe1ab3f0b01b6.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug-xros/HAKit.build/Objects-normal/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-xros/HAKit.build/Objects-normal/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-xros/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-xros/HAKit.build/Objects-normal/arm64/HAKit_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug-xros/HAKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug-xros/HAKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug-xros/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-xros/HAKit.build/Objects-normal/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-xros/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/XROS.platform/Developer/SDKs/XROS2.4.sdk -target arm64-apple-xros1.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -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-xros -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -parse-as-library -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.4-22O233-407b76dbb837030756cbe1ab3f0b01b6.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug-xros/HAKit+Mocks.build/Objects-normal/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-xros/HAKit+Mocks.build/Objects-normal/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-xros/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-xros/HAKit+Mocks.build/Objects-normal/arm64/HAKit+Mocks_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug-xros/HAKit+Mocks.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug-xros/HAKit+Mocks.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug-xros/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-xros/HAKit+Mocks.build/Objects-normal/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 HAResponseVoid.test.swift, HAURLSessionDelegate.test.swift, HAWebSocketResponse.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')
SwiftDriverJobDiscovery normal arm64 Compiling HARequestInvocationSubscription.test.swift, HAResetLock.test.swift, HAResponseController.test.swift (in target 'Tests' from project 'HAKit')
SwiftDriverJobDiscovery normal arm64 Compiling HACachedUser.test.swift, HACachesContainer.test.swift, HACancellableImpl.test.swift, HAConnectionConfiguration.test.swift (in target 'Tests' from project 'HAKit')
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/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-xros1.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-xros -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-xros -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug-xros/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-xros/HAKit.build/Objects-normal/arm64/HAKit_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug-xros/HAKit.build/Objects-normal/arm64/HAKit_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/xros -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug-xros/HAKit.build/Objects-normal/arm64/HAKit.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/HAKit.o
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/Tests.swiftmodule/arm64-apple-xros.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug-xros/Tests.build/Objects-normal/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-xros/Tests.build/Objects-normal/arm64/Tests.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/Tests.swiftmodule/arm64-apple-xros.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/Tests.swiftmodule/arm64-apple-xros.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug-xros/Tests.build/Objects-normal/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-xros/Tests.build/Objects-normal/arm64/Tests.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/Tests.swiftmodule/arm64-apple-xros.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/Tests.swiftmodule/Project/arm64-apple-xros.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug-xros/Tests.build/Objects-normal/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-xros/Tests.build/Objects-normal/arm64/Tests.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/Tests.swiftmodule/Project/arm64-apple-xros.swiftsourceinfo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/Tests.swiftmodule/arm64-apple-xros.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug-xros/Tests.build/Objects-normal/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-xros/Tests.build/Objects-normal/arm64/Tests.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/Tests.swiftmodule/arm64-apple-xros.swiftmodule
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')
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/XROS.platform/Developer/SDKs/XROS2.4.sdk --xcode-version 16E140 --platform-family xrOS --deployment-target 1.0 --bundle-identifier spi-builder-workspace.HAKit --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/HAKit.appintents --target-triple arm64-apple-xros1.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/HAKit.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug-xros/HAKit.build/Objects-normal/arm64/HAKit_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug-xros/HAKit.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug-xros/HAKit.build/Objects-normal/arm64/HAKit.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug-xros/HAKit.build/HAKit.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug-xros/HAKit.build/HAKit.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug-xros/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:52:32.939 appintentsmetadataprocessor[1195:5770] Starting appintentsmetadataprocessor export
2026-04-19 17:52:32.976 appintentsmetadataprocessor[1195:5770] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/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-xros/HAKit.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/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-xros1.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-xros -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-xros -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug-xros/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-xros/HAKit+Mocks.build/Objects-normal/arm64/HAKit+Mocks_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug-xros/HAKit+Mocks.build/Objects-normal/arm64/HAKit+Mocks_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/xros -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug-xros/HAKit+Mocks.build/Objects-normal/arm64/HAKit_Mocks.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/HAKit+Mocks.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/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-xros1.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-xros -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-xros -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug-xros/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-xros/HAKit+PromiseKit.build/Objects-normal/arm64/HAKit+PromiseKit_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug-xros/HAKit+PromiseKit.build/Objects-normal/arm64/HAKit+PromiseKit_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/xros -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug-xros/HAKit+PromiseKit.build/Objects-normal/arm64/HAKit_PromiseKit.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/HAKit+PromiseKit.o
SwiftDriverJobDiscovery normal arm64 Compiling HAWebSocketResponseFixture.swift, RenderTemplate.test.swift, Services.test.swift (in target 'Tests' from project 'HAKit')
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/XROS.platform/Developer/SDKs/XROS2.4.sdk --xcode-version 16E140 --platform-family xrOS --deployment-target 1.0 --bundle-identifier spi-builder-workspace.HAKit-PromiseKit --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/HAKit_PromiseKit.appintents --target-triple arm64-apple-xros1.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/HAKit+PromiseKit.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug-xros/HAKit+PromiseKit.build/Objects-normal/arm64/HAKit+PromiseKit_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug-xros/HAKit+PromiseKit.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug-xros/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-xros/HAKit+PromiseKit.build/HAKit+PromiseKit.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug-xros/HAKit+PromiseKit.build/HAKit+PromiseKit.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug-xros/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:52:33.027 appintentsmetadataprocessor[1200:5800] Starting appintentsmetadataprocessor export
2026-04-19 17:52:33.065 appintentsmetadataprocessor[1200:5800] 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/XROS.platform/Developer/SDKs/XROS2.4.sdk --xcode-version 16E140 --platform-family xrOS --deployment-target 1.0 --bundle-identifier spi-builder-workspace.HAKit-Mocks --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/HAKit_Mocks.appintents --target-triple arm64-apple-xros1.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/HAKit+Mocks.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug-xros/HAKit+Mocks.build/Objects-normal/arm64/HAKit+Mocks_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug-xros/HAKit+Mocks.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug-xros/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-xros/HAKit+Mocks.build/HAKit+Mocks.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug-xros/HAKit+Mocks.build/HAKit+Mocks.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug-xros/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:52:33.028 appintentsmetadataprocessor[1201:5801] Starting appintentsmetadataprocessor export
2026-04-19 17:52:33.065 appintentsmetadataprocessor[1201:5801] Extracted no relevant App Intents symbols, skipping writing output
SwiftDriverJobDiscovery normal arm64 Compiling CurrentUser.test.swift, Event.test.swift, FakeEngine.swift, HACache.test.swift (in target 'Tests' from project 'HAKit')
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/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-xros/HAKit+Mocks.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/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-xros/HAKit+PromiseKit.o
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/Tests.xctest/PromiseKit_PromiseKit.bundle /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/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-xros/PromiseKit_PromiseKit.bundle /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/Tests.xctest
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/Tests.xctest/Starscream_Starscream.bundle /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/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-xros/Starscream_Starscream.bundle /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/Tests.xctest
ProcessInfoPlistFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/Tests.xctest/Info.plist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug-xros/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-xros/Tests.build/empty-Tests.plist -producttype com.apple.product-type.bundle.unit-test -expandbuildsettings -format binary -platform xros -scanforprivacyfile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/Tests.xctest/PromiseKit_PromiseKit.bundle -scanforprivacyfile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/Tests.xctest/Starscream_Starscream.bundle -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/Tests.xctest/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-xros/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/XROS.platform/Developer/SDKs/XROS2.4.sdk -target arm64-apple-xros1.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -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-xros -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.4-22O233-407b76dbb837030756cbe1ab3f0b01b6.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug-xros/Tests.build/Objects-normal/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-xros/Tests.build/Objects-normal/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-xros/Tests.build/Objects-normal/arm64/Tests_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug-xros/Tests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug-xros/Tests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug-xros/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-xros/Tests.xctest/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-xros1.0 -bundle -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-xros -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-xros -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug-xros/Tests.build/Objects-normal/arm64/Tests.LinkFileList -Xlinker -rpath -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -Xlinker -rpath -Xlinker @loader_path/Frameworks -Xlinker -rpath -Xlinker @loader_path/../Frameworks -dead_strip -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug-xros/Tests.build/Objects-normal/arm64/Tests_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug-xros/Tests.build/Objects-normal/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/xros -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug-xros/Tests.build/Objects-normal/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-xros/Tests.xctest/Tests -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Starscream.build/Debug-xros/Starscream.build/Objects-normal/arm64/Starscream.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug-xros/HAKit.build/Objects-normal/arm64/HAKit.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PromiseKit.build/Debug-xros/PromiseKit.build/Objects-normal/arm64/PromiseKit.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug-xros/HAKit+PromiseKit.build/Objects-normal/arm64/HAKit_PromiseKit.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug-xros/HAKit+Mocks.build/Objects-normal/arm64/HAKit_Mocks.swiftmodule
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/XROS.platform/Developer/SDKs/XROS2.4.sdk --xcode-version 16E140 --platform-family xrOS --deployment-target 1.0 --bundle-identifier spi-builder-workspace.Tests --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/Tests.xctest --target-triple arm64-apple-xros1.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/Tests.xctest/Tests --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug-xros/Tests.build/Objects-normal/arm64/Tests_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug-xros/Tests.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug-xros/Tests.build/Objects-normal/arm64/Tests.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug-xros/Tests.build/Tests.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug-xros/Tests.build/Tests.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HAKit.build/Debug-xros/Tests.build/Objects-normal/arm64/Tests.SwiftConstValuesFileList --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2026-04-19 17:52:34.104 appintentsmetadataprocessor[1204:5836] Starting appintentsmetadataprocessor export
2026-04-19 17:52:34.106 appintentsmetadataprocessor[1204:5836] warning: Metadata extraction skipped. No AppIntents.framework dependency found.
CopySwiftLibs /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/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-xros/Tests.xctest/Tests --scan-folder /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/Tests.xctest/Frameworks --scan-folder /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/Tests.xctest/PlugIns --scan-folder /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/Tests.xctest/SystemExtensions --scan-folder /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/Tests.xctest/Extensions --platform xros --toolchain /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --destination /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/Tests.xctest/Frameworks --strip-bitcode --scan-executable /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.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-xros/Tests.build/SwiftStdLibToolInputDependencies.dep --filter-for-swift-os
Ignoring --strip-bitcode because --sign was not passed
GenerateDSYMFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/Tests.xctest.dSYM /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/Tests.xctest/Tests (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/dsymutil /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/Tests.xctest/Tests -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/Tests.xctest.dSYM
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/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-xros/Tests.xctest
Touch /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/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-xros/Tests.xctest
** BUILD SUCCEEDED **
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.