The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Successful build of Pioneer, reference main (210d7d), with Swift 6.0 for macOS (SPM) on 19 Dec 2024 05:48:59 UTC.

Swift 6 data race errors: 8

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.2.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures

Build Log

 14 |
 15 | /// Pioneer GraphQL Server for handling all GraphQL operations
 16 | public struct Pioneer<Resolver, Context> {
    |                                 `- note: consider making generic parameter 'Context' conform to the 'Sendable' protocol
 17 |     /// Graphiti schema used to execute operations
 18 |     public private(set) var schema: GraphQLSchema
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Drone/Drone.swift:139:23: warning: non-sendable type 'SubscriptionResult' returned by implicitly asynchronous call to nonisolated function cannot cross actor boundary; this is an error in the Swift 6 language mode
137 |         /// Execute long lived GraphQL Operation as a subscription
138 |         private func subscribeOperation(for gql: GraphQLRequest, with ctx: Context, using eventLoop: EventLoopGroup) async throws -> SubscriptionResult {
139 |             try await subscribeGraphQL(
    |                       `- warning: non-sendable type 'SubscriptionResult' returned by implicitly asynchronous call to nonisolated function cannot cross actor boundary; this is an error in the Swift 6 language mode
140 |                 schema: schema,
141 |                 request: gql.query,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/GraphQL.swift:47:15: note: struct 'SubscriptionResult' does not conform to the 'Sendable' protocol
 45 |
 46 | /// SubscriptionResult wraps the observable and error data returned by the subscribe request.
 47 | public struct SubscriptionResult {
    |               `- note: struct 'SubscriptionResult' does not conform to the 'Sendable' protocol
 48 |     public let stream: SubscriptionEventStream?
 49 |     public let errors: [GraphQLError]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Drone/Drone.swift:9:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
  7 |
  8 | import class Graphiti.Schema
  9 | import GraphQL
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
 10 | import protocol NIO.EventLoopGroup
 11 |
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:104:22: warning: type 'GraphQLResult' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
102 |
103 |         /// Build context and execute short-lived GraphQL Operation inside an event loop
104 |         private func execute(_ gql: GraphQLRequest, client: WebSocketClient) -> Task<GraphQLResult, Error> {
    |                      `- warning: type 'GraphQLResult' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
105 |             Task { [unowned self] in
106 |                 let ctx = try await client.context(gql)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/GraphQL.swift:3:15: note: struct 'GraphQLResult' does not conform to the 'Sendable' protocol
  1 | import NIO
  2 |
  3 | public struct GraphQLResult: Equatable, Codable, CustomStringConvertible {
    |               `- note: struct 'GraphQLResult' does not conform to the 'Sendable' protocol
  4 |     public var data: Map?
  5 |     public var errors: [GraphQLError]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:10:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
  8 | import struct Foundation.UUID
  9 | import class Graphiti.Schema
 10 | import GraphQL
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
 11 | import protocol NIO.EventLoopGroup
 12 |
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:71:17: warning: type 'GraphQLResult' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 69 |             }
 70 |
 71 |             let future = execute(gql, client: client)
    |                 `- warning: type 'GraphQLResult' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 72 |
 73 |             pipeToSelf(future: future) { [unowned self] sink, res in
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/GraphQL.swift:3:15: note: struct 'GraphQLResult' does not conform to the 'Sendable' protocol
  1 | import NIO
  2 |
  3 | public struct GraphQLResult: Equatable, Codable, CustomStringConvertible {
    |               `- note: struct 'GraphQLResult' does not conform to the 'Sendable' protocol
  4 |     public var data: Map?
  5 |     public var errors: [GraphQLError]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:73:13: warning: type 'GraphQLResult' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 71 |             let future = execute(gql, client: client)
 72 |
 73 |             pipeToSelf(future: future) { [unowned self] sink, res in
    |             `- warning: type 'GraphQLResult' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 74 |                 switch res {
 75 |                 case let .success(value):
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/GraphQL.swift:3:15: note: struct 'GraphQLResult' does not conform to the 'Sendable' protocol
  1 | import NIO
  2 |
  3 | public struct GraphQLResult: Equatable, Codable, CustomStringConvertible {
    |               `- note: struct 'GraphQLResult' does not conform to the 'Sendable' protocol
  4 |     public var data: Map?
  5 |     public var errors: [GraphQLError]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:78:29: warning: capture of 'client' with non-sendable type 'Pioneer<Resolver, Context>.WebSocketClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 76 |                     await sink.outgoing(
 77 |                         with: oid,
 78 |                         to: client,
    |                             `- warning: capture of 'client' with non-sendable type 'Pioneer<Resolver, Context>.WebSocketClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 79 |                         given: .from(type: self.proto.next, id: oid, value)
 80 |                     )
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Common/WebSocketClient.swift:21:12: note: consider making struct 'WebSocketClient' conform to the 'Sendable' protocol
19 |
20 |     /// Full GraphQL over WebSocket Client
21 |     struct WebSocketClient: Identifiable {
   |            `- note: consider making struct 'WebSocketClient' conform to the 'Sendable' protocol
22 |         /// The unique key for this client
23 |         public var id: UUID
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:105:13: warning: type 'GraphQLResult' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
103 |         /// Build context and execute short-lived GraphQL Operation inside an event loop
104 |         private func execute(_ gql: GraphQLRequest, client: WebSocketClient) -> Task<GraphQLResult, Error> {
105 |             Task { [unowned self] in
    |             `- warning: type 'GraphQLResult' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
106 |                 let ctx = try await client.context(gql)
107 |                 return try await executeGraphQL(
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/GraphQL.swift:3:15: note: struct 'GraphQLResult' does not conform to the 'Sendable' protocol
  1 | import NIO
  2 |
  3 | public struct GraphQLResult: Equatable, Codable, CustomStringConvertible {
    |               `- note: struct 'GraphQLResult' does not conform to the 'Sendable' protocol
  4 |     public var data: Map?
  5 |     public var errors: [GraphQLError]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:105:13: warning: type 'GraphQLResult' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
103 |         /// Build context and execute short-lived GraphQL Operation inside an event loop
104 |         private func execute(_ gql: GraphQLRequest, client: WebSocketClient) -> Task<GraphQLResult, Error> {
105 |             Task { [unowned self] in
    |             `- warning: type 'GraphQLResult' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
106 |                 let ctx = try await client.context(gql)
107 |                 return try await executeGraphQL(
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/GraphQL.swift:3:15: note: struct 'GraphQLResult' does not conform to the 'Sendable' protocol
  1 | import NIO
  2 |
  3 | public struct GraphQLResult: Equatable, Codable, CustomStringConvertible {
    |               `- note: struct 'GraphQLResult' does not conform to the 'Sendable' protocol
  4 |     public var data: Map?
  5 |     public var errors: [GraphQLError]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:106:44: warning: non-sendable type 'Context' returned by implicitly asynchronous call to nonisolated function cannot cross actor boundary; this is an error in the Swift 6 language mode
104 |         private func execute(_ gql: GraphQLRequest, client: WebSocketClient) -> Task<GraphQLResult, Error> {
105 |             Task { [unowned self] in
106 |                 let ctx = try await client.context(gql)
    |                                            `- warning: non-sendable type 'Context' returned by implicitly asynchronous call to nonisolated function cannot cross actor boundary; this is an error in the Swift 6 language mode
107 |                 return try await executeGraphQL(
108 |                     schema: self.schema,
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Pioneer.swift:16:33: note: consider making generic parameter 'Context' conform to the 'Sendable' protocol
 14 |
 15 | /// Pioneer GraphQL Server for handling all GraphQL operations
 16 | public struct Pioneer<Resolver, Context> {
    |                                 `- note: consider making generic parameter 'Context' conform to the 'Sendable' protocol
 17 |     /// Graphiti schema used to execute operations
 18 |     public private(set) var schema: GraphQLSchema
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:107:34: warning: non-sendable type 'GraphQLResult' returned by implicitly asynchronous call to nonisolated function cannot cross actor boundary; this is an error in the Swift 6 language mode
105 |             Task { [unowned self] in
106 |                 let ctx = try await client.context(gql)
107 |                 return try await executeGraphQL(
    |                                  `- warning: non-sendable type 'GraphQLResult' returned by implicitly asynchronous call to nonisolated function cannot cross actor boundary; this is an error in the Swift 6 language mode
108 |                     schema: self.schema,
109 |                     request: gql.query,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/GraphQL.swift:3:15: note: struct 'GraphQLResult' does not conform to the 'Sendable' protocol
  1 | import NIO
  2 |
  3 | public struct GraphQLResult: Equatable, Codable, CustomStringConvertible {
    |               `- note: struct 'GraphQLResult' does not conform to the 'Sendable' protocol
  4 |     public var data: Map?
  5 |     public var errors: [GraphQLError]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Drone/Drone.swift:139:23: warning: sending 'self.schema' risks causing data races; this is an error in the Swift 6 language mode
137 |         /// Execute long lived GraphQL Operation as a subscription
138 |         private func subscribeOperation(for gql: GraphQLRequest, with ctx: Context, using eventLoop: EventLoopGroup) async throws -> SubscriptionResult {
139 |             try await subscribeGraphQL(
    |                       |- warning: sending 'self.schema' risks causing data races; this is an error in the Swift 6 language mode
    |                       `- note: sending 'self'-isolated 'self.schema' to nonisolated callee risks causing data races between nonisolated and 'self'-isolated uses
140 |                 schema: schema,
141 |                 request: gql.query,
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Drone/Drone.swift:139:23: warning: sending 'self.resolver' risks causing data races; this is an error in the Swift 6 language mode
137 |         /// Execute long lived GraphQL Operation as a subscription
138 |         private func subscribeOperation(for gql: GraphQLRequest, with ctx: Context, using eventLoop: EventLoopGroup) async throws -> SubscriptionResult {
139 |             try await subscribeGraphQL(
    |                       |- warning: sending 'self.resolver' risks causing data races; this is an error in the Swift 6 language mode
    |                       `- note: sending 'self'-isolated 'self.resolver' to nonisolated callee risks causing data races between nonisolated and 'self'-isolated uses
140 |                 schema: schema,
141 |                 request: gql.query,
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Drone/Drone.swift:139:23: warning: sending 'ctx' risks causing data races; this is an error in the Swift 6 language mode
137 |         /// Execute long lived GraphQL Operation as a subscription
138 |         private func subscribeOperation(for gql: GraphQLRequest, with ctx: Context, using eventLoop: EventLoopGroup) async throws -> SubscriptionResult {
139 |             try await subscribeGraphQL(
    |                       |- warning: sending 'ctx' risks causing data races; this is an error in the Swift 6 language mode
    |                       `- note: sending 'self'-isolated 'ctx' to nonisolated callee risks causing data races between nonisolated and 'self'-isolated uses
140 |                 schema: schema,
141 |                 request: gql.query,
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Drone/Drone.swift:127:44: warning: sending 'self.client' risks causing data races; this is an error in the Swift 6 language mode
125 |         private func subscription(gql: GraphQLRequest) async -> SubscriptionResult {
126 |             do {
127 |                 let ctx = try await client.context(gql)
    |                                            |- warning: sending 'self.client' risks causing data races; this is an error in the Swift 6 language mode
    |                                            `- note: sending 'self'-isolated 'self.client' to nonisolated callee risks causing data races between nonisolated and 'self'-isolated uses
128 |                 return try await subscribeOperation(for: gql, with: ctx, using: client.ev)
129 |             } catch {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:56:18: warning: sending 'client' risks causing data races; this is an error in the Swift 6 language mode
 54 |
 55 |             let drone = drones.getOrElse(cid) {
 56 |                 .init(client,
    |                  |- warning: sending 'client' risks causing data races; this is an error in the Swift 6 language mode
    |                  `- note: sending 'self'-isolated 'client' to actor-isolated callee risks causing data races between actor-isolated and 'self'-isolated uses
 57 |                       schema: schema,
 58 |                       resolver: resolver,
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:56:18: warning: sending 'self.schema' risks causing data races; this is an error in the Swift 6 language mode
 54 |
 55 |             let drone = drones.getOrElse(cid) {
 56 |                 .init(client,
    |                  |- warning: sending 'self.schema' risks causing data races; this is an error in the Swift 6 language mode
    |                  `- note: sending 'self'-isolated 'self.schema' to actor-isolated callee risks causing data races between actor-isolated and 'self'-isolated uses
 57 |                       schema: schema,
 58 |                       resolver: resolver,
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:56:18: warning: sending 'self.resolver' risks causing data races; this is an error in the Swift 6 language mode
 54 |
 55 |             let drone = drones.getOrElse(cid) {
 56 |                 .init(client,
    |                  |- warning: sending 'self.resolver' risks causing data races; this is an error in the Swift 6 language mode
    |                  `- note: sending 'self'-isolated 'self.resolver' to actor-isolated callee risks causing data races between actor-isolated and 'self'-isolated uses
 57 |                       schema: schema,
 58 |                       resolver: resolver,
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:107:34: warning: sending actor-isolated value of type 'GraphQLSchema' with later accesses to nonisolated context risks causing data races; this is an error in the Swift 6 language mode
105 |             Task { [unowned self] in
106 |                 let ctx = try await client.context(gql)
107 |                 return try await executeGraphQL(
    |                                  `- warning: sending actor-isolated value of type 'GraphQLSchema' with later accesses to nonisolated context risks causing data races; this is an error in the Swift 6 language mode
108 |                     schema: self.schema,
109 |                     request: gql.query,
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:107:34: warning: sending actor-isolated value of type 'Resolver' with later accesses to nonisolated context risks causing data races; this is an error in the Swift 6 language mode
105 |             Task { [unowned self] in
106 |                 let ctx = try await client.context(gql)
107 |                 return try await executeGraphQL(
    |                                  `- warning: sending actor-isolated value of type 'Resolver' with later accesses to nonisolated context risks causing data races; this is an error in the Swift 6 language mode
108 |                     schema: self.schema,
109 |                     request: gql.query,
[1723/1725] Compiling Pioneer SubProtocol.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Drone/Drone.swift:127:44: warning: non-sendable type 'Context' returned by implicitly asynchronous call to nonisolated function cannot cross actor boundary; this is an error in the Swift 6 language mode
125 |         private func subscription(gql: GraphQLRequest) async -> SubscriptionResult {
126 |             do {
127 |                 let ctx = try await client.context(gql)
    |                                            `- warning: non-sendable type 'Context' returned by implicitly asynchronous call to nonisolated function cannot cross actor boundary; this is an error in the Swift 6 language mode
128 |                 return try await subscribeOperation(for: gql, with: ctx, using: client.ev)
129 |             } catch {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Pioneer.swift:16:33: note: consider making generic parameter 'Context' conform to the 'Sendable' protocol
 14 |
 15 | /// Pioneer GraphQL Server for handling all GraphQL operations
 16 | public struct Pioneer<Resolver, Context> {
    |                                 `- note: consider making generic parameter 'Context' conform to the 'Sendable' protocol
 17 |     /// Graphiti schema used to execute operations
 18 |     public private(set) var schema: GraphQLSchema
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Drone/Drone.swift:139:23: warning: non-sendable type 'SubscriptionResult' returned by implicitly asynchronous call to nonisolated function cannot cross actor boundary; this is an error in the Swift 6 language mode
137 |         /// Execute long lived GraphQL Operation as a subscription
138 |         private func subscribeOperation(for gql: GraphQLRequest, with ctx: Context, using eventLoop: EventLoopGroup) async throws -> SubscriptionResult {
139 |             try await subscribeGraphQL(
    |                       `- warning: non-sendable type 'SubscriptionResult' returned by implicitly asynchronous call to nonisolated function cannot cross actor boundary; this is an error in the Swift 6 language mode
140 |                 schema: schema,
141 |                 request: gql.query,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/GraphQL.swift:47:15: note: struct 'SubscriptionResult' does not conform to the 'Sendable' protocol
 45 |
 46 | /// SubscriptionResult wraps the observable and error data returned by the subscribe request.
 47 | public struct SubscriptionResult {
    |               `- note: struct 'SubscriptionResult' does not conform to the 'Sendable' protocol
 48 |     public let stream: SubscriptionEventStream?
 49 |     public let errors: [GraphQLError]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Drone/Drone.swift:9:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
  7 |
  8 | import class Graphiti.Schema
  9 | import GraphQL
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
 10 | import protocol NIO.EventLoopGroup
 11 |
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:104:22: warning: type 'GraphQLResult' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
102 |
103 |         /// Build context and execute short-lived GraphQL Operation inside an event loop
104 |         private func execute(_ gql: GraphQLRequest, client: WebSocketClient) -> Task<GraphQLResult, Error> {
    |                      `- warning: type 'GraphQLResult' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
105 |             Task { [unowned self] in
106 |                 let ctx = try await client.context(gql)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/GraphQL.swift:3:15: note: struct 'GraphQLResult' does not conform to the 'Sendable' protocol
  1 | import NIO
  2 |
  3 | public struct GraphQLResult: Equatable, Codable, CustomStringConvertible {
    |               `- note: struct 'GraphQLResult' does not conform to the 'Sendable' protocol
  4 |     public var data: Map?
  5 |     public var errors: [GraphQLError]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:10:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
  8 | import struct Foundation.UUID
  9 | import class Graphiti.Schema
 10 | import GraphQL
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
 11 | import protocol NIO.EventLoopGroup
 12 |
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:71:17: warning: type 'GraphQLResult' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 69 |             }
 70 |
 71 |             let future = execute(gql, client: client)
    |                 `- warning: type 'GraphQLResult' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 72 |
 73 |             pipeToSelf(future: future) { [unowned self] sink, res in
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/GraphQL.swift:3:15: note: struct 'GraphQLResult' does not conform to the 'Sendable' protocol
  1 | import NIO
  2 |
  3 | public struct GraphQLResult: Equatable, Codable, CustomStringConvertible {
    |               `- note: struct 'GraphQLResult' does not conform to the 'Sendable' protocol
  4 |     public var data: Map?
  5 |     public var errors: [GraphQLError]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:73:13: warning: type 'GraphQLResult' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 71 |             let future = execute(gql, client: client)
 72 |
 73 |             pipeToSelf(future: future) { [unowned self] sink, res in
    |             `- warning: type 'GraphQLResult' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 74 |                 switch res {
 75 |                 case let .success(value):
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/GraphQL.swift:3:15: note: struct 'GraphQLResult' does not conform to the 'Sendable' protocol
  1 | import NIO
  2 |
  3 | public struct GraphQLResult: Equatable, Codable, CustomStringConvertible {
    |               `- note: struct 'GraphQLResult' does not conform to the 'Sendable' protocol
  4 |     public var data: Map?
  5 |     public var errors: [GraphQLError]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:78:29: warning: capture of 'client' with non-sendable type 'Pioneer<Resolver, Context>.WebSocketClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 76 |                     await sink.outgoing(
 77 |                         with: oid,
 78 |                         to: client,
    |                             `- warning: capture of 'client' with non-sendable type 'Pioneer<Resolver, Context>.WebSocketClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 79 |                         given: .from(type: self.proto.next, id: oid, value)
 80 |                     )
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Common/WebSocketClient.swift:21:12: note: consider making struct 'WebSocketClient' conform to the 'Sendable' protocol
19 |
20 |     /// Full GraphQL over WebSocket Client
21 |     struct WebSocketClient: Identifiable {
   |            `- note: consider making struct 'WebSocketClient' conform to the 'Sendable' protocol
22 |         /// The unique key for this client
23 |         public var id: UUID
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:105:13: warning: type 'GraphQLResult' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
103 |         /// Build context and execute short-lived GraphQL Operation inside an event loop
104 |         private func execute(_ gql: GraphQLRequest, client: WebSocketClient) -> Task<GraphQLResult, Error> {
105 |             Task { [unowned self] in
    |             `- warning: type 'GraphQLResult' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
106 |                 let ctx = try await client.context(gql)
107 |                 return try await executeGraphQL(
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/GraphQL.swift:3:15: note: struct 'GraphQLResult' does not conform to the 'Sendable' protocol
  1 | import NIO
  2 |
  3 | public struct GraphQLResult: Equatable, Codable, CustomStringConvertible {
    |               `- note: struct 'GraphQLResult' does not conform to the 'Sendable' protocol
  4 |     public var data: Map?
  5 |     public var errors: [GraphQLError]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:105:13: warning: type 'GraphQLResult' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
103 |         /// Build context and execute short-lived GraphQL Operation inside an event loop
104 |         private func execute(_ gql: GraphQLRequest, client: WebSocketClient) -> Task<GraphQLResult, Error> {
105 |             Task { [unowned self] in
    |             `- warning: type 'GraphQLResult' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
106 |                 let ctx = try await client.context(gql)
107 |                 return try await executeGraphQL(
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/GraphQL.swift:3:15: note: struct 'GraphQLResult' does not conform to the 'Sendable' protocol
  1 | import NIO
  2 |
  3 | public struct GraphQLResult: Equatable, Codable, CustomStringConvertible {
    |               `- note: struct 'GraphQLResult' does not conform to the 'Sendable' protocol
  4 |     public var data: Map?
  5 |     public var errors: [GraphQLError]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:106:44: warning: non-sendable type 'Context' returned by implicitly asynchronous call to nonisolated function cannot cross actor boundary; this is an error in the Swift 6 language mode
104 |         private func execute(_ gql: GraphQLRequest, client: WebSocketClient) -> Task<GraphQLResult, Error> {
105 |             Task { [unowned self] in
106 |                 let ctx = try await client.context(gql)
    |                                            `- warning: non-sendable type 'Context' returned by implicitly asynchronous call to nonisolated function cannot cross actor boundary; this is an error in the Swift 6 language mode
107 |                 return try await executeGraphQL(
108 |                     schema: self.schema,
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Pioneer.swift:16:33: note: consider making generic parameter 'Context' conform to the 'Sendable' protocol
 14 |
 15 | /// Pioneer GraphQL Server for handling all GraphQL operations
 16 | public struct Pioneer<Resolver, Context> {
    |                                 `- note: consider making generic parameter 'Context' conform to the 'Sendable' protocol
 17 |     /// Graphiti schema used to execute operations
 18 |     public private(set) var schema: GraphQLSchema
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:107:34: warning: non-sendable type 'GraphQLResult' returned by implicitly asynchronous call to nonisolated function cannot cross actor boundary; this is an error in the Swift 6 language mode
105 |             Task { [unowned self] in
106 |                 let ctx = try await client.context(gql)
107 |                 return try await executeGraphQL(
    |                                  `- warning: non-sendable type 'GraphQLResult' returned by implicitly asynchronous call to nonisolated function cannot cross actor boundary; this is an error in the Swift 6 language mode
108 |                     schema: self.schema,
109 |                     request: gql.query,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/GraphQL.swift:3:15: note: struct 'GraphQLResult' does not conform to the 'Sendable' protocol
  1 | import NIO
  2 |
  3 | public struct GraphQLResult: Equatable, Codable, CustomStringConvertible {
    |               `- note: struct 'GraphQLResult' does not conform to the 'Sendable' protocol
  4 |     public var data: Map?
  5 |     public var errors: [GraphQLError]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Drone/Drone.swift:139:23: warning: sending 'self.schema' risks causing data races; this is an error in the Swift 6 language mode
137 |         /// Execute long lived GraphQL Operation as a subscription
138 |         private func subscribeOperation(for gql: GraphQLRequest, with ctx: Context, using eventLoop: EventLoopGroup) async throws -> SubscriptionResult {
139 |             try await subscribeGraphQL(
    |                       |- warning: sending 'self.schema' risks causing data races; this is an error in the Swift 6 language mode
    |                       `- note: sending 'self'-isolated 'self.schema' to nonisolated callee risks causing data races between nonisolated and 'self'-isolated uses
140 |                 schema: schema,
141 |                 request: gql.query,
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Drone/Drone.swift:139:23: warning: sending 'self.resolver' risks causing data races; this is an error in the Swift 6 language mode
137 |         /// Execute long lived GraphQL Operation as a subscription
138 |         private func subscribeOperation(for gql: GraphQLRequest, with ctx: Context, using eventLoop: EventLoopGroup) async throws -> SubscriptionResult {
139 |             try await subscribeGraphQL(
    |                       |- warning: sending 'self.resolver' risks causing data races; this is an error in the Swift 6 language mode
    |                       `- note: sending 'self'-isolated 'self.resolver' to nonisolated callee risks causing data races between nonisolated and 'self'-isolated uses
140 |                 schema: schema,
141 |                 request: gql.query,
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Drone/Drone.swift:139:23: warning: sending 'ctx' risks causing data races; this is an error in the Swift 6 language mode
137 |         /// Execute long lived GraphQL Operation as a subscription
138 |         private func subscribeOperation(for gql: GraphQLRequest, with ctx: Context, using eventLoop: EventLoopGroup) async throws -> SubscriptionResult {
139 |             try await subscribeGraphQL(
    |                       |- warning: sending 'ctx' risks causing data races; this is an error in the Swift 6 language mode
    |                       `- note: sending 'self'-isolated 'ctx' to nonisolated callee risks causing data races between nonisolated and 'self'-isolated uses
140 |                 schema: schema,
141 |                 request: gql.query,
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Drone/Drone.swift:127:44: warning: sending 'self.client' risks causing data races; this is an error in the Swift 6 language mode
125 |         private func subscription(gql: GraphQLRequest) async -> SubscriptionResult {
126 |             do {
127 |                 let ctx = try await client.context(gql)
    |                                            |- warning: sending 'self.client' risks causing data races; this is an error in the Swift 6 language mode
    |                                            `- note: sending 'self'-isolated 'self.client' to nonisolated callee risks causing data races between nonisolated and 'self'-isolated uses
128 |                 return try await subscribeOperation(for: gql, with: ctx, using: client.ev)
129 |             } catch {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:56:18: warning: sending 'client' risks causing data races; this is an error in the Swift 6 language mode
 54 |
 55 |             let drone = drones.getOrElse(cid) {
 56 |                 .init(client,
    |                  |- warning: sending 'client' risks causing data races; this is an error in the Swift 6 language mode
    |                  `- note: sending 'self'-isolated 'client' to actor-isolated callee risks causing data races between actor-isolated and 'self'-isolated uses
 57 |                       schema: schema,
 58 |                       resolver: resolver,
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:56:18: warning: sending 'self.schema' risks causing data races; this is an error in the Swift 6 language mode
 54 |
 55 |             let drone = drones.getOrElse(cid) {
 56 |                 .init(client,
    |                  |- warning: sending 'self.schema' risks causing data races; this is an error in the Swift 6 language mode
    |                  `- note: sending 'self'-isolated 'self.schema' to actor-isolated callee risks causing data races between actor-isolated and 'self'-isolated uses
 57 |                       schema: schema,
 58 |                       resolver: resolver,
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:56:18: warning: sending 'self.resolver' risks causing data races; this is an error in the Swift 6 language mode
 54 |
 55 |             let drone = drones.getOrElse(cid) {
 56 |                 .init(client,
    |                  |- warning: sending 'self.resolver' risks causing data races; this is an error in the Swift 6 language mode
    |                  `- note: sending 'self'-isolated 'self.resolver' to actor-isolated callee risks causing data races between actor-isolated and 'self'-isolated uses
 57 |                       schema: schema,
 58 |                       resolver: resolver,
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:107:34: warning: sending actor-isolated value of type 'GraphQLSchema' with later accesses to nonisolated context risks causing data races; this is an error in the Swift 6 language mode
105 |             Task { [unowned self] in
106 |                 let ctx = try await client.context(gql)
107 |                 return try await executeGraphQL(
    |                                  `- warning: sending actor-isolated value of type 'GraphQLSchema' with later accesses to nonisolated context risks causing data races; this is an error in the Swift 6 language mode
108 |                     schema: self.schema,
109 |                     request: gql.query,
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:107:34: warning: sending actor-isolated value of type 'Resolver' with later accesses to nonisolated context risks causing data races; this is an error in the Swift 6 language mode
105 |             Task { [unowned self] in
106 |                 let ctx = try await client.context(gql)
107 |                 return try await executeGraphQL(
    |                                  `- warning: sending actor-isolated value of type 'Resolver' with later accesses to nonisolated context risks causing data races; this is an error in the Swift 6 language mode
108 |                     schema: self.schema,
109 |                     request: gql.query,
[1724/1725] Compiling Pioneer SubscriptionsTransportWs.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Drone/Drone.swift:127:44: warning: non-sendable type 'Context' returned by implicitly asynchronous call to nonisolated function cannot cross actor boundary; this is an error in the Swift 6 language mode
125 |         private func subscription(gql: GraphQLRequest) async -> SubscriptionResult {
126 |             do {
127 |                 let ctx = try await client.context(gql)
    |                                            `- warning: non-sendable type 'Context' returned by implicitly asynchronous call to nonisolated function cannot cross actor boundary; this is an error in the Swift 6 language mode
128 |                 return try await subscribeOperation(for: gql, with: ctx, using: client.ev)
129 |             } catch {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Pioneer.swift:16:33: note: consider making generic parameter 'Context' conform to the 'Sendable' protocol
 14 |
 15 | /// Pioneer GraphQL Server for handling all GraphQL operations
 16 | public struct Pioneer<Resolver, Context> {
    |                                 `- note: consider making generic parameter 'Context' conform to the 'Sendable' protocol
 17 |     /// Graphiti schema used to execute operations
 18 |     public private(set) var schema: GraphQLSchema
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Drone/Drone.swift:139:23: warning: non-sendable type 'SubscriptionResult' returned by implicitly asynchronous call to nonisolated function cannot cross actor boundary; this is an error in the Swift 6 language mode
137 |         /// Execute long lived GraphQL Operation as a subscription
138 |         private func subscribeOperation(for gql: GraphQLRequest, with ctx: Context, using eventLoop: EventLoopGroup) async throws -> SubscriptionResult {
139 |             try await subscribeGraphQL(
    |                       `- warning: non-sendable type 'SubscriptionResult' returned by implicitly asynchronous call to nonisolated function cannot cross actor boundary; this is an error in the Swift 6 language mode
140 |                 schema: schema,
141 |                 request: gql.query,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/GraphQL.swift:47:15: note: struct 'SubscriptionResult' does not conform to the 'Sendable' protocol
 45 |
 46 | /// SubscriptionResult wraps the observable and error data returned by the subscribe request.
 47 | public struct SubscriptionResult {
    |               `- note: struct 'SubscriptionResult' does not conform to the 'Sendable' protocol
 48 |     public let stream: SubscriptionEventStream?
 49 |     public let errors: [GraphQLError]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Drone/Drone.swift:9:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
  7 |
  8 | import class Graphiti.Schema
  9 | import GraphQL
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
 10 | import protocol NIO.EventLoopGroup
 11 |
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:104:22: warning: type 'GraphQLResult' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
102 |
103 |         /// Build context and execute short-lived GraphQL Operation inside an event loop
104 |         private func execute(_ gql: GraphQLRequest, client: WebSocketClient) -> Task<GraphQLResult, Error> {
    |                      `- warning: type 'GraphQLResult' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
105 |             Task { [unowned self] in
106 |                 let ctx = try await client.context(gql)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/GraphQL.swift:3:15: note: struct 'GraphQLResult' does not conform to the 'Sendable' protocol
  1 | import NIO
  2 |
  3 | public struct GraphQLResult: Equatable, Codable, CustomStringConvertible {
    |               `- note: struct 'GraphQLResult' does not conform to the 'Sendable' protocol
  4 |     public var data: Map?
  5 |     public var errors: [GraphQLError]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:10:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
  8 | import struct Foundation.UUID
  9 | import class Graphiti.Schema
 10 | import GraphQL
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
 11 | import protocol NIO.EventLoopGroup
 12 |
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:71:17: warning: type 'GraphQLResult' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 69 |             }
 70 |
 71 |             let future = execute(gql, client: client)
    |                 `- warning: type 'GraphQLResult' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 72 |
 73 |             pipeToSelf(future: future) { [unowned self] sink, res in
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/GraphQL.swift:3:15: note: struct 'GraphQLResult' does not conform to the 'Sendable' protocol
  1 | import NIO
  2 |
  3 | public struct GraphQLResult: Equatable, Codable, CustomStringConvertible {
    |               `- note: struct 'GraphQLResult' does not conform to the 'Sendable' protocol
  4 |     public var data: Map?
  5 |     public var errors: [GraphQLError]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:73:13: warning: type 'GraphQLResult' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 71 |             let future = execute(gql, client: client)
 72 |
 73 |             pipeToSelf(future: future) { [unowned self] sink, res in
    |             `- warning: type 'GraphQLResult' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 74 |                 switch res {
 75 |                 case let .success(value):
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/GraphQL.swift:3:15: note: struct 'GraphQLResult' does not conform to the 'Sendable' protocol
  1 | import NIO
  2 |
  3 | public struct GraphQLResult: Equatable, Codable, CustomStringConvertible {
    |               `- note: struct 'GraphQLResult' does not conform to the 'Sendable' protocol
  4 |     public var data: Map?
  5 |     public var errors: [GraphQLError]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:78:29: warning: capture of 'client' with non-sendable type 'Pioneer<Resolver, Context>.WebSocketClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 76 |                     await sink.outgoing(
 77 |                         with: oid,
 78 |                         to: client,
    |                             `- warning: capture of 'client' with non-sendable type 'Pioneer<Resolver, Context>.WebSocketClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 79 |                         given: .from(type: self.proto.next, id: oid, value)
 80 |                     )
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Common/WebSocketClient.swift:21:12: note: consider making struct 'WebSocketClient' conform to the 'Sendable' protocol
19 |
20 |     /// Full GraphQL over WebSocket Client
21 |     struct WebSocketClient: Identifiable {
   |            `- note: consider making struct 'WebSocketClient' conform to the 'Sendable' protocol
22 |         /// The unique key for this client
23 |         public var id: UUID
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:105:13: warning: type 'GraphQLResult' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
103 |         /// Build context and execute short-lived GraphQL Operation inside an event loop
104 |         private func execute(_ gql: GraphQLRequest, client: WebSocketClient) -> Task<GraphQLResult, Error> {
105 |             Task { [unowned self] in
    |             `- warning: type 'GraphQLResult' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
106 |                 let ctx = try await client.context(gql)
107 |                 return try await executeGraphQL(
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/GraphQL.swift:3:15: note: struct 'GraphQLResult' does not conform to the 'Sendable' protocol
  1 | import NIO
  2 |
  3 | public struct GraphQLResult: Equatable, Codable, CustomStringConvertible {
    |               `- note: struct 'GraphQLResult' does not conform to the 'Sendable' protocol
  4 |     public var data: Map?
  5 |     public var errors: [GraphQLError]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:105:13: warning: type 'GraphQLResult' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
103 |         /// Build context and execute short-lived GraphQL Operation inside an event loop
104 |         private func execute(_ gql: GraphQLRequest, client: WebSocketClient) -> Task<GraphQLResult, Error> {
105 |             Task { [unowned self] in
    |             `- warning: type 'GraphQLResult' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
106 |                 let ctx = try await client.context(gql)
107 |                 return try await executeGraphQL(
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/GraphQL.swift:3:15: note: struct 'GraphQLResult' does not conform to the 'Sendable' protocol
  1 | import NIO
  2 |
  3 | public struct GraphQLResult: Equatable, Codable, CustomStringConvertible {
    |               `- note: struct 'GraphQLResult' does not conform to the 'Sendable' protocol
  4 |     public var data: Map?
  5 |     public var errors: [GraphQLError]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:106:44: warning: non-sendable type 'Context' returned by implicitly asynchronous call to nonisolated function cannot cross actor boundary; this is an error in the Swift 6 language mode
104 |         private func execute(_ gql: GraphQLRequest, client: WebSocketClient) -> Task<GraphQLResult, Error> {
105 |             Task { [unowned self] in
106 |                 let ctx = try await client.context(gql)
    |                                            `- warning: non-sendable type 'Context' returned by implicitly asynchronous call to nonisolated function cannot cross actor boundary; this is an error in the Swift 6 language mode
107 |                 return try await executeGraphQL(
108 |                     schema: self.schema,
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Pioneer.swift:16:33: note: consider making generic parameter 'Context' conform to the 'Sendable' protocol
 14 |
 15 | /// Pioneer GraphQL Server for handling all GraphQL operations
 16 | public struct Pioneer<Resolver, Context> {
    |                                 `- note: consider making generic parameter 'Context' conform to the 'Sendable' protocol
 17 |     /// Graphiti schema used to execute operations
 18 |     public private(set) var schema: GraphQLSchema
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:107:34: warning: non-sendable type 'GraphQLResult' returned by implicitly asynchronous call to nonisolated function cannot cross actor boundary; this is an error in the Swift 6 language mode
105 |             Task { [unowned self] in
106 |                 let ctx = try await client.context(gql)
107 |                 return try await executeGraphQL(
    |                                  `- warning: non-sendable type 'GraphQLResult' returned by implicitly asynchronous call to nonisolated function cannot cross actor boundary; this is an error in the Swift 6 language mode
108 |                     schema: self.schema,
109 |                     request: gql.query,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/GraphQL.swift:3:15: note: struct 'GraphQLResult' does not conform to the 'Sendable' protocol
  1 | import NIO
  2 |
  3 | public struct GraphQLResult: Equatable, Codable, CustomStringConvertible {
    |               `- note: struct 'GraphQLResult' does not conform to the 'Sendable' protocol
  4 |     public var data: Map?
  5 |     public var errors: [GraphQLError]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Drone/Drone.swift:139:23: warning: sending 'self.schema' risks causing data races; this is an error in the Swift 6 language mode
137 |         /// Execute long lived GraphQL Operation as a subscription
138 |         private func subscribeOperation(for gql: GraphQLRequest, with ctx: Context, using eventLoop: EventLoopGroup) async throws -> SubscriptionResult {
139 |             try await subscribeGraphQL(
    |                       |- warning: sending 'self.schema' risks causing data races; this is an error in the Swift 6 language mode
    |                       `- note: sending 'self'-isolated 'self.schema' to nonisolated callee risks causing data races between nonisolated and 'self'-isolated uses
140 |                 schema: schema,
141 |                 request: gql.query,
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Drone/Drone.swift:139:23: warning: sending 'self.resolver' risks causing data races; this is an error in the Swift 6 language mode
137 |         /// Execute long lived GraphQL Operation as a subscription
138 |         private func subscribeOperation(for gql: GraphQLRequest, with ctx: Context, using eventLoop: EventLoopGroup) async throws -> SubscriptionResult {
139 |             try await subscribeGraphQL(
    |                       |- warning: sending 'self.resolver' risks causing data races; this is an error in the Swift 6 language mode
    |                       `- note: sending 'self'-isolated 'self.resolver' to nonisolated callee risks causing data races between nonisolated and 'self'-isolated uses
140 |                 schema: schema,
141 |                 request: gql.query,
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Drone/Drone.swift:139:23: warning: sending 'ctx' risks causing data races; this is an error in the Swift 6 language mode
137 |         /// Execute long lived GraphQL Operation as a subscription
138 |         private func subscribeOperation(for gql: GraphQLRequest, with ctx: Context, using eventLoop: EventLoopGroup) async throws -> SubscriptionResult {
139 |             try await subscribeGraphQL(
    |                       |- warning: sending 'ctx' risks causing data races; this is an error in the Swift 6 language mode
    |                       `- note: sending 'self'-isolated 'ctx' to nonisolated callee risks causing data races between nonisolated and 'self'-isolated uses
140 |                 schema: schema,
141 |                 request: gql.query,
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Drone/Drone.swift:127:44: warning: sending 'self.client' risks causing data races; this is an error in the Swift 6 language mode
125 |         private func subscription(gql: GraphQLRequest) async -> SubscriptionResult {
126 |             do {
127 |                 let ctx = try await client.context(gql)
    |                                            |- warning: sending 'self.client' risks causing data races; this is an error in the Swift 6 language mode
    |                                            `- note: sending 'self'-isolated 'self.client' to nonisolated callee risks causing data races between nonisolated and 'self'-isolated uses
128 |                 return try await subscribeOperation(for: gql, with: ctx, using: client.ev)
129 |             } catch {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:56:18: warning: sending 'client' risks causing data races; this is an error in the Swift 6 language mode
 54 |
 55 |             let drone = drones.getOrElse(cid) {
 56 |                 .init(client,
    |                  |- warning: sending 'client' risks causing data races; this is an error in the Swift 6 language mode
    |                  `- note: sending 'self'-isolated 'client' to actor-isolated callee risks causing data races between actor-isolated and 'self'-isolated uses
 57 |                       schema: schema,
 58 |                       resolver: resolver,
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:56:18: warning: sending 'self.schema' risks causing data races; this is an error in the Swift 6 language mode
 54 |
 55 |             let drone = drones.getOrElse(cid) {
 56 |                 .init(client,
    |                  |- warning: sending 'self.schema' risks causing data races; this is an error in the Swift 6 language mode
    |                  `- note: sending 'self'-isolated 'self.schema' to actor-isolated callee risks causing data races between actor-isolated and 'self'-isolated uses
 57 |                       schema: schema,
 58 |                       resolver: resolver,
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:56:18: warning: sending 'self.resolver' risks causing data races; this is an error in the Swift 6 language mode
 54 |
 55 |             let drone = drones.getOrElse(cid) {
 56 |                 .init(client,
    |                  |- warning: sending 'self.resolver' risks causing data races; this is an error in the Swift 6 language mode
    |                  `- note: sending 'self'-isolated 'self.resolver' to actor-isolated callee risks causing data races between actor-isolated and 'self'-isolated uses
 57 |                       schema: schema,
 58 |                       resolver: resolver,
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:107:34: warning: sending actor-isolated value of type 'GraphQLSchema' with later accesses to nonisolated context risks causing data races; this is an error in the Swift 6 language mode
105 |             Task { [unowned self] in
106 |                 let ctx = try await client.context(gql)
107 |                 return try await executeGraphQL(
    |                                  `- warning: sending actor-isolated value of type 'GraphQLSchema' with later accesses to nonisolated context risks causing data races; this is an error in the Swift 6 language mode
108 |                     schema: self.schema,
109 |                     request: gql.query,
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:107:34: warning: sending actor-isolated value of type 'Resolver' with later accesses to nonisolated context risks causing data races; this is an error in the Swift 6 language mode
105 |             Task { [unowned self] in
106 |                 let ctx = try await client.context(gql)
107 |                 return try await executeGraphQL(
    |                                  `- warning: sending actor-isolated value of type 'Resolver' with later accesses to nonisolated context risks causing data races; this is an error in the Swift 6 language mode
108 |                     schema: self.schema,
109 |                     request: gql.query,
[1725/1725] Compiling Pioneer WebsocketProtocol.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Drone/Drone.swift:127:44: warning: non-sendable type 'Context' returned by implicitly asynchronous call to nonisolated function cannot cross actor boundary; this is an error in the Swift 6 language mode
125 |         private func subscription(gql: GraphQLRequest) async -> SubscriptionResult {
126 |             do {
127 |                 let ctx = try await client.context(gql)
    |                                            `- warning: non-sendable type 'Context' returned by implicitly asynchronous call to nonisolated function cannot cross actor boundary; this is an error in the Swift 6 language mode
128 |                 return try await subscribeOperation(for: gql, with: ctx, using: client.ev)
129 |             } catch {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Pioneer.swift:16:33: note: consider making generic parameter 'Context' conform to the 'Sendable' protocol
 14 |
 15 | /// Pioneer GraphQL Server for handling all GraphQL operations
 16 | public struct Pioneer<Resolver, Context> {
    |                                 `- note: consider making generic parameter 'Context' conform to the 'Sendable' protocol
 17 |     /// Graphiti schema used to execute operations
 18 |     public private(set) var schema: GraphQLSchema
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Drone/Drone.swift:139:23: warning: non-sendable type 'SubscriptionResult' returned by implicitly asynchronous call to nonisolated function cannot cross actor boundary; this is an error in the Swift 6 language mode
137 |         /// Execute long lived GraphQL Operation as a subscription
138 |         private func subscribeOperation(for gql: GraphQLRequest, with ctx: Context, using eventLoop: EventLoopGroup) async throws -> SubscriptionResult {
139 |             try await subscribeGraphQL(
    |                       `- warning: non-sendable type 'SubscriptionResult' returned by implicitly asynchronous call to nonisolated function cannot cross actor boundary; this is an error in the Swift 6 language mode
140 |                 schema: schema,
141 |                 request: gql.query,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/GraphQL.swift:47:15: note: struct 'SubscriptionResult' does not conform to the 'Sendable' protocol
 45 |
 46 | /// SubscriptionResult wraps the observable and error data returned by the subscribe request.
 47 | public struct SubscriptionResult {
    |               `- note: struct 'SubscriptionResult' does not conform to the 'Sendable' protocol
 48 |     public let stream: SubscriptionEventStream?
 49 |     public let errors: [GraphQLError]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Drone/Drone.swift:9:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
  7 |
  8 | import class Graphiti.Schema
  9 | import GraphQL
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
 10 | import protocol NIO.EventLoopGroup
 11 |
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:104:22: warning: type 'GraphQLResult' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
102 |
103 |         /// Build context and execute short-lived GraphQL Operation inside an event loop
104 |         private func execute(_ gql: GraphQLRequest, client: WebSocketClient) -> Task<GraphQLResult, Error> {
    |                      `- warning: type 'GraphQLResult' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
105 |             Task { [unowned self] in
106 |                 let ctx = try await client.context(gql)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/GraphQL.swift:3:15: note: struct 'GraphQLResult' does not conform to the 'Sendable' protocol
  1 | import NIO
  2 |
  3 | public struct GraphQLResult: Equatable, Codable, CustomStringConvertible {
    |               `- note: struct 'GraphQLResult' does not conform to the 'Sendable' protocol
  4 |     public var data: Map?
  5 |     public var errors: [GraphQLError]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:10:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
  8 | import struct Foundation.UUID
  9 | import class Graphiti.Schema
 10 | import GraphQL
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
 11 | import protocol NIO.EventLoopGroup
 12 |
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:71:17: warning: type 'GraphQLResult' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 69 |             }
 70 |
 71 |             let future = execute(gql, client: client)
    |                 `- warning: type 'GraphQLResult' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 72 |
 73 |             pipeToSelf(future: future) { [unowned self] sink, res in
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/GraphQL.swift:3:15: note: struct 'GraphQLResult' does not conform to the 'Sendable' protocol
  1 | import NIO
  2 |
  3 | public struct GraphQLResult: Equatable, Codable, CustomStringConvertible {
    |               `- note: struct 'GraphQLResult' does not conform to the 'Sendable' protocol
  4 |     public var data: Map?
  5 |     public var errors: [GraphQLError]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:73:13: warning: type 'GraphQLResult' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 71 |             let future = execute(gql, client: client)
 72 |
 73 |             pipeToSelf(future: future) { [unowned self] sink, res in
    |             `- warning: type 'GraphQLResult' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 74 |                 switch res {
 75 |                 case let .success(value):
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/GraphQL.swift:3:15: note: struct 'GraphQLResult' does not conform to the 'Sendable' protocol
  1 | import NIO
  2 |
  3 | public struct GraphQLResult: Equatable, Codable, CustomStringConvertible {
    |               `- note: struct 'GraphQLResult' does not conform to the 'Sendable' protocol
  4 |     public var data: Map?
  5 |     public var errors: [GraphQLError]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:78:29: warning: capture of 'client' with non-sendable type 'Pioneer<Resolver, Context>.WebSocketClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 76 |                     await sink.outgoing(
 77 |                         with: oid,
 78 |                         to: client,
    |                             `- warning: capture of 'client' with non-sendable type 'Pioneer<Resolver, Context>.WebSocketClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 79 |                         given: .from(type: self.proto.next, id: oid, value)
 80 |                     )
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Common/WebSocketClient.swift:21:12: note: consider making struct 'WebSocketClient' conform to the 'Sendable' protocol
19 |
20 |     /// Full GraphQL over WebSocket Client
21 |     struct WebSocketClient: Identifiable {
   |            `- note: consider making struct 'WebSocketClient' conform to the 'Sendable' protocol
22 |         /// The unique key for this client
23 |         public var id: UUID
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:105:13: warning: type 'GraphQLResult' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
103 |         /// Build context and execute short-lived GraphQL Operation inside an event loop
104 |         private func execute(_ gql: GraphQLRequest, client: WebSocketClient) -> Task<GraphQLResult, Error> {
105 |             Task { [unowned self] in
    |             `- warning: type 'GraphQLResult' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
106 |                 let ctx = try await client.context(gql)
107 |                 return try await executeGraphQL(
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/GraphQL.swift:3:15: note: struct 'GraphQLResult' does not conform to the 'Sendable' protocol
  1 | import NIO
  2 |
  3 | public struct GraphQLResult: Equatable, Codable, CustomStringConvertible {
    |               `- note: struct 'GraphQLResult' does not conform to the 'Sendable' protocol
  4 |     public var data: Map?
  5 |     public var errors: [GraphQLError]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:105:13: warning: type 'GraphQLResult' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
103 |         /// Build context and execute short-lived GraphQL Operation inside an event loop
104 |         private func execute(_ gql: GraphQLRequest, client: WebSocketClient) -> Task<GraphQLResult, Error> {
105 |             Task { [unowned self] in
    |             `- warning: type 'GraphQLResult' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
106 |                 let ctx = try await client.context(gql)
107 |                 return try await executeGraphQL(
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/GraphQL.swift:3:15: note: struct 'GraphQLResult' does not conform to the 'Sendable' protocol
  1 | import NIO
  2 |
  3 | public struct GraphQLResult: Equatable, Codable, CustomStringConvertible {
    |               `- note: struct 'GraphQLResult' does not conform to the 'Sendable' protocol
  4 |     public var data: Map?
  5 |     public var errors: [GraphQLError]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:106:44: warning: non-sendable type 'Context' returned by implicitly asynchronous call to nonisolated function cannot cross actor boundary; this is an error in the Swift 6 language mode
104 |         private func execute(_ gql: GraphQLRequest, client: WebSocketClient) -> Task<GraphQLResult, Error> {
105 |             Task { [unowned self] in
106 |                 let ctx = try await client.context(gql)
    |                                            `- warning: non-sendable type 'Context' returned by implicitly asynchronous call to nonisolated function cannot cross actor boundary; this is an error in the Swift 6 language mode
107 |                 return try await executeGraphQL(
108 |                     schema: self.schema,
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Pioneer.swift:16:33: note: consider making generic parameter 'Context' conform to the 'Sendable' protocol
 14 |
 15 | /// Pioneer GraphQL Server for handling all GraphQL operations
 16 | public struct Pioneer<Resolver, Context> {
    |                                 `- note: consider making generic parameter 'Context' conform to the 'Sendable' protocol
 17 |     /// Graphiti schema used to execute operations
 18 |     public private(set) var schema: GraphQLSchema
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:107:34: warning: non-sendable type 'GraphQLResult' returned by implicitly asynchronous call to nonisolated function cannot cross actor boundary; this is an error in the Swift 6 language mode
105 |             Task { [unowned self] in
106 |                 let ctx = try await client.context(gql)
107 |                 return try await executeGraphQL(
    |                                  `- warning: non-sendable type 'GraphQLResult' returned by implicitly asynchronous call to nonisolated function cannot cross actor boundary; this is an error in the Swift 6 language mode
108 |                     schema: self.schema,
109 |                     request: gql.query,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/GraphQL.swift:3:15: note: struct 'GraphQLResult' does not conform to the 'Sendable' protocol
  1 | import NIO
  2 |
  3 | public struct GraphQLResult: Equatable, Codable, CustomStringConvertible {
    |               `- note: struct 'GraphQLResult' does not conform to the 'Sendable' protocol
  4 |     public var data: Map?
  5 |     public var errors: [GraphQLError]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Drone/Drone.swift:139:23: warning: sending 'self.schema' risks causing data races; this is an error in the Swift 6 language mode
137 |         /// Execute long lived GraphQL Operation as a subscription
138 |         private func subscribeOperation(for gql: GraphQLRequest, with ctx: Context, using eventLoop: EventLoopGroup) async throws -> SubscriptionResult {
139 |             try await subscribeGraphQL(
    |                       |- warning: sending 'self.schema' risks causing data races; this is an error in the Swift 6 language mode
    |                       `- note: sending 'self'-isolated 'self.schema' to nonisolated callee risks causing data races between nonisolated and 'self'-isolated uses
140 |                 schema: schema,
141 |                 request: gql.query,
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Drone/Drone.swift:139:23: warning: sending 'self.resolver' risks causing data races; this is an error in the Swift 6 language mode
137 |         /// Execute long lived GraphQL Operation as a subscription
138 |         private func subscribeOperation(for gql: GraphQLRequest, with ctx: Context, using eventLoop: EventLoopGroup) async throws -> SubscriptionResult {
139 |             try await subscribeGraphQL(
    |                       |- warning: sending 'self.resolver' risks causing data races; this is an error in the Swift 6 language mode
    |                       `- note: sending 'self'-isolated 'self.resolver' to nonisolated callee risks causing data races between nonisolated and 'self'-isolated uses
140 |                 schema: schema,
141 |                 request: gql.query,
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Drone/Drone.swift:139:23: warning: sending 'ctx' risks causing data races; this is an error in the Swift 6 language mode
137 |         /// Execute long lived GraphQL Operation as a subscription
138 |         private func subscribeOperation(for gql: GraphQLRequest, with ctx: Context, using eventLoop: EventLoopGroup) async throws -> SubscriptionResult {
139 |             try await subscribeGraphQL(
    |                       |- warning: sending 'ctx' risks causing data races; this is an error in the Swift 6 language mode
    |                       `- note: sending 'self'-isolated 'ctx' to nonisolated callee risks causing data races between nonisolated and 'self'-isolated uses
140 |                 schema: schema,
141 |                 request: gql.query,
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Drone/Drone.swift:127:44: warning: sending 'self.client' risks causing data races; this is an error in the Swift 6 language mode
125 |         private func subscription(gql: GraphQLRequest) async -> SubscriptionResult {
126 |             do {
127 |                 let ctx = try await client.context(gql)
    |                                            |- warning: sending 'self.client' risks causing data races; this is an error in the Swift 6 language mode
    |                                            `- note: sending 'self'-isolated 'self.client' to nonisolated callee risks causing data races between nonisolated and 'self'-isolated uses
128 |                 return try await subscribeOperation(for: gql, with: ctx, using: client.ev)
129 |             } catch {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:56:18: warning: sending 'client' risks causing data races; this is an error in the Swift 6 language mode
 54 |
 55 |             let drone = drones.getOrElse(cid) {
 56 |                 .init(client,
    |                  |- warning: sending 'client' risks causing data races; this is an error in the Swift 6 language mode
    |                  `- note: sending 'self'-isolated 'client' to actor-isolated callee risks causing data races between actor-isolated and 'self'-isolated uses
 57 |                       schema: schema,
 58 |                       resolver: resolver,
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:56:18: warning: sending 'self.schema' risks causing data races; this is an error in the Swift 6 language mode
 54 |
 55 |             let drone = drones.getOrElse(cid) {
 56 |                 .init(client,
    |                  |- warning: sending 'self.schema' risks causing data races; this is an error in the Swift 6 language mode
    |                  `- note: sending 'self'-isolated 'self.schema' to actor-isolated callee risks causing data races between actor-isolated and 'self'-isolated uses
 57 |                       schema: schema,
 58 |                       resolver: resolver,
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:56:18: warning: sending 'self.resolver' risks causing data races; this is an error in the Swift 6 language mode
 54 |
 55 |             let drone = drones.getOrElse(cid) {
 56 |                 .init(client,
    |                  |- warning: sending 'self.resolver' risks causing data races; this is an error in the Swift 6 language mode
    |                  `- note: sending 'self'-isolated 'self.resolver' to actor-isolated callee risks causing data races between actor-isolated and 'self'-isolated uses
 57 |                       schema: schema,
 58 |                       resolver: resolver,
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:107:34: warning: sending actor-isolated value of type 'GraphQLSchema' with later accesses to nonisolated context risks causing data races; this is an error in the Swift 6 language mode
105 |             Task { [unowned self] in
106 |                 let ctx = try await client.context(gql)
107 |                 return try await executeGraphQL(
    |                                  `- warning: sending actor-isolated value of type 'GraphQLSchema' with later accesses to nonisolated context risks causing data races; this is an error in the Swift 6 language mode
108 |                     schema: self.schema,
109 |                     request: gql.query,
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:107:34: warning: sending actor-isolated value of type 'Resolver' with later accesses to nonisolated context risks causing data races; this is an error in the Swift 6 language mode
105 |             Task { [unowned self] in
106 |                 let ctx = try await client.context(gql)
107 |                 return try await executeGraphQL(
    |                                  `- warning: sending actor-isolated value of type 'Resolver' with later accesses to nonisolated context risks causing data races; this is an error in the Swift 6 language mode
108 |                     schema: self.schema,
109 |                     request: gql.query,
Build complete! (97.69s)
warning: 'multipart-kit': found 1 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
    /Users/admin/builder/spi-builder-workspace/.build/checkouts/multipart-kit/Sources/MultipartKit/Docs.docc
Build complete.
{
  "dependencies" : [
    {
      "identity" : "graphql",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "2.10.3",
            "upper_bound" : "3.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/GraphQLSwift/GraphQL.git"
    },
    {
      "identity" : "graphiti",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.15.1",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/GraphQLSwift/Graphiti.git"
    },
    {
      "identity" : "vapor",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "4.106.3",
            "upper_bound" : "5.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/vapor/vapor.git"
    }
  ],
  "manifest_display_name" : "Pioneer",
  "name" : "Pioneer",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.15"
    }
  ],
  "products" : [
    {
      "name" : "Pioneer",
      "targets" : [
        "Pioneer"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "PioneerTests",
      "module_type" : "SwiftTarget",
      "name" : "PioneerTests",
      "path" : "Tests/PioneerTests",
      "product_dependencies" : [
        "XCTVapor"
      ],
      "sources" : [
        "ActorTests/DroneTests.swift",
        "ActorTests/ProbeTests.swift",
        "DataStructureTests/AsyncPubSubTests.swift",
        "DataStructureTests/BuiltInTypesTests.swift",
        "DataStructureTests/WebSocketProtocolTests.swift",
        "GraphQLTests/GraphQLHTTPSpecTests.swift",
        "GraphQLTests/GraphQLRequestTests.swift",
        "GraphQLTests/GraphitiAsyncEventStreamTests.swift",
        "GraphQLTests/PioneerStatelessTests.swift",
        "OtherTests/ExtensionsTests.swift",
        "OtherTests/SecurityTest.swift",
        "Utils/TestConsumer.swift",
        "VaporTests/ContextTests.swift",
        "VaporTests/HTTPQueryTests.swift",
        "VaporTests/HTTPStrategyTests.swift",
        "VaporTests/MiddlewareTests.swift"
      ],
      "target_dependencies" : [
        "Pioneer"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Pioneer",
      "module_type" : "SwiftTarget",
      "name" : "Pioneer",
      "path" : "Sources/Pioneer",
      "product_dependencies" : [
        "GraphQL",
        "Graphiti",
        "Vapor"
      ],
      "product_memberships" : [
        "Pioneer"
      ],
      "sources" : [
        "Extensions/Collections/Dictionary+SafeOperation.swift",
        "Extensions/Collections/OrderedDictionary+Dictionary.swift",
        "Extensions/Expression.swift",
        "Extensions/Futures/Actor+Task.swift",
        "Extensions/Futures/Task+Starvation.swift",
        "Extensions/Int/UInt64+Nanoseconds.swift",
        "Extensions/Map/Map+Decoder.swift",
        "Extensions/Pioneer+Graphiti.swift",
        "Extensions/Results/Data+Json.swift",
        "GraphQL/BuiltinTypes.swift",
        "GraphQL/Extensions/Field+AsyncAwait.swift",
        "GraphQL/Extensions/Field+Middleware.swift",
        "GraphQL/Extensions/GraphQL+Execution.swift",
        "GraphQL/Extensions/GraphQLError+Error.swift",
        "GraphQL/GraphQLMessage.swift",
        "GraphQL/GraphQLMiddleware.swift",
        "GraphQL/GraphQLRequest.swift",
        "GraphQL/GraphQLViolation.swift",
        "Http/CSRFProtections.swift",
        "Http/HTTPGraphQL.swift",
        "Http/HttpStrategy.swift",
        "Http/IDE.swift",
        "Pioneer.swift",
        "Streaming/AsyncEventStream.swift",
        "Streaming/AsyncPubSub.swift",
        "Streaming/Broadcast.swift",
        "Streaming/Extension/AsyncEventStream+Future+GraphQLResult.swift",
        "Streaming/Extension/AsyncSequence+EventStream.swift",
        "Streaming/Extension/AsyncStream+Statics.swift",
        "Streaming/Extension/EventStream+Static.swift",
        "Streaming/PubSub.swift",
        "Utils/Interval.swift",
        "Utils/Timeout.swift",
        "Utils/Validation.swift",
        "Vapor/Extensions/CORS/CORSMIddleware+BananaCakePop.swift",
        "Vapor/Extensions/CORS/CORSMiddleware+ApolloSandbox.swift",
        "Vapor/Extensions/EnvironmentVariables/EnvironmentVariables.swift",
        "Vapor/Extensions/Request/GraphQLJSONEncoder+ContentEncoder.swift",
        "Vapor/Extensions/Request/Request+GraphQLRequest.swift",
        "Vapor/Extensions/Request/Request+PathComponent.swift",
        "Vapor/Extensions/Request/Request+WebSocket.swift",
        "Vapor/Extensions/Request/Request+WebsocketContext.swift",
        "Vapor/Extensions/Response/GraphQLResult+Content.swift",
        "Vapor/Extensions/Response/Response+GraphQLError.swift",
        "Vapor/Extensions/WebSocket/WebSocket+WebSocketable.swift",
        "Vapor/Http/Pioneer+Http.swift",
        "Vapor/Http/Pioneer+IDE.swift",
        "Vapor/Pioneer+Standalone.swift",
        "Vapor/Pioneer+Vapor+Void.swift",
        "Vapor/Pioneer+Vapor.swift",
        "Vapor/WebSocket/Pioneer+WebSocket.swift",
        "WebSocket/Common/Intent.swift",
        "WebSocket/Common/Payload.swift",
        "WebSocket/Common/Pioneer+WebSocketable.swift",
        "WebSocket/Common/WebSocketClient.swift",
        "WebSocket/Common/WebSocketable.swift",
        "WebSocket/Probe/Drone/Drone.swift",
        "WebSocket/Probe/Probe.swift",
        "WebSocket/Protocol/GraphQLWs.swift",
        "WebSocket/Protocol/SubProtocol.swift",
        "WebSocket/Protocol/SubscriptionsTransportWs.swift",
        "WebSocket/Protocol/WebsocketProtocol.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.10"
}
✅  Doc result (pending) reported
========================================
GenerateDocs
========================================
Generating docs at path:  $PWD/.docs/d-exclaimation/pioneer/main
Repository:               d-exclaimation/pioneer
Swift version used:       6.0
Target:                   Pioneer
Extracting symbol information for 'Pioneer'...
Finished extracting symbol information for 'Pioneer'. (20.61s)
Building documentation for 'Pioneer'...
warning: External name 'to' used to document parameter
  --> Sources/Pioneer/Extensions/Futures/Actor+Task.swift:13:13-13:15
11 |     /// - Parameters:
12 |     ///   - future: EventLoopFuture value being awaited
13 +     ///   - to: Transforming callback to for the result from the Future.
   |             ╰─suggestion: Replace 'to' with 'callback'
14 |     func pipeToSelf<U>(future: Task<U, Error>, to callback: @Sendable @escaping (Self, Result<U, Error>) async -> Void) {
15 |         Task {
warning: External name 'to' used to document parameter
  --> Sources/Pioneer/Extensions/Futures/Actor+Task.swift:13:13-13:15
11 |     /// - Parameters:
12 |     ///   - future: EventLoopFuture value being awaited
13 +     ///   - to: Transforming callback to for the result from the Future.
   |             ╰─suggestion: Replace 'to' with 'callback'
14 |     func pipeToSelf<U>(future: Task<U, Error>, to callback: @Sendable @escaping (Self, Result<U, Error>) async -> Void) {
15 |         Task {
warning: External name 'to' used to document parameter
  --> Sources/Pioneer/Extensions/Futures/Actor+Task.swift:13:13-13:15
11 |     /// - Parameters:
12 |     ///   - future: EventLoopFuture value being awaited
13 +     ///   - to: Transforming callback to for the result from the Future.
   |             ╰─suggestion: Replace 'to' with 'callback'
14 |     func pipeToSelf<U>(future: Task<U, Error>, to callback: @Sendable @escaping (Self, Result<U, Error>) async -> Void) {
15 |         Task {
warning: 'yield()' doesn't exist at '/Pioneer/_Concurrency/Task'
  --> Sources/Pioneer/Extensions/Futures/Task+Starvation.swift:13:43-13:50
11 |     /// A task can voluntarily suspend itself in the middle of a long-running operation that doesn’t contain any suspension points, to let other tasks run for a while before execution returns to this task.
12 |     ///
13 +     /// This is a sister method to ``Task/yield()``, which is a suspension point that allows other tasks to run that forces the suspension of the current task and ignores the current task’s priority.
14 |     static func postpone() async throws {
15 |         try await Task.sleep(nanoseconds: 0)
warning: Parameter 'contextBuilder' not found in initializer declaration
  --> Sources/Pioneer/Extensions/Pioneer+Graphiti.swift:14:11-14:57
12 |     ///   - schema: GraphQL schema used to execute operations
13 |     ///   - resolver: Resolver used by the GraphQL schema
14 +     ///   - contextBuilder: Context builder from request
   |           ╰─suggestion: Remove 'contextBuilder' parameter documentation
15 |     ///   - httpStrategy: HTTP strategy
16 |     ///   - websocketProtocol: Websocket sub-protocol
warning: Parameter 'contextBuilder' not found in initializer declaration
  --> Sources/Pioneer/Extensions/Pioneer+Graphiti.swift:49:11-49:57
47 |     ///   - schema: GraphQL schema used to execute operations
48 |     ///   - resolver: Resolver used by the GraphQL schema
49 +     ///   - contextBuilder: Context builder from request
   |           ╰─suggestion: Remove 'contextBuilder' parameter documentation
50 |     ///   - httpStrategy: HTTP strategy
51 |     ///   - websocketContextBuilder: Context builder for the websocket
warning: Parameter 'websocketContextBuilder' not found in initializer declaration
  --> Sources/Pioneer/Extensions/Pioneer+Graphiti.swift:51:13-51:36
49 |     ///   - contextBuilder: Context builder from request
50 |     ///   - httpStrategy: HTTP strategy
51 +     ///   - websocketContextBuilder: Context builder for the websocket
   |             ╰─suggestion: Replace 'websocketContextBuilder' with 'websocketProtocol'
52 |     ///   - websocketOnInit: Function to intercept websocket connection during the initialization phase
53 |     ///   - websocketProtocol: Websocket sub-protocol
warning: Parameter 'websocketOnInit' not found in initializer declaration
  --> Sources/Pioneer/Extensions/Pioneer+Graphiti.swift:52:13-52:28
50 |     ///   - httpStrategy: HTTP strategy
51 |     ///   - websocketContextBuilder: Context builder for the websocket
52 +     ///   - websocketOnInit: Function to intercept websocket connection during the initialization phase
   |             ╰─suggestion: Replace 'websocketOnInit' with 'websocketProtocol'
53 |     ///   - websocketProtocol: Websocket sub-protocol
54 |     ///   - introspection: Allowing introspection
warning: Parameter 'contextBuilder' not found in initializer declaration
  --> Sources/Pioneer/Pioneer.swift:42:11-42:57
40 |     ///   - schema: GraphQL schema used to execute operations
41 |     ///   - resolver: Resolver used by the GraphQL schema
42 +     ///   - contextBuilder: Context builder from request
   |           ╰─suggestion: Remove 'contextBuilder' parameter documentation
43 |     ///   - httpStrategy: HTTP strategy
44 |     ///   - websocketContextBuilder: Context builder for the websocket
warning: Parameter 'websocketContextBuilder' not found in initializer declaration
  --> Sources/Pioneer/Pioneer.swift:44:13-44:36
42 |     ///   - contextBuilder: Context builder from request
43 |     ///   - httpStrategy: HTTP strategy
44 +     ///   - websocketContextBuilder: Context builder for the websocket
   |             ╰─suggestion: Replace 'websocketContextBuilder' with 'websocketProtocol'
45 |     ///   - websocketOnInit: Function to intercept websocket connection during the initialization phase
46 |     ///   - websocketProtocol: Websocket sub-protocol
warning: Parameter 'websocketOnInit' not found in initializer declaration
  --> Sources/Pioneer/Pioneer.swift:45:13-45:28
43 |     ///   - httpStrategy: HTTP strategy
44 |     ///   - websocketContextBuilder: Context builder for the websocket
45 +     ///   - websocketOnInit: Function to intercept websocket connection during the initialization phase
   |             ╰─suggestion: Replace 'websocketOnInit' with 'websocketProtocol'
46 |     ///   - websocketProtocol: Websocket sub-protocol
47 |     ///   - introspection: Allowing introspection
warning: Parameter 'check' is missing documentation
   --> Sources/Pioneer/Pioneer.swift:166:56-166:56
164 |     ///   - ev: Any event loop
165 |     ///   - txt: The message received
166 +     ///   - context: The context builder for the client
    |                                                        ╰─suggestion: Document 'check' parameter
167 |     public func receiveMessage(
168 |         cid: UUID,
warning: Parameter 'type' not found in instance method declaration
  --> Sources/Pioneer/Streaming/AsyncPubSub.swift:59:11-59:47
57 |     ///
58 |     /// - Parameters:
59 +     ///   - type: DataType of this AsyncStream
   |           ╰─suggestion: Remove 'type' parameter documentation
60 |     ///   - trigger: The topic string used to differentiate what data should this stream be accepting
61 |     public func asyncStream<DataType: Sendable & Decodable>(_: DataType.Type = DataType.self, for trigger: String) -> AsyncThrowingStream<DataType, Error> {
warning: Parameter '' is missing documentation
  --> Sources/Pioneer/Streaming/AsyncPubSub.swift:60:102-60:102
58 |     /// - Parameters:
59 |     ///   - type: DataType of this AsyncStream
60 +     ///   - trigger: The topic string used to differentiate what data should this stream be accepting
   |           ╰─suggestion: Document '' parameter
61 |     public func asyncStream<DataType: Sendable & Decodable>(_: DataType.Type = DataType.self, for trigger: String) -> AsyncThrowingStream<DataType, Error> {
62 |         AsyncThrowingStream<DataType, Error> { con in
warning: External name 'to' used to document parameter
  --> Sources/Pioneer/Streaming/Extension/AsyncEventStream+Future+GraphQLResult.swift:38:13-38:15
36 |     ///
37 |     /// - Parameters:
38 +     ///   - to: Any type of Actor.
   |             ╰─suggestion: Replace 'to' with 'sink'
39 |     ///   - complete: A callback ran when this sequence completes.
40 |     ///   - error: A callback ran when an error were thrown when reading elements from this sequence.
warning: External name 'to' used to document parameter
  --> Sources/Pioneer/Streaming/Extension/AsyncEventStream+Future+GraphQLResult.swift:38:13-38:15
36 |     ///
37 |     /// - Parameters:
38 +     ///   - to: Any type of Actor.
   |             ╰─suggestion: Replace 'to' with 'sink'
39 |     ///   - complete: A callback ran when this sequence completes.
40 |     ///   - error: A callback ran when an error were thrown when reading elements from this sequence.
warning: Parameter 'error' not found in instance method declaration
  --> Sources/Pioneer/Streaming/Extension/AsyncEventStream+Future+GraphQLResult.swift:40:11-40:102
38 |     ///   - to: Any type of Actor.
39 |     ///   - complete: A callback ran when this sequence completes.
40 +     ///   - error: A callback ran when an error were thrown when reading elements from this sequence.
   |           ╰─suggestion: Remove 'error' parameter documentation
41 |     ///   - next: A callback ran on each element of this sequence.
42 |     /// - Returns: The Task used to consume this AsyncSequence
warning: Parameter 'error' not found in instance method declaration
  --> Sources/Pioneer/Streaming/Extension/AsyncEventStream+Future+GraphQLResult.swift:40:11-40:102
38 |     ///   - to: Any type of Actor.
39 |     ///   - complete: A callback ran when this sequence completes.
40 +     ///   - error: A callback ran when an error were thrown when reading elements from this sequence.
   |           ╰─suggestion: Remove 'error' parameter documentation
41 |     ///   - next: A callback ran on each element of this sequence.
42 |     /// - Returns: The Task used to consume this AsyncSequence
warning: Parameter 'failure' is missing documentation
  --> Sources/Pioneer/Streaming/Extension/AsyncEventStream+Future+GraphQLResult.swift:41:67-41:67
39 |     ///   - complete: A callback ran when this sequence completes.
40 |     ///   - error: A callback ran when an error were thrown when reading elements from this sequence.
41 +     ///   - next: A callback ran on each element of this sequence.
   |           ╰─suggestion: Document 'failure' parameter
42 |     /// - Returns: The Task used to consume this AsyncSequence
43 |     func pipe<ActorType: Actor>(
warning: Parameter 'failure' is missing documentation
  --> Sources/Pioneer/Streaming/Extension/AsyncEventStream+Future+GraphQLResult.swift:41:67-41:67
39 |     ///   - complete: A callback ran when this sequence completes.
40 |     ///   - error: A callback ran when an error were thrown when reading elements from this sequence.
41 +     ///   - next: A callback ran on each element of this sequence.
   |           ╰─suggestion: Document 'failure' parameter
42 |     /// - Returns: The Task used to consume this AsyncSequence
43 |     func pipe<ActorType: Actor>(
warning: External name 'onTermination' used to document parameter
  --> Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:23:13-23:26
21 |     ///
22 |     /// - Parameters:
23 +     ///   - onTermination: onTermination callback
   |             ╰─suggestion: Replace 'onTermination' with 'callback'
24 |     func toEventStream(
25 |         onTermination callback: @Sendable @escaping (Termination) -> Void
warning: External name 'onTermination' used to document parameter
  --> Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:23:13-23:26
21 |     ///
22 |     /// - Parameters:
23 +     ///   - onTermination: onTermination callback
   |             ╰─suggestion: Replace 'onTermination' with 'callback'
24 |     func toEventStream(
25 |         onTermination callback: @Sendable @escaping (Termination) -> Void
warning: External name 'onTermination' used to document parameter
  --> Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:55:13-55:26
53 |     /// - Parameters:
54 |     ///   - endValue: Ending value
55 +     ///   - onTermination: onTermination callback
   |             ╰─suggestion: Replace 'onTermination' with 'callback'
56 |     func toEventStream(
57 |         endValue: @escaping () -> Element,
warning: External name 'onTermination' used to document parameter
  --> Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:55:13-55:26
53 |     /// - Parameters:
54 |     ///   - endValue: Ending value
55 +     ///   - onTermination: onTermination callback
   |             ╰─suggestion: Replace 'onTermination' with 'callback'
56 |     func toEventStream(
57 |         endValue: @escaping () -> Element,
warning: External name 'onTermination' used to document parameter
  --> Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:89:13-89:26
87 |     /// - Parameters:
88 |     ///   - initialValue: Initial value from subscriptions
89 +     ///   - onTermination: onTermination callback
   |             ╰─suggestion: Replace 'onTermination' with 'callback'
90 |     func toEventStream(
91 |         initialValue: Element,
warning: External name 'onTermination' used to document parameter
  --> Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:89:13-89:26
87 |     /// - Parameters:
88 |     ///   - initialValue: Initial value from subscriptions
89 +     ///   - onTermination: onTermination callback
   |             ╰─suggestion: Replace 'onTermination' with 'callback'
90 |     func toEventStream(
91 |         initialValue: Element,
warning: External name 'onTermination' used to document parameter
   --> Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:124:13-124:26
122 |     ///   - initialValue: Initial value from subscriptions
123 |     ///   - endValue: Ending value
124 +     ///   - onTermination: onTermination callback
    |             ╰─suggestion: Replace 'onTermination' with 'callback'
125 |     func toEventStream(
126 |         initialValue: Element,
warning: External name 'onTermination' used to document parameter
   --> Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:124:13-124:26
122 |     ///   - initialValue: Initial value from subscriptions
123 |     ///   - endValue: Ending value
124 +     ///   - onTermination: onTermination callback
    |             ╰─suggestion: Replace 'onTermination' with 'callback'
125 |     func toEventStream(
126 |         initialValue: Element,
warning: Parameter 'context' is missing documentation
  --> Sources/Pioneer/Vapor/Http/Pioneer+Http.swift:19:53-19:53
17 |
18 |     /// Common Handler for GraphQL through HTTP
19 +     /// - Parameter req: The HTTP request being made
   |                                                     ╰─suggestion: Document 'context' parameter
20 |     /// - Returns: A response from the GraphQL operation execution properly formatted
21 |     func httpHandler(req: Request, context: @escaping VaporHTTPContext) async throws -> Response {
warning: External name 'using' used to document parameter
  --> Sources/Pioneer/Vapor/Http/Pioneer+Http.swift:28:13-28:18
26 |     /// - Parameters:
27 |     ///   - req: The HTTP request being made
28 +     ///   - using: The custom content encoder
   |             ╰─suggestion: Replace 'using' with 'encoder'
29 |     /// - Returns: A response from the GraphQL operation execution properly formatted
30 |     func httpHandler(req: Request, using encoder: ContentEncoder, context: @escaping VaporHTTPContext) async throws -> Response {
warning: Parameter 'context' is missing documentation
  --> Sources/Pioneer/Vapor/Http/Pioneer+Http.swift:28:46-28:46
26 |     /// - Parameters:
27 |     ///   - req: The HTTP request being made
28 +     ///   - using: The custom content encoder
   |                                              ╰─suggestion: Document 'context' parameter
29 |     /// - Returns: A response from the GraphQL operation execution properly formatted
30 |     func httpHandler(req: Request, using encoder: ContentEncoder, context: @escaping VaporHTTPContext) async throws -> Response {
warning: Parameter 'context' is missing documentation
  --> Sources/Pioneer/Vapor/WebSocket/Pioneer+WebSocket.swift:19:62-19:62
17 |
18 |     /// Upgrade Handler for all GraphQL through Websocket
19 +     /// - Parameter req: Request made to upgrade to Websocket
   |                                                              ╰─suggestion: Document 'context' parameter
20 |     /// - Returns: Response to upgrade connection to Websocket
21 |     func webSocketHandler(req: Request, context: @escaping VaporWebSocketContext, guard: @escaping VaporWebSocketGuard) async throws -> Response {
warning: Parameter 'guard' is missing documentation
  --> Sources/Pioneer/Vapor/WebSocket/Pioneer+WebSocket.swift:19:62-19:62
17 |
18 |     /// Upgrade Handler for all GraphQL through Websocket
19 +     /// - Parameter req: Request made to upgrade to Websocket
   |                                                              ╰─suggestion: Document 'guard' parameter
20 |     /// - Returns: Response to upgrade connection to Websocket
21 |     func webSocketHandler(req: Request, context: @escaping VaporWebSocketContext, guard: @escaping VaporWebSocketGuard) async throws -> Response {
warning: Parameter 'keepAlive' is missing documentation
  --> Sources/Pioneer/WebSocket/Common/Pioneer+WebSocketable.swift:20:45-20:45
18 |
19 |     /// Create a WebSocket connectiontimeout given the configuration
20 +     /// - Parameter io: any WebSocket output
   |                                             ╰─suggestion: Document 'keepAlive' parameter
21 |     func timeout(using io: WebSocketable, keepAlive: Task<Void, Error>? = nil) -> Task<Void, Error>? {
22 |         setTimeout(delay: timeout) {Finished building documentation for 'Pioneer' (0.49s)
Generated documentation archive at:
  /Users/admin/builder/spi-builder-workspace/.docs/d-exclaimation/pioneer/main
Updating https://github.com/apple/swift-algorithms.git
Updating https://github.com/apple/swift-atomics.git
Updating https://github.com/vapor/routing-kit.git
Updating https://github.com/apple/swift-system.git
Updating https://github.com/GraphQLSwift/GraphQL.git
Updating https://github.com/apple/swift-nio.git
Updating https://github.com/apple/swift-metrics.git
Updated https://github.com/GraphQLSwift/GraphQL.git (0.52s)
Updating https://github.com/GraphQLSwift/Graphiti.git
Updated https://github.com/apple/swift-algorithms.git (0.59s)
Updating https://github.com/apple/swift-crypto.git
Updated https://github.com/apple/swift-metrics.git (0.81s)
Updated https://github.com/vapor/routing-kit.git (0.81s)
Updated https://github.com/apple/swift-nio.git (0.81s)
Updated https://github.com/apple/swift-system.git (0.81s)
Updated https://github.com/apple/swift-atomics.git (0.81s)
Updating https://github.com/apple/swift-nio-ssl.git
Updating https://github.com/vapor/async-kit.git
Updating https://github.com/vapor/websocket-kit.git
Updating https://github.com/apple/swift-collections
Updating https://github.com/apple/swift-nio-extras.git
Updated https://github.com/GraphQLSwift/Graphiti.git (0.49s)
Updating https://github.com/vapor/vapor.git
Updated https://github.com/apple/swift-crypto.git (0.54s)
Updating https://github.com/vapor/multipart-kit.git
Updated https://github.com/apple/swift-collections (0.58s)
Updated https://github.com/apple/swift-nio-extras.git (0.58s)
Updated https://github.com/vapor/websocket-kit.git (0.58s)
Updated https://github.com/vapor/async-kit.git (0.58s)
Updated https://github.com/apple/swift-nio-ssl.git (0.58s)
Updating https://github.com/apple/swift-log.git
Updating https://github.com/apple/swift-nio-transport-services.git
Updating https://github.com/apple/swift-http-types
Updating https://github.com/swift-server/async-http-client.git
Updating https://github.com/apple/swift-numerics
Updated https://github.com/vapor/multipart-kit.git (0.45s)
Updating https://github.com/apple/swift-nio-http2.git
Updated https://github.com/vapor/vapor.git (0.75s)
Updating https://github.com/vapor/console-kit.git
Updated https://github.com/apple/swift-numerics (0.59s)
Updated https://github.com/apple/swift-log.git (0.59s)
Updated https://github.com/apple/swift-http-types (0.59s)
Updated https://github.com/apple/swift-nio-transport-services.git (0.59s)
Updated https://github.com/swift-server/async-http-client.git (0.59s)
Fetching https://github.com/swiftlang/swift-docc-plugin
Updated https://github.com/apple/swift-nio-http2.git (0.56s)
Updated https://github.com/vapor/console-kit.git (0.48s)
[1/2044] Fetching swift-docc-plugin
Fetched https://github.com/swiftlang/swift-docc-plugin from cache (1.28s)
Computing version for https://github.com/vapor/vapor.git
Computed https://github.com/vapor/vapor.git at 4.106.3 (0.53s)
Computing version for https://github.com/GraphQLSwift/Graphiti.git
Computed https://github.com/GraphQLSwift/Graphiti.git at 1.15.1 (0.48s)
Computing version for https://github.com/GraphQLSwift/GraphQL.git
Computed https://github.com/GraphQLSwift/GraphQL.git at 2.10.3 (0.38s)
Computing version for https://github.com/apple/swift-atomics.git
Computed https://github.com/apple/swift-atomics.git at 1.1.0 (0.49s)
Computing version for https://github.com/vapor/multipart-kit.git
Computed https://github.com/vapor/multipart-kit.git at 4.5.4 (0.48s)
Computing version for https://github.com/vapor/websocket-kit.git
Computed https://github.com/vapor/websocket-kit.git at 2.14.0 (0.48s)
Computing version for https://github.com/apple/swift-algorithms.git
Computed https://github.com/apple/swift-algorithms.git at 1.0.0 (0.47s)
Computing version for https://github.com/apple/swift-metrics.git
Computed https://github.com/apple/swift-metrics.git at 2.5.0 (0.38s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.6.1 (0.39s)
Computing version for https://github.com/apple/swift-nio-extras.git
Computed https://github.com/apple/swift-nio-extras.git at 1.24.1 (0.41s)
Computing version for https://github.com/apple/swift-nio-http2.git
Computed https://github.com/apple/swift-nio-http2.git at 1.34.1 (0.40s)
Computing version for https://github.com/apple/swift-nio-ssl.git
Computed https://github.com/apple/swift-nio-ssl.git at 2.24.0 (0.50s)
Computing version for https://github.com/apple/swift-nio.git
Computed https://github.com/apple/swift-nio.git at 2.76.1 (0.54s)
Computing version for https://github.com/vapor/routing-kit.git
Computed https://github.com/vapor/routing-kit.git at 4.9.1 (0.39s)
Computing version for https://github.com/apple/swift-crypto.git
Computed https://github.com/apple/swift-crypto.git at 2.5.0 (0.48s)
Computing version for https://github.com/vapor/console-kit.git
Computed https://github.com/vapor/console-kit.git at 4.15.1 (0.41s)
Computing version for https://github.com/vapor/async-kit.git
Computed https://github.com/vapor/async-kit.git at 1.17.0 (0.47s)
Computing version for https://github.com/swift-server/async-http-client.git
Computed https://github.com/swift-server/async-http-client.git at 1.21.2 (0.39s)
Computing version for https://github.com/apple/swift-collections
Computed https://github.com/apple/swift-collections at 1.0.4 (0.49s)
Computing version for https://github.com/apple/swift-nio-transport-services.git
Computed https://github.com/apple/swift-nio-transport-services.git at 1.23.0 (0.39s)
Computing version for https://github.com/apple/swift-numerics
Computed https://github.com/apple/swift-numerics at 1.0.2 (0.47s)
Computing version for https://github.com/apple/swift-http-types
Computed https://github.com/apple/swift-http-types at 1.3.1 (0.48s)
Computing version for https://github.com/apple/swift-system.git
Computed https://github.com/apple/swift-system.git at 1.4.0 (0.38s)
Computing version for https://github.com/swiftlang/swift-docc-plugin
Computed https://github.com/swiftlang/swift-docc-plugin at 1.4.3 (0.47s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3243] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (1.27s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (0.50s)
Creating working copy for https://github.com/swiftlang/swift-docc-plugin
Working copy of https://github.com/swiftlang/swift-docc-plugin resolved at 1.4.3
Creating working copy for https://github.com/swiftlang/swift-docc-symbolkit
Working copy of https://github.com/swiftlang/swift-docc-symbolkit resolved at 1.0.0
Building for debugging...
[0/8] Write sources
[2/8] Write snippet-extract-tool-entitlement.plist
[4/8] Write swift-version-5BDAB9E9C0126B9D.txt
[6/53] Compiling SymbolKit GenericConstraint.swift
[7/53] Compiling SymbolKit GenericParameter.swift
[8/53] Compiling SymbolKit Generics.swift
[9/53] Compiling SymbolKit Namespace.swift
[10/57] Compiling SymbolKit Identifier.swift
[11/57] Compiling SymbolKit KindIdentifier.swift
[12/57] Compiling SymbolKit Location.swift
[13/57] Compiling SymbolKit Mutability.swift
[14/57] Compiling SymbolKit DeclarationFragments.swift
[15/57] Compiling SymbolKit Fragment.swift
[16/57] Compiling SymbolKit FragmentKind.swift
[17/57] Compiling SymbolKit FunctionParameter.swift
[18/57] Compiling SymbolKit FunctionSignature.swift
[19/57] Emitting module SymbolKit
[20/57] Compiling SymbolKit SemanticVersion.swift
[21/57] Compiling SymbolKit AccessControl.swift
[22/57] Compiling SymbolKit Availability.swift
[23/57] Compiling SymbolKit AvailabilityItem.swift
[24/57] Compiling SymbolKit Domain.swift
[25/57] Compiling SymbolKit Names.swift
[26/57] Compiling SymbolKit SPI.swift
[27/57] Compiling SymbolKit Snippet.swift
[28/57] Compiling SymbolKit Extension.swift
[29/57] Compiling SymbolKit SourceRange.swift
[30/57] Compiling SymbolKit Metadata.swift
[31/57] Compiling SymbolKit Module.swift
[32/57] Compiling SymbolKit OperatingSystem.swift
[33/57] Compiling SymbolKit Platform.swift
[34/57] Compiling SymbolKit Relationship.swift
[35/57] Compiling SymbolKit RelationshipKind.swift
[36/57] Compiling SymbolKit SourceOrigin.swift
[37/57] Compiling SymbolKit GenericConstraints.swift
[38/57] Compiling SymbolKit Swift.swift
[39/57] Compiling SymbolKit Symbol.swift
[40/57] Compiling SymbolKit SymbolKind.swift
[41/57] Compiling SymbolKit SymbolGraph.swift
[42/57] Compiling SymbolKit GraphCollector.swift
[43/57] Compiling SymbolKit Mixin+Equals.swift
[44/57] Compiling SymbolKit Mixin+Hash.swift
[45/57] Compiling SymbolKit Mixin.swift
[46/57] Compiling SymbolKit LineList.swift
[47/57] Compiling SymbolKit Position.swift
[48/57] Compiling SymbolKit UnifiedSymbol+Encodable.swift
[49/57] Compiling SymbolKit UnifiedSymbol.swift
[50/57] Compiling SymbolKit UnifiedSymbolGraph+Encodable.swift
[51/57] Compiling SymbolKit UnifiedSymbolGraph.swift
[52/57] Compiling Snippets Snippet.swift
[53/57] Emitting module Snippets
[54/57] Compiling Snippets SnippetParser.swift
[55/61] Compiling snippet_extract URL+Status.swift
[56/61] Compiling snippet_extract SymbolGraph+Snippet.swift
[57/61] Emitting module snippet_extract
[58/61] Compiling snippet_extract SnippetBuildCommand.swift
[58/61] Write Objects.LinkFileList
[59/61] Linking snippet-extract-tool
[60/61] Applying snippet-extract-tool
Build of product 'snippet-extract' complete! (5.73s)
warning: 'multipart-kit': found 1 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
    /Users/admin/builder/spi-builder-workspace/.build/checkouts/multipart-kit/Sources/MultipartKit/Docs.docc
Building for debugging...
[0/1] Write swift-version-5BDAB9E9C0126B9D.txt
[2/186] Compiling OrderedCollections _HashTable+Testing.swift
[3/186] Compiling OrderedCollections _HashTable+UnsafeHandle.swift
[4/187] Compiling RealModule AlgebraicField.swift
[5/187] Compiling RealModule ApproximateEquality.swift
[6/188] Compiling Logging MetadataProvider.swift
[7/188] Compiling RealModule Float80+Real.swift
[8/188] Compiling RealModule Real.swift
[9/188] Compiling RealModule RealFunctions.swift
[10/188] Compiling SystemPackage PlatformString.swift
[11/188] Compiling SystemPackage SystemString.swift
[12/188] Compiling OrderedCollections OrderedDictionary+Elements.swift
[13/188] Compiling SystemPackage MachPort.swift
[14/188] Compiling RealModule Double+Real.swift
[15/188] Compiling RealModule AugmentedArithmetic.swift
[16/188] Compiling RealModule ElementaryFunctions.swift
[17/188] Compiling RealModule Float+Real.swift
[18/188] Compiling RealModule Float16+Real.swift
[19/188] Compiling OrderedCollections _HashTable.swift
[20/188] Compiling OrderedCollections _Hashtable+Header.swift
[21/188] Compiling NIOConcurrencyHelpers NIOLock.swift
[22/188] Compiling OrderedCollections OrderedDictionary+Codable.swift
[23/188] Compiling OrderedCollections OrderedDictionary+CustomDebugStringConvertible.swift
[24/188] Emitting module _NIOBase64
[25/188] Compiling _NIOBase64 Base64.swift
[26/188] Compiling OrderedCollections OrderedSet+Hashable.swift
[27/188] Compiling OrderedCollections OrderedSet+Initializers.swift
[28/188] Compiling OrderedCollections OrderedSet+Insertions.swift
[29/188] Compiling Crypto X25519Keys.swift
[30/188] Compiling Crypto SymmetricKeys.swift
[31/188] Compiling Crypto HMAC.swift
[32/188] Compiling Crypto MACFunctions.swift
[33/188] Compiling OrderedCollections OrderedSet+Codable.swift
[34/188] Compiling OrderedCollections OrderedSet+CustomDebugStringConvertible.swift
[35/188] Compiling OrderedCollections OrderedSet+CustomReflectable.swift
[36/188] Compiling OrderedCollections OrderedSet+CustomStringConvertible.swift
[37/188] Compiling OrderedCollections OrderedSet+Diffing.swift
[38/188] Compiling OrderedCollections OrderedSet+Equatable.swift
[39/188] Compiling OrderedCollections OrderedSet+ExpressibleByArrayLiteral.swift
[40/194] Compiling OrderedCollections _HashTable+Bucket.swift
[41/194] Compiling OrderedCollections _HashTable+BucketIterator.swift
[42/194] Compiling OrderedCollections _HashTable+Constants.swift
[43/194] Compiling OrderedCollections _HashTable+CustomStringConvertible.swift
[50/194] Compiling OrderedCollections OrderedDictionary+CustomReflectable.swift
[51/194] Compiling OrderedCollections OrderedDictionary+CustomStringConvertible.swift
[52/194] Compiling OrderedCollections OrderedDictionary+Deprecations.swift
[53/194] Compiling OrderedCollections OrderedDictionary+Elements+SubSequence.swift
[58/194] Compiling SystemPackage FilePermissions.swift
[59/194] Compiling SystemPackage Backcompat.swift
[60/194] Compiling SystemPackage CInterop.swift
[61/194] Compiling Crypto MessageAuthenticationCode.swift
[62/194] Compiling Crypto AES.swift
[63/194] Compiling Crypto ECDSASignature_boring.swift
[64/194] Compiling Crypto ECDSA_boring.swift
[65/194] Compiling Crypto EdDSA_boring.swift
[66/194] Compiling Crypto ECDSA.swift
[67/194] Compiling Crypto EdDSA.swift
[68/194] Compiling Crypto Signature.swift
[69/194] Compiling Crypto ArbitraryPrecisionInteger_boring.swift
[70/194] Compiling Crypto CryptoKitErrors_boring.swift
[71/194] Compiling Crypto FiniteFieldArithmeticContext_boring.swift
[72/194] Compiling Crypto RNG_boring.swift
[73/194] Compiling SystemPackage Constants.swift
[74/194] Compiling SystemPackage Exports.swift
[75/194] Compiling SystemPackage Mocking.swift
[76/194] Compiling OrderedCollections OrderedSet+Partial SetAlgebra+Operations.swift
[77/194] Compiling OrderedCollections OrderedSet+Partial SetAlgebra+Predicates.swift
[78/194] Compiling OrderedCollections OrderedSet+RandomAccessCollection.swift
[79/194] Compiling OrderedCollections OrderedSet+ReserveCapacity.swift
[80/194] Compiling OrderedCollections OrderedSet+SubSequence.swift
[81/194] Compiling OrderedCollections OrderedSet+Testing.swift
[82/194] Compiling OrderedCollections OrderedDictionary+Partial MutableCollection.swift
[83/194] Compiling OrderedCollections OrderedDictionary+Partial RangeReplaceableCollection.swift
[84/194] Compiling OrderedCollections OrderedDictionary+Sequence.swift
[85/194] Compiling OrderedCollections OrderedDictionary+Values.swift
[86/194] Compiling OrderedCollections OrderedDictionary.swift
[87/194] Compiling _NIODataStructures PriorityQueue.swift
[88/194] Compiling _NIODataStructures Heap.swift
[89/194] Compiling _NIODataStructures _TinyArray.swift
[90/194] Emitting module RealModule
[91/194] Compiling NIOConcurrencyHelpers NIOAtomic.swift
[92/194] Emitting module _NIODataStructures
[93/194] Compiling DequeModule _UnsafeWrappedBuffer.swift
[94/194] Compiling NIOConcurrencyHelpers lock.swift
[95/194] Compiling NIOConcurrencyHelpers atomics.swift
[96/194] Compiling NIOConcurrencyHelpers NIOLockedValueBox.swift
[97/194] Emitting module Crypto
[103/199] Emitting module NIOConcurrencyHelpers
[104/239] Compiling Algorithms Cycle.swift
[105/239] Compiling Algorithms Suffix.swift
[106/239] Compiling Algorithms Trim.swift
[107/239] Compiling Algorithms Product.swift
[108/239] Compiling Algorithms AdjacentPairs.swift
[109/239] Compiling Algorithms Chain.swift
[110/239] Compiling Algorithms Chunked.swift
[111/239] Compiling Algorithms Reductions.swift
[115/242] Compiling Algorithms EitherSequence.swift
[116/242] Compiling Algorithms FirstNonNil.swift
[117/242] Compiling Algorithms FlattenCollection.swift
[125/242] Compiling Algorithms MinMax.swift
[126/242] Compiling Algorithms Partition.swift
[127/242] Compiling Algorithms Permutations.swift
[128/242] Compiling Algorithms Split.swift
[129/242] Compiling Algorithms Stride.swift
[132/242] Compiling SystemPackage Util+StringArray.swift
[133/242] Compiling SystemPackage Util.swift
[134/242] Compiling SystemPackage UtilConsumers.swift
[145/242] Compiling Algorithms Compacted.swift
[150/242] Compiling Algorithms RandomSample.swift
[151/242] Compiling CoreMetrics Locks.swift
[152/242] Emitting module CoreMetrics
[153/242] Compiling CoreMetrics Metrics.swift
[154/242] Compiling Logging LogHandler.swift
[155/242] Emitting module Logging
[156/242] Compiling Logging Locks.swift
[157/242] Compiling Logging Logging.swift
[158/242] Compiling Algorithms Combinations.swift
[160/242] Compiling Algorithms Rotate.swift
[161/242] Compiling Algorithms Indexed.swift
[162/278] Compiling ConsoleKitTerminal ActivityIndicatorState.swift
[163/278] Compiling ConsoleKitTerminal CustomActivity.swift
[164/278] Compiling ConsoleKitTerminal LoadingBar.swift
[165/278] Compiling ConsoleKitTerminal ProgressBar.swift
[166/278] Compiling ConsoleKitTerminal Console+Clear.swift
[167/278] Compiling ConsoleKitTerminal Console+Ephemeral.swift
[168/278] Compiling ConsoleKitTerminal Console+Output.swift
[169/278] Compiling ConsoleKitTerminal Console+Wait.swift
[170/278] Compiling ConsoleKitTerminal ConsoleColor.swift
[171/278] Compiling ConsoleKitTerminal ConsoleStyle.swift
[172/278] Compiling ConsoleKitTerminal Console.swift
[173/278] Compiling ConsoleKitTerminal Terminal.swift
[175/278] Compiling ConsoleKitTerminal Console+Ask.swift
[176/278] Compiling ConsoleKitTerminal Console+Choose.swift
[177/278] Compiling ConsoleKitTerminal ANSI.swift
[178/278] Compiling ConsoleKitTerminal readpassphrase_linux.swift
[179/278] Compiling ConsoleKitTerminal AnySendableHashable.swift
[180/278] Compiling ConsoleKitTerminal ActivityBar.swift
[181/278] Compiling ConsoleKitTerminal ActivityIndicator.swift
[182/278] Compiling ConsoleKitTerminal ActivityIndicatorRenderer.swift
[183/278] Compiling ConsoleKitTerminal ConsoleClear.swift
[184/278] Emitting module DequeModule
[185/278] Compiling Atomics Primitives.native.swift
[186/278] Compiling Atomics PointerConformances.swift
[189/278] Compiling ConsoleKitTerminal ConsoleText.swift
[190/278] Compiling ConsoleKitTerminal ConsoleTextFragment.swift
[191/278] Emitting module SystemPackage
[195/280] Compiling RoutingKit Router.swift
[196/280] Emitting module Metrics
[197/280] Compiling Metrics Metrics.swift
[204/280] Compiling Atomics IntegerConformances.swift
[205/280] Compiling Crypto SafeCompare_boring.swift
[206/280] Compiling Crypto Zeroization_boring.swift
[207/280] Compiling Crypto PrettyBytes.swift
[208/280] Compiling Crypto SafeCompare.swift
[209/280] Compiling Crypto SecureBytes.swift
[210/280] Compiling Crypto Zeroization.swift
[214/280] Compiling ConsoleKitTerminal Console+Confirm.swift
[215/280] Compiling ConsoleKitTerminal Console+Input.swift
[216/280] Compiling ConsoleKitTerminal Console+Center.swift
[220/280] Compiling OrderedCollections OrderedSet+UnorderedView.swift
[221/280] Compiling OrderedCollections OrderedSet+UnstableInternals.swift
[222/280] Compiling OrderedCollections OrderedSet.swift
[223/280] Compiling OrderedCollections RandomAccessCollection+Offsets.swift
[224/280] Compiling OrderedCollections _UnsafeBitset.swift
[234/282] Compiling RoutingKit Parameters.swift
[235/282] Compiling RoutingKit PathComponent.swift
[236/282] Emitting module RoutingKit
[237/282] Compiling RoutingKit AnyRouter.swift
[238/282] Compiling RoutingKit TrieRouter.swift
[239/282] Emitting module ConsoleKitTerminal
[240/282] Compiling Algorithms Unique.swift
[241/282] Compiling Algorithms Windows.swift
[244/282] Compiling Atomics Primitives.shims.swift
[263/282] Emitting module OrderedCollections
[264/282] Compiling ConsoleKitTerminal ConsoleLogger.swift
[265/282] Compiling ConsoleKitTerminal LoggerFragment.swift
[276/282] Emitting module Atomics
[279/301] Compiling Collections Collections.swift
[280/301] Emitting module Collections
[281/368] Emitting module ConsoleKitCommands
[282/370] Compiling NIOCore AddressedEnvelope.swift
[283/370] Compiling NIOCore AsyncAwaitSupport.swift
[284/370] Compiling NIOCore AsyncChannel.swift
[285/370] Compiling NIOCore NIOAsyncWriter.swift
[286/370] Compiling NIOCore NIOThrowingAsyncSequenceProducer.swift
[287/370] Compiling NIOCore AsyncChannelHandler.swift
[288/370] Compiling NIOCore AsyncChannelInboundStream.swift
[289/370] Compiling NIOCore AsyncChannelOutboundWriter.swift
[290/370] Compiling NIOCore NIOAsyncSequenceProducer.swift
[291/370] Compiling NIOCore NIOAsyncSequenceProducerStrategies.swift
[292/370] Compiling NIOCore ByteBuffer-multi-int.swift
[293/370] Compiling NIOCore ByteBuffer-quicBinaryEncodingStrategy.swift
[294/370] Compiling NIOCore ByteBuffer-views.swift
[298/370] Emitting module Algorithms
[299/370] Compiling ConsoleKitCommands String+LevenshteinDistance.swift
[300/370] Compiling ConsoleKitCommands Utilities.swift
[301/370] Compiling NIOCore Linux.swift
[302/370] Compiling NIOCore MarkedCircularBuffer.swift
[303/370] Compiling NIOCore MulticastChannel.swift
[304/370] Compiling NIOCore NIOAny.swift
[305/370] Compiling NIOCore NIOCloseOnErrorHandler.swift
[306/370] Compiling NIOCore NIOLoopBound.swift
[307/376] Compiling NIOCore BSDSocketAPI.swift
[308/376] Compiling NIOCore ByteBuffer-aux.swift
[309/376] Compiling NIOCore ByteBuffer-core.swift
[310/376] Compiling NIOCore ByteBuffer-hex.swift
[311/376] Compiling NIOCore ByteBuffer-int.swift
[312/376] Compiling NIOCore ByteBuffer-lengthPrefix.swift
[313/376] Compiling NIOCore ByteBuffer-binaryEncodedLengthPrefix.swift
[314/376] Compiling NIOCore ByteBuffer-conversions.swift
[315/376] Compiling NIOCore NIOScheduledCallback.swift
[316/376] Compiling NIOCore NIOSendable.swift
[317/376] Compiling NIOCore PointerHelpers.swift
[318/376] Compiling NIOCore RecvByteBufferAllocator.swift
[319/376] Compiling NIOCore SingleStepByteToMessageDecoder.swift
[320/376] Compiling NIOCore SocketAddresses.swift
[321/376] Compiling NIOCore EventLoopFuture+AssumeIsolated.swift
[322/376] Compiling NIOCore EventLoopFuture+Deprecated.swift
[323/376] Compiling NIOCore EventLoopFuture+WithEventLoop.swift
[324/376] Compiling NIOCore EventLoopFuture.swift
[325/376] Compiling NIOCore FileDescriptor.swift
[326/376] Compiling NIOCore FileHandle.swift
[327/376] Compiling NIOCore FileRegion.swift
[328/378] Compiling NIOCore SocketOptionProvider.swift
[329/378] Compiling NIOCore SystemCallHelpers.swift
[330/378] Compiling NIOCore TimeAmount+Duration.swift
[331/378] Compiling NIOCore TypeAssistedChannelHandler.swift
[332/378] Compiling NIOCore UniversalBootstrapSupport.swift
[333/378] Compiling NIOCore Utilities.swift
[334/378] Emitting module ConsoleKit
[335/378] Compiling ConsoleKit Exports.swift
[343/378] Compiling NIOCore GlobalSingletons.swift
[344/378] Compiling NIOCore IO.swift
[345/378] Compiling NIOCore IOData.swift
[346/378] Compiling NIOCore IPProtocol.swift
[347/378] Compiling NIOCore IntegerBitPacking.swift
[348/378] Compiling NIOCore IntegerTypes.swift
[349/378] Compiling NIOCore Interfaces.swift
[350/378] Compiling NIOCore Codec.swift
[351/378] Compiling NIOCore ConvenienceOptionSupport.swift
[352/378] Compiling NIOCore DeadChannel.swift
[353/378] Compiling NIOCore DispatchQueue+WithFuture.swift
[354/378] Compiling NIOCore EventLoop+Deprecated.swift
[355/378] Compiling NIOCore EventLoop+SerialExecutor.swift
[356/378] Compiling NIOCore EventLoop.swift
[359/378] Compiling NIOCore ChannelHandlers.swift
[360/378] Compiling NIOCore ChannelInvoker.swift
[361/378] Compiling NIOCore ChannelOption.swift
[362/378] Compiling NIOCore ChannelPipeline.swift
[363/378] Compiling NIOCore CircularBuffer.swift
[371/378] Emitting module NIOCore
[379/432] Emitting module NIOEmbedded
[380/432] Compiling NIOEmbedded AsyncTestingEventLoop.swift
[381/432] Compiling NIOEmbedded Embedded.swift
[382/432] Compiling NIOEmbedded AsyncTestingChannel.swift
[383/432] Compiling NIOPosix GetaddrinfoResolver.swift
[384/432] Compiling NIOPosix HappyEyeballs.swift
[385/432] Compiling NIOPosix IO.swift
[386/432] Compiling NIOPosix IntegerBitPacking.swift
[387/432] Compiling NIOPosix IntegerTypes.swift
[388/432] Compiling NIOPosix Linux.swift
[389/437] Compiling NIOPosix Selectable.swift
[390/437] Compiling NIOPosix SelectableChannel.swift
[391/437] Compiling NIOPosix SelectableEventLoop.swift
[392/437] Compiling NIOPosix SelectorEpoll.swift
[393/437] Compiling NIOPosix SelectorGeneric.swift
[394/437] Compiling NIOPosix PooledRecvBufferAllocator.swift
[395/437] Compiling NIOPosix PosixSingletons+ConcurrencyTakeOver.swift
[396/437] Compiling NIOPosix PosixSingletons.swift
[397/437] Compiling NIOPosix RawSocketBootstrap.swift
[398/437] Compiling NIOPosix Resolver.swift
[399/437] Compiling NIOPosix BSDSocketAPICommon.swift
[400/437] Compiling NIOPosix BSDSocketAPIPosix.swift
[401/437] Compiling NIOPosix BSDSocketAPIWindows.swift
[402/437] Compiling NIOPosix BaseSocket.swift
[403/437] Compiling NIOPosix BaseSocketChannel+SocketOptionProvider.swift
[404/437] Compiling NIOPosix BaseSocketChannel.swift
[405/437] Emitting module NIOPosix
[406/437] Compiling NIOPosix UnsafeTransfer.swift
[407/437] Compiling NIOPosix Utilities.swift
[408/437] Compiling NIOPosix VsockAddress.swift
[409/437] Compiling NIOPosix VsockChannelEvents.swift
[410/437] Compiling NIOPosix resource_bundle_accessor.swift
[411/437] Compiling NIOPosix LinuxCPUSet.swift
[412/437] Compiling NIOPosix LinuxUring.swift
[413/437] Compiling NIOPosix MultiThreadedEventLoopGroup.swift
[414/437] Compiling NIOPosix NIOThreadPool.swift
[415/437] Compiling NIOPosix NonBlockingFileIO.swift
[416/437] Compiling NIOPosix PendingDatagramWritesManager.swift
[417/437] Compiling NIOPosix SelectorKqueue.swift
[418/437] Compiling NIOPosix SelectorUring.swift
[419/437] Compiling NIOPosix ServerSocket.swift
[420/437] Compiling NIOPosix Socket.swift
[421/437] Compiling NIOPosix SocketChannel.swift
[422/437] Compiling NIOPosix SocketProtocols.swift
[423/437] Compiling NIOPosix System.swift
[424/437] Compiling NIOPosix Thread.swift
[425/437] Compiling NIOPosix ThreadPosix.swift
[426/437] Compiling NIOPosix ThreadWindows.swift
[427/437] Compiling NIOPosix PendingWritesManager.swift
[428/437] Compiling NIOPosix PipeChannel.swift
[429/437] Compiling NIOPosix PipePair.swift
[430/437] Compiling NIOPosix PointerHelpers.swift
[431/437] Compiling NIOPosix Pool.swift
[432/437] Compiling NIOPosix BaseStreamSocketChannel.swift
[433/437] Compiling NIOPosix Bootstrap.swift
[434/437] Compiling NIOPosix ControlMessage.swift
[435/437] Compiling NIOPosix DatagramVectorReadManager.swift
[436/437] Compiling NIOPosix Errors+Any.swift
[437/437] Compiling NIOPosix FileDescriptor.swift
[438/473] Emitting module NIO
[439/473] Compiling NIO Exports.swift
[440/534] Compiling NIOSOCKS ClientStateMachine.swift
[441/534] Compiling NIOSOCKS SelectedAuthenticationMethod.swift
[442/534] Compiling NIOSOCKS SOCKSResponse.swift
[443/609] Compiling NIOSOCKS Messages.swift
[444/609] Compiling NIOSOCKS Helpers.swift
[445/609] Compiling GraphQL ASTFromValue.swift
[446/609] Compiling GraphQL AssertValidName.swift
[447/609] Compiling NIOSOCKS Errors.swift
[448/609] Compiling NIOSOCKS SOCKSRequest.swift
[449/609] Compiling GraphQL Scalars.swift
[450/609] Compiling GraphQL Schema.swift
[451/609] Emitting module NIOSOCKS
[452/609] Compiling GraphQL IsValidValue.swift
[453/609] Compiling GraphQL Keyable.swift
[454/609] Compiling GraphQL NIO+Extensions.swift
[455/609] Compiling GraphQL TypeComparators.swift
[456/612] Compiling NIOFoundationCompat JSONSerialization+ByteBuffer.swift
[457/612] Compiling NIOFoundationCompat Codable+ByteBuffer.swift
[458/612] Compiling NIOTLS TLSEvents.swift
[459/612] Compiling NIOTLS NIOTypedApplicationProtocolNegotiationHandler.swift
[460/612] Compiling NIOTLS ProtocolNegotiationHandlerStateMachine.swift
[461/612] Compiling NIOTLS ApplicationProtocolNegotiationHandler.swift
[462/612] Emitting module NIOTLS
[463/612] Compiling NIOTLS SNIHandler.swift
[464/612] Compiling NIOHTTP1 NIOTypedHTTPServerUpgradeHandler.swift
[465/613] Compiling NIOSOCKS ServerStateMachine.swift
[466/613] Emitting module _NIOFileSystem
[467/613] Compiling GraphQL LocatedError.swift
[468/613] Compiling GraphQL SyntaxError.swift
[469/613] Compiling GraphQL Execute.swift
[470/613] Compiling GraphQL Values.swift
[471/613] Compiling GraphQL NoUndefinedVariablesRule.swift
[472/613] Compiling GraphQL GraphQLError.swift
[473/615] Compiling GraphQL Definition.swift
[474/615] Compiling GraphQL Directives.swift
[475/615] Compiling GraphQL Introspection.swift
[480/642] Compiling NIOHTTP1 NIOTypedHTTPClientUpgraderStateMachine.swift
[481/642] Compiling NIOSSL SafeCompare.swift
[482/642] Compiling NIOSSL Zeroization.swift
[483/642] Compiling NIOSSL SSLCertificateExtensions.swift
[484/642] Compiling NIOSSL SSLConnection.swift
[485/642] Compiling NIOSSL SSLContext.swift
[486/642] Compiling NIOSSL SSLErrors.swift
[489/642] Compiling NIOSSL ByteBufferBIO.swift
[490/642] Emitting module NIOFoundationCompat
[491/642] Compiling NIOFoundationCompat ByteBuffer-foundation.swift
[492/642] Compiling NIOHTTP1 NIOTypedHTTPServerUpgraderStateMachine.swift
[493/642] Compiling _NIOFileSystem Utilities.swift
[494/642] Compiling _NIOFileSystem OpenOptions.swift
[495/642] Compiling _NIOFileSystem resource_bundle_accessor.swift
[496/642] Compiling NIOSSL SSLPKCS12Bundle.swift
[497/642] Compiling NIOSSL SSLPrivateKey.swift
[498/642] Compiling NIOSSL RNG.swift
[499/642] Compiling NIOSSL SSLInit.swift
[502/642] Compiling NIOSSL NIOSSLServerHandler.swift
[503/642] Compiling NIOSSL ObjectIdentifier.swift
[504/642] Compiling NIOSSL PosixPort.swift
[505/642] Compiling GraphQL IsNullish.swift
[506/642] Compiling GraphQL KeyMap.swift
[507/642] Compiling GraphQL Mirror.swift
[508/642] Compiling GraphQL SuggestionList.swift
[509/664] Compiling NIOTransportServices NIOFilterEmptyWritesHandler.swift
[510/664] Compiling NIOTransportServices NIOTSBootstraps.swift
[511/664] Compiling NIOTransportServices NIOTSNetworkEvents.swift
[512/664] Compiling NIOTransportServices NIOTSSingletons.swift
[513/664] Compiling NIOTransportServices NIOTSEventLoop.swift
[514/664] Compiling NIOTransportServices NIOTSEventLoopGroup.swift
[515/664] Compiling NIOTransportServices NIOTSDatagramListener.swift
[516/664] Compiling NIOTransportServices NIOTSDatagramListenerChannel.swift
[517/664] Emitting module NIOHTTP1
[518/664] Compiling NIOTransportServices NIOTSChannelOptions.swift
[519/664] Compiling NIOTransportServices NIOTSConnectionBootstrap.swift
[520/664] Compiling NIOTransportServices SocketAddress+NWEndpoint.swift
[521/664] Compiling NIOTransportServices StateManagedChannel.swift
[529/734] Compiling NIOHPACK HeaderTables.swift
[530/735] Compiling _NIOFileSystemFoundationCompat Date+FileInfo.swift
[531/735] Emitting module _NIOFileSystemFoundationCompat
[532/735] Compiling _NIOFileSystemFoundationCompat Data+FileSystem.swift
[533/735] Compiling MultipartKit FormDataDecoder.UnkeyedContainer.swift
[534/735] Compiling MultipartKit FormDataDecoder.swift
[535/735] Compiling MultipartKit FormDataEncoder.swift
[536/735] Compiling MultipartKit Storage.swift
[537/735] Compiling MultipartKit FormDataDecoder.KeyedContainer.swift
[538/735] Compiling MultipartKit FormDataDecoder.SingleValueContainer.swift
[539/735] Compiling MultipartKit Exports.swift
[540/735] Compiling MultipartKit FormDataDecoder.Decoder.swift
[541/735] Compiling MultipartKit MultipartFormData.swift
[542/735] Compiling MultipartKit MultipartParser.swift
[543/735] Compiling MultipartKit MultipartPart.swift
[544/735] Compiling MultipartKit MultipartPartConvertible.swift
[545/735] Compiling MultipartKit FormDataEncoder.SingleValueContainer.swift
[546/735] Compiling MultipartKit FormDataEncoder.UnkeyedContainer.swift
[547/735] Compiling NIOExtras RequestResponseWithIDHandler.swift
[550/736] Compiling MultipartKit BasicCodingKey.swift
[551/736] Compiling NIOTransportServices StateManagedNWConnectionChannel.swift
[554/736] Compiling MultipartKit MultipartError.swift
[555/736] Compiling NIOTransportServices NIOTSListenerChannel.swift
[556/736] Compiling NIOTransportServices StateManagedListenerChannel.swift
[557/736] Compiling NIOHTTPCompression HTTPRequestDecompressor.swift
[558/736] Compiling NIOHTTPCompression HTTPResponseDecompressor.swift
[559/736] Compiling NIOHTTPCompression HTTPRequestCompressor.swift
[560/736] Compiling NIOHTTPCompression HTTPDecompression.swift
[561/736] Emitting module NIOHTTPCompression
[562/736] Compiling NIOHTTPCompression HTTPCompression.swift
[563/736] Compiling NIOHTTPCompression HTTPResponseCompressor.swift
[564/736] Compiling NIOWebSocket WebSocketFrameEncoder.swift
[565/736] Compiling NIOWebSocket WebSocketOpcode.swift
[566/737] Compiling NIOHPACK IntegerCoding.swift
[567/737] Compiling NIOHPACK HuffmanTables.swift
[568/737] Compiling NIOHPACK StaticHeaderTable.swift
[571/737] Compiling MultipartKit FormDataEncoder.Encoder.swift
[572/737] Compiling MultipartKit FormDataEncoder.KeyedContainer.swift
[577/739] Compiling NIOHPACK IndexedHeaderTable.swift
[578/739] Compiling NIOHPACK HuffmanCoding.swift
[579/739] Compiling NIOHPACK HPACKErrors.swift
[580/741] Compiling NIOHPACK HPACKEncoder.swift
[581/741] Compiling NIOWebSocket WebSocketFrameDecoder.swift
[582/741] Compiling NIOWebSocket WebSocketErrorCodes.swift
[583/741] Compiling NIOWebSocket NIOWebSocketServerUpgrader.swift
[584/741] Compiling NIOWebSocket SHA1.swift
[585/741] Compiling NIOWebSocket NIOWebSocketClientUpgrader.swift
[586/741] Compiling NIOWebSocket NIOWebSocketFrameAggregator.swift
[587/741] Emitting module NIOWebSocket
[588/741] Compiling NIOWebSocket WebSocketFrame.swift
[597/741] Compiling NIOHPACK HPACKHeader.swift
[600/741] Emitting module NIOHPACK
[601/741] Emitting module NIOExtras
[602/741] Compiling NIOWebSocket WebSocketProtocolErrorHandler.swift
[603/741] Emitting module NIOFileSystem
[604/741] Compiling NIOFileSystem Exports.swift
[615/741] Compiling MultipartKit MultipartSerializer.swift
[616/741] Compiling MultipartKit Utilities.swift
[630/749] Emitting module NIOSSL
[647/749] Emitting module MultipartKit
[652/749] Compiling NIOSSL TLSConfiguration.swift
[653/749] Compiling NIOSSL UniversalBootstrapSupport.swift
[654/809] Compiling NIOHTTP2 ReceivingGoAwayState.swift
[655/809] Compiling NIOHTTP2 ReceivingHeadersState.swift
[656/809] Compiling NIOHTTP2 MayReceiveFrames.swift
[657/809] Compiling NIOHTTP2 ReceivingDataState.swift
[658/809] Compiling NIOHTTP2 HTTP2PipelineHelpers.swift
[659/809] Compiling NIOHTTP2 ConnectionStateMachine.swift
[660/809] Compiling NIOHTTP2 ConnectionStreamsState.swift
[661/809] Compiling NIOHTTP2 HTTP2Frame.swift
[662/809] Compiling NIOHTTP2 HTTP2FrameEncoder.swift
[663/809] Emitting module NIOTransportServices
[664/809] Compiling NIOHTTP2 ReceivingRstStreamState.swift
[665/809] Compiling NIOHTTP2 ReceivingWindowUpdateState.swift
[666/809] Compiling NIOHTTP2 MaySendFrames.swift
[667/809] Compiling NIOHTTP2 SendingDataState.swift
[668/809] Compiling NIOHTTP2 SendingGoawayState.swift
[669/809] Compiling NIOHTTP2 SendingHeadersState.swift
[670/809] Compiling NIOHTTP2 SendingPushPromiseState.swift
[671/809] Compiling NIOHTTP2 HTTP2FlowControlWindow.swift
[672/809] Compiling NIOHTTP2 HTTP2FrameParser.swift
[673/809] Compiling NIOHTTP2 HTTP2PingData.swift
[674/809] Compiling NIOHTTP2 ReceivingPushPromiseState.swift
[675/809] Compiling NIOHTTP2 Error+Any.swift
[676/811] Emitting module GraphQL
[677/811] Compiling NIOTransportServices TCPOptions+SocketChannelOption.swift
[678/811] Compiling NIOTransportServices UDPOptions+SocketChannelOption.swift
[679/811] Emitting module AsyncKit
[680/811] Compiling NIOExtras WritePCAPHandler.swift
[681/811] Compiling GraphQL UniqueInputFieldNamesRule.swift
[682/811] Compiling GraphQL UniqueOperationNamesRule.swift
[683/811] Compiling GraphQL UniqueVariableNamesRule.swift
[684/811] Compiling GraphQL ValuesOfCorrectTypeRule.swift
[685/811] Compiling GraphQL VariablesAreInputTypesRule.swift
[686/811] Compiling GraphQL VariablesInAllowedPositionRule.swift
[687/811] Compiling GraphQL SpecifiedRules.swift
[688/811] Compiling GraphQL Validate.swift
[696/819] Emitting module NIOHTTP2
[697/825] Compiling WebSocketKit WebSocketClient.swift
[698/825] Compiling WebSocketKit WebSocketHandler.swift
[699/825] Compiling WebSocketKit WebSocket+Connect.swift
[700/825] Compiling WebSocketKit WebSocket.swift
[701/825] Compiling WebSocketKit Exports.swift
[702/825] Compiling WebSocketKit HTTPUpgradeRequestHandler.swift
[703/825] Compiling WebSocketKit WebSocket+Concurrency.swift
[704/825] Emitting module WebSocketKit
[705/825] Compiling NIOHTTP2 SendingRstStreamState.swift
[706/825] Compiling NIOHTTP2 SendingWindowUpdateState.swift
[707/825] Compiling NIOHTTP2 HTTP2SettingsState.swift
[708/825] Compiling NIOHTTP2 HasExtendedConnectSettings.swift
[709/825] Compiling NIOHTTP2 HasFlowControlWindows.swift
[710/825] Compiling NIOHTTP2 HasLocalSettings.swift
[711/825] Compiling NIOHTTP2 HasRemoteSettings.swift
[712/825] Compiling NIOHTTP2 HTTP2Settings.swift
[713/825] Compiling NIOHTTP2 HTTP2Stream.swift
[714/825] Compiling NIOHTTP2 HTTP2StreamChannel+OutboundStreamMultiplexer.swift
[715/825] Compiling NIOHTTP2 HTTP2StreamChannel.swift
[716/825] Compiling NIOHTTP2 HTTP2StreamDelegate.swift
[717/825] Compiling NIOHTTP2 HTTP2StreamID.swift
[718/825] Compiling NIOHTTP2 HTTP2StreamMultiplexer.swift
[719/825] Compiling NIOHTTP2 HTTP2ToHTTP1Codec.swift
[720/825] Compiling NIOHTTP2 HTTP2UserEvents.swift
[721/825] Compiling NIOHTTP2 InboundEventBuffer.swift
[722/825] Compiling NIOHTTP2 InboundWindowManager.swift
[723/825] Compiling NIOHTTP2 MultiplexerAbstractChannel.swift
[724/825] Compiling NIOHTTP2 HTTP2ChannelHandler+InlineStreamMultiplexer.swift
[725/825] Compiling NIOHTTP2 HTTP2ChannelHandler.swift
[726/825] Compiling NIOHTTP2 HTTP2CommonInboundStreamMultiplexer.swift
[727/825] Compiling NIOHTTP2 HTTP2ConnectionStateChange.swift
[728/825] Compiling NIOHTTP2 HTTP2Error.swift
[729/825] Compiling NIOHTTP2 HTTP2ErrorCode.swift
[733/825] Compiling NIOHTTP2 OutboundFlowControlBuffer.swift
[734/825] Compiling NIOHTTP2 OutboundFrameBuffer.swift
[735/825] Compiling NIOHTTP2 HPACKHeaders+Validation.swift
[736/825] Compiling NIOHTTP2 HTTP2ChannelHandler+InboundStreamMultiplexer.swift
[737/825] Compiling NIOHTTP2 LocallyQuiescingState.swift
[738/825] Compiling NIOHTTP2 QuiescingState.swift
[739/825] Compiling NIOHTTP2 RemotelyQuiescingState.swift
[740/825] Compiling NIOHTTP2 SendAndReceiveGoawayState.swift
[741/825] Compiling NIOHTTP2 StateMachineResult.swift
[742/825] Compiling NIOHTTP2 ContentLengthVerifier.swift
[743/825] Compiling NIOHTTP2 DOSHeuristics.swift
[757/825] Compiling NIOHTTP2 StreamChannelFlowController.swift
[758/825] Compiling NIOHTTP2 StreamChannelList.swift
[759/825] Compiling NIOHTTP2 StreamMap.swift
[760/825] Compiling NIOHTTP2 StreamStateMachine.swift
[761/825] Compiling NIOHTTP2 UnsafeTransfer.swift
[762/825] Compiling NIOHTTP2 WatermarkedFlowController.swift
[763/825] Compiling GraphQL MapCoder.swift
[764/825] Compiling GraphQL MapSerialization.swift
[765/825] Compiling GraphQL Number.swift
[766/825] Compiling GraphQL PersistedQueries.swift
[767/825] Compiling GraphQL EventStream.swift
[768/825] Compiling GraphQL Subscribe.swift
[769/825] Compiling GraphQL DidYouMean.swift
[770/825] Compiling GraphQL Find.swift
[826/938] Compiling Graphiti API.swift
[827/938] Compiling Graphiti Argument.swift
[828/938] Compiling Graphiti ArgumentComponent.swift
[829/938] Compiling Graphiti ArgumentComponentBuilder.swift
[830/938] Compiling Graphiti NoArguments.swift
[831/938] Compiling Graphiti Coders.swift
[832/938] Compiling Graphiti Component.swift
[833/944] Emitting module Graphiti
[834/949] Compiling Graphiti Key.swift
[835/949] Compiling Graphiti KeyComponent.swift
[836/949] Compiling Graphiti Type+Key.swift
[837/949] Compiling Graphiti Queries.swift
[838/949] Compiling Graphiti Service.swift
[839/949] Compiling Graphiti Field.swift
[840/949] Compiling Graphiti Edge.swift
[841/949] Compiling Graphiti PageInfo.swift
[842/949] Compiling Graphiti BackwardPaginationArguments.swift
[843/949] Compiling Graphiti ForwardPaginationArguments.swift
[844/949] Compiling Graphiti PaginationArguments.swift
[845/949] Compiling Graphiti NoContext.swift
[846/949] Compiling Graphiti AnyType.swift
[847/949] Compiling Graphiti Reflection.swift
[848/949] Compiling Graphiti TypeProvider.swift
[849/949] Compiling Graphiti TypeReference.swift
[850/949] Compiling Graphiti Wrappers.swift
[851/949] Compiling Graphiti Enum.swift
[852/949] Compiling Graphiti Any.swift
[853/949] Compiling Graphiti Entity.swift
[860/949] Compiling Graphiti FieldComponent.swift
[861/949] Compiling Graphiti FieldComponentBuilder.swift
[862/949] Compiling Graphiti AsyncResolve.swift
[863/949] Compiling Graphiti ConcurrentResolve.swift
[872/949] Compiling Graphiti ComponentBuilder.swift
[873/949] Compiling Graphiti TypeComponent.swift
[874/949] Compiling Graphiti TypeComponentBuilder.swift
[875/949] Compiling Graphiti Connection.swift
[876/949] Compiling Graphiti ConnectionType.swift
[883/949] Compiling Graphiti SimpleAsyncResolve.swift
[884/949] Compiling Graphiti SyncResolve.swift
[885/949] Compiling Graphiti Input.swift
[886/949] Compiling Graphiti InputField.swift
[887/949] Compiling Graphiti InputFieldComponent.swift
[888/949] Compiling Graphiti InputFieldComponentBuilder.swift
[889/949] Emitting module AsyncHTTPClient
[890/949] Compiling Graphiti Value.swift
[891/949] Compiling Graphiti ValueBuilder.swift
[892/949] Compiling AsyncHTTPClient Singleton.swift
[893/949] Compiling AsyncHTTPClient StringConvertibleInstances.swift
[894/949] Compiling AsyncHTTPClient UnsafeTransfer.swift
[895/949] Compiling AsyncHTTPClient Utils.swift
[896/949] Compiling Graphiti Interface.swift
[897/949] Compiling Graphiti Mutation.swift
[898/949] Compiling Graphiti Query.swift
[899/949] Compiling Graphiti Scalar.swift
[900/949] Compiling Graphiti Schema.swift
[901/949] Compiling Graphiti SchemaTypeProvider.swift
[902/949] Compiling Graphiti PartialSchema.swift
[903/949] Compiling Graphiti SchemaBuilder.swift
[904/949] Compiling Graphiti SubscribeField.swift
[905/949] Compiling Graphiti SubscribeResolve.swift
[906/949] Compiling Graphiti Subscription.swift
[907/949] Compiling Graphiti Type.swift
[912/949] Compiling Graphiti Types.swift
[913/949] Compiling Graphiti Union.swift
[914/949] Compiling Graphiti NoIntrospectionRule.swift
[950/1140] Compiling Vapor DirectoryConfiguration.swift
[951/1140] Compiling Vapor DotEnv.swift
[952/1140] Compiling Vapor Extendable.swift
[953/1140] Compiling Vapor File.swift
[954/1140] Compiling Vapor FileIO.swift
[955/1140] Compiling Vapor LifecycleHandler.swift
[956/1140] Compiling Vapor OptionalType.swift
[957/1140] Compiling Vapor RFC1123.swift
[958/1140] Compiling Vapor SocketAddress+Hostname.swift
[959/1140] Compiling Vapor Storage.swift
[960/1140] Compiling Vapor String+IsIPAddress.swift
[961/1140] Compiling Vapor Thread.swift
[962/1140] Compiling Vapor URI.swift
[963/1140] Compiling Vapor RangeResult.swift
[964/1140] Compiling Vapor Validatable.swift
[965/1140] Compiling Vapor Validation.swift
[966/1140] Compiling Vapor ValidationKey.swift
[967/1140] Compiling Vapor Validations.swift
[968/1140] Compiling Vapor ValidationsError.swift
[969/1140] Compiling Vapor Validator.swift
[970/1140] Compiling Vapor ValidatorResult.swift
[971/1140] Compiling Vapor Application+Routes.swift
[972/1140] Compiling Vapor Parameters+Require.swift
[973/1140] Compiling Vapor Request+WebSocket.swift
[974/1140] Compiling Vapor Route.swift
[975/1140] Compiling Vapor RouteCollection.swift
[976/1140] Compiling Vapor Routes.swift
[977/1140] Compiling Vapor RoutesBuilder+Group.swift
[978/1140] Compiling Vapor RoutesBuilder+Method.swift
[979/1140] Compiling Vapor RoutesBuilder+Middleware.swift
[980/1140] Compiling Vapor RoutesBuilder+WebSocket.swift
[981/1140] Compiling Vapor RoutesBuilder.swift
[982/1140] Compiling Vapor OTP.swift
[983/1140] Compiling Vapor Application+Servers.swift
[984/1140] Compiling Vapor Server.swift
[985/1140] Compiling Vapor Application+Sessions.swift
[986/1140] Compiling Vapor MemorySessions.swift
[987/1140] Compiling Vapor Request+Session.swift
[988/1140] Compiling Vapor Session.swift
[989/1140] Compiling Vapor SessionCache.swift
[990/1140] Compiling Vapor SessionData.swift
[991/1140] Compiling Vapor SessionDriver.swift
[992/1161] Compiling Vapor ResponseCompressionMiddleware.swift
[993/1161] Compiling Vapor RouteLoggingMiddleware.swift
[994/1161] Compiling Vapor File+Multipart.swift
[995/1161] Compiling Vapor FormDataDecoder+Content.swift
[996/1161] Compiling Vapor FormDataEncoder+Content.swift
[997/1161] Compiling Vapor Application+Password.swift
[998/1161] Compiling Vapor Application+Passwords.swift
[999/1161] Compiling Vapor AsyncPasswordHasher.swift
[1000/1161] Compiling Vapor BcryptHasher.swift
[1001/1161] Compiling Vapor PasswordHasher.swift
[1002/1161] Compiling Vapor PlaintextHasher.swift
[1003/1161] Compiling Vapor Request+Password.swift
[1004/1161] Compiling Vapor Redirect.swift
[1005/1161] Compiling Vapor Request+Body.swift
[1006/1161] Compiling Vapor Request+BodyStream.swift
[1007/1161] Compiling Vapor Request.swift
[1008/1161] Compiling Vapor Application+Responder.swift
[1009/1161] Compiling Vapor DefaultResponder.swift
[1010/1161] Compiling Vapor Response+Body.swift
[1011/1161] Compiling Vapor Response.swift
[1012/1161] Compiling Vapor ResponseCodable.swift
[1013/1161] Compiling Vapor Exports.swift
[1014/1161] Compiling Vapor Application+HTTP.swift
[1015/1161] Compiling Vapor BasicResponder.swift
[1016/1161] Compiling Vapor BodyStream.swift
[1017/1161] Compiling Vapor Application+HTTP+Client.swift
[1018/1161] Compiling Vapor EventLoopHTTPClient.swift
[1019/1161] Compiling Vapor EndpointCache.swift
[1020/1161] Compiling Vapor HTTPMethod+String.swift
[1021/1161] Compiling Vapor HTTPStatus.swift
[1022/1161] Compiling Vapor HTTPCookies.swift
[1023/1161] Compiling Vapor HTTPHeaderCacheControl.swift
[1024/1161] Compiling Vapor HTTPHeaderExpires.swift
[1025/1161] Compiling Vapor HTTPHeaderLastModified.swift
[1026/1161] Compiling Vapor HTTPHeaders+Cache.swift
[1027/1161] Compiling Vapor HTTPHeaders+Connection.swift
[1028/1161] Compiling Vapor HTTPHeaders+ContentDisposition.swift
[1029/1161] Compiling Vapor HTTPHeaders+ContentRange.swift
[1030/1161] Compiling Vapor HTTPHeaders+Directive.swift
[1031/1161] Compiling Vapor HTTPHeaders+Forwarded.swift
[1032/1161] Compiling Vapor HTTPHeaders+Link.swift
[1033/1161] Compiling Vapor HTTPHeaders+Name.swift
[1034/1161] Compiling Vapor Application.swift
[1035/1161] Compiling Vapor AuthenticationCache.swift
[1036/1161] Compiling Vapor Authenticator.swift
[1037/1161] Compiling Vapor BasicAuthorization.swift
[1038/1161] Compiling Vapor BearerAuthorization.swift
[1039/1161] Compiling Vapor GuardMiddleware.swift
[1040/1161] Compiling Vapor RedirectMiddleware.swift
[1041/1161] Compiling Vapor SessionAuthenticatable.swift
[1042/1161] Compiling Vapor Bcrypt.swift
[1043/1161] Compiling Vapor Application+Cache.swift
[1044/1161] Compiling Vapor Cache.swift
[1045/1161] Compiling Vapor CacheExpirationTime.swift
[1046/1161] Compiling Vapor MemoryCache.swift
[1047/1161] Compiling Vapor Request+Cache.swift
[1048/1161] Compiling Vapor Application+Clients.swift
[1049/1161] Compiling Vapor Client.swift
[1050/1161] Compiling Vapor ClientRequest.swift
[1051/1161] Compiling Vapor ClientResponse.swift
[1052/1161] Compiling Vapor Request+Client.swift
[1053/1161] Compiling Vapor BootCommand.swift
[1054/1161] Compiling Vapor CommandContext+Application.swift
[1055/1161] Compiling Vapor RoutesCommand.swift
[1056/1161] Compiling Vapor JSONCoders+Content.swift
[1057/1161] Compiling Vapor PlaintextDecoder.swift
[1058/1161] Compiling Vapor PlaintextEncoder.swift
[1059/1161] Compiling Vapor URLQueryCoders.swift
[1060/1161] Compiling Vapor URLQueryContainer.swift
[1061/1161] Compiling Vapor Core.swift
[1062/1161] Compiling Vapor Running.swift
[1063/1161] Compiling Vapor CORSMiddleware+AllowOriginSetting.swift
[1064/1161] Compiling Vapor CORSMiddleware+Configuration+exposedHeaders.swift
[1065/1161] Compiling Vapor DotEnvFile+load.swift
[1066/1161] Compiling Vapor Routes+caseInsenstive.swift
[1067/1161] Compiling Vapor Validatable+validate.swift
[1068/1161] Compiling Vapor Environment+Process.swift
[1069/1161] Compiling Vapor Environment+Secret.swift
[1070/1161] Compiling Vapor Environment.swift
[1071/1161] Compiling Vapor Abort.swift
[1072/1161] Compiling Vapor AbortError.swift
[1073/1161] Compiling Vapor DebuggableError.swift
[1074/1161] Compiling Vapor Demangler.swift
[1075/1161] Compiling Vapor ErrorSource.swift
[1076/1161] Compiling Vapor StackTrace.swift
[1077/1161] Compiling Vapor SessionsConfiguration.swift
[1078/1161] Compiling Vapor SessionsMiddleware.swift
[1079/1161] Compiling Vapor URLEncodedFormData.swift
[1080/1161] Compiling Vapor URLEncodedFormDecoder.swift
[1081/1161] Compiling Vapor URLEncodedFormEncoder.swift
[1082/1161] Compiling Vapor URLEncodedFormError.swift
[1083/1161] Compiling Vapor URLEncodedFormParser.swift
[1084/1161] Compiling Vapor URLEncodedFormSerializer.swift
[1085/1161] Compiling Vapor URLQueryFragmentConvertible.swift
[1086/1161] Compiling Vapor AnyResponse.swift
[1087/1161] Compiling Vapor Array+Random.swift
[1088/1161] Compiling Vapor Base32.swift
[1089/1161] Compiling Vapor Base64.swift
[1090/1161] Compiling Vapor BaseN.swift
[1091/1161] Compiling Vapor BasicCodingKey.swift
[1092/1161] Compiling Vapor ByteCount.swift
[1093/1161] Compiling Vapor Bytes+Hex.swift
[1094/1161] Compiling Vapor Bytes+SecureCompare.swift
[1095/1161] Compiling Vapor Collection+Safe.swift
[1096/1161] Compiling Vapor DataProtocol+Copy.swift
[1097/1161] Compiling Vapor DecoderUnwrapper.swift
[1098/1161] Compiling Vapor And.swift
[1099/1161] Compiling Vapor Case.swift
[1100/1161] Compiling Vapor CharacterSet.swift
[1101/1161] Compiling Vapor Count.swift
[1102/1161] Compiling Vapor Email.swift
[1103/1161] Compiling Vapor Empty.swift
[1104/1161] Compiling Vapor In.swift
[1105/1161] Compiling Vapor Nil.swift
[1106/1161] Compiling Vapor NilIgnoring.swift
[1107/1161] Compiling Vapor Not.swift
[1108/1161] Compiling Vapor Or.swift
[1109/1161] Compiling Vapor Pattern.swift
[1110/1161] Compiling Vapor Range.swift
[1111/1161] Compiling Vapor URL.swift
[1112/1161] Compiling Vapor Valid.swift
[1113/1161] Compiling Vapor Application+Views.swift
[1114/1161] Compiling Vapor PlaintextRenderer.swift
[1115/1161] Compiling Vapor Request+View.swift
[1116/1161] Compiling Vapor View.swift
[1117/1161] Compiling Vapor ViewRenderer.swift
[1118/1161] Compiling Vapor _Deprecations.swift
[1119/1161] Compiling Vapor HTTPHeaders+ResponseCompression.swift
[1120/1161] Compiling Vapor HTTPHeaders.swift
[1121/1161] Compiling Vapor HTTPMediaType.swift
[1122/1161] Compiling Vapor HTTPMediaTypePreference.swift
[1123/1161] Compiling Vapor Responder.swift
[1124/1161] Compiling Vapor Application+HTTP+Server.swift
[1125/1161] Compiling Vapor HTTPServer.swift
[1126/1161] Compiling Vapor HTTPServerConfiguration+RequestDecompressionConfiguration.swift
[1127/1161] Compiling Vapor HTTPServerConfiguration+ResponseCompressionConfiguration.swift
[1128/1161] Compiling Vapor HTTPServerHandler.swift
[1129/1161] Compiling Vapor HTTPServerRequestDecoder.swift
[1130/1161] Compiling Vapor HTTPServerResponseEncoder.swift
[1131/1161] Compiling Vapor HTTPServerUpgradeHandler.swift
[1132/1161] Compiling Vapor Logger+Report.swift
[1133/1161] Compiling Vapor LoggingSystem+Environment.swift
[1134/1161] Compiling Vapor Application+Middleware.swift
[1135/1161] Compiling Vapor CORSMiddleware.swift
[1136/1161] Compiling Vapor ErrorMiddleware.swift
[1137/1161] Compiling Vapor FileMiddleware.swift
[1138/1161] Compiling Vapor Middleware.swift
[1139/1161] Compiling Vapor MiddlewareConfiguration.swift
[1140/1161] Emitting module Vapor
[1141/1161] Compiling Vapor ServeCommand.swift
[1142/1161] Compiling Vapor AnyResponse+Concurrency.swift
[1143/1161] Compiling Vapor AsyncBasicResponder.swift
[1144/1161] Compiling Vapor AsyncMiddleware.swift
[1145/1161] Compiling Vapor AsyncPasswordHasher+Concurrency.swift
[1146/1161] Compiling Vapor AsyncSessionDriver.swift
[1147/1161] Compiling Vapor Authentication+Concurrency.swift
[1148/1161] Compiling Vapor Cache+Concurrency.swift
[1149/1161] Compiling Vapor Client+Concurrency.swift
[1150/1161] Compiling Vapor RequestBody+Concurrency.swift
[1151/1161] Compiling Vapor Responder+Concurrency.swift
[1152/1161] Compiling Vapor ResponseCodable+Concurrency.swift
[1153/1161] Compiling Vapor RoutesBuilder+Concurrency.swift
[1154/1161] Compiling Vapor ViewRenderer+Concurrency.swift
[1155/1161] Compiling Vapor WebSocket+Concurrency.swift
[1156/1161] Compiling Vapor ContainerGetPathExecutor.swift
[1157/1161] Compiling Vapor Content.swift
[1158/1161] Compiling Vapor ContentCoders.swift
[1159/1161] Compiling Vapor ContentConfiguration.swift
[1160/1161] Compiling Vapor ContentContainer.swift
[1161/1161] Compiling Vapor JSONCoder+Custom.swift
[1162/1218] Compiling Pioneer Dictionary+SafeOperation.swift
[1163/1218] Compiling Pioneer OrderedDictionary+Dictionary.swift
[1164/1218] Compiling Pioneer Expression.swift
[1165/1218] Compiling Pioneer Actor+Task.swift
[1166/1218] Compiling Pioneer Task+Starvation.swift
[1167/1218] Compiling Pioneer UInt64+Nanoseconds.swift
[1168/1218] Compiling Pioneer Map+Decoder.swift
[1169/1224] Compiling Pioneer AsyncEventStream+Future+GraphQLResult.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncEventStream+Future+GraphQLResult.swift:54:48: warning: type 'GraphQLResult' does not conform to the 'Sendable' protocol
52 |                     guard !Task.isCancelled else { return }
53 |                     let fut: Future<GraphQL.GraphQLResult> = elem
54 |                     let result = try await fut.get()
   |                                                `- warning: type 'GraphQLResult' does not conform to the 'Sendable' protocol
55 |                     await next(sink, result)
56 |                 }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/GraphQL.swift:3:15: note: struct 'GraphQLResult' does not conform to the 'Sendable' protocol
  1 | import NIO
  2 |
  3 | public struct GraphQLResult: Equatable, Codable, CustomStringConvertible {
    |               `- note: struct 'GraphQLResult' does not conform to the 'Sendable' protocol
  4 |     public var data: Map?
  5 |     public var errors: [GraphQLError]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncEventStream+Future+GraphQLResult.swift:9:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
 7 |
 8 | import NIOCore
 9 | import class GraphQL.ConcurrentEventStream
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
10 | import class GraphQL.Future
11 | import struct GraphQL.GraphQLResult
[1170/1224] Compiling Pioneer AsyncSequence+EventStream.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncEventStream+Future+GraphQLResult.swift:54:48: warning: type 'GraphQLResult' does not conform to the 'Sendable' protocol
52 |                     guard !Task.isCancelled else { return }
53 |                     let fut: Future<GraphQL.GraphQLResult> = elem
54 |                     let result = try await fut.get()
   |                                                `- warning: type 'GraphQLResult' does not conform to the 'Sendable' protocol
55 |                     await next(sink, result)
56 |                 }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/GraphQL.swift:3:15: note: struct 'GraphQLResult' does not conform to the 'Sendable' protocol
  1 | import NIO
  2 |
  3 | public struct GraphQLResult: Equatable, Codable, CustomStringConvertible {
    |               `- note: struct 'GraphQLResult' does not conform to the 'Sendable' protocol
  4 |     public var data: Map?
  5 |     public var errors: [GraphQLError]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncEventStream+Future+GraphQLResult.swift:9:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
 7 |
 8 | import NIOCore
 9 | import class GraphQL.ConcurrentEventStream
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
10 | import class GraphQL.Future
11 | import struct GraphQL.GraphQLResult
[1171/1224] Compiling Pioneer AsyncStream+Statics.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncEventStream+Future+GraphQLResult.swift:54:48: warning: type 'GraphQLResult' does not conform to the 'Sendable' protocol
52 |                     guard !Task.isCancelled else { return }
53 |                     let fut: Future<GraphQL.GraphQLResult> = elem
54 |                     let result = try await fut.get()
   |                                                `- warning: type 'GraphQLResult' does not conform to the 'Sendable' protocol
55 |                     await next(sink, result)
56 |                 }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/GraphQL.swift:3:15: note: struct 'GraphQLResult' does not conform to the 'Sendable' protocol
  1 | import NIO
  2 |
  3 | public struct GraphQLResult: Equatable, Codable, CustomStringConvertible {
    |               `- note: struct 'GraphQLResult' does not conform to the 'Sendable' protocol
  4 |     public var data: Map?
  5 |     public var errors: [GraphQLError]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncEventStream+Future+GraphQLResult.swift:9:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
 7 |
 8 | import NIOCore
 9 | import class GraphQL.ConcurrentEventStream
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
10 | import class GraphQL.Future
11 | import struct GraphQL.GraphQLResult
[1172/1224] Compiling Pioneer EventStream+Static.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncEventStream+Future+GraphQLResult.swift:54:48: warning: type 'GraphQLResult' does not conform to the 'Sendable' protocol
52 |                     guard !Task.isCancelled else { return }
53 |                     let fut: Future<GraphQL.GraphQLResult> = elem
54 |                     let result = try await fut.get()
   |                                                `- warning: type 'GraphQLResult' does not conform to the 'Sendable' protocol
55 |                     await next(sink, result)
56 |                 }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/GraphQL.swift:3:15: note: struct 'GraphQLResult' does not conform to the 'Sendable' protocol
  1 | import NIO
  2 |
  3 | public struct GraphQLResult: Equatable, Codable, CustomStringConvertible {
    |               `- note: struct 'GraphQLResult' does not conform to the 'Sendable' protocol
  4 |     public var data: Map?
  5 |     public var errors: [GraphQLError]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncEventStream+Future+GraphQLResult.swift:9:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
 7 |
 8 | import NIOCore
 9 | import class GraphQL.ConcurrentEventStream
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
10 | import class GraphQL.Future
11 | import struct GraphQL.GraphQLResult
[1173/1224] Compiling Pioneer PubSub.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncEventStream+Future+GraphQLResult.swift:54:48: warning: type 'GraphQLResult' does not conform to the 'Sendable' protocol
52 |                     guard !Task.isCancelled else { return }
53 |                     let fut: Future<GraphQL.GraphQLResult> = elem
54 |                     let result = try await fut.get()
   |                                                `- warning: type 'GraphQLResult' does not conform to the 'Sendable' protocol
55 |                     await next(sink, result)
56 |                 }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/GraphQL.swift:3:15: note: struct 'GraphQLResult' does not conform to the 'Sendable' protocol
  1 | import NIO
  2 |
  3 | public struct GraphQLResult: Equatable, Codable, CustomStringConvertible {
    |               `- note: struct 'GraphQLResult' does not conform to the 'Sendable' protocol
  4 |     public var data: Map?
  5 |     public var errors: [GraphQLError]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncEventStream+Future+GraphQLResult.swift:9:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
 7 |
 8 | import NIOCore
 9 | import class GraphQL.ConcurrentEventStream
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
10 | import class GraphQL.Future
11 | import struct GraphQL.GraphQLResult
[1174/1224] Compiling Pioneer Interval.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncEventStream+Future+GraphQLResult.swift:54:48: warning: type 'GraphQLResult' does not conform to the 'Sendable' protocol
52 |                     guard !Task.isCancelled else { return }
53 |                     let fut: Future<GraphQL.GraphQLResult> = elem
54 |                     let result = try await fut.get()
   |                                                `- warning: type 'GraphQLResult' does not conform to the 'Sendable' protocol
55 |                     await next(sink, result)
56 |                 }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/GraphQL.swift:3:15: note: struct 'GraphQLResult' does not conform to the 'Sendable' protocol
  1 | import NIO
  2 |
  3 | public struct GraphQLResult: Equatable, Codable, CustomStringConvertible {
    |               `- note: struct 'GraphQLResult' does not conform to the 'Sendable' protocol
  4 |     public var data: Map?
  5 |     public var errors: [GraphQLError]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncEventStream+Future+GraphQLResult.swift:9:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
 7 |
 8 | import NIOCore
 9 | import class GraphQL.ConcurrentEventStream
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
10 | import class GraphQL.Future
11 | import struct GraphQL.GraphQLResult
[1175/1224] Compiling Pioneer Timeout.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Vapor/Extensions/Request/GraphQLJSONEncoder+ContentEncoder.swift:11:1: warning: conformance to 'Sendable' must occur in the same source file as class 'GraphQLJSONEncoder'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
 9 | import Vapor
10 |
11 | extension GraphQLJSONEncoder: Vapor.ContentEncoder {
   | `- warning: conformance to 'Sendable' must occur in the same source file as class 'GraphQLJSONEncoder'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
12 |     public func encode<E>(_ encodable: E, to body: inout NIOCore.ByteBuffer, headers: inout NIOHTTP1.HTTPHeaders) throws where E: Encodable {
13 |         headers.contentType = .json
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/Map/GraphQLJSONEncoder.swift:188:14: warning: stored property 'outputFormatting' of 'Sendable'-conforming class 'GraphQLJSONEncoder' is mutable; this is an error in the Swift 6 language mode
 186 |
 187 |     /// The output format to produce. Defaults to `[]`.
 188 |     open var outputFormatting: OutputFormatting = []
     |              `- warning: stored property 'outputFormatting' of 'Sendable'-conforming class 'GraphQLJSONEncoder' is mutable; this is an error in the Swift 6 language mode
 189 |
 190 |     /// The strategy to use in encoding dates. Defaults to `.deferredToDate`.
[1176/1224] Compiling Pioneer Validation.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Vapor/Extensions/Request/GraphQLJSONEncoder+ContentEncoder.swift:11:1: warning: conformance to 'Sendable' must occur in the same source file as class 'GraphQLJSONEncoder'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
 9 | import Vapor
10 |
11 | extension GraphQLJSONEncoder: Vapor.ContentEncoder {
   | `- warning: conformance to 'Sendable' must occur in the same source file as class 'GraphQLJSONEncoder'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
12 |     public func encode<E>(_ encodable: E, to body: inout NIOCore.ByteBuffer, headers: inout NIOHTTP1.HTTPHeaders) throws where E: Encodable {
13 |         headers.contentType = .json
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/Map/GraphQLJSONEncoder.swift:188:14: warning: stored property 'outputFormatting' of 'Sendable'-conforming class 'GraphQLJSONEncoder' is mutable; this is an error in the Swift 6 language mode
 186 |
 187 |     /// The output format to produce. Defaults to `[]`.
 188 |     open var outputFormatting: OutputFormatting = []
     |              `- warning: stored property 'outputFormatting' of 'Sendable'-conforming class 'GraphQLJSONEncoder' is mutable; this is an error in the Swift 6 language mode
 189 |
 190 |     /// The strategy to use in encoding dates. Defaults to `.deferredToDate`.
[1177/1224] Compiling Pioneer CORSMIddleware+BananaCakePop.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Vapor/Extensions/Request/GraphQLJSONEncoder+ContentEncoder.swift:11:1: warning: conformance to 'Sendable' must occur in the same source file as class 'GraphQLJSONEncoder'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
 9 | import Vapor
10 |
11 | extension GraphQLJSONEncoder: Vapor.ContentEncoder {
   | `- warning: conformance to 'Sendable' must occur in the same source file as class 'GraphQLJSONEncoder'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
12 |     public func encode<E>(_ encodable: E, to body: inout NIOCore.ByteBuffer, headers: inout NIOHTTP1.HTTPHeaders) throws where E: Encodable {
13 |         headers.contentType = .json
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/Map/GraphQLJSONEncoder.swift:188:14: warning: stored property 'outputFormatting' of 'Sendable'-conforming class 'GraphQLJSONEncoder' is mutable; this is an error in the Swift 6 language mode
 186 |
 187 |     /// The output format to produce. Defaults to `[]`.
 188 |     open var outputFormatting: OutputFormatting = []
     |              `- warning: stored property 'outputFormatting' of 'Sendable'-conforming class 'GraphQLJSONEncoder' is mutable; this is an error in the Swift 6 language mode
 189 |
 190 |     /// The strategy to use in encoding dates. Defaults to `.deferredToDate`.
[1178/1224] Compiling Pioneer CORSMiddleware+ApolloSandbox.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Vapor/Extensions/Request/GraphQLJSONEncoder+ContentEncoder.swift:11:1: warning: conformance to 'Sendable' must occur in the same source file as class 'GraphQLJSONEncoder'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
 9 | import Vapor
10 |
11 | extension GraphQLJSONEncoder: Vapor.ContentEncoder {
   | `- warning: conformance to 'Sendable' must occur in the same source file as class 'GraphQLJSONEncoder'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
12 |     public func encode<E>(_ encodable: E, to body: inout NIOCore.ByteBuffer, headers: inout NIOHTTP1.HTTPHeaders) throws where E: Encodable {
13 |         headers.contentType = .json
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/Map/GraphQLJSONEncoder.swift:188:14: warning: stored property 'outputFormatting' of 'Sendable'-conforming class 'GraphQLJSONEncoder' is mutable; this is an error in the Swift 6 language mode
 186 |
 187 |     /// The output format to produce. Defaults to `[]`.
 188 |     open var outputFormatting: OutputFormatting = []
     |              `- warning: stored property 'outputFormatting' of 'Sendable'-conforming class 'GraphQLJSONEncoder' is mutable; this is an error in the Swift 6 language mode
 189 |
 190 |     /// The strategy to use in encoding dates. Defaults to `.deferredToDate`.
[1179/1224] Compiling Pioneer EnvironmentVariables.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Vapor/Extensions/Request/GraphQLJSONEncoder+ContentEncoder.swift:11:1: warning: conformance to 'Sendable' must occur in the same source file as class 'GraphQLJSONEncoder'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
 9 | import Vapor
10 |
11 | extension GraphQLJSONEncoder: Vapor.ContentEncoder {
   | `- warning: conformance to 'Sendable' must occur in the same source file as class 'GraphQLJSONEncoder'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
12 |     public func encode<E>(_ encodable: E, to body: inout NIOCore.ByteBuffer, headers: inout NIOHTTP1.HTTPHeaders) throws where E: Encodable {
13 |         headers.contentType = .json
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/Map/GraphQLJSONEncoder.swift:188:14: warning: stored property 'outputFormatting' of 'Sendable'-conforming class 'GraphQLJSONEncoder' is mutable; this is an error in the Swift 6 language mode
 186 |
 187 |     /// The output format to produce. Defaults to `[]`.
 188 |     open var outputFormatting: OutputFormatting = []
     |              `- warning: stored property 'outputFormatting' of 'Sendable'-conforming class 'GraphQLJSONEncoder' is mutable; this is an error in the Swift 6 language mode
 189 |
 190 |     /// The strategy to use in encoding dates. Defaults to `.deferredToDate`.
[1180/1224] Compiling Pioneer GraphQLJSONEncoder+ContentEncoder.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Vapor/Extensions/Request/GraphQLJSONEncoder+ContentEncoder.swift:11:1: warning: conformance to 'Sendable' must occur in the same source file as class 'GraphQLJSONEncoder'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
 9 | import Vapor
10 |
11 | extension GraphQLJSONEncoder: Vapor.ContentEncoder {
   | `- warning: conformance to 'Sendable' must occur in the same source file as class 'GraphQLJSONEncoder'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
12 |     public func encode<E>(_ encodable: E, to body: inout NIOCore.ByteBuffer, headers: inout NIOHTTP1.HTTPHeaders) throws where E: Encodable {
13 |         headers.contentType = .json
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/Map/GraphQLJSONEncoder.swift:188:14: warning: stored property 'outputFormatting' of 'Sendable'-conforming class 'GraphQLJSONEncoder' is mutable; this is an error in the Swift 6 language mode
 186 |
 187 |     /// The output format to produce. Defaults to `[]`.
 188 |     open var outputFormatting: OutputFormatting = []
     |              `- warning: stored property 'outputFormatting' of 'Sendable'-conforming class 'GraphQLJSONEncoder' is mutable; this is an error in the Swift 6 language mode
 189 |
 190 |     /// The strategy to use in encoding dates. Defaults to `.deferredToDate`.
[1181/1224] Emitting module Pioneer
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Vapor/Extensions/Request/GraphQLJSONEncoder+ContentEncoder.swift:11:1: warning: conformance to 'Sendable' must occur in the same source file as class 'GraphQLJSONEncoder'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
 9 | import Vapor
10 |
11 | extension GraphQLJSONEncoder: Vapor.ContentEncoder {
   | `- warning: conformance to 'Sendable' must occur in the same source file as class 'GraphQLJSONEncoder'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
12 |     public func encode<E>(_ encodable: E, to body: inout NIOCore.ByteBuffer, headers: inout NIOHTTP1.HTTPHeaders) throws where E: Encodable {
13 |         headers.contentType = .json
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/Map/GraphQLJSONEncoder.swift:188:14: warning: stored property 'outputFormatting' of 'Sendable'-conforming class 'GraphQLJSONEncoder' is mutable; this is an error in the Swift 6 language mode
 186 |
 187 |     /// The output format to produce. Defaults to `[]`.
 188 |     open var outputFormatting: OutputFormatting = []
     |              `- warning: stored property 'outputFormatting' of 'Sendable'-conforming class 'GraphQLJSONEncoder' is mutable; this is an error in the Swift 6 language mode
 189 |
 190 |     /// The strategy to use in encoding dates. Defaults to `.deferredToDate`.
[1182/1224] Compiling Pioneer Pioneer+Graphiti.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/GraphQL+Execution.swift:40:7: warning: type 'GraphQLResult' does not conform to the 'Sendable' protocol
38 |         variableValues: variables ?? [:],
39 |         operationName: operationName
40 |     ).get()
   |       `- warning: type 'GraphQLResult' does not conform to the 'Sendable' protocol
41 | }
42 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/GraphQL.swift:3:15: note: struct 'GraphQLResult' does not conform to the 'Sendable' protocol
  1 | import NIO
  2 |
  3 | public struct GraphQLResult: Equatable, Codable, CustomStringConvertible {
    |               `- note: struct 'GraphQLResult' does not conform to the 'Sendable' protocol
  4 |     public var data: Map?
  5 |     public var errors: [GraphQLError]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/GraphQL+Execution.swift:8:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
 6 | //
 7 |
 8 | import GraphQL
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
 9 | import protocol NIO.EventLoopGroup
10 |
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/GraphQL+Execution.swift:72:7: warning: type 'SubscriptionResult' does not conform to the 'Sendable' protocol
70 |         variableValues: variables ?? [:],
71 |         operationName: operationName
72 |     ).get()
   |       `- warning: type 'SubscriptionResult' does not conform to the 'Sendable' protocol
73 | }
74 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/GraphQL.swift:47:15: note: struct 'SubscriptionResult' does not conform to the 'Sendable' protocol
 45 |
 46 | /// SubscriptionResult wraps the observable and error data returned by the subscribe request.
 47 | public struct SubscriptionResult {
    |               `- note: struct 'SubscriptionResult' does not conform to the 'Sendable' protocol
 48 |     public let stream: SubscriptionEventStream?
 49 |     public let errors: [GraphQLError]
[1183/1224] Compiling Pioneer Data+Json.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/GraphQL+Execution.swift:40:7: warning: type 'GraphQLResult' does not conform to the 'Sendable' protocol
38 |         variableValues: variables ?? [:],
39 |         operationName: operationName
40 |     ).get()
   |       `- warning: type 'GraphQLResult' does not conform to the 'Sendable' protocol
41 | }
42 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/GraphQL.swift:3:15: note: struct 'GraphQLResult' does not conform to the 'Sendable' protocol
  1 | import NIO
  2 |
  3 | public struct GraphQLResult: Equatable, Codable, CustomStringConvertible {
    |               `- note: struct 'GraphQLResult' does not conform to the 'Sendable' protocol
  4 |     public var data: Map?
  5 |     public var errors: [GraphQLError]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/GraphQL+Execution.swift:8:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
 6 | //
 7 |
 8 | import GraphQL
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
 9 | import protocol NIO.EventLoopGroup
10 |
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/GraphQL+Execution.swift:72:7: warning: type 'SubscriptionResult' does not conform to the 'Sendable' protocol
70 |         variableValues: variables ?? [:],
71 |         operationName: operationName
72 |     ).get()
   |       `- warning: type 'SubscriptionResult' does not conform to the 'Sendable' protocol
73 | }
74 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/GraphQL.swift:47:15: note: struct 'SubscriptionResult' does not conform to the 'Sendable' protocol
 45 |
 46 | /// SubscriptionResult wraps the observable and error data returned by the subscribe request.
 47 | public struct SubscriptionResult {
    |               `- note: struct 'SubscriptionResult' does not conform to the 'Sendable' protocol
 48 |     public let stream: SubscriptionEventStream?
 49 |     public let errors: [GraphQLError]
[1184/1224] Compiling Pioneer BuiltinTypes.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/GraphQL+Execution.swift:40:7: warning: type 'GraphQLResult' does not conform to the 'Sendable' protocol
38 |         variableValues: variables ?? [:],
39 |         operationName: operationName
40 |     ).get()
   |       `- warning: type 'GraphQLResult' does not conform to the 'Sendable' protocol
41 | }
42 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/GraphQL.swift:3:15: note: struct 'GraphQLResult' does not conform to the 'Sendable' protocol
  1 | import NIO
  2 |
  3 | public struct GraphQLResult: Equatable, Codable, CustomStringConvertible {
    |               `- note: struct 'GraphQLResult' does not conform to the 'Sendable' protocol
  4 |     public var data: Map?
  5 |     public var errors: [GraphQLError]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/GraphQL+Execution.swift:8:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
 6 | //
 7 |
 8 | import GraphQL
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
 9 | import protocol NIO.EventLoopGroup
10 |
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/GraphQL+Execution.swift:72:7: warning: type 'SubscriptionResult' does not conform to the 'Sendable' protocol
70 |         variableValues: variables ?? [:],
71 |         operationName: operationName
72 |     ).get()
   |       `- warning: type 'SubscriptionResult' does not conform to the 'Sendable' protocol
73 | }
74 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/GraphQL.swift:47:15: note: struct 'SubscriptionResult' does not conform to the 'Sendable' protocol
 45 |
 46 | /// SubscriptionResult wraps the observable and error data returned by the subscribe request.
 47 | public struct SubscriptionResult {
    |               `- note: struct 'SubscriptionResult' does not conform to the 'Sendable' protocol
 48 |     public let stream: SubscriptionEventStream?
 49 |     public let errors: [GraphQLError]
[1185/1224] Compiling Pioneer Field+AsyncAwait.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/GraphQL+Execution.swift:40:7: warning: type 'GraphQLResult' does not conform to the 'Sendable' protocol
38 |         variableValues: variables ?? [:],
39 |         operationName: operationName
40 |     ).get()
   |       `- warning: type 'GraphQLResult' does not conform to the 'Sendable' protocol
41 | }
42 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/GraphQL.swift:3:15: note: struct 'GraphQLResult' does not conform to the 'Sendable' protocol
  1 | import NIO
  2 |
  3 | public struct GraphQLResult: Equatable, Codable, CustomStringConvertible {
    |               `- note: struct 'GraphQLResult' does not conform to the 'Sendable' protocol
  4 |     public var data: Map?
  5 |     public var errors: [GraphQLError]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/GraphQL+Execution.swift:8:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
 6 | //
 7 |
 8 | import GraphQL
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
 9 | import protocol NIO.EventLoopGroup
10 |
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/GraphQL+Execution.swift:72:7: warning: type 'SubscriptionResult' does not conform to the 'Sendable' protocol
70 |         variableValues: variables ?? [:],
71 |         operationName: operationName
72 |     ).get()
   |       `- warning: type 'SubscriptionResult' does not conform to the 'Sendable' protocol
73 | }
74 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/GraphQL.swift:47:15: note: struct 'SubscriptionResult' does not conform to the 'Sendable' protocol
 45 |
 46 | /// SubscriptionResult wraps the observable and error data returned by the subscribe request.
 47 | public struct SubscriptionResult {
    |               `- note: struct 'SubscriptionResult' does not conform to the 'Sendable' protocol
 48 |     public let stream: SubscriptionEventStream?
 49 |     public let errors: [GraphQLError]
[1186/1224] Compiling Pioneer Field+Middleware.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/GraphQL+Execution.swift:40:7: warning: type 'GraphQLResult' does not conform to the 'Sendable' protocol
38 |         variableValues: variables ?? [:],
39 |         operationName: operationName
40 |     ).get()
   |       `- warning: type 'GraphQLResult' does not conform to the 'Sendable' protocol
41 | }
42 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/GraphQL.swift:3:15: note: struct 'GraphQLResult' does not conform to the 'Sendable' protocol
  1 | import NIO
  2 |
  3 | public struct GraphQLResult: Equatable, Codable, CustomStringConvertible {
    |               `- note: struct 'GraphQLResult' does not conform to the 'Sendable' protocol
  4 |     public var data: Map?
  5 |     public var errors: [GraphQLError]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/GraphQL+Execution.swift:8:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
 6 | //
 7 |
 8 | import GraphQL
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
 9 | import protocol NIO.EventLoopGroup
10 |
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/GraphQL+Execution.swift:72:7: warning: type 'SubscriptionResult' does not conform to the 'Sendable' protocol
70 |         variableValues: variables ?? [:],
71 |         operationName: operationName
72 |     ).get()
   |       `- warning: type 'SubscriptionResult' does not conform to the 'Sendable' protocol
73 | }
74 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/GraphQL.swift:47:15: note: struct 'SubscriptionResult' does not conform to the 'Sendable' protocol
 45 |
 46 | /// SubscriptionResult wraps the observable and error data returned by the subscribe request.
 47 | public struct SubscriptionResult {
    |               `- note: struct 'SubscriptionResult' does not conform to the 'Sendable' protocol
 48 |     public let stream: SubscriptionEventStream?
 49 |     public let errors: [GraphQLError]
[1187/1224] Compiling Pioneer GraphQL+Execution.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/GraphQL+Execution.swift:40:7: warning: type 'GraphQLResult' does not conform to the 'Sendable' protocol
38 |         variableValues: variables ?? [:],
39 |         operationName: operationName
40 |     ).get()
   |       `- warning: type 'GraphQLResult' does not conform to the 'Sendable' protocol
41 | }
42 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/GraphQL.swift:3:15: note: struct 'GraphQLResult' does not conform to the 'Sendable' protocol
  1 | import NIO
  2 |
  3 | public struct GraphQLResult: Equatable, Codable, CustomStringConvertible {
    |               `- note: struct 'GraphQLResult' does not conform to the 'Sendable' protocol
  4 |     public var data: Map?
  5 |     public var errors: [GraphQLError]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/GraphQL+Execution.swift:8:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
 6 | //
 7 |
 8 | import GraphQL
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
 9 | import protocol NIO.EventLoopGroup
10 |
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/GraphQL+Execution.swift:72:7: warning: type 'SubscriptionResult' does not conform to the 'Sendable' protocol
70 |         variableValues: variables ?? [:],
71 |         operationName: operationName
72 |     ).get()
   |       `- warning: type 'SubscriptionResult' does not conform to the 'Sendable' protocol
73 | }
74 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/GraphQL.swift:47:15: note: struct 'SubscriptionResult' does not conform to the 'Sendable' protocol
 45 |
 46 | /// SubscriptionResult wraps the observable and error data returned by the subscribe request.
 47 | public struct SubscriptionResult {
    |               `- note: struct 'SubscriptionResult' does not conform to the 'Sendable' protocol
 48 |     public let stream: SubscriptionEventStream?
 49 |     public let errors: [GraphQLError]
[1188/1224] Compiling Pioneer GraphQLError+Error.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/GraphQL+Execution.swift:40:7: warning: type 'GraphQLResult' does not conform to the 'Sendable' protocol
38 |         variableValues: variables ?? [:],
39 |         operationName: operationName
40 |     ).get()
   |       `- warning: type 'GraphQLResult' does not conform to the 'Sendable' protocol
41 | }
42 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/GraphQL.swift:3:15: note: struct 'GraphQLResult' does not conform to the 'Sendable' protocol
  1 | import NIO
  2 |
  3 | public struct GraphQLResult: Equatable, Codable, CustomStringConvertible {
    |               `- note: struct 'GraphQLResult' does not conform to the 'Sendable' protocol
  4 |     public var data: Map?
  5 |     public var errors: [GraphQLError]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/GraphQL+Execution.swift:8:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
 6 | //
 7 |
 8 | import GraphQL
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
 9 | import protocol NIO.EventLoopGroup
10 |
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/GraphQL+Execution.swift:72:7: warning: type 'SubscriptionResult' does not conform to the 'Sendable' protocol
70 |         variableValues: variables ?? [:],
71 |         operationName: operationName
72 |     ).get()
   |       `- warning: type 'SubscriptionResult' does not conform to the 'Sendable' protocol
73 | }
74 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/GraphQL.swift:47:15: note: struct 'SubscriptionResult' does not conform to the 'Sendable' protocol
 45 |
 46 | /// SubscriptionResult wraps the observable and error data returned by the subscribe request.
 47 | public struct SubscriptionResult {
    |               `- note: struct 'SubscriptionResult' does not conform to the 'Sendable' protocol
 48 |     public let stream: SubscriptionEventStream?
 49 |     public let errors: [GraphQLError]
[1189/1224] Compiling Pioneer Pioneer+WebSocket.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Vapor/WebSocket/Pioneer+WebSocket.swift:36:13: warning: capture of 'self' with non-sendable type 'Pioneer<Resolver, Context>' in a `@Sendable` closure
34 |
35 |         return req.webSocket(shouldUpgrade: shouldUpgrade(req:), onUpgrade: {
36 |             onUpgrade(req: $0, ws: $1, context: context, guard: `guard`)
   |             `- warning: capture of 'self' with non-sendable type 'Pioneer<Resolver, Context>' in a `@Sendable` closure
37 |         })
38 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Pioneer.swift:16:15: note: consider making generic struct 'Pioneer' conform to the 'Sendable' protocol
 14 |
 15 | /// Pioneer GraphQL Server for handling all GraphQL operations
 16 | public struct Pioneer<Resolver, Context> {
    |               `- note: consider making generic struct 'Pioneer' conform to the 'Sendable' protocol
 17 |     /// Graphiti schema used to execute operations
 18 |     public private(set) var schema: GraphQLSchema
[1190/1224] Compiling Pioneer Intent.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Vapor/WebSocket/Pioneer+WebSocket.swift:36:13: warning: capture of 'self' with non-sendable type 'Pioneer<Resolver, Context>' in a `@Sendable` closure
34 |
35 |         return req.webSocket(shouldUpgrade: shouldUpgrade(req:), onUpgrade: {
36 |             onUpgrade(req: $0, ws: $1, context: context, guard: `guard`)
   |             `- warning: capture of 'self' with non-sendable type 'Pioneer<Resolver, Context>' in a `@Sendable` closure
37 |         })
38 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Pioneer.swift:16:15: note: consider making generic struct 'Pioneer' conform to the 'Sendable' protocol
 14 |
 15 | /// Pioneer GraphQL Server for handling all GraphQL operations
 16 | public struct Pioneer<Resolver, Context> {
    |               `- note: consider making generic struct 'Pioneer' conform to the 'Sendable' protocol
 17 |     /// Graphiti schema used to execute operations
 18 |     public private(set) var schema: GraphQLSchema
[1191/1224] Compiling Pioneer Payload.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Vapor/WebSocket/Pioneer+WebSocket.swift:36:13: warning: capture of 'self' with non-sendable type 'Pioneer<Resolver, Context>' in a `@Sendable` closure
34 |
35 |         return req.webSocket(shouldUpgrade: shouldUpgrade(req:), onUpgrade: {
36 |             onUpgrade(req: $0, ws: $1, context: context, guard: `guard`)
   |             `- warning: capture of 'self' with non-sendable type 'Pioneer<Resolver, Context>' in a `@Sendable` closure
37 |         })
38 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Pioneer.swift:16:15: note: consider making generic struct 'Pioneer' conform to the 'Sendable' protocol
 14 |
 15 | /// Pioneer GraphQL Server for handling all GraphQL operations
 16 | public struct Pioneer<Resolver, Context> {
    |               `- note: consider making generic struct 'Pioneer' conform to the 'Sendable' protocol
 17 |     /// Graphiti schema used to execute operations
 18 |     public private(set) var schema: GraphQLSchema
[1192/1224] Compiling Pioneer Pioneer+WebSocketable.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Vapor/WebSocket/Pioneer+WebSocket.swift:36:13: warning: capture of 'self' with non-sendable type 'Pioneer<Resolver, Context>' in a `@Sendable` closure
34 |
35 |         return req.webSocket(shouldUpgrade: shouldUpgrade(req:), onUpgrade: {
36 |             onUpgrade(req: $0, ws: $1, context: context, guard: `guard`)
   |             `- warning: capture of 'self' with non-sendable type 'Pioneer<Resolver, Context>' in a `@Sendable` closure
37 |         })
38 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Pioneer.swift:16:15: note: consider making generic struct 'Pioneer' conform to the 'Sendable' protocol
 14 |
 15 | /// Pioneer GraphQL Server for handling all GraphQL operations
 16 | public struct Pioneer<Resolver, Context> {
    |               `- note: consider making generic struct 'Pioneer' conform to the 'Sendable' protocol
 17 |     /// Graphiti schema used to execute operations
 18 |     public private(set) var schema: GraphQLSchema
[1193/1224] Compiling Pioneer WebSocketClient.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Vapor/WebSocket/Pioneer+WebSocket.swift:36:13: warning: capture of 'self' with non-sendable type 'Pioneer<Resolver, Context>' in a `@Sendable` closure
34 |
35 |         return req.webSocket(shouldUpgrade: shouldUpgrade(req:), onUpgrade: {
36 |             onUpgrade(req: $0, ws: $1, context: context, guard: `guard`)
   |             `- warning: capture of 'self' with non-sendable type 'Pioneer<Resolver, Context>' in a `@Sendable` closure
37 |         })
38 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Pioneer.swift:16:15: note: consider making generic struct 'Pioneer' conform to the 'Sendable' protocol
 14 |
 15 | /// Pioneer GraphQL Server for handling all GraphQL operations
 16 | public struct Pioneer<Resolver, Context> {
    |               `- note: consider making generic struct 'Pioneer' conform to the 'Sendable' protocol
 17 |     /// Graphiti schema used to execute operations
 18 |     public private(set) var schema: GraphQLSchema
[1194/1224] Compiling Pioneer WebSocketable.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Vapor/WebSocket/Pioneer+WebSocket.swift:36:13: warning: capture of 'self' with non-sendable type 'Pioneer<Resolver, Context>' in a `@Sendable` closure
34 |
35 |         return req.webSocket(shouldUpgrade: shouldUpgrade(req:), onUpgrade: {
36 |             onUpgrade(req: $0, ws: $1, context: context, guard: `guard`)
   |             `- warning: capture of 'self' with non-sendable type 'Pioneer<Resolver, Context>' in a `@Sendable` closure
37 |         })
38 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Pioneer.swift:16:15: note: consider making generic struct 'Pioneer' conform to the 'Sendable' protocol
 14 |
 15 | /// Pioneer GraphQL Server for handling all GraphQL operations
 16 | public struct Pioneer<Resolver, Context> {
    |               `- note: consider making generic struct 'Pioneer' conform to the 'Sendable' protocol
 17 |     /// Graphiti schema used to execute operations
 18 |     public private(set) var schema: GraphQLSchema
[1195/1224] Compiling Pioneer Request+GraphQLRequest.swift
[1196/1224] Compiling Pioneer Request+PathComponent.swift
[1197/1224] Compiling Pioneer Request+WebSocket.swift
[1198/1224] Compiling Pioneer Request+WebsocketContext.swift
[1199/1224] Compiling Pioneer GraphQLResult+Content.swift
[1200/1224] Compiling Pioneer Response+GraphQLError.swift
[1201/1224] Compiling Pioneer WebSocket+WebSocketable.swift
[1202/1224] Compiling Pioneer Pioneer+Http.swift
[1203/1224] Compiling Pioneer Pioneer+IDE.swift
[1204/1224] Compiling Pioneer Pioneer+Standalone.swift
[1205/1224] Compiling Pioneer Pioneer+Vapor+Void.swift
[1206/1224] Compiling Pioneer Pioneer+Vapor.swift
[1207/1224] Compiling Pioneer HttpStrategy.swift
[1208/1224] Compiling Pioneer IDE.swift
[1209/1224] Compiling Pioneer Pioneer.swift
[1210/1224] Compiling Pioneer AsyncEventStream.swift
[1211/1224] Compiling Pioneer AsyncPubSub.swift
[1212/1224] Compiling Pioneer Broadcast.swift
[1213/1224] Compiling Pioneer GraphQLMessage.swift
[1214/1224] Compiling Pioneer GraphQLMiddleware.swift
[1215/1224] Compiling Pioneer GraphQLRequest.swift
[1216/1224] Compiling Pioneer GraphQLViolation.swift
[1217/1224] Compiling Pioneer CSRFProtections.swift
[1218/1224] Compiling Pioneer HTTPGraphQL.swift
[1219/1224] Compiling Pioneer Drone.swift
[1220/1224] Compiling Pioneer Probe.swift
[1221/1224] Compiling Pioneer GraphQLWs.swift
[1222/1224] Compiling Pioneer SubProtocol.swift
[1223/1224] Compiling Pioneer SubscriptionsTransportWs.swift
[1224/1224] Compiling Pioneer WebsocketProtocol.swift
Build of target: 'Pioneer' complete! (17.97s)
     854
6	/Users/admin/builder/spi-builder-workspace/.docs/d-exclaimation/pioneer/main
✅  Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/d-exclaimation/pioneer/main
File count: 854
Doc size:   6.0MB
Preparing doc bundle ...
Uploading prod-d-exclaimation-pioneer-main-a92e7d4a.zip to s3://spi-docs-inbox/prod-d-exclaimation-pioneer-main-a92e7d4a.zip
Copying... [10%]
Copying... [20%]
Copying... [30%]
Copying... [40%]
Copying... [50%]
Copying... [60%]
Copying... [70%]
Copying... [81%]
Copying... [91%]
Copying... [100%]
Done.