Build Information
Successful build of SessionPlus, reference main (820928
), with Swift 6.1 for tvOS using Xcode 16.3 on 27 Apr 2025 10:06:12 UTC.
Swift 6 data race errors: 49
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme SessionPlus -destination generic/platform=tvOS OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures
Build Log
public static var twentyFiveMB: Capacity = .megabytes(25)
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Extensions/URLCache+SessionPlus.swift:12:27: note: convert 'twentyFiveMB' to a 'let' constant to make 'Sendable' shared state immutable
public static var twentyFiveMB: Capacity = .megabytes(25)
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Extensions/URLCache+SessionPlus.swift:12:27: note: add '@MainActor' to make static property 'twentyFiveMB' part of global actor 'MainActor'
public static var twentyFiveMB: Capacity = .megabytes(25)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Extensions/URLCache+SessionPlus.swift:12:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var twentyFiveMB: Capacity = .megabytes(25)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Extensions/URLCache+SessionPlus.swift:13:27: warning: static property 'twoHundredMB' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var twoHundredMB: Capacity = .megabytes(200)
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Extensions/URLCache+SessionPlus.swift:13:27: note: convert 'twoHundredMB' to a 'let' constant to make 'Sendable' shared state immutable
public static var twoHundredMB: Capacity = .megabytes(200)
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Extensions/URLCache+SessionPlus.swift:13:27: note: add '@MainActor' to make static property 'twoHundredMB' part of global actor 'MainActor'
public static var twoHundredMB: Capacity = .megabytes(200)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Extensions/URLCache+SessionPlus.swift:13:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var twoHundredMB: Capacity = .megabytes(200)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Extensions/URLSessionDelegate+SessionPlus.swift:12:14: warning: non-final class 'SelfSignedSessionDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
public class SelfSignedSessionDelegate: NSObject, URLSessionDelegate {
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Implementation/AbsoluteURLWebSocket.swift:8:12: warning: non-final class 'AbsoluteURLWebSocket' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
open class AbsoluteURLWebSocket: NSObject, WebSocket {
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Implementation/AbsoluteURLWebSocket.swift:16:14: warning: stored property '$__lazy_storage_$_session' of 'Sendable'-conforming class 'AbsoluteURLWebSocket' is mutable; this is an error in the Swift 6 language mode
lazy var session: URLSession = URLSession(configuration: .default, delegate: self, delegateQueue: nil)
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Header.swift:12:23: warning: static property 'dateFormatter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var dateFormatter: DateFormatter = {
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Header.swift:12:23: note: convert 'dateFormatter' to a 'let' constant to make 'Sendable' shared state immutable
public static var dateFormatter: DateFormatter = {
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Header.swift:12:23: note: add '@MainActor' to make static property 'dateFormatter' part of global actor 'MainActor'
public static var dateFormatter: DateFormatter = {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Header.swift:12:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var dateFormatter: DateFormatter = {
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Header.swift:43:16: warning: static property 'accept' is not concurrency-safe because non-'Sendable' type 'Header' may have shared mutable state; this is an error in the Swift 6 language mode
static let accept: Self = "Accept"
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Header.swift:4:15: note: consider making struct 'Header' conform to the 'Sendable' protocol
public struct Header: ExpressibleByStringLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Header.swift:43:16: note: add '@MainActor' to make static property 'accept' part of global actor 'MainActor'
static let accept: Self = "Accept"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Header.swift:43:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let accept: Self = "Accept"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Header.swift:46:16: warning: static property 'authorization' is not concurrency-safe because non-'Sendable' type 'Header' may have shared mutable state; this is an error in the Swift 6 language mode
static let authorization: Self = "Authorization"
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Header.swift:4:15: note: consider making struct 'Header' conform to the 'Sendable' protocol
public struct Header: ExpressibleByStringLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Header.swift:46:16: note: add '@MainActor' to make static property 'authorization' part of global actor 'MainActor'
static let authorization: Self = "Authorization"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Header.swift:46:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let authorization: Self = "Authorization"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Header.swift:48:16: warning: static property 'contentLength' is not concurrency-safe because non-'Sendable' type 'Header' may have shared mutable state; this is an error in the Swift 6 language mode
static let contentLength: Self = "Content-Length"
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Header.swift:4:15: note: consider making struct 'Header' conform to the 'Sendable' protocol
public struct Header: ExpressibleByStringLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Header.swift:48:16: note: add '@MainActor' to make static property 'contentLength' part of global actor 'MainActor'
static let contentLength: Self = "Content-Length"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Header.swift:48:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let contentLength: Self = "Content-Length"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Header.swift:51:16: warning: static property 'contentMD5' is not concurrency-safe because non-'Sendable' type 'Header' may have shared mutable state; this is an error in the Swift 6 language mode
static let contentMD5: Self = "Content-MD5"
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Header.swift:4:15: note: consider making struct 'Header' conform to the 'Sendable' protocol
public struct Header: ExpressibleByStringLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Header.swift:51:16: note: add '@MainActor' to make static property 'contentMD5' part of global actor 'MainActor'
static let contentMD5: Self = "Content-MD5"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Header.swift:51:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let contentMD5: Self = "Content-MD5"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Header.swift:53:16: warning: static property 'contentType' is not concurrency-safe because non-'Sendable' type 'Header' may have shared mutable state; this is an error in the Swift 6 language mode
static let contentType: Self = "Content-Type"
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Header.swift:4:15: note: consider making struct 'Header' conform to the 'Sendable' protocol
public struct Header: ExpressibleByStringLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Header.swift:53:16: note: add '@MainActor' to make static property 'contentType' part of global actor 'MainActor'
static let contentType: Self = "Content-Type"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Header.swift:53:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let contentType: Self = "Content-Type"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Header.swift:55:16: warning: static property 'date' is not concurrency-safe because non-'Sendable' type 'Header' may have shared mutable state; this is an error in the Swift 6 language mode
static let date: Self = "Date"
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Header.swift:4:15: note: consider making struct 'Header' conform to the 'Sendable' protocol
public struct Header: ExpressibleByStringLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Header.swift:55:16: note: add '@MainActor' to make static property 'date' part of global actor 'MainActor'
static let date: Self = "Date"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Header.swift:55:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let date: Self = "Date"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:34:16: warning: static property 'bin' is not concurrency-safe because non-'Sendable' type 'MIMEType' may have shared mutable state; this is an error in the Swift 6 language mode
static let bin: Self = "application/octet-stream"
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:4:15: note: consider making struct 'MIMEType' conform to the 'Sendable' protocol
public struct MIMEType: ExpressibleByStringLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:34:16: note: add '@MainActor' to make static property 'bin' part of global actor 'MainActor'
static let bin: Self = "application/octet-stream"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:34:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let bin: Self = "application/octet-stream"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:36:16: warning: static property 'gif' is not concurrency-safe because non-'Sendable' type 'MIMEType' may have shared mutable state; this is an error in the Swift 6 language mode
static let gif: Self = "image/gif"
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:4:15: note: consider making struct 'MIMEType' conform to the 'Sendable' protocol
public struct MIMEType: ExpressibleByStringLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:36:16: note: add '@MainActor' to make static property 'gif' part of global actor 'MainActor'
static let gif: Self = "image/gif"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:36:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let gif: Self = "image/gif"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:38:16: warning: static property 'html' is not concurrency-safe because non-'Sendable' type 'MIMEType' may have shared mutable state; this is an error in the Swift 6 language mode
static let html: Self = "text/html"
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:4:15: note: consider making struct 'MIMEType' conform to the 'Sendable' protocol
public struct MIMEType: ExpressibleByStringLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:38:16: note: add '@MainActor' to make static property 'html' part of global actor 'MainActor'
static let html: Self = "text/html"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:38:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let html: Self = "text/html"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:40:16: warning: static property 'jpeg' is not concurrency-safe because non-'Sendable' type 'MIMEType' may have shared mutable state; this is an error in the Swift 6 language mode
static let jpeg: Self = "image/jpeg"
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:4:15: note: consider making struct 'MIMEType' conform to the 'Sendable' protocol
public struct MIMEType: ExpressibleByStringLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:40:16: note: add '@MainActor' to make static property 'jpeg' part of global actor 'MainActor'
static let jpeg: Self = "image/jpeg"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:40:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let jpeg: Self = "image/jpeg"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:42:16: warning: static property 'js' is not concurrency-safe because non-'Sendable' type 'MIMEType' may have shared mutable state; this is an error in the Swift 6 language mode
static let js: Self = "text/javascript"
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:4:15: note: consider making struct 'MIMEType' conform to the 'Sendable' protocol
public struct MIMEType: ExpressibleByStringLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:42:16: note: add '@MainActor' to make static property 'js' part of global actor 'MainActor'
static let js: Self = "text/javascript"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:42:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let js: Self = "text/javascript"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:44:16: warning: static property 'json' is not concurrency-safe because non-'Sendable' type 'MIMEType' may have shared mutable state; this is an error in the Swift 6 language mode
static let json: Self = "application/json"
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:4:15: note: consider making struct 'MIMEType' conform to the 'Sendable' protocol
public struct MIMEType: ExpressibleByStringLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:44:16: note: add '@MainActor' to make static property 'json' part of global actor 'MainActor'
static let json: Self = "application/json"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:44:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let json: Self = "application/json"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:46:16: warning: static property 'jsonld' is not concurrency-safe because non-'Sendable' type 'MIMEType' may have shared mutable state; this is an error in the Swift 6 language mode
static let jsonld: Self = "application/ld+json"
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:4:15: note: consider making struct 'MIMEType' conform to the 'Sendable' protocol
public struct MIMEType: ExpressibleByStringLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:46:16: note: add '@MainActor' to make static property 'jsonld' part of global actor 'MainActor'
static let jsonld: Self = "application/ld+json"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:46:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let jsonld: Self = "application/ld+json"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:48:16: warning: static property 'png' is not concurrency-safe because non-'Sendable' type 'MIMEType' may have shared mutable state; this is an error in the Swift 6 language mode
static let png: Self = "image/png"
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:4:15: note: consider making struct 'MIMEType' conform to the 'Sendable' protocol
public struct MIMEType: ExpressibleByStringLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:48:16: note: add '@MainActor' to make static property 'png' part of global actor 'MainActor'
static let png: Self = "image/png"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:48:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let png: Self = "image/png"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:50:16: warning: static property 'pdf' is not concurrency-safe because non-'Sendable' type 'MIMEType' may have shared mutable state; this is an error in the Swift 6 language mode
static let pdf: Self = "application/pdf"
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:4:15: note: consider making struct 'MIMEType' conform to the 'Sendable' protocol
public struct MIMEType: ExpressibleByStringLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:50:16: note: add '@MainActor' to make static property 'pdf' part of global actor 'MainActor'
static let pdf: Self = "application/pdf"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:50:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let pdf: Self = "application/pdf"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:52:16: warning: static property 'svg' is not concurrency-safe because non-'Sendable' type 'MIMEType' may have shared mutable state; this is an error in the Swift 6 language mode
static let svg: Self = "image/svg+xml"
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:4:15: note: consider making struct 'MIMEType' conform to the 'Sendable' protocol
public struct MIMEType: ExpressibleByStringLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:52:16: note: add '@MainActor' to make static property 'svg' part of global actor 'MainActor'
static let svg: Self = "image/svg+xml"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:52:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let svg: Self = "image/svg+xml"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:54:16: warning: static property 'txt' is not concurrency-safe because non-'Sendable' type 'MIMEType' may have shared mutable state; this is an error in the Swift 6 language mode
static let txt: Self = "text/plain"
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:4:15: note: consider making struct 'MIMEType' conform to the 'Sendable' protocol
public struct MIMEType: ExpressibleByStringLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:54:16: note: add '@MainActor' to make static property 'txt' part of global actor 'MainActor'
static let txt: Self = "text/plain"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:54:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let txt: Self = "text/plain"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:56:16: warning: static property 'xml' is not concurrency-safe because non-'Sendable' type 'MIMEType' may have shared mutable state; this is an error in the Swift 6 language mode
static let xml: Self = "application/xml"
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:4:15: note: consider making struct 'MIMEType' conform to the 'Sendable' protocol
public struct MIMEType: ExpressibleByStringLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:56:16: note: add '@MainActor' to make static property 'xml' part of global actor 'MainActor'
static let xml: Self = "application/xml"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:56:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let xml: Self = "application/xml"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Method.swift:38:16: warning: static property 'get' is not concurrency-safe because non-'Sendable' type 'Method' may have shared mutable state; this is an error in the Swift 6 language mode
static let get: Self = "GET"
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Method.swift:6:15: note: consider making struct 'Method' conform to the 'Sendable' protocol
public struct Method: ExpressibleByStringLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Method.swift:38:16: note: add '@MainActor' to make static property 'get' part of global actor 'MainActor'
static let get: Self = "GET"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Method.swift:38:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let get: Self = "GET"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Method.swift:40:16: warning: static property 'put' is not concurrency-safe because non-'Sendable' type 'Method' may have shared mutable state; this is an error in the Swift 6 language mode
static let put: Self = "PUT"
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Method.swift:6:15: note: consider making struct 'Method' conform to the 'Sendable' protocol
public struct Method: ExpressibleByStringLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Method.swift:40:16: note: add '@MainActor' to make static property 'put' part of global actor 'MainActor'
static let put: Self = "PUT"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Method.swift:40:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let put: Self = "PUT"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Method.swift:43:16: warning: static property 'post' is not concurrency-safe because non-'Sendable' type 'Method' may have shared mutable state; this is an error in the Swift 6 language mode
static let post: Self = "POST"
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Method.swift:6:15: note: consider making struct 'Method' conform to the 'Sendable' protocol
public struct Method: ExpressibleByStringLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Method.swift:43:16: note: add '@MainActor' to make static property 'post' part of global actor 'MainActor'
static let post: Self = "POST"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Method.swift:43:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let post: Self = "POST"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Method.swift:45:16: warning: static property 'patch' is not concurrency-safe because non-'Sendable' type 'Method' may have shared mutable state; this is an error in the Swift 6 language mode
static let patch: Self = "PATCH"
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Method.swift:6:15: note: consider making struct 'Method' conform to the 'Sendable' protocol
public struct Method: ExpressibleByStringLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Method.swift:45:16: note: add '@MainActor' to make static property 'patch' part of global actor 'MainActor'
static let patch: Self = "PATCH"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Method.swift:45:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let patch: Self = "PATCH"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Method.swift:47:16: warning: static property 'delete' is not concurrency-safe because non-'Sendable' type 'Method' may have shared mutable state; this is an error in the Swift 6 language mode
static let delete: Self = "DELETE"
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Method.swift:6:15: note: consider making struct 'Method' conform to the 'Sendable' protocol
public struct Method: ExpressibleByStringLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Method.swift:47:16: note: add '@MainActor' to make static property 'delete' part of global actor 'MainActor'
static let delete: Self = "DELETE"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Method.swift:47:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let delete: Self = "DELETE"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:45:16: warning: static property 'ok' is not concurrency-safe because non-'Sendable' type 'StatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
static let ok: Self = 200
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:9:15: note: consider making struct 'StatusCode' conform to the 'Sendable' protocol
public struct StatusCode: ExpressibleByIntegerLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:45:16: note: add '@MainActor' to make static property 'ok' part of global actor 'MainActor'
static let ok: Self = 200
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:45:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let ok: Self = 200
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:47:16: warning: static property 'created' is not concurrency-safe because non-'Sendable' type 'StatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
static let created: Self = 201
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:9:15: note: consider making struct 'StatusCode' conform to the 'Sendable' protocol
public struct StatusCode: ExpressibleByIntegerLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:47:16: note: add '@MainActor' to make static property 'created' part of global actor 'MainActor'
static let created: Self = 201
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:47:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let created: Self = 201
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:49:16: warning: static property 'accepted' is not concurrency-safe because non-'Sendable' type 'StatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
static let accepted: Self = 202
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:9:15: note: consider making struct 'StatusCode' conform to the 'Sendable' protocol
public struct StatusCode: ExpressibleByIntegerLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:49:16: note: add '@MainActor' to make static property 'accepted' part of global actor 'MainActor'
static let accepted: Self = 202
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:49:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let accepted: Self = 202
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:51:16: warning: static property 'noContent' is not concurrency-safe because non-'Sendable' type 'StatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
static let noContent: Self = 204
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:9:15: note: consider making struct 'StatusCode' conform to the 'Sendable' protocol
public struct StatusCode: ExpressibleByIntegerLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:51:16: note: add '@MainActor' to make static property 'noContent' part of global actor 'MainActor'
static let noContent: Self = 204
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:51:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let noContent: Self = 204
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:56:16: warning: static property 'movedPermanently' is not concurrency-safe because non-'Sendable' type 'StatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
static let movedPermanently: Self = 301
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:9:15: note: consider making struct 'StatusCode' conform to the 'Sendable' protocol
public struct StatusCode: ExpressibleByIntegerLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:56:16: note: add '@MainActor' to make static property 'movedPermanently' part of global actor 'MainActor'
static let movedPermanently: Self = 301
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:56:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let movedPermanently: Self = 301
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:58:16: warning: static property 'seeOther' is not concurrency-safe because non-'Sendable' type 'StatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
static let seeOther: Self = 303
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:9:15: note: consider making struct 'StatusCode' conform to the 'Sendable' protocol
public struct StatusCode: ExpressibleByIntegerLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:58:16: note: add '@MainActor' to make static property 'seeOther' part of global actor 'MainActor'
static let seeOther: Self = 303
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:58:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let seeOther: Self = 303
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:60:16: warning: static property 'temporaryRedirect' is not concurrency-safe because non-'Sendable' type 'StatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
static let temporaryRedirect: Self = 307
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:9:15: note: consider making struct 'StatusCode' conform to the 'Sendable' protocol
public struct StatusCode: ExpressibleByIntegerLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:60:16: note: add '@MainActor' to make static property 'temporaryRedirect' part of global actor 'MainActor'
static let temporaryRedirect: Self = 307
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:60:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let temporaryRedirect: Self = 307
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:65:16: warning: static property 'badRequest' is not concurrency-safe because non-'Sendable' type 'StatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
static let badRequest: Self = 400
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:9:15: note: consider making struct 'StatusCode' conform to the 'Sendable' protocol
public struct StatusCode: ExpressibleByIntegerLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:65:16: note: add '@MainActor' to make static property 'badRequest' part of global actor 'MainActor'
static let badRequest: Self = 400
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:65:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let badRequest: Self = 400
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:67:16: warning: static property 'unauthorized' is not concurrency-safe because non-'Sendable' type 'StatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
static let unauthorized: Self = 401
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:9:15: note: consider making struct 'StatusCode' conform to the 'Sendable' protocol
public struct StatusCode: ExpressibleByIntegerLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:67:16: note: add '@MainActor' to make static property 'unauthorized' part of global actor 'MainActor'
static let unauthorized: Self = 401
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:67:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let unauthorized: Self = 401
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:69:16: warning: static property 'forbidden' is not concurrency-safe because non-'Sendable' type 'StatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
static let forbidden: Self = 403
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:9:15: note: consider making struct 'StatusCode' conform to the 'Sendable' protocol
public struct StatusCode: ExpressibleByIntegerLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:69:16: note: add '@MainActor' to make static property 'forbidden' part of global actor 'MainActor'
static let forbidden: Self = 403
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:69:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let forbidden: Self = 403
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:71:16: warning: static property 'notFound' is not concurrency-safe because non-'Sendable' type 'StatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
static let notFound: Self = 404
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:9:15: note: consider making struct 'StatusCode' conform to the 'Sendable' protocol
public struct StatusCode: ExpressibleByIntegerLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:71:16: note: add '@MainActor' to make static property 'notFound' part of global actor 'MainActor'
static let notFound: Self = 404
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:71:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let notFound: Self = 404
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:73:16: warning: static property 'requestTimeout' is not concurrency-safe because non-'Sendable' type 'StatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
static let requestTimeout: Self = 408
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:9:15: note: consider making struct 'StatusCode' conform to the 'Sendable' protocol
public struct StatusCode: ExpressibleByIntegerLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:73:16: note: add '@MainActor' to make static property 'requestTimeout' part of global actor 'MainActor'
static let requestTimeout: Self = 408
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:73:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let requestTimeout: Self = 408
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:75:16: warning: static property 'conflict' is not concurrency-safe because non-'Sendable' type 'StatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
static let conflict: Self = 409
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:9:15: note: consider making struct 'StatusCode' conform to the 'Sendable' protocol
public struct StatusCode: ExpressibleByIntegerLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:75:16: note: add '@MainActor' to make static property 'conflict' part of global actor 'MainActor'
static let conflict: Self = 409
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:75:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let conflict: Self = 409
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:77:16: warning: static property 'iAmATeapot' is not concurrency-safe because non-'Sendable' type 'StatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
static let iAmATeapot: Self = 418
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:9:15: note: consider making struct 'StatusCode' conform to the 'Sendable' protocol
public struct StatusCode: ExpressibleByIntegerLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:77:16: note: add '@MainActor' to make static property 'iAmATeapot' part of global actor 'MainActor'
static let iAmATeapot: Self = 418
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:77:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let iAmATeapot: Self = 418
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:79:16: warning: static property 'tooManyRequests' is not concurrency-safe because non-'Sendable' type 'StatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
static let tooManyRequests: Self = 429
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:9:15: note: consider making struct 'StatusCode' conform to the 'Sendable' protocol
public struct StatusCode: ExpressibleByIntegerLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:79:16: note: add '@MainActor' to make static property 'tooManyRequests' part of global actor 'MainActor'
static let tooManyRequests: Self = 429
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:79:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let tooManyRequests: Self = 429
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:84:16: warning: static property 'internalServerError' is not concurrency-safe because non-'Sendable' type 'StatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
static let internalServerError: Self = 500
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:9:15: note: consider making struct 'StatusCode' conform to the 'Sendable' protocol
public struct StatusCode: ExpressibleByIntegerLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:84:16: note: add '@MainActor' to make static property 'internalServerError' part of global actor 'MainActor'
static let internalServerError: Self = 500
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:84:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let internalServerError: Self = 500
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:86:16: warning: static property 'notImplemented' is not concurrency-safe because non-'Sendable' type 'StatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
static let notImplemented: Self = 501
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:9:15: note: consider making struct 'StatusCode' conform to the 'Sendable' protocol
public struct StatusCode: ExpressibleByIntegerLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:86:16: note: add '@MainActor' to make static property 'notImplemented' part of global actor 'MainActor'
static let notImplemented: Self = 501
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:86:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let notImplemented: Self = 501
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:88:16: warning: static property 'badGateway' is not concurrency-safe because non-'Sendable' type 'StatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
static let badGateway: Self = 502
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:9:15: note: consider making struct 'StatusCode' conform to the 'Sendable' protocol
public struct StatusCode: ExpressibleByIntegerLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:88:16: note: add '@MainActor' to make static property 'badGateway' part of global actor 'MainActor'
static let badGateway: Self = 502
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:88:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let badGateway: Self = 502
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:90:16: warning: static property 'serviceUnavailable' is not concurrency-safe because non-'Sendable' type 'StatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
static let serviceUnavailable: Self = 503
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:9:15: note: consider making struct 'StatusCode' conform to the 'Sendable' protocol
public struct StatusCode: ExpressibleByIntegerLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:90:16: note: add '@MainActor' to make static property 'serviceUnavailable' part of global actor 'MainActor'
static let serviceUnavailable: Self = 503
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:90:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let serviceUnavailable: Self = 503
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:92:16: warning: static property 'gatewayTimeout' is not concurrency-safe because non-'Sendable' type 'StatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
static let gatewayTimeout: Self = 504
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:9:15: note: consider making struct 'StatusCode' conform to the 'Sendable' protocol
public struct StatusCode: ExpressibleByIntegerLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:92:16: note: add '@MainActor' to make static property 'gatewayTimeout' part of global actor 'MainActor'
static let gatewayTimeout: Self = 504
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:92:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let gatewayTimeout: Self = 504
^
nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ AbsoluteURLWebSocket.swift,\ AnyRequest.swift,\ AnyResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Implementation/AbsoluteURLWebSocket.swift /Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Implementation/AnyRequest.swift /Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Implementation/AnyResponse.swift (in target 'SessionPlus' from project 'SessionPlus')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Implementation/AbsoluteURLWebSocket.swift (in target 'SessionPlus' from project 'SessionPlus')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Implementation/AbsoluteURLWebSocket.swift:8:12: warning: non-final class 'AbsoluteURLWebSocket' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
open class AbsoluteURLWebSocket: NSObject, WebSocket {
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Implementation/AbsoluteURLWebSocket.swift:16:14: warning: stored property '$__lazy_storage_$_session' of 'Sendable'-conforming class 'AbsoluteURLWebSocket' is mutable; this is an error in the Swift 6 language mode
lazy var session: URLSession = URLSession(configuration: .default, delegate: self, delegateQueue: nil)
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Implementation/AnyRequest.swift (in target 'SessionPlus' from project 'SessionPlus')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Implementation/AnyResponse.swift (in target 'SessionPlus' from project 'SessionPlus')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling PassthroughAsyncSequence.swift (in target 'AsyncPlus' from project 'AsyncPlus')
SwiftCompile normal arm64 Compiling\ Post.swift,\ Put.swift,\ Address.swift /Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Implementation/Post.swift /Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Implementation/Put.swift /Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Address.swift (in target 'SessionPlus' from project 'SessionPlus')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Implementation/Post.swift (in target 'SessionPlus' from project 'SessionPlus')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Implementation/Put.swift (in target 'SessionPlus' from project 'SessionPlus')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Address.swift (in target 'SessionPlus' from project 'SessionPlus')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling PassthroughAsyncThrowingSequence.swift (in target 'AsyncPlus' from project 'AsyncPlus')
SwiftCompile normal arm64 Compiling\ QueryItem.swift,\ Request.swift,\ Response.swift /Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/QueryItem.swift /Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Request.swift /Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Response.swift (in target 'SessionPlus' from project 'SessionPlus')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/QueryItem.swift (in target 'SessionPlus' from project 'SessionPlus')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Request.swift (in target 'SessionPlus' from project 'SessionPlus')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Request.swift:56:43: warning: type 'Address' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
"address": .stringConvertible(address),
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Address.swift:7:13: note: consider making enum 'Address' conform to the 'Sendable' protocol
public enum Address: Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Request.swift:57:42: warning: type 'Method' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
"method": .stringConvertible(method),
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Method.swift:6:15: note: consider making struct 'Method' conform to the 'Sendable' protocol
public struct Method: ExpressibleByStringLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Request.swift:64:43: warning: type 'Address' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
"address": .stringConvertible(address),
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Address.swift:7:13: note: consider making enum 'Address' conform to the 'Sendable' protocol
public enum Address: Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Request.swift:65:42: warning: type 'Method' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
"method": .stringConvertible(method),
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Method.swift:6:15: note: consider making struct 'Method' conform to the 'Sendable' protocol
public struct Method: ExpressibleByStringLiteral, Hashable {
^
, Sendable
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Response.swift (in target 'SessionPlus' from project 'SessionPlus')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Response.swift:17:46: warning: type 'StatusCode' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
"statusCode": .stringConvertible(statusCode),
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:9:15: note: consider making struct 'StatusCode' conform to the 'Sendable' protocol
public struct StatusCode: ExpressibleByIntegerLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Response.swift:24:46: warning: type 'StatusCode' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
"statusCode": .stringConvertible(statusCode),
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:9:15: note: consider making struct 'StatusCode' conform to the 'Sendable' protocol
public struct StatusCode: ExpressibleByIntegerLiteral, Hashable {
^
, Sendable
SwiftDriverJobDiscovery normal arm64 Compiling Locks.swift (in target 'Logging' from project 'swift-log')
SwiftCompile normal arm64 Compiling\ Logger+SessionPlus.swift,\ URLCache+SessionPlus.swift,\ URLQueryItem+SessionPlus.swift,\ URLRequest+SessionPlus.swift /Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Extensions/Logger+SessionPlus.swift /Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Extensions/URLCache+SessionPlus.swift /Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Extensions/URLQueryItem+SessionPlus.swift /Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Extensions/URLRequest+SessionPlus.swift (in target 'SessionPlus' from project 'SessionPlus')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Extensions/Logger+SessionPlus.swift (in target 'SessionPlus' from project 'SessionPlus')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Extensions/URLCache+SessionPlus.swift (in target 'SessionPlus' from project 'SessionPlus')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Extensions/URLCache+SessionPlus.swift:12:27: warning: static property 'twentyFiveMB' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var twentyFiveMB: Capacity = .megabytes(25)
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Extensions/URLCache+SessionPlus.swift:12:27: note: convert 'twentyFiveMB' to a 'let' constant to make 'Sendable' shared state immutable
public static var twentyFiveMB: Capacity = .megabytes(25)
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Extensions/URLCache+SessionPlus.swift:12:27: note: add '@MainActor' to make static property 'twentyFiveMB' part of global actor 'MainActor'
public static var twentyFiveMB: Capacity = .megabytes(25)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Extensions/URLCache+SessionPlus.swift:12:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var twentyFiveMB: Capacity = .megabytes(25)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Extensions/URLCache+SessionPlus.swift:13:27: warning: static property 'twoHundredMB' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var twoHundredMB: Capacity = .megabytes(200)
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Extensions/URLCache+SessionPlus.swift:13:27: note: convert 'twoHundredMB' to a 'let' constant to make 'Sendable' shared state immutable
public static var twoHundredMB: Capacity = .megabytes(200)
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Extensions/URLCache+SessionPlus.swift:13:27: note: add '@MainActor' to make static property 'twoHundredMB' part of global actor 'MainActor'
public static var twoHundredMB: Capacity = .megabytes(200)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Extensions/URLCache+SessionPlus.swift:13:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var twoHundredMB: Capacity = .megabytes(200)
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Extensions/URLQueryItem+SessionPlus.swift (in target 'SessionPlus' from project 'SessionPlus')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Extensions/URLRequest+SessionPlus.swift (in target 'SessionPlus' from project 'SessionPlus')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling MetadataProvider.swift (in target 'Logging' from project 'swift-log')
SwiftCompile normal arm64 Compiling\ BaseURLSessionClient.swift,\ Delete.swift,\ FormData.swift /Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Implementation/BaseURLSessionClient.swift /Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Implementation/Delete.swift /Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Implementation/FormData.swift (in target 'SessionPlus' from project 'SessionPlus')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Implementation/BaseURLSessionClient.swift (in target 'SessionPlus' from project 'SessionPlus')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Implementation/Delete.swift (in target 'SessionPlus' from project 'SessionPlus')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Implementation/FormData.swift (in target 'SessionPlus' from project 'SessionPlus')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling Logging.swift (in target 'Logging' from project 'swift-log')
SwiftCompile normal arm64 Compiling\ Get.swift,\ PNGImageFormDataRequest.swift,\ Patch.swift /Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Implementation/Get.swift /Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Implementation/PNGImageFormDataRequest.swift /Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Implementation/Patch.swift (in target 'SessionPlus' from project 'SessionPlus')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Implementation/Get.swift (in target 'SessionPlus' from project 'SessionPlus')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Implementation/PNGImageFormDataRequest.swift (in target 'SessionPlus' from project 'SessionPlus')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Implementation/Patch.swift (in target 'SessionPlus' from project 'SessionPlus')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Emitting module for SessionPlus (in target 'SessionPlus' from project 'SessionPlus')
SwiftDriver\ Compilation\ Requirements SessionPlus normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SessionPlus' from project 'SessionPlus')
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 SessionPlus -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SessionPlus.build/Debug-appletvos/SessionPlus.build/Objects-normal/arm64/SessionPlus.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/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -target arm64-apple-tvos15.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-appletvos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SessionPlus.build/Debug-appletvos/SessionPlus.build/Objects-normal/arm64/SessionPlus-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/SessionPlus.build/Debug-appletvos/SessionPlus.build/Objects-normal/arm64/SessionPlus.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SessionPlus.build/Debug-appletvos/SessionPlus.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SessionPlus.build/Debug-appletvos/SessionPlus.build/Objects-normal/arm64/SessionPlus_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SessionPlus.build/Debug-appletvos/SessionPlus.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SessionPlus.build/Debug-appletvos/SessionPlus.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SessionPlus.build/Debug-appletvos/SessionPlus.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/SessionPlus.build/Debug-appletvos/SessionPlus.build/Objects-normal/arm64/SessionPlus-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling CurrentValueAsyncSubject.swift (in target 'AsyncPlus' from project 'AsyncPlus')
SwiftCompile normal arm64 Compiling\ Socket.swift,\ StatusCode.swift,\ WebSocket.swift /Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Socket.swift /Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift /Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/WebSocket.swift (in target 'SessionPlus' from project 'SessionPlus')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Socket.swift (in target 'SessionPlus' from project 'SessionPlus')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift (in target 'SessionPlus' from project 'SessionPlus')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:45:16: warning: static property 'ok' is not concurrency-safe because non-'Sendable' type 'StatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
static let ok: Self = 200
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:9:15: note: consider making struct 'StatusCode' conform to the 'Sendable' protocol
public struct StatusCode: ExpressibleByIntegerLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:45:16: note: add '@MainActor' to make static property 'ok' part of global actor 'MainActor'
static let ok: Self = 200
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:45:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let ok: Self = 200
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:47:16: warning: static property 'created' is not concurrency-safe because non-'Sendable' type 'StatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
static let created: Self = 201
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:9:15: note: consider making struct 'StatusCode' conform to the 'Sendable' protocol
public struct StatusCode: ExpressibleByIntegerLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:47:16: note: add '@MainActor' to make static property 'created' part of global actor 'MainActor'
static let created: Self = 201
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:47:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let created: Self = 201
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:49:16: warning: static property 'accepted' is not concurrency-safe because non-'Sendable' type 'StatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
static let accepted: Self = 202
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:9:15: note: consider making struct 'StatusCode' conform to the 'Sendable' protocol
public struct StatusCode: ExpressibleByIntegerLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:49:16: note: add '@MainActor' to make static property 'accepted' part of global actor 'MainActor'
static let accepted: Self = 202
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:49:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let accepted: Self = 202
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:51:16: warning: static property 'noContent' is not concurrency-safe because non-'Sendable' type 'StatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
static let noContent: Self = 204
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:9:15: note: consider making struct 'StatusCode' conform to the 'Sendable' protocol
public struct StatusCode: ExpressibleByIntegerLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:51:16: note: add '@MainActor' to make static property 'noContent' part of global actor 'MainActor'
static let noContent: Self = 204
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:51:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let noContent: Self = 204
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:56:16: warning: static property 'movedPermanently' is not concurrency-safe because non-'Sendable' type 'StatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
static let movedPermanently: Self = 301
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:9:15: note: consider making struct 'StatusCode' conform to the 'Sendable' protocol
public struct StatusCode: ExpressibleByIntegerLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:56:16: note: add '@MainActor' to make static property 'movedPermanently' part of global actor 'MainActor'
static let movedPermanently: Self = 301
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:56:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let movedPermanently: Self = 301
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:58:16: warning: static property 'seeOther' is not concurrency-safe because non-'Sendable' type 'StatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
static let seeOther: Self = 303
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:9:15: note: consider making struct 'StatusCode' conform to the 'Sendable' protocol
public struct StatusCode: ExpressibleByIntegerLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:58:16: note: add '@MainActor' to make static property 'seeOther' part of global actor 'MainActor'
static let seeOther: Self = 303
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:58:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let seeOther: Self = 303
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:60:16: warning: static property 'temporaryRedirect' is not concurrency-safe because non-'Sendable' type 'StatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
static let temporaryRedirect: Self = 307
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:9:15: note: consider making struct 'StatusCode' conform to the 'Sendable' protocol
public struct StatusCode: ExpressibleByIntegerLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:60:16: note: add '@MainActor' to make static property 'temporaryRedirect' part of global actor 'MainActor'
static let temporaryRedirect: Self = 307
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:60:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let temporaryRedirect: Self = 307
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:65:16: warning: static property 'badRequest' is not concurrency-safe because non-'Sendable' type 'StatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
static let badRequest: Self = 400
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:9:15: note: consider making struct 'StatusCode' conform to the 'Sendable' protocol
public struct StatusCode: ExpressibleByIntegerLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:65:16: note: add '@MainActor' to make static property 'badRequest' part of global actor 'MainActor'
static let badRequest: Self = 400
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:65:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let badRequest: Self = 400
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:67:16: warning: static property 'unauthorized' is not concurrency-safe because non-'Sendable' type 'StatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
static let unauthorized: Self = 401
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:9:15: note: consider making struct 'StatusCode' conform to the 'Sendable' protocol
public struct StatusCode: ExpressibleByIntegerLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:67:16: note: add '@MainActor' to make static property 'unauthorized' part of global actor 'MainActor'
static let unauthorized: Self = 401
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:67:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let unauthorized: Self = 401
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:69:16: warning: static property 'forbidden' is not concurrency-safe because non-'Sendable' type 'StatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
static let forbidden: Self = 403
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:9:15: note: consider making struct 'StatusCode' conform to the 'Sendable' protocol
public struct StatusCode: ExpressibleByIntegerLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:69:16: note: add '@MainActor' to make static property 'forbidden' part of global actor 'MainActor'
static let forbidden: Self = 403
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:69:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let forbidden: Self = 403
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:71:16: warning: static property 'notFound' is not concurrency-safe because non-'Sendable' type 'StatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
static let notFound: Self = 404
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:9:15: note: consider making struct 'StatusCode' conform to the 'Sendable' protocol
public struct StatusCode: ExpressibleByIntegerLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:71:16: note: add '@MainActor' to make static property 'notFound' part of global actor 'MainActor'
static let notFound: Self = 404
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:71:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let notFound: Self = 404
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:73:16: warning: static property 'requestTimeout' is not concurrency-safe because non-'Sendable' type 'StatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
static let requestTimeout: Self = 408
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:9:15: note: consider making struct 'StatusCode' conform to the 'Sendable' protocol
public struct StatusCode: ExpressibleByIntegerLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:73:16: note: add '@MainActor' to make static property 'requestTimeout' part of global actor 'MainActor'
static let requestTimeout: Self = 408
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:73:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let requestTimeout: Self = 408
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:75:16: warning: static property 'conflict' is not concurrency-safe because non-'Sendable' type 'StatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
static let conflict: Self = 409
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:9:15: note: consider making struct 'StatusCode' conform to the 'Sendable' protocol
public struct StatusCode: ExpressibleByIntegerLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:75:16: note: add '@MainActor' to make static property 'conflict' part of global actor 'MainActor'
static let conflict: Self = 409
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:75:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let conflict: Self = 409
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:77:16: warning: static property 'iAmATeapot' is not concurrency-safe because non-'Sendable' type 'StatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
static let iAmATeapot: Self = 418
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:9:15: note: consider making struct 'StatusCode' conform to the 'Sendable' protocol
public struct StatusCode: ExpressibleByIntegerLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:77:16: note: add '@MainActor' to make static property 'iAmATeapot' part of global actor 'MainActor'
static let iAmATeapot: Self = 418
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:77:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let iAmATeapot: Self = 418
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:79:16: warning: static property 'tooManyRequests' is not concurrency-safe because non-'Sendable' type 'StatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
static let tooManyRequests: Self = 429
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:9:15: note: consider making struct 'StatusCode' conform to the 'Sendable' protocol
public struct StatusCode: ExpressibleByIntegerLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:79:16: note: add '@MainActor' to make static property 'tooManyRequests' part of global actor 'MainActor'
static let tooManyRequests: Self = 429
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:79:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let tooManyRequests: Self = 429
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:84:16: warning: static property 'internalServerError' is not concurrency-safe because non-'Sendable' type 'StatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
static let internalServerError: Self = 500
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:9:15: note: consider making struct 'StatusCode' conform to the 'Sendable' protocol
public struct StatusCode: ExpressibleByIntegerLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:84:16: note: add '@MainActor' to make static property 'internalServerError' part of global actor 'MainActor'
static let internalServerError: Self = 500
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:84:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let internalServerError: Self = 500
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:86:16: warning: static property 'notImplemented' is not concurrency-safe because non-'Sendable' type 'StatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
static let notImplemented: Self = 501
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:9:15: note: consider making struct 'StatusCode' conform to the 'Sendable' protocol
public struct StatusCode: ExpressibleByIntegerLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:86:16: note: add '@MainActor' to make static property 'notImplemented' part of global actor 'MainActor'
static let notImplemented: Self = 501
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:86:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let notImplemented: Self = 501
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:88:16: warning: static property 'badGateway' is not concurrency-safe because non-'Sendable' type 'StatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
static let badGateway: Self = 502
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:9:15: note: consider making struct 'StatusCode' conform to the 'Sendable' protocol
public struct StatusCode: ExpressibleByIntegerLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:88:16: note: add '@MainActor' to make static property 'badGateway' part of global actor 'MainActor'
static let badGateway: Self = 502
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:88:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let badGateway: Self = 502
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:90:16: warning: static property 'serviceUnavailable' is not concurrency-safe because non-'Sendable' type 'StatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
static let serviceUnavailable: Self = 503
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:9:15: note: consider making struct 'StatusCode' conform to the 'Sendable' protocol
public struct StatusCode: ExpressibleByIntegerLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:90:16: note: add '@MainActor' to make static property 'serviceUnavailable' part of global actor 'MainActor'
static let serviceUnavailable: Self = 503
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:90:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let serviceUnavailable: Self = 503
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:92:16: warning: static property 'gatewayTimeout' is not concurrency-safe because non-'Sendable' type 'StatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
static let gatewayTimeout: Self = 504
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:9:15: note: consider making struct 'StatusCode' conform to the 'Sendable' protocol
public struct StatusCode: ExpressibleByIntegerLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:92:16: note: add '@MainActor' to make static property 'gatewayTimeout' part of global actor 'MainActor'
static let gatewayTimeout: Self = 504
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/StatusCode.swift:92:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let gatewayTimeout: Self = 504
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/WebSocket.swift (in target 'SessionPlus' from project 'SessionPlus')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ Authorization.swift,\ Client.swift,\ Header.swift /Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Authorization.swift /Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Client.swift /Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Header.swift (in target 'SessionPlus' from project 'SessionPlus')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Authorization.swift (in target 'SessionPlus' from project 'SessionPlus')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Client.swift (in target 'SessionPlus' from project 'SessionPlus')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Header.swift (in target 'SessionPlus' from project 'SessionPlus')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Header.swift:12:23: warning: static property 'dateFormatter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var dateFormatter: DateFormatter = {
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Header.swift:12:23: note: convert 'dateFormatter' to a 'let' constant to make 'Sendable' shared state immutable
public static var dateFormatter: DateFormatter = {
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Header.swift:12:23: note: add '@MainActor' to make static property 'dateFormatter' part of global actor 'MainActor'
public static var dateFormatter: DateFormatter = {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Header.swift:12:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var dateFormatter: DateFormatter = {
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Header.swift:43:16: warning: static property 'accept' is not concurrency-safe because non-'Sendable' type 'Header' may have shared mutable state; this is an error in the Swift 6 language mode
static let accept: Self = "Accept"
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Header.swift:4:15: note: consider making struct 'Header' conform to the 'Sendable' protocol
public struct Header: ExpressibleByStringLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Header.swift:43:16: note: add '@MainActor' to make static property 'accept' part of global actor 'MainActor'
static let accept: Self = "Accept"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Header.swift:43:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let accept: Self = "Accept"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Header.swift:46:16: warning: static property 'authorization' is not concurrency-safe because non-'Sendable' type 'Header' may have shared mutable state; this is an error in the Swift 6 language mode
static let authorization: Self = "Authorization"
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Header.swift:4:15: note: consider making struct 'Header' conform to the 'Sendable' protocol
public struct Header: ExpressibleByStringLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Header.swift:46:16: note: add '@MainActor' to make static property 'authorization' part of global actor 'MainActor'
static let authorization: Self = "Authorization"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Header.swift:46:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let authorization: Self = "Authorization"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Header.swift:48:16: warning: static property 'contentLength' is not concurrency-safe because non-'Sendable' type 'Header' may have shared mutable state; this is an error in the Swift 6 language mode
static let contentLength: Self = "Content-Length"
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Header.swift:4:15: note: consider making struct 'Header' conform to the 'Sendable' protocol
public struct Header: ExpressibleByStringLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Header.swift:48:16: note: add '@MainActor' to make static property 'contentLength' part of global actor 'MainActor'
static let contentLength: Self = "Content-Length"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Header.swift:48:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let contentLength: Self = "Content-Length"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Header.swift:51:16: warning: static property 'contentMD5' is not concurrency-safe because non-'Sendable' type 'Header' may have shared mutable state; this is an error in the Swift 6 language mode
static let contentMD5: Self = "Content-MD5"
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Header.swift:4:15: note: consider making struct 'Header' conform to the 'Sendable' protocol
public struct Header: ExpressibleByStringLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Header.swift:51:16: note: add '@MainActor' to make static property 'contentMD5' part of global actor 'MainActor'
static let contentMD5: Self = "Content-MD5"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Header.swift:51:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let contentMD5: Self = "Content-MD5"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Header.swift:53:16: warning: static property 'contentType' is not concurrency-safe because non-'Sendable' type 'Header' may have shared mutable state; this is an error in the Swift 6 language mode
static let contentType: Self = "Content-Type"
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Header.swift:4:15: note: consider making struct 'Header' conform to the 'Sendable' protocol
public struct Header: ExpressibleByStringLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Header.swift:53:16: note: add '@MainActor' to make static property 'contentType' part of global actor 'MainActor'
static let contentType: Self = "Content-Type"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Header.swift:53:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let contentType: Self = "Content-Type"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Header.swift:55:16: warning: static property 'date' is not concurrency-safe because non-'Sendable' type 'Header' may have shared mutable state; this is an error in the Swift 6 language mode
static let date: Self = "Date"
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Header.swift:4:15: note: consider making struct 'Header' conform to the 'Sendable' protocol
public struct Header: ExpressibleByStringLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Header.swift:55:16: note: add '@MainActor' to make static property 'date' part of global actor 'MainActor'
static let date: Self = "Date"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Header.swift:55:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let date: Self = "Date"
^
nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ Headers.swift,\ MIMEType.swift,\ Method.swift /Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Headers.swift /Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift /Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Method.swift (in target 'SessionPlus' from project 'SessionPlus')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Headers.swift (in target 'SessionPlus' from project 'SessionPlus')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift (in target 'SessionPlus' from project 'SessionPlus')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:34:16: warning: static property 'bin' is not concurrency-safe because non-'Sendable' type 'MIMEType' may have shared mutable state; this is an error in the Swift 6 language mode
static let bin: Self = "application/octet-stream"
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:4:15: note: consider making struct 'MIMEType' conform to the 'Sendable' protocol
public struct MIMEType: ExpressibleByStringLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:34:16: note: add '@MainActor' to make static property 'bin' part of global actor 'MainActor'
static let bin: Self = "application/octet-stream"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:34:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let bin: Self = "application/octet-stream"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:36:16: warning: static property 'gif' is not concurrency-safe because non-'Sendable' type 'MIMEType' may have shared mutable state; this is an error in the Swift 6 language mode
static let gif: Self = "image/gif"
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:4:15: note: consider making struct 'MIMEType' conform to the 'Sendable' protocol
public struct MIMEType: ExpressibleByStringLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:36:16: note: add '@MainActor' to make static property 'gif' part of global actor 'MainActor'
static let gif: Self = "image/gif"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:36:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let gif: Self = "image/gif"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:38:16: warning: static property 'html' is not concurrency-safe because non-'Sendable' type 'MIMEType' may have shared mutable state; this is an error in the Swift 6 language mode
static let html: Self = "text/html"
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:4:15: note: consider making struct 'MIMEType' conform to the 'Sendable' protocol
public struct MIMEType: ExpressibleByStringLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:38:16: note: add '@MainActor' to make static property 'html' part of global actor 'MainActor'
static let html: Self = "text/html"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:38:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let html: Self = "text/html"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:40:16: warning: static property 'jpeg' is not concurrency-safe because non-'Sendable' type 'MIMEType' may have shared mutable state; this is an error in the Swift 6 language mode
static let jpeg: Self = "image/jpeg"
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:4:15: note: consider making struct 'MIMEType' conform to the 'Sendable' protocol
public struct MIMEType: ExpressibleByStringLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:40:16: note: add '@MainActor' to make static property 'jpeg' part of global actor 'MainActor'
static let jpeg: Self = "image/jpeg"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:40:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let jpeg: Self = "image/jpeg"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:42:16: warning: static property 'js' is not concurrency-safe because non-'Sendable' type 'MIMEType' may have shared mutable state; this is an error in the Swift 6 language mode
static let js: Self = "text/javascript"
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:4:15: note: consider making struct 'MIMEType' conform to the 'Sendable' protocol
public struct MIMEType: ExpressibleByStringLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:42:16: note: add '@MainActor' to make static property 'js' part of global actor 'MainActor'
static let js: Self = "text/javascript"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:42:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let js: Self = "text/javascript"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:44:16: warning: static property 'json' is not concurrency-safe because non-'Sendable' type 'MIMEType' may have shared mutable state; this is an error in the Swift 6 language mode
static let json: Self = "application/json"
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:4:15: note: consider making struct 'MIMEType' conform to the 'Sendable' protocol
public struct MIMEType: ExpressibleByStringLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:44:16: note: add '@MainActor' to make static property 'json' part of global actor 'MainActor'
static let json: Self = "application/json"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:44:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let json: Self = "application/json"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:46:16: warning: static property 'jsonld' is not concurrency-safe because non-'Sendable' type 'MIMEType' may have shared mutable state; this is an error in the Swift 6 language mode
static let jsonld: Self = "application/ld+json"
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:4:15: note: consider making struct 'MIMEType' conform to the 'Sendable' protocol
public struct MIMEType: ExpressibleByStringLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:46:16: note: add '@MainActor' to make static property 'jsonld' part of global actor 'MainActor'
static let jsonld: Self = "application/ld+json"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:46:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let jsonld: Self = "application/ld+json"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:48:16: warning: static property 'png' is not concurrency-safe because non-'Sendable' type 'MIMEType' may have shared mutable state; this is an error in the Swift 6 language mode
static let png: Self = "image/png"
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:4:15: note: consider making struct 'MIMEType' conform to the 'Sendable' protocol
public struct MIMEType: ExpressibleByStringLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:48:16: note: add '@MainActor' to make static property 'png' part of global actor 'MainActor'
static let png: Self = "image/png"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:48:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let png: Self = "image/png"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:50:16: warning: static property 'pdf' is not concurrency-safe because non-'Sendable' type 'MIMEType' may have shared mutable state; this is an error in the Swift 6 language mode
static let pdf: Self = "application/pdf"
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:4:15: note: consider making struct 'MIMEType' conform to the 'Sendable' protocol
public struct MIMEType: ExpressibleByStringLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:50:16: note: add '@MainActor' to make static property 'pdf' part of global actor 'MainActor'
static let pdf: Self = "application/pdf"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:50:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let pdf: Self = "application/pdf"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:52:16: warning: static property 'svg' is not concurrency-safe because non-'Sendable' type 'MIMEType' may have shared mutable state; this is an error in the Swift 6 language mode
static let svg: Self = "image/svg+xml"
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:4:15: note: consider making struct 'MIMEType' conform to the 'Sendable' protocol
public struct MIMEType: ExpressibleByStringLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:52:16: note: add '@MainActor' to make static property 'svg' part of global actor 'MainActor'
static let svg: Self = "image/svg+xml"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:52:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let svg: Self = "image/svg+xml"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:54:16: warning: static property 'txt' is not concurrency-safe because non-'Sendable' type 'MIMEType' may have shared mutable state; this is an error in the Swift 6 language mode
static let txt: Self = "text/plain"
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:4:15: note: consider making struct 'MIMEType' conform to the 'Sendable' protocol
public struct MIMEType: ExpressibleByStringLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:54:16: note: add '@MainActor' to make static property 'txt' part of global actor 'MainActor'
static let txt: Self = "text/plain"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:54:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let txt: Self = "text/plain"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:56:16: warning: static property 'xml' is not concurrency-safe because non-'Sendable' type 'MIMEType' may have shared mutable state; this is an error in the Swift 6 language mode
static let xml: Self = "application/xml"
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:4:15: note: consider making struct 'MIMEType' conform to the 'Sendable' protocol
public struct MIMEType: ExpressibleByStringLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:56:16: note: add '@MainActor' to make static property 'xml' part of global actor 'MainActor'
static let xml: Self = "application/xml"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/MIMEType.swift:56:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let xml: Self = "application/xml"
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Method.swift (in target 'SessionPlus' from project 'SessionPlus')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Method.swift:38:16: warning: static property 'get' is not concurrency-safe because non-'Sendable' type 'Method' may have shared mutable state; this is an error in the Swift 6 language mode
static let get: Self = "GET"
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Method.swift:6:15: note: consider making struct 'Method' conform to the 'Sendable' protocol
public struct Method: ExpressibleByStringLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Method.swift:38:16: note: add '@MainActor' to make static property 'get' part of global actor 'MainActor'
static let get: Self = "GET"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Method.swift:38:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let get: Self = "GET"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Method.swift:40:16: warning: static property 'put' is not concurrency-safe because non-'Sendable' type 'Method' may have shared mutable state; this is an error in the Swift 6 language mode
static let put: Self = "PUT"
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Method.swift:6:15: note: consider making struct 'Method' conform to the 'Sendable' protocol
public struct Method: ExpressibleByStringLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Method.swift:40:16: note: add '@MainActor' to make static property 'put' part of global actor 'MainActor'
static let put: Self = "PUT"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Method.swift:40:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let put: Self = "PUT"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Method.swift:43:16: warning: static property 'post' is not concurrency-safe because non-'Sendable' type 'Method' may have shared mutable state; this is an error in the Swift 6 language mode
static let post: Self = "POST"
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Method.swift:6:15: note: consider making struct 'Method' conform to the 'Sendable' protocol
public struct Method: ExpressibleByStringLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Method.swift:43:16: note: add '@MainActor' to make static property 'post' part of global actor 'MainActor'
static let post: Self = "POST"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Method.swift:43:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let post: Self = "POST"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Method.swift:45:16: warning: static property 'patch' is not concurrency-safe because non-'Sendable' type 'Method' may have shared mutable state; this is an error in the Swift 6 language mode
static let patch: Self = "PATCH"
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Method.swift:6:15: note: consider making struct 'Method' conform to the 'Sendable' protocol
public struct Method: ExpressibleByStringLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Method.swift:45:16: note: add '@MainActor' to make static property 'patch' part of global actor 'MainActor'
static let patch: Self = "PATCH"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Method.swift:45:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let patch: Self = "PATCH"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Method.swift:47:16: warning: static property 'delete' is not concurrency-safe because non-'Sendable' type 'Method' may have shared mutable state; this is an error in the Swift 6 language mode
static let delete: Self = "DELETE"
^
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Method.swift:6:15: note: consider making struct 'Method' conform to the 'Sendable' protocol
public struct Method: ExpressibleByStringLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Method.swift:47:16: note: add '@MainActor' to make static property 'delete' part of global actor 'MainActor'
static let delete: Self = "DELETE"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Interface/Method.swift:47:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let delete: Self = "DELETE"
^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling PassthroughAsyncSubject.swift (in target 'AsyncPlus' from project 'AsyncPlus')
SwiftDriverJobDiscovery normal arm64 Compiling PassthroughAsyncThrowingSubject.swift (in target 'AsyncPlus' from project 'AsyncPlus')
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/SessionPlus-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SessionPlus.build/Debug-appletvos/SessionPlus.build/Objects-normal/arm64/SessionPlus-Swift.h (in target 'SessionPlus' from project 'SessionPlus')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SessionPlus.build/Debug-appletvos/SessionPlus.build/Objects-normal/arm64/SessionPlus-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/SessionPlus-Swift.h
SwiftDriverJobDiscovery normal arm64 Compiling CurrentValueAsyncThrowingSubject.swift (in target 'AsyncPlus' from project 'AsyncPlus')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SessionPlus.swiftmodule/arm64-apple-tvos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SessionPlus.build/Debug-appletvos/SessionPlus.build/Objects-normal/arm64/SessionPlus.swiftmodule (in target 'SessionPlus' from project 'SessionPlus')
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/SessionPlus.build/Debug-appletvos/SessionPlus.build/Objects-normal/arm64/SessionPlus.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SessionPlus.swiftmodule/arm64-apple-tvos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SessionPlus.swiftmodule/arm64-apple-tvos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SessionPlus.build/Debug-appletvos/SessionPlus.build/Objects-normal/arm64/SessionPlus.swiftdoc (in target 'SessionPlus' from project 'SessionPlus')
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/SessionPlus.build/Debug-appletvos/SessionPlus.build/Objects-normal/arm64/SessionPlus.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SessionPlus.swiftmodule/arm64-apple-tvos.swiftdoc
SwiftDriverJobDiscovery normal arm64 Compiling AbsoluteURLWebSocket.swift, AnyRequest.swift, AnyResponse.swift (in target 'SessionPlus' from project 'SessionPlus')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SessionPlus.swiftmodule/arm64-apple-tvos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SessionPlus.build/Debug-appletvos/SessionPlus.build/Objects-normal/arm64/SessionPlus.abi.json (in target 'SessionPlus' from project 'SessionPlus')
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/SessionPlus.build/Debug-appletvos/SessionPlus.build/Objects-normal/arm64/SessionPlus.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SessionPlus.swiftmodule/arm64-apple-tvos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SessionPlus.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SessionPlus.build/Debug-appletvos/SessionPlus.build/Objects-normal/arm64/SessionPlus.swiftsourceinfo (in target 'SessionPlus' from project 'SessionPlus')
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/SessionPlus.build/Debug-appletvos/SessionPlus.build/Objects-normal/arm64/SessionPlus.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SessionPlus.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo
SwiftCompile normal arm64 Compiling\ URLResponse+SessionPlus.swift,\ URLSessionConfiguration+SessionPlus.swift,\ URLSessionDelegate+SessionPlus.swift,\ AbsoluteURLSessionClient.swift /Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Extensions/URLResponse+SessionPlus.swift /Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Extensions/URLSessionConfiguration+SessionPlus.swift /Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Extensions/URLSessionDelegate+SessionPlus.swift /Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Implementation/AbsoluteURLSessionClient.swift (in target 'SessionPlus' from project 'SessionPlus')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Extensions/URLResponse+SessionPlus.swift (in target 'SessionPlus' from project 'SessionPlus')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Extensions/URLSessionConfiguration+SessionPlus.swift (in target 'SessionPlus' from project 'SessionPlus')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Extensions/URLSessionDelegate+SessionPlus.swift (in target 'SessionPlus' from project 'SessionPlus')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Extensions/URLSessionDelegate+SessionPlus.swift:12:14: warning: non-final class 'SelfSignedSessionDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
public class SelfSignedSessionDelegate: NSObject, URLSessionDelegate {
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SessionPlus/Implementation/AbsoluteURLSessionClient.swift (in target 'SessionPlus' from project 'SessionPlus')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriver\ Compilation Logging normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Logging' from project 'swift-log')
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 Logging -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-log.build/Debug-appletvos/Logging.build/Objects-normal/arm64/Logging.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/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -target arm64-apple-tvos12.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 -suppress-warnings -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-appletvos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-log.build/Debug-appletvos/Logging.build/Objects-normal/arm64/Logging-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/swift-log.build/Debug-appletvos/Logging.build/Objects-normal/arm64/Logging.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name swift_log -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-log.build/Debug-appletvos/Logging.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-log.build/Debug-appletvos/Logging.build/Objects-normal/arm64/Logging_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-log.build/Debug-appletvos/Logging.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-log.build/Debug-appletvos/Logging.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-log.build/Debug-appletvos/Logging.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/swift-log.build/Debug-appletvos/Logging.build/Objects-normal/arm64/Logging-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriver\ Compilation AsyncPlus normal arm64 com.apple.xcode.tools.swift.compiler (in target 'AsyncPlus' from project 'AsyncPlus')
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 AsyncPlus -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AsyncPlus.build/Debug-appletvos/AsyncPlus.build/Objects-normal/arm64/AsyncPlus.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/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -target arm64-apple-tvos15.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 -suppress-warnings -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-appletvos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AsyncPlus.build/Debug-appletvos/AsyncPlus.build/Objects-normal/arm64/AsyncPlus-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/AsyncPlus.build/Debug-appletvos/AsyncPlus.build/Objects-normal/arm64/AsyncPlus.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/AsyncPlus.build/Debug-appletvos/AsyncPlus.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AsyncPlus.build/Debug-appletvos/AsyncPlus.build/Objects-normal/arm64/AsyncPlus_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AsyncPlus.build/Debug-appletvos/AsyncPlus.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AsyncPlus.build/Debug-appletvos/AsyncPlus.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AsyncPlus.build/Debug-appletvos/AsyncPlus.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/AsyncPlus.build/Debug-appletvos/AsyncPlus.build/Objects-normal/arm64/AsyncPlus-Swift.h -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-appletvos/Logging.o normal (in target 'Logging' from project 'swift-log')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-log
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-tvos12.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -O0 -w -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-log.build/Debug-appletvos/Logging.build/Objects-normal/arm64/Logging.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-log.build/Debug-appletvos/Logging.build/Objects-normal/arm64/Logging_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-log.build/Debug-appletvos/Logging.build/Objects-normal/arm64/Logging_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/appletvos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-log.build/Debug-appletvos/Logging.build/Objects-normal/arm64/Logging.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Logging.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/AsyncPlus.o normal (in target 'AsyncPlus' from project 'AsyncPlus')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/AsyncPlus
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-tvos15.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -O0 -w -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AsyncPlus.build/Debug-appletvos/AsyncPlus.build/Objects-normal/arm64/AsyncPlus.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AsyncPlus.build/Debug-appletvos/AsyncPlus.build/Objects-normal/arm64/AsyncPlus_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AsyncPlus.build/Debug-appletvos/AsyncPlus.build/Objects-normal/arm64/AsyncPlus_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/appletvos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AsyncPlus.build/Debug-appletvos/AsyncPlus.build/Objects-normal/arm64/AsyncPlus.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/AsyncPlus.o
SwiftDriverJobDiscovery normal arm64 Compiling Post.swift, Put.swift, Address.swift (in target 'SessionPlus' from project 'SessionPlus')
ExtractAppIntentsMetadata (in target 'Logging' from project 'swift-log')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-log
/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 Logging --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk --xcode-version 16E140 --platform-family tvOS --deployment-target 12.0 --bundle-identifier swift-log.Logging --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Logging.appintents --target-triple arm64-apple-tvos12.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Logging.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-log.build/Debug-appletvos/Logging.build/Objects-normal/arm64/Logging_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-log.build/Debug-appletvos/Logging.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-log.build/Debug-appletvos/Logging.build/Objects-normal/arm64/Logging.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-log.build/Debug-appletvos/Logging.build/Logging.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-log.build/Debug-appletvos/Logging.build/Logging.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-log.build/Debug-appletvos/Logging.build/Objects-normal/arm64/Logging.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-27 03:06:11.578 appintentsmetadataprocessor[812:4448] Starting appintentsmetadataprocessor export
2025-04-27 03:06:11.628 appintentsmetadataprocessor[812:4448] Extracted no relevant App Intents symbols, skipping writing output
ExtractAppIntentsMetadata (in target 'AsyncPlus' from project 'AsyncPlus')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/AsyncPlus
/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 AsyncPlus --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk --xcode-version 16E140 --platform-family tvOS --deployment-target 15.0 --bundle-identifier asyncplus.AsyncPlus --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/AsyncPlus.appintents --target-triple arm64-apple-tvos15.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/AsyncPlus.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AsyncPlus.build/Debug-appletvos/AsyncPlus.build/Objects-normal/arm64/AsyncPlus_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AsyncPlus.build/Debug-appletvos/AsyncPlus.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AsyncPlus.build/Debug-appletvos/AsyncPlus.build/Objects-normal/arm64/AsyncPlus.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AsyncPlus.build/Debug-appletvos/AsyncPlus.build/AsyncPlus.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AsyncPlus.build/Debug-appletvos/AsyncPlus.build/AsyncPlus.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AsyncPlus.build/Debug-appletvos/AsyncPlus.build/Objects-normal/arm64/AsyncPlus.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-27 03:06:11.578 appintentsmetadataprocessor[813:4458] Starting appintentsmetadataprocessor export
2025-04-27 03:06:11.629 appintentsmetadataprocessor[813:4458] Extracted no relevant App Intents symbols, skipping writing output
SwiftDriverJobDiscovery normal arm64 Compiling Logger+SessionPlus.swift, URLCache+SessionPlus.swift, URLQueryItem+SessionPlus.swift, URLRequest+SessionPlus.swift (in target 'SessionPlus' from project 'SessionPlus')
SwiftDriverJobDiscovery normal arm64 Compiling QueryItem.swift, Request.swift, Response.swift (in target 'SessionPlus' from project 'SessionPlus')
SwiftDriver SessionPlusEmulation normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SessionPlusEmulation' from project 'SessionPlus')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-SwiftDriver -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name SessionPlusEmulation -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SessionPlus.build/Debug-appletvos/SessionPlusEmulation.build/Objects-normal/arm64/SessionPlusEmulation.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/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -target arm64-apple-tvos15.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-appletvos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.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/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SessionPlus.build/Debug-appletvos/SessionPlusEmulation.build/Objects-normal/arm64/SessionPlusEmulation-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/SessionPlus.build/Debug-appletvos/SessionPlusEmulation.build/Objects-normal/arm64/SessionPlusEmulation.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SessionPlus.build/Debug-appletvos/SessionPlusEmulation.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SessionPlus.build/Debug-appletvos/SessionPlusEmulation.build/Objects-normal/arm64/SessionPlusEmulation_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SessionPlus.build/Debug-appletvos/SessionPlusEmulation.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SessionPlus.build/Debug-appletvos/SessionPlusEmulation.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SessionPlus.build/Debug-appletvos/SessionPlusEmulation.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/SessionPlus.build/Debug-appletvos/SessionPlusEmulation.build/Objects-normal/arm64/SessionPlusEmulation-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftEmitModule normal arm64 Emitting\ module\ for\ SessionPlusEmulation (in target 'SessionPlusEmulation' from project 'SessionPlus')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SessionPlusEmulation/EmulatedClient.swift (in target 'SessionPlusEmulation' from project 'SessionPlus')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ EmulatedClient.swift /Users/admin/builder/spi-builder-workspace/Sources/SessionPlusEmulation/EmulatedClient.swift (in target 'SessionPlusEmulation' from project 'SessionPlus')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SessionPlusEmulation/EmulatedClient.swift (in target 'SessionPlusEmulation' from project 'SessionPlus')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling BaseURLSessionClient.swift, Delete.swift, FormData.swift (in target 'SessionPlus' from project 'SessionPlus')
SwiftDriverJobDiscovery normal arm64 Compiling Get.swift, PNGImageFormDataRequest.swift, Patch.swift (in target 'SessionPlus' from project 'SessionPlus')
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Logging.o (in target 'Logging' from project 'swift-log')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-log
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Logging.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/AsyncPlus.o (in target 'AsyncPlus' from project 'AsyncPlus')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/AsyncPlus
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/AsyncPlus.o
SwiftDriverJobDiscovery normal arm64 Compiling Headers.swift, MIMEType.swift, Method.swift (in target 'SessionPlus' from project 'SessionPlus')
SwiftDriverJobDiscovery normal arm64 Compiling Authorization.swift, Client.swift, Header.swift (in target 'SessionPlus' from project 'SessionPlus')
SwiftDriverJobDiscovery normal arm64 Compiling URLResponse+SessionPlus.swift, URLSessionConfiguration+SessionPlus.swift, URLSessionDelegate+SessionPlus.swift, AbsoluteURLSessionClient.swift (in target 'SessionPlus' from project 'SessionPlus')
SwiftDriverJobDiscovery normal arm64 Emitting module for SessionPlusEmulation (in target 'SessionPlusEmulation' from project 'SessionPlus')
SwiftDriver\ Compilation\ Requirements SessionPlusEmulation normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SessionPlusEmulation' from project 'SessionPlus')
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 SessionPlusEmulation -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SessionPlus.build/Debug-appletvos/SessionPlusEmulation.build/Objects-normal/arm64/SessionPlusEmulation.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/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -target arm64-apple-tvos15.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-appletvos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.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/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SessionPlus.build/Debug-appletvos/SessionPlusEmulation.build/Objects-normal/arm64/SessionPlusEmulation-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/SessionPlus.build/Debug-appletvos/SessionPlusEmulation.build/Objects-normal/arm64/SessionPlusEmulation.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SessionPlus.build/Debug-appletvos/SessionPlusEmulation.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SessionPlus.build/Debug-appletvos/SessionPlusEmulation.build/Objects-normal/arm64/SessionPlusEmulation_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SessionPlus.build/Debug-appletvos/SessionPlusEmulation.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SessionPlus.build/Debug-appletvos/SessionPlusEmulation.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SessionPlus.build/Debug-appletvos/SessionPlusEmulation.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/SessionPlus.build/Debug-appletvos/SessionPlusEmulation.build/Objects-normal/arm64/SessionPlusEmulation-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling Socket.swift, StatusCode.swift, WebSocket.swift (in target 'SessionPlus' from project 'SessionPlus')
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/SessionPlusEmulation-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SessionPlus.build/Debug-appletvos/SessionPlusEmulation.build/Objects-normal/arm64/SessionPlusEmulation-Swift.h (in target 'SessionPlusEmulation' from project 'SessionPlus')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SessionPlus.build/Debug-appletvos/SessionPlusEmulation.build/Objects-normal/arm64/SessionPlusEmulation-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/SessionPlusEmulation-Swift.h
SwiftDriver\ Compilation SessionPlus normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SessionPlus' from project 'SessionPlus')
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 SessionPlus -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SessionPlus.build/Debug-appletvos/SessionPlus.build/Objects-normal/arm64/SessionPlus.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/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -target arm64-apple-tvos15.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-appletvos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SessionPlus.build/Debug-appletvos/SessionPlus.build/Objects-normal/arm64/SessionPlus-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/SessionPlus.build/Debug-appletvos/SessionPlus.build/Objects-normal/arm64/SessionPlus.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SessionPlus.build/Debug-appletvos/SessionPlus.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SessionPlus.build/Debug-appletvos/SessionPlus.build/Objects-normal/arm64/SessionPlus_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SessionPlus.build/Debug-appletvos/SessionPlus.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SessionPlus.build/Debug-appletvos/SessionPlus.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SessionPlus.build/Debug-appletvos/SessionPlus.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/SessionPlus.build/Debug-appletvos/SessionPlus.build/Objects-normal/arm64/SessionPlus-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SessionPlusEmulation.swiftmodule/arm64-apple-tvos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SessionPlus.build/Debug-appletvos/SessionPlusEmulation.build/Objects-normal/arm64/SessionPlusEmulation.abi.json (in target 'SessionPlusEmulation' from project 'SessionPlus')
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/SessionPlus.build/Debug-appletvos/SessionPlusEmulation.build/Objects-normal/arm64/SessionPlusEmulation.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SessionPlusEmulation.swiftmodule/arm64-apple-tvos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SessionPlusEmulation.swiftmodule/arm64-apple-tvos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SessionPlus.build/Debug-appletvos/SessionPlusEmulation.build/Objects-normal/arm64/SessionPlusEmulation.swiftmodule (in target 'SessionPlusEmulation' from project 'SessionPlus')
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/SessionPlus.build/Debug-appletvos/SessionPlusEmulation.build/Objects-normal/arm64/SessionPlusEmulation.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SessionPlusEmulation.swiftmodule/arm64-apple-tvos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SessionPlusEmulation.swiftmodule/arm64-apple-tvos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SessionPlus.build/Debug-appletvos/SessionPlusEmulation.build/Objects-normal/arm64/SessionPlusEmulation.swiftdoc (in target 'SessionPlusEmulation' from project 'SessionPlus')
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/SessionPlus.build/Debug-appletvos/SessionPlusEmulation.build/Objects-normal/arm64/SessionPlusEmulation.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SessionPlusEmulation.swiftmodule/arm64-apple-tvos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SessionPlusEmulation.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SessionPlus.build/Debug-appletvos/SessionPlusEmulation.build/Objects-normal/arm64/SessionPlusEmulation.swiftsourceinfo (in target 'SessionPlusEmulation' from project 'SessionPlus')
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/SessionPlus.build/Debug-appletvos/SessionPlusEmulation.build/Objects-normal/arm64/SessionPlusEmulation.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SessionPlusEmulation.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SessionPlus.o normal (in target 'SessionPlus' from project 'SessionPlus')
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-tvos15.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SessionPlus.build/Debug-appletvos/SessionPlus.build/Objects-normal/arm64/SessionPlus.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SessionPlus.build/Debug-appletvos/SessionPlus.build/Objects-normal/arm64/SessionPlus_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SessionPlus.build/Debug-appletvos/SessionPlus.build/Objects-normal/arm64/SessionPlus_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/appletvos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SessionPlus.build/Debug-appletvos/SessionPlus.build/Objects-normal/arm64/SessionPlus.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SessionPlus.o
ExtractAppIntentsMetadata (in target 'SessionPlus' from project 'SessionPlus')
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 SessionPlus --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk --xcode-version 16E140 --platform-family tvOS --deployment-target 15.0 --bundle-identifier spi-builder-workspace.SessionPlus --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SessionPlus.appintents --target-triple arm64-apple-tvos15.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SessionPlus.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SessionPlus.build/Debug-appletvos/SessionPlus.build/Objects-normal/arm64/SessionPlus_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SessionPlus.build/Debug-appletvos/SessionPlus.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SessionPlus.build/Debug-appletvos/SessionPlus.build/Objects-normal/arm64/SessionPlus.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SessionPlus.build/Debug-appletvos/SessionPlus.build/SessionPlus.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SessionPlus.build/Debug-appletvos/SessionPlus.build/SessionPlus.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SessionPlus.build/Debug-appletvos/SessionPlus.build/Objects-normal/arm64/SessionPlus.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-27 03:06:11.727 appintentsmetadataprocessor[818:4494] Starting appintentsmetadataprocessor export
2025-04-27 03:06:11.761 appintentsmetadataprocessor[818:4494] Extracted no relevant App Intents symbols, skipping writing output
SwiftDriverJobDiscovery normal arm64 Compiling EmulatedClient.swift (in target 'SessionPlusEmulation' from project 'SessionPlus')
SwiftDriver\ Compilation SessionPlusEmulation normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SessionPlusEmulation' from project 'SessionPlus')
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 SessionPlusEmulation -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SessionPlus.build/Debug-appletvos/SessionPlusEmulation.build/Objects-normal/arm64/SessionPlusEmulation.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/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -target arm64-apple-tvos15.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-appletvos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.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/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SessionPlus.build/Debug-appletvos/SessionPlusEmulation.build/Objects-normal/arm64/SessionPlusEmulation-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/SessionPlus.build/Debug-appletvos/SessionPlusEmulation.build/Objects-normal/arm64/SessionPlusEmulation.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SessionPlus.build/Debug-appletvos/SessionPlusEmulation.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SessionPlus.build/Debug-appletvos/SessionPlusEmulation.build/Objects-normal/arm64/SessionPlusEmulation_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SessionPlus.build/Debug-appletvos/SessionPlusEmulation.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SessionPlus.build/Debug-appletvos/SessionPlusEmulation.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SessionPlus.build/Debug-appletvos/SessionPlusEmulation.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/SessionPlus.build/Debug-appletvos/SessionPlusEmulation.build/Objects-normal/arm64/SessionPlusEmulation-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SessionPlus.o (in target 'SessionPlus' from project 'SessionPlus')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SessionPlus.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SessionPlusEmulation.o normal (in target 'SessionPlusEmulation' from project 'SessionPlus')
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-tvos15.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SessionPlus.build/Debug-appletvos/SessionPlusEmulation.build/Objects-normal/arm64/SessionPlusEmulation.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SessionPlus.build/Debug-appletvos/SessionPlusEmulation.build/Objects-normal/arm64/SessionPlusEmulation_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SessionPlus.build/Debug-appletvos/SessionPlusEmulation.build/Objects-normal/arm64/SessionPlusEmulation_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/appletvos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SessionPlus.build/Debug-appletvos/SessionPlusEmulation.build/Objects-normal/arm64/SessionPlusEmulation.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SessionPlusEmulation.o
ExtractAppIntentsMetadata (in target 'SessionPlusEmulation' from project 'SessionPlus')
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 SessionPlusEmulation --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk --xcode-version 16E140 --platform-family tvOS --deployment-target 15.0 --bundle-identifier spi-builder-workspace.SessionPlusEmulation --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SessionPlusEmulation.appintents --target-triple arm64-apple-tvos15.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SessionPlusEmulation.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SessionPlus.build/Debug-appletvos/SessionPlusEmulation.build/Objects-normal/arm64/SessionPlusEmulation_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SessionPlus.build/Debug-appletvos/SessionPlusEmulation.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SessionPlus.build/Debug-appletvos/SessionPlusEmulation.build/Objects-normal/arm64/SessionPlusEmulation.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SessionPlus.build/Debug-appletvos/SessionPlusEmulation.build/SessionPlusEmulation.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SessionPlus.build/Debug-appletvos/SessionPlusEmulation.build/SessionPlusEmulation.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SessionPlus.build/Debug-appletvos/SessionPlusEmulation.build/Objects-normal/arm64/SessionPlusEmulation.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-27 03:06:11.805 appintentsmetadataprocessor[821:4509] Starting appintentsmetadataprocessor export
2025-04-27 03:06:11.837 appintentsmetadataprocessor[821:4509] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SessionPlusEmulation.o (in target 'SessionPlusEmulation' from project 'SessionPlus')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SessionPlusEmulation.o
** BUILD SUCCEEDED **
Build complete.
{
"dependencies" : [
{
"identity" : "asyncplus",
"requirement" : {
"range" : [
{
"lower_bound" : "0.3.2",
"upper_bound" : "1.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/richardpiazza/AsyncPlus.git"
},
{
"identity" : "swift-log",
"requirement" : {
"range" : [
{
"lower_bound" : "1.6.2",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-log.git"
}
],
"manifest_display_name" : "SessionPlus",
"name" : "SessionPlus",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "12.0"
},
{
"name" : "maccatalyst",
"version" : "15.0"
},
{
"name" : "ios",
"version" : "15.0"
},
{
"name" : "tvos",
"version" : "15.0"
},
{
"name" : "watchos",
"version" : "8.0"
}
],
"products" : [
{
"name" : "SessionPlus",
"targets" : [
"SessionPlus",
"SessionPlusEmulation"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"swift_languages_versions" : [
"5"
],
"targets" : [
{
"c99name" : "SessionPlusTests",
"module_type" : "SwiftTarget",
"name" : "SessionPlusTests",
"path" : "Tests/SessionPlusTests",
"sources" : [
"FormDataTests.swift",
"QueryItemTests.swift"
],
"target_dependencies" : [
"SessionPlus",
"SessionPlusEmulation"
],
"type" : "test"
},
{
"c99name" : "SessionPlusEmulation",
"module_type" : "SwiftTarget",
"name" : "SessionPlusEmulation",
"path" : "Sources/SessionPlusEmulation",
"product_memberships" : [
"SessionPlus"
],
"sources" : [
"EmulatedClient.swift"
],
"target_dependencies" : [
"SessionPlus"
],
"type" : "library"
},
{
"c99name" : "SessionPlus",
"module_type" : "SwiftTarget",
"name" : "SessionPlus",
"path" : "Sources/SessionPlus",
"product_dependencies" : [
"AsyncPlus",
"Logging"
],
"product_memberships" : [
"SessionPlus"
],
"sources" : [
"Extensions/Logger+SessionPlus.swift",
"Extensions/URLCache+SessionPlus.swift",
"Extensions/URLQueryItem+SessionPlus.swift",
"Extensions/URLRequest+SessionPlus.swift",
"Extensions/URLResponse+SessionPlus.swift",
"Extensions/URLSessionConfiguration+SessionPlus.swift",
"Extensions/URLSessionDelegate+SessionPlus.swift",
"Implementation/AbsoluteURLSessionClient.swift",
"Implementation/AbsoluteURLWebSocket.swift",
"Implementation/AnyRequest.swift",
"Implementation/AnyResponse.swift",
"Implementation/BaseURLSessionClient.swift",
"Implementation/Delete.swift",
"Implementation/FormData.swift",
"Implementation/Get.swift",
"Implementation/PNGImageFormDataRequest.swift",
"Implementation/Patch.swift",
"Implementation/Post.swift",
"Implementation/Put.swift",
"Interface/Address.swift",
"Interface/Authorization.swift",
"Interface/Client.swift",
"Interface/Header.swift",
"Interface/Headers.swift",
"Interface/MIMEType.swift",
"Interface/Method.swift",
"Interface/QueryItem.swift",
"Interface/Request.swift",
"Interface/Response.swift",
"Interface/Socket.swift",
"Interface/StatusCode.swift",
"Interface/WebSocket.swift"
],
"type" : "library"
}
],
"tools_version" : "5.9"
}
Done.