Build Information
Successful build of Pioneer, reference 1.4.1 (210d7d
), with Swift 6.0 for macOS (SPM) on 19 Dec 2024 05:48:22 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
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.30s)
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/1.4.1
Repository: d-exclaimation/pioneer
Swift version used: 6.0
Target: Pioneer
Extracting symbol information for 'Pioneer'...
Finished extracting symbol information for 'Pioneer'. (20.37s)
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.48s)
Generated documentation archive at:
/Users/admin/builder/spi-builder-workspace/.docs/d-exclaimation/pioneer/1.4.1
Updating https://github.com/vapor/websocket-kit.git
Updating https://github.com/apple/swift-algorithms.git
Updating https://github.com/apple/swift-http-types
Updating https://github.com/apple/swift-system.git
Updating https://github.com/vapor/multipart-kit.git
Updating https://github.com/GraphQLSwift/GraphQL.git
Updating https://github.com/vapor/vapor.git
Updated https://github.com/vapor/websocket-kit.git (0.49s)
Updating https://github.com/swift-server/async-http-client.git
Updated https://github.com/apple/swift-algorithms.git (0.73s)
Updated https://github.com/vapor/vapor.git (0.73s)
Updated https://github.com/GraphQLSwift/GraphQL.git (0.73s)
Updated https://github.com/vapor/multipart-kit.git (0.73s)
Updated https://github.com/apple/swift-http-types (0.73s)
Updated https://github.com/apple/swift-system.git (0.73s)
Updating https://github.com/apple/swift-metrics.git
Updating https://github.com/vapor/routing-kit.git
Updating https://github.com/vapor/async-kit.git
Updating https://github.com/apple/swift-collections
Updating https://github.com/apple/swift-nio-extras.git
Updating https://github.com/GraphQLSwift/Graphiti.git
Updated https://github.com/swift-server/async-http-client.git (0.56s)
Updating https://github.com/apple/swift-atomics.git
Updated https://github.com/vapor/async-kit.git (0.55s)
Updated https://github.com/apple/swift-metrics.git (0.57s)
Updating https://github.com/apple/swift-crypto.git
Updating https://github.com/apple/swift-log.git
Updated https://github.com/GraphQLSwift/Graphiti.git (0.63s)
Updated https://github.com/vapor/routing-kit.git (0.63s)
Updated https://github.com/apple/swift-nio-extras.git (0.63s)
Updated https://github.com/apple/swift-collections (0.63s)
Updating https://github.com/apple/swift-nio-ssl.git
Updating https://github.com/apple/swift-nio.git
Updating https://github.com/apple/swift-numerics
Updating https://github.com/vapor/console-kit.git
Updated https://github.com/apple/swift-atomics.git (0.49s)
Updating https://github.com/apple/swift-nio-http2.git
Updated https://github.com/apple/swift-crypto.git (0.53s)
Updating https://github.com/apple/swift-nio-transport-services.git
Updated https://github.com/apple/swift-log.git (0.55s)
Fetching https://github.com/swiftlang/swift-docc-plugin
Updated https://github.com/apple/swift-nio-ssl.git (0.54s)
Updated https://github.com/vapor/console-kit.git (0.70s)
Updated https://github.com/apple/swift-nio.git (0.70s)
Updated https://github.com/apple/swift-numerics (0.70s)
Updated https://github.com/apple/swift-nio-http2.git (0.58s)
Updated https://github.com/apple/swift-nio-transport-services.git (0.47s)
[1/2044] Fetching swift-docc-plugin
Fetched https://github.com/swiftlang/swift-docc-plugin from cache (1.26s)
Computing version for https://github.com/vapor/vapor.git
Computed https://github.com/vapor/vapor.git at 4.106.3 (0.54s)
Computing version for https://github.com/GraphQLSwift/Graphiti.git
Computed https://github.com/GraphQLSwift/Graphiti.git at 1.15.1 (0.51s)
Computing version for https://github.com/GraphQLSwift/GraphQL.git
Computed https://github.com/GraphQLSwift/GraphQL.git at 2.10.3 (0.41s)
Computing version for https://github.com/apple/swift-atomics.git
Computed https://github.com/apple/swift-atomics.git at 1.1.0 (0.52s)
Computing version for https://github.com/vapor/multipart-kit.git
Computed https://github.com/vapor/multipart-kit.git at 4.5.4 (0.51s)
Computing version for https://github.com/vapor/websocket-kit.git
Computed https://github.com/vapor/websocket-kit.git at 2.14.0 (0.54s)
Computing version for https://github.com/apple/swift-algorithms.git
Computed https://github.com/apple/swift-algorithms.git at 1.0.0 (0.52s)
Computing version for https://github.com/apple/swift-metrics.git
Computed https://github.com/apple/swift-metrics.git at 2.5.0 (0.42s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.6.1 (0.41s)
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.42s)
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.41s)
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.53s)
Computing version for https://github.com/apple/swift-nio.git
Computed https://github.com/apple/swift-nio.git at 2.76.1 (0.59s)
Computing version for https://github.com/vapor/routing-kit.git
Computed https://github.com/vapor/routing-kit.git at 4.9.1 (0.41s)
Computing version for https://github.com/apple/swift-crypto.git
Computed https://github.com/apple/swift-crypto.git at 2.5.0 (0.52s)
Computing version for https://github.com/vapor/console-kit.git
Computed https://github.com/vapor/console-kit.git at 4.15.1 (0.43s)
Computing version for https://github.com/vapor/async-kit.git
Computed https://github.com/vapor/async-kit.git at 1.17.0 (0.50s)
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.42s)
Computing version for https://github.com/apple/swift-collections
Computed https://github.com/apple/swift-collections at 1.0.4 (0.53s)
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.40s)
Computing version for https://github.com/apple/swift-numerics
Computed https://github.com/apple/swift-numerics at 1.0.2 (0.50s)
Computing version for https://github.com/apple/swift-http-types
Computed https://github.com/apple/swift-http-types at 1.3.1 (0.49s)
Computing version for https://github.com/apple/swift-system.git
Computed https://github.com/apple/swift-system.git at 1.4.0 (0.41s)
Computing version for https://github.com/swiftlang/swift-docc-plugin
Computed https://github.com/swiftlang/swift-docc-plugin at 1.4.3 (0.53s)
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.30s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (0.57s)
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
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
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 DeclarationFragments.swift
[7/53] Compiling SymbolKit Fragment.swift
[8/53] Compiling SymbolKit FragmentKind.swift
[9/53] Compiling SymbolKit FunctionParameter.swift
[10/53] Compiling SymbolKit FunctionSignature.swift
[11/57] Compiling SymbolKit Mixin+Equals.swift
[12/57] Compiling SymbolKit Mixin+Hash.swift
[13/57] Compiling SymbolKit Mixin.swift
[14/57] Compiling SymbolKit LineList.swift
[15/57] Compiling SymbolKit Position.swift
[16/57] Emitting module SymbolKit
[17/57] Compiling SymbolKit SemanticVersion.swift
[18/57] Compiling SymbolKit AccessControl.swift
[19/57] Compiling SymbolKit Availability.swift
[20/57] Compiling SymbolKit AvailabilityItem.swift
[21/57] Compiling SymbolKit Domain.swift
[22/57] Compiling SymbolKit Names.swift
[23/57] Compiling SymbolKit SPI.swift
[24/57] Compiling SymbolKit Snippet.swift
[25/57] Compiling SymbolKit Extension.swift
[26/57] Compiling SymbolKit Relationship.swift
[27/57] Compiling SymbolKit RelationshipKind.swift
[28/57] Compiling SymbolKit SourceOrigin.swift
[29/57] Compiling SymbolKit GenericConstraints.swift
[30/57] Compiling SymbolKit Swift.swift
[31/57] Compiling SymbolKit Identifier.swift
[32/57] Compiling SymbolKit KindIdentifier.swift
[33/57] Compiling SymbolKit Location.swift
[34/57] Compiling SymbolKit Mutability.swift
[35/57] Compiling SymbolKit SourceRange.swift
[36/57] Compiling SymbolKit Metadata.swift
[37/57] Compiling SymbolKit Module.swift
[38/57] Compiling SymbolKit OperatingSystem.swift
[39/57] Compiling SymbolKit Platform.swift
[40/57] Compiling SymbolKit Symbol.swift
[41/57] Compiling SymbolKit SymbolKind.swift
[42/57] Compiling SymbolKit SymbolGraph.swift
[43/57] Compiling SymbolKit GraphCollector.swift
[44/57] Compiling SymbolKit GenericConstraint.swift
[45/57] Compiling SymbolKit GenericParameter.swift
[46/57] Compiling SymbolKit Generics.swift
[47/57] Compiling SymbolKit Namespace.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] Emitting module Snippets
[53/57] Compiling Snippets SnippetParser.swift
[54/57] Compiling Snippets Snippet.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.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
Building for debugging...
[0/1] Write swift-version-5BDAB9E9C0126B9D.txt
[2/186] Compiling SystemPackage FileOperations.swift
[3/186] Compiling OrderedCollections OrderedDictionary+CustomReflectable.swift
[4/187] Compiling RealModule AlgebraicField.swift
[5/187] Compiling OrderedCollections OrderedDictionary+ExpressibleByDictionaryLiteral.swift
[6/187] Compiling OrderedCollections OrderedDictionary+Hashable.swift
[7/187] Compiling RealModule ApproximateEquality.swift
[8/188] Compiling OrderedCollections OrderedDictionary.swift
[9/188] Compiling OrderedCollections OrderedDictionary+Equatable.swift
[10/188] Compiling RealModule Real.swift
[11/188] Compiling RealModule Float80+Real.swift
[12/188] Compiling RealModule RealFunctions.swift
[13/188] Compiling RealModule Float16+Real.swift
[14/188] Compiling SystemPackage Errno.swift
[15/188] Compiling SystemPackage ErrnoWindows.swift
[16/188] Compiling Logging MetadataProvider.swift
[17/188] Compiling RealModule Float+Real.swift
[18/188] Compiling RealModule ElementaryFunctions.swift
[19/188] Compiling RealModule AugmentedArithmetic.swift
[20/188] Compiling RealModule Double+Real.swift
[21/188] Compiling SystemPackage FileDescriptor.swift
[22/188] Compiling OrderedCollections OrderedDictionary+Elements.swift
[23/188] Compiling OrderedCollections OrderedSet+Equatable.swift
[24/188] Compiling OrderedCollections OrderedSet+ExpressibleByArrayLiteral.swift
[25/188] Compiling OrderedCollections OrderedSet+Hashable.swift
[26/188] Compiling OrderedCollections OrderedSet+Initializers.swift
[27/188] Compiling OrderedCollections OrderedSet+Insertions.swift
[28/188] Compiling OrderedCollections OrderedSet+CustomStringConvertible.swift
[29/188] Compiling OrderedCollections OrderedSet+Diffing.swift
[30/188] Compiling OrderedCollections _HashTable+Bucket.swift
[31/188] Compiling OrderedCollections _HashTable+BucketIterator.swift
[32/188] Compiling OrderedCollections _HashTable+Constants.swift
[33/188] Compiling OrderedCollections _HashTable+CustomStringConvertible.swift
[34/188] Compiling OrderedCollections _HashTable+Testing.swift
[35/199] Compiling NIOConcurrencyHelpers NIOLock.swift
[36/199] Compiling Logging Locks.swift
[37/199] Emitting module Logging
[41/199] Compiling OrderedCollections OrderedDictionary+Partial MutableCollection.swift
[42/199] Compiling OrderedCollections OrderedDictionary+Partial RangeReplaceableCollection.swift
[43/199] Compiling OrderedCollections OrderedDictionary+Sequence.swift
[44/199] Compiling SystemPackage FilePathSyntax.swift
[45/199] Compiling SystemPackage MachPort.swift
[46/199] Compiling SystemPackage PlatformString.swift
[47/199] Compiling SystemPackage SystemString.swift
[48/199] Compiling SystemPackage FileHelpers.swift
[52/199] Compiling OrderedCollections RandomAccessCollection+Offsets.swift
[53/199] Compiling OrderedCollections _UnsafeBitset.swift
[54/199] Compiling Crypto ArbitraryPrecisionInteger_boring.swift
[55/199] Compiling Crypto CryptoKitErrors_boring.swift
[56/199] Compiling Crypto FiniteFieldArithmeticContext_boring.swift
[57/199] Compiling Crypto RNG_boring.swift
[58/199] Compiling DequeModule _UnsafeWrappedBuffer.swift
[59/199] Compiling OrderedCollections OrderedSet+Partial SetAlgebra+Operations.swift
[60/199] Compiling OrderedCollections OrderedSet+Codable.swift
[61/199] Compiling OrderedCollections OrderedSet+CustomDebugStringConvertible.swift
[62/199] Compiling OrderedCollections OrderedSet+Partial MutableCollection.swift
[63/199] Compiling OrderedCollections OrderedSet+Partial RangeReplaceableCollection.swift
[64/199] Compiling OrderedCollections OrderedSet+Partial SetAlgebra+Basics.swift
[68/199] Compiling OrderedCollections OrderedSet+CustomReflectable.swift
[73/199] Compiling OrderedCollections OrderedDictionary+Initializers.swift
[74/199] Compiling OrderedCollections OrderedDictionary+Invariants.swift
[75/199] Compiling OrderedCollections OrderedSet+Invariants.swift
[76/202] Compiling _NIOBase64 Base64.swift
[77/202] Emitting module _NIOBase64
[78/202] Compiling Crypto Curve25519.swift
[79/202] Compiling Crypto Ed25519.swift
[80/202] Compiling Crypto NISTCurvesKeys.swift
[81/202] Compiling Crypto X25519Keys.swift
[82/202] Compiling Crypto SymmetricKeys.swift
[83/202] Compiling Crypto HMAC.swift
[84/202] Compiling Crypto MACFunctions.swift
[85/202] Compiling OrderedCollections OrderedSet+Partial SetAlgebra+Predicates.swift
[86/202] Compiling OrderedCollections OrderedSet+RandomAccessCollection.swift
[87/202] Compiling OrderedCollections OrderedSet+ReserveCapacity.swift
[88/202] Compiling OrderedCollections OrderedSet+SubSequence.swift
[89/202] Compiling OrderedCollections OrderedSet+Testing.swift
[95/202] Compiling OrderedCollections OrderedSet+UnorderedView.swift
[96/202] Compiling OrderedCollections OrderedSet+UnstableInternals.swift
[97/202] Compiling OrderedCollections OrderedSet.swift
[101/202] Compiling NIOConcurrencyHelpers lock.swift
[102/202] Emitting module RealModule
[103/202] Compiling NIOConcurrencyHelpers NIOAtomic.swift
[104/202] Emitting module Crypto
[105/202] Compiling _NIODataStructures Heap.swift
[106/202] Compiling _NIODataStructures PriorityQueue.swift
[107/202] Compiling _NIODataStructures _TinyArray.swift
[108/202] Compiling NIOConcurrencyHelpers NIOLockedValueBox.swift
[109/202] Compiling NIOConcurrencyHelpers atomics.swift
[110/202] Emitting module _NIODataStructures
[111/202] Emitting module CoreMetrics
[112/202] Emitting module NIOConcurrencyHelpers
[117/242] Compiling Algorithms Combinations.swift
[118/242] Compiling Algorithms Compacted.swift
[119/242] Compiling Algorithms Cycle.swift
[120/242] Compiling Algorithms Indexed.swift
[128/242] Compiling SystemPackage Util+StringArray.swift
[129/242] Compiling SystemPackage Util.swift
[130/242] Compiling SystemPackage UtilConsumers.swift
[131/242] Compiling Algorithms Joined.swift
[132/242] Compiling Algorithms Reductions.swift
[133/242] Compiling Algorithms Rotate.swift
[134/242] Compiling Algorithms AdjacentPairs.swift
[135/242] Compiling Algorithms Chain.swift
[136/242] Compiling Algorithms FlattenCollection.swift
[137/242] Compiling Algorithms Suffix.swift
[138/242] Compiling Algorithms Trim.swift
[141/242] Compiling Algorithms Chunked.swift
[142/242] Compiling Algorithms Split.swift
[143/242] Compiling Algorithms Stride.swift
[144/242] Compiling Algorithms MinMax.swift
[145/242] Compiling Algorithms Partition.swift
[146/242] Compiling Algorithms Permutations.swift
[147/242] Compiling Algorithms Product.swift
[148/242] Compiling Algorithms RandomSample.swift
[149/242] Compiling Algorithms EitherSequence.swift
[150/242] Compiling Algorithms FirstNonNil.swift
[159/242] Compiling Logging LogHandler.swift
[160/242] Compiling Logging Logging.swift
[165/242] Compiling Algorithms Intersperse.swift
[166/242] Compiling CoreMetrics Locks.swift
[167/242] Compiling CoreMetrics Metrics.swift
[171/277] Compiling Atomics PointerConformances.swift
[172/277] Compiling Atomics Primitives.native.swift
[173/278] Emitting module DequeModule
[174/278] Emitting module SystemPackage
[180/278] Compiling ConsoleKitTerminal Console+Ask.swift
[181/278] Compiling ConsoleKitTerminal Console+Choose.swift
[182/278] Compiling ConsoleKitTerminal ActivityBar.swift
[183/278] Compiling ConsoleKitTerminal ActivityIndicator.swift
[184/278] Compiling ConsoleKitTerminal ActivityIndicatorRenderer.swift
[185/278] Compiling ConsoleKitTerminal ActivityIndicatorState.swift
[186/278] Compiling ConsoleKitTerminal CustomActivity.swift
[187/278] Compiling ConsoleKitTerminal LoadingBar.swift
[188/278] Compiling ConsoleKitTerminal Console+Confirm.swift
[189/278] Compiling ConsoleKitTerminal ANSI.swift
[190/278] Compiling ConsoleKitTerminal Console.swift
[191/278] Compiling ConsoleKitTerminal Terminal.swift
[192/278] Compiling ConsoleKitTerminal readpassphrase_linux.swift
[193/278] Compiling ConsoleKitTerminal AnySendableHashable.swift
[194/278] Compiling ConsoleKitTerminal ConsoleClear.swift
[195/278] Compiling ConsoleKitTerminal Console+Input.swift
[196/278] Compiling ConsoleKitTerminal Console+Center.swift
[197/278] Compiling ConsoleKitTerminal Console+Output.swift
[198/278] Compiling Crypto SafeCompare_boring.swift
[199/278] Compiling Crypto Zeroization_boring.swift
[200/278] Compiling Crypto PrettyBytes.swift
[201/278] Compiling Crypto SafeCompare.swift
[202/278] Compiling Crypto SecureBytes.swift
[203/278] Compiling Crypto Zeroization.swift
[214/278] Compiling Atomics IntegerConformances.swift
[215/278] Compiling ConsoleKitTerminal Console+Clear.swift
[216/278] Compiling ConsoleKitTerminal Console+Ephemeral.swift
[217/278] Compiling ConsoleKitTerminal Console+Wait.swift
[218/278] Compiling ConsoleKitTerminal ConsoleColor.swift
[219/278] Compiling ConsoleKitTerminal ProgressBar.swift
[224/280] Emitting module Metrics
[225/280] Compiling Metrics Metrics.swift
[229/280] Compiling Algorithms Unique.swift
[230/280] Compiling Algorithms Windows.swift
[231/280] Compiling ConsoleKitTerminal ConsoleTextFragment.swift
[235/282] Compiling RoutingKit Router.swift
[236/282] Compiling RoutingKit Parameters.swift
[237/282] Emitting module RoutingKit
[238/282] Compiling RoutingKit AnyRouter.swift
[239/282] Compiling RoutingKit TrieRouter.swift
[240/282] Compiling RoutingKit PathComponent.swift
[244/282] Emitting module ConsoleKitTerminal
[261/282] Compiling Atomics Primitives.shims.swift
[262/282] Emitting module OrderedCollections
[277/282] Compiling ConsoleKitTerminal ConsoleLogger.swift
[278/282] Compiling ConsoleKitTerminal LoggerFragment.swift
[281/282] Emitting module Atomics
[282/284] Compiling Collections Collections.swift
[283/284] Emitting module Collections
[284/368] Emitting module ConsoleKitCommands
[285/368] Compiling NIOCore AsyncChannelOutboundWriter.swift
[286/368] Compiling NIOCore NIOAsyncSequenceProducer.swift
[287/370] Compiling NIOCore AddressedEnvelope.swift
[288/370] Compiling NIOCore AsyncAwaitSupport.swift
[289/370] Compiling NIOCore AsyncChannel.swift
[290/370] Compiling NIOCore AsyncChannelHandler.swift
[291/370] Compiling NIOCore AsyncChannelInboundStream.swift
[292/370] Compiling NIOCore NIOAsyncSequenceProducerStrategies.swift
[293/370] Compiling NIOCore NIOAsyncWriter.swift
[294/370] Compiling NIOCore NIOThrowingAsyncSequenceProducer.swift
[295/370] Compiling NIOCore ByteBuffer-lengthPrefix.swift
[296/370] Compiling NIOCore ByteBuffer-multi-int.swift
[297/370] Compiling NIOCore ByteBuffer-quicBinaryEncodingStrategy.swift
[298/370] Compiling NIOCore ByteBuffer-views.swift
[299/370] Emitting module Algorithms
[300/370] Compiling ConsoleKitCommands String+LevenshteinDistance.swift
[301/370] Compiling ConsoleKitCommands Utilities.swift
[302/370] Compiling NIOCore ByteBuffer-conversions.swift
[303/370] Compiling NIOCore ByteBuffer-core.swift
[304/370] Compiling NIOCore BSDSocketAPI.swift
[305/370] Compiling NIOCore ByteBuffer-aux.swift
[306/370] Compiling NIOCore ByteBuffer-binaryEncodedLengthPrefix.swift
[307/370] Compiling NIOCore ByteBuffer-hex.swift
[308/370] Compiling NIOCore ByteBuffer-int.swift
[309/370] Compiling NIOCore GlobalSingletons.swift
[310/370] Compiling NIOCore IO.swift
[311/370] Compiling NIOCore IOData.swift
[312/370] Compiling NIOCore IPProtocol.swift
[313/370] Compiling NIOCore IntegerBitPacking.swift
[314/370] Compiling NIOCore IntegerTypes.swift
[315/370] Compiling NIOCore Interfaces.swift
[316/376] Compiling NIOCore Linux.swift
[317/376] Compiling NIOCore MarkedCircularBuffer.swift
[318/376] Compiling NIOCore MulticastChannel.swift
[319/376] Compiling NIOCore NIOAny.swift
[320/376] Compiling NIOCore NIOCloseOnErrorHandler.swift
[321/376] Compiling NIOCore NIOLoopBound.swift
[322/376] Compiling NIOCore NIOScheduledCallback.swift
[323/376] Compiling NIOCore NIOSendable.swift
[324/376] Compiling NIOCore PointerHelpers.swift
[325/376] Compiling NIOCore RecvByteBufferAllocator.swift
[326/376] Compiling NIOCore SingleStepByteToMessageDecoder.swift
[327/376] Compiling NIOCore SocketAddresses.swift
[328/376] Compiling NIOCore EventLoopFuture+AssumeIsolated.swift
[329/376] Compiling NIOCore EventLoopFuture+Deprecated.swift
[330/376] Compiling NIOCore EventLoopFuture+WithEventLoop.swift
[331/376] Compiling NIOCore EventLoopFuture.swift
[332/376] Compiling NIOCore FileDescriptor.swift
[333/376] Compiling NIOCore FileHandle.swift
[334/376] Compiling NIOCore FileRegion.swift
[335/376] Compiling NIOCore Codec.swift
[336/376] Compiling NIOCore ConvenienceOptionSupport.swift
[337/376] Compiling NIOCore DeadChannel.swift
[338/376] Compiling NIOCore DispatchQueue+WithFuture.swift
[339/376] Compiling NIOCore EventLoop+Deprecated.swift
[340/376] Compiling NIOCore EventLoop+SerialExecutor.swift
[341/376] Compiling NIOCore EventLoop.swift
[342/378] Emitting module ConsoleKit
[343/378] Compiling ConsoleKit Exports.swift
[344/378] Compiling NIOCore SocketOptionProvider.swift
[345/378] Compiling NIOCore SystemCallHelpers.swift
[346/378] Compiling NIOCore TimeAmount+Duration.swift
[347/378] Compiling NIOCore TypeAssistedChannelHandler.swift
[348/378] Compiling NIOCore UniversalBootstrapSupport.swift
[349/378] Compiling NIOCore Utilities.swift
[352/378] Compiling NIOCore ChannelHandlers.swift
[353/378] Compiling NIOCore ChannelInvoker.swift
[354/378] Compiling NIOCore ChannelOption.swift
[355/378] Compiling NIOCore ChannelPipeline.swift
[356/378] Compiling NIOCore CircularBuffer.swift
[378/378] Emitting module NIOCore
[379/432] Compiling NIOEmbedded AsyncTestingEventLoop.swift
[380/432] Compiling NIOEmbedded AsyncTestingChannel.swift
[381/432] Emitting module NIOEmbedded
[382/432] Compiling NIOEmbedded Embedded.swift
[383/432] Compiling NIOPosix PendingWritesManager.swift
[384/432] Compiling NIOPosix PipeChannel.swift
[385/432] Compiling NIOPosix PipePair.swift
[386/432] Compiling NIOPosix PointerHelpers.swift
[387/432] Compiling NIOPosix Pool.swift
[388/437] Compiling NIOPosix Selectable.swift
[389/437] Compiling NIOPosix SelectableChannel.swift
[390/437] Compiling NIOPosix SelectableEventLoop.swift
[391/437] Compiling NIOPosix SelectorEpoll.swift
[392/437] Compiling NIOPosix SelectorGeneric.swift
[393/437] Compiling NIOPosix BSDSocketAPICommon.swift
[394/437] Compiling NIOPosix BSDSocketAPIPosix.swift
[395/437] Compiling NIOPosix BSDSocketAPIWindows.swift
[396/437] Compiling NIOPosix BaseSocket.swift
[397/437] Compiling NIOPosix BaseSocketChannel+SocketOptionProvider.swift
[398/437] Compiling NIOPosix BaseSocketChannel.swift
[399/437] Emitting module NIOPosix
[400/437] Compiling NIOPosix PooledRecvBufferAllocator.swift
[401/437] Compiling NIOPosix PosixSingletons+ConcurrencyTakeOver.swift
[402/437] Compiling NIOPosix PosixSingletons.swift
[403/437] Compiling NIOPosix RawSocketBootstrap.swift
[404/437] Compiling NIOPosix Resolver.swift
[405/437] Compiling NIOPosix SocketProtocols.swift
[406/437] Compiling NIOPosix System.swift
[407/437] Compiling NIOPosix Thread.swift
[408/437] Compiling NIOPosix ThreadPosix.swift
[409/437] Compiling NIOPosix ThreadWindows.swift
[410/437] Compiling NIOPosix GetaddrinfoResolver.swift
[411/437] Compiling NIOPosix HappyEyeballs.swift
[412/437] Compiling NIOPosix IO.swift
[413/437] Compiling NIOPosix IntegerBitPacking.swift
[414/437] Compiling NIOPosix IntegerTypes.swift
[415/437] Compiling NIOPosix Linux.swift
[416/437] Compiling NIOPosix BaseStreamSocketChannel.swift
[417/437] Compiling NIOPosix Bootstrap.swift
[418/437] Compiling NIOPosix ControlMessage.swift
[419/437] Compiling NIOPosix DatagramVectorReadManager.swift
[420/437] Compiling NIOPosix Errors+Any.swift
[421/437] Compiling NIOPosix FileDescriptor.swift
[422/437] Compiling NIOPosix LinuxCPUSet.swift
[423/437] Compiling NIOPosix LinuxUring.swift
[424/437] Compiling NIOPosix MultiThreadedEventLoopGroup.swift
[425/437] Compiling NIOPosix NIOThreadPool.swift
[426/437] Compiling NIOPosix NonBlockingFileIO.swift
[427/437] Compiling NIOPosix PendingDatagramWritesManager.swift
[428/437] Compiling NIOPosix SelectorKqueue.swift
[429/437] Compiling NIOPosix SelectorUring.swift
[430/437] Compiling NIOPosix ServerSocket.swift
[431/437] Compiling NIOPosix Socket.swift
[432/437] Compiling NIOPosix SocketChannel.swift
[433/437] Compiling NIOPosix UnsafeTransfer.swift
[434/437] Compiling NIOPosix Utilities.swift
[435/437] Compiling NIOPosix VsockAddress.swift
[436/437] Compiling NIOPosix VsockChannelEvents.swift
[437/437] Compiling NIOPosix resource_bundle_accessor.swift
[438/473] Compiling NIO Exports.swift
[439/473] Emitting module NIO
[440/534] Compiling NIOSOCKS SelectedAuthenticationMethod.swift
[441/534] Compiling NIOSOCKS ClientStateMachine.swift
[442/535] Compiling NIOSOCKS SOCKSResponse.swift
[443/535] Compiling NIOSOCKS Errors.swift
[444/535] Compiling NIOSOCKS Helpers.swift
[445/535] Compiling NIOSOCKS Messages.swift
[446/535] Compiling NIOSOCKS SOCKSRequest.swift
[447/551] Compiling AsyncKit EventLoopGroup+Concurrency.swift
[448/551] Compiling AsyncKit EventLoopConnectionPool.swift
[449/551] Compiling AsyncKit EventLoopGroupConnectionPool.swift
[450/551] Compiling AsyncKit EventLoop+Concurrency.swift
[451/553] Compiling GraphQL Values.swift
[452/553] Compiling GraphQL Codable+Extensions.swift
[453/553] Compiling GraphQL GraphQL.swift
[454/553] Compiling GraphQL GraphQLRequest.swift
[455/612] Compiling GraphQL SyntaxError.swift
[456/612] Compiling GraphQL Execute.swift
[457/612] Compiling GraphQL GraphQLError.swift
[458/612] Compiling GraphQL LocatedError.swift
[459/612] Emitting module NIOSOCKS
[460/612] Compiling NIOHTTP1 NIOTypedHTTPServerUpgradeHandler.swift
[461/612] Compiling NIOSOCKS ServerStateMachine.swift
[462/613] Compiling NIOTLS TLSEvents.swift
[463/613] Compiling NIOTLS ProtocolNegotiationHandlerStateMachine.swift
[464/613] Compiling NIOTLS ApplicationProtocolNegotiationHandler.swift
[465/613] Compiling NIOTLS NIOTypedApplicationProtocolNegotiationHandler.swift
[466/613] Compiling NIOTLS SNIHandler.swift
[467/613] Emitting module NIOTLS
[468/613] Emitting module _NIOFileSystem
[469/613] Compiling NIOHTTP1 NIOTypedHTTPClientUpgraderStateMachine.swift
[470/613] Compiling GraphQL ProvidedRequiredArgumentsRule.swift
[471/613] Compiling GraphQL ScalarLeafsRule.swift
[472/613] Compiling GraphQL KnownDirectivesRule.swift
[473/613] Compiling GraphQL KnownFragmentNamesRule.swift
[474/613] Compiling GraphQL PossibleFragmentSpreadsRule.swift
[476/613] Compiling GraphQL NoUnusedFragmentsRule.swift
[477/613] Compiling GraphQL NoUnusedVariablesRule.swift
[478/613] Compiling GraphQL UniqueFragmentNamesRule.swift
[479/613] Compiling GraphQL FragmentsOnCompositeTypesRule.swift
[480/613] Compiling GraphQL KnownArgumentNamesRule.swift
[482/613] Compiling GraphQL UniqueArgumentNamesRule.swift
[483/613] Compiling GraphQL UniqueDirectivesPerLocationRule.swift
[485/613] Compiling GraphQL DispatchQueueInstrumentationWrapper.swift
[488/615] Compiling AsyncKit Optional+StrictMap.swift
[489/615] Compiling AsyncKit Exports.swift
[490/642] Compiling NIOSSL NIOSSLHandler.swift
[491/642] Compiling NIOSSL SafeCompare.swift
[492/642] Compiling NIOSSL Zeroization.swift
[493/642] Compiling NIOSSL SSLInit.swift
[494/642] Compiling NIOSSL SSLPKCS12Bundle.swift
[495/642] Compiling NIOSSL SSLPrivateKey.swift
[496/642] Compiling NIOSSL ByteBufferBIO.swift
[497/642] Compiling NIOFoundationCompat JSONSerialization+ByteBuffer.swift
[498/642] Compiling NIOFoundationCompat ByteBuffer-foundation.swift
[499/642] Compiling NIOFoundationCompat Codable+ByteBuffer.swift
[500/642] Emitting module NIOFoundationCompat
[501/642] Compiling NIOHTTP1 NIOTypedHTTPServerUpgraderStateMachine.swift
[502/642] Compiling GraphQL MapCoder.swift
[503/642] Compiling GraphQL MapSerialization.swift
[504/642] Compiling GraphQL Number.swift
[505/642] Compiling GraphQL AST.swift
[506/642] Compiling GraphQL BlockString.swift
[507/642] Compiling GraphQL CharacterClasses.swift
[508/642] Compiling GraphQL Kinds.swift
[509/642] Compiling NIOSSL SubjectAlternativeName.swift
[510/642] Compiling NIOSSL NIOSSLSecureBytes.swift
[511/642] Compiling NIOSSL RNG.swift
[512/642] Compiling GraphQL Lexer.swift
[513/642] Compiling GraphQL Location.swift
[514/642] Compiling GraphQL Parser.swift
[515/642] Emitting module NIOHTTP1
[516/642] Compiling NIOSSL NIOSSLServerHandler.swift
[517/642] Compiling NIOSSL ObjectIdentifier.swift
[518/664] Compiling NIOSSL SSLContext.swift
[519/664] Compiling NIOSSL SSLErrors.swift
[520/664] Compiling NIOTransportServices NIOTSConnectionChannel.swift
[521/664] Compiling NIOTransportServices NIOTSErrors.swift
[522/664] Compiling NIOTransportServices NIOTSConnectionBootstrap.swift
[523/664] Compiling NIOTransportServices NIOTSNetworkEvents.swift
[524/664] Compiling NIOTransportServices NIOTSDatagramListenerChannel.swift
[525/664] Compiling NIOTransportServices NIOFilterEmptyWritesHandler.swift
[526/664] Compiling NIOTransportServices NIOTSDatagramChannel.swift
[527/664] Compiling NIOTransportServices NIOTSDatagramListener.swift
[528/664] Compiling NIOTransportServices NIOTSBootstraps.swift
[529/664] Compiling NIOTransportServices NIOTSChannelOptions.swift
[530/664] Compiling NIOTransportServices AcceptHandler.swift
[531/664] Compiling NIOTransportServices NIOTSDatagramBootstrap.swift
[534/732] Compiling NIOExtras RequestResponseWithIDHandler.swift
[535/733] Compiling NIOHPACK IndexedHeaderTable.swift
[536/733] Compiling NIOHPACK IntegerCoding.swift
[537/734] Compiling NIOWebSocket WebSocketFrameEncoder.swift
[538/734] Compiling NIOWebSocket WebSocketFrameDecoder.swift
[539/734] Compiling NIOWebSocket WebSocketOpcode.swift
[540/735] Compiling MultipartKit BasicCodingKey.swift
[541/735] Compiling MultipartKit MultipartError.swift
[542/735] Compiling MultipartKit Exports.swift
[543/735] Compiling _NIOFileSystemFoundationCompat Date+FileInfo.swift
[544/737] Compiling NIOHTTPCompression HTTPResponseDecompressor.swift
[545/737] Compiling NIOHTTPCompression HTTPRequestCompressor.swift
[546/737] Compiling NIOHTTPCompression HTTPRequestDecompressor.swift
[547/737] Compiling NIOHTTPCompression HTTPCompression.swift
[548/737] Compiling NIOHTTPCompression HTTPDecompression.swift
[549/737] Compiling NIOHTTPCompression HTTPResponseCompressor.swift
[550/737] Emitting module NIOHTTPCompression
[551/737] Emitting module _NIOFileSystemFoundationCompat
[552/737] Compiling _NIOFileSystemFoundationCompat Data+FileSystem.swift
[553/737] Compiling MultipartKit MultipartPartConvertible.swift
[554/737] Compiling MultipartKit FormDataEncoder.SingleValueContainer.swift
[555/737] Compiling MultipartKit FormDataEncoder.UnkeyedContainer.swift
[556/737] Compiling MultipartKit MultipartFormData.swift
[557/737] Compiling NIOTransportServices NIOTSEventLoop.swift
[558/737] Compiling NIOTransportServices NIOTSEventLoopGroup.swift
[559/737] Compiling MultipartKit MultipartPart.swift
[561/737] Compiling MultipartKit FormDataEncoder.Encoder.swift
[562/737] Compiling MultipartKit FormDataEncoder.KeyedContainer.swift
[563/737] Compiling MultipartKit FormDataDecoder.UnkeyedContainer.swift
[564/737] Compiling MultipartKit FormDataDecoder.swift
[567/739] Compiling NIOWebSocket NIOWebSocketServerUpgrader.swift
[568/739] Compiling NIOWebSocket WebSocketErrorCodes.swift
[569/739] Compiling NIOWebSocket SHA1.swift
[570/739] Compiling NIOWebSocket WebSocketFrame.swift
[571/739] Emitting module NIOSSL
[575/739] Compiling NIOWebSocket NIOWebSocketFrameAggregator.swift
[576/739] Compiling NIOWebSocket NIOWebSocketClientUpgrader.swift
[577/739] Emitting module NIOWebSocket
[578/739] Compiling NIOHPACK HuffmanCoding.swift
[579/739] Compiling NIOHPACK HuffmanTables.swift
[580/739] Compiling NIOHPACK HeaderTables.swift
[581/739] Compiling NIOHPACK HPACKHeader.swift
[582/739] Compiling NIOHPACK StaticHeaderTable.swift
[583/739] Compiling NIOHPACK HPACKErrors.swift
[584/739] Compiling NIOHPACK HPACKEncoder.swift
[585/739] Emitting module NIOHPACK
[588/739] Compiling NIOWebSocket WebSocketProtocolErrorHandler.swift
[589/741] Compiling MultipartKit FormDataDecoder.KeyedContainer.swift
[590/741] Compiling MultipartKit FormDataDecoder.SingleValueContainer.swift
[594/741] Compiling MultipartKit FormDataDecoder.Decoder.swift
[595/741] Compiling MultipartKit FormDataEncoder.swift
[596/741] Compiling MultipartKit Storage.swift
[597/741] Emitting module NIOExtras
[598/741] Compiling GraphQL TypeFromAST.swift
[599/741] Compiling GraphQL TypeInfo.swift
[600/741] Compiling GraphQL ValueFromAST.swift
[601/741] Compiling GraphQL ValueFromASTUntyped.swift
[602/741] Compiling GraphQL NoDeprecatedCustomRule.swift
[603/741] Compiling GraphQL NoSchemaIntrospectionCustomRule.swift
[604/741] Compiling GraphQL ExecutableDefinitionsRule.swift
[605/741] Compiling GraphQL FieldsOnCorrectTypeRule.swift
[606/741] Compiling GraphQL Scalars.swift
[607/741] Compiling GraphQL Schema.swift
[608/741] Compiling GraphQL ASTFromValue.swift
[609/741] Compiling GraphQL AssertValidName.swift
[610/741] Compiling GraphQL IsValidValue.swift
[611/741] Compiling GraphQL Keyable.swift
[612/741] Compiling GraphQL NIO+Extensions.swift
[613/741] Compiling GraphQL TypeComparators.swift
[614/749] Compiling NIOTransportServices TCPOptions+SocketChannelOption.swift
[615/749] Compiling NIOTransportServices UDPOptions+SocketChannelOption.swift
[632/749] Emitting module MultipartKit
[634/749] Compiling MultipartKit MultipartParser.swift
[635/751] Compiling NIOFileSystem Exports.swift
[636/751] Emitting module NIOFileSystem
[646/811] Compiling NIOHTTP2 OutboundFrameBuffer.swift
[647/811] Compiling NIOHTTP2 HPACKHeaders+Validation.swift
[648/811] Compiling NIOHTTP2 HTTP2ChannelHandler+InboundStreamMultiplexer.swift
[649/811] Compiling NIOHTTP2 ConcurrentStreamBuffer.swift
[650/811] Compiling NIOHTTP2 ControlFrameBuffer.swift
[651/811] Compiling NIOHTTP2 OutboundFlowControlBuffer.swift
[652/811] Compiling NIOHTTP2 HTTP2UserEvents.swift
[653/811] Compiling NIOHTTP2 InboundEventBuffer.swift
[654/811] Compiling NIOHTTP2 InboundWindowManager.swift
[655/811] Compiling NIOHTTP2 MultiplexerAbstractChannel.swift
[656/811] Compiling NIOHTTP2 Error+Any.swift
[657/811] Compiling NIOHTTP2 SendAndReceiveGoawayState.swift
[658/811] Compiling NIOHTTP2 StateMachineResult.swift
[659/811] Compiling NIOHTTP2 ContentLengthVerifier.swift
[660/811] Compiling NIOHTTP2 ReceivingRstStreamState.swift
[661/811] Compiling NIOHTTP2 ReceivingWindowUpdateState.swift
[662/811] Compiling NIOHTTP2 MaySendFrames.swift
[663/811] Compiling NIOHTTP2 DOSHeuristics.swift
[664/811] Compiling NIOHTTP2 HTTP2StreamMultiplexer.swift
[665/811] Compiling NIOHTTP2 HTTP2ToHTTP1Codec.swift
[666/811] Emitting module NIOTransportServices
[679/811] Compiling NIOHTTP2 LocallyQuiescingState.swift
[680/811] Compiling NIOHTTP2 QuiescingState.swift
[681/811] Compiling NIOHTTP2 RemotelyQuiescingState.swift
[684/811] Emitting module GraphQL
[685/811] Compiling NIOHTTP2 SendingPushPromiseState.swift
[686/811] Compiling NIOHTTP2 HTTP2FlowControlWindow.swift
[687/811] Emitting module AsyncKit
[688/811] Compiling NIOHTTP2 SendingRstStreamState.swift
[689/811] Compiling NIOHTTP2 SendingWindowUpdateState.swift
[690/811] Compiling NIOHTTP2 HTTP2SettingsState.swift
[691/811] Compiling NIOHTTP2 HasExtendedConnectSettings.swift
[692/811] Compiling NIOHTTP2 HasFlowControlWindows.swift
[693/811] Compiling NIOHTTP2 HasLocalSettings.swift
[694/811] Compiling NIOHTTP2 HasRemoteSettings.swift
[695/817] Compiling NIOExtras WritePCAPHandler.swift
[696/817] Compiling GraphQL UniqueInputFieldNamesRule.swift
[697/817] Compiling GraphQL UniqueOperationNamesRule.swift
[698/817] Compiling GraphQL UniqueVariableNamesRule.swift
[699/817] Compiling GraphQL ValuesOfCorrectTypeRule.swift
[700/817] Compiling GraphQL VariablesAreInputTypesRule.swift
[701/817] Compiling GraphQL VariablesInAllowedPositionRule.swift
[702/817] Compiling GraphQL SpecifiedRules.swift
[703/817] Compiling GraphQL Validate.swift
[711/825] Compiling NIOHTTP2 StreamChannelFlowController.swift
[712/825] Compiling NIOHTTP2 StreamChannelList.swift
[713/825] Compiling NIOHTTP2 StreamMap.swift
[714/825] Compiling NIOHTTP2 StreamStateMachine.swift
[715/825] Compiling NIOHTTP2 UnsafeTransfer.swift
[716/825] Compiling NIOHTTP2 WatermarkedFlowController.swift
[717/825] Compiling WebSocketKit WebSocketClient.swift
[718/825] Compiling WebSocketKit WebSocketHandler.swift
[719/825] Compiling WebSocketKit WebSocket+Connect.swift
[720/825] Compiling WebSocketKit HTTPUpgradeRequestHandler.swift
[721/825] Compiling WebSocketKit Exports.swift
[722/825] Compiling WebSocketKit WebSocket+Concurrency.swift
[723/825] Emitting module WebSocketKit
[724/825] Compiling WebSocketKit WebSocket.swift
[725/825] Compiling NIOHTTP2 HTTP2Settings.swift
[726/825] Compiling NIOHTTP2 HTTP2Stream.swift
[727/825] Compiling NIOHTTP2 HTTP2StreamChannel+OutboundStreamMultiplexer.swift
[728/825] Compiling NIOHTTP2 HTTP2StreamChannel.swift
[729/825] Compiling NIOHTTP2 HTTP2StreamDelegate.swift
[730/825] Compiling NIOHTTP2 HTTP2StreamID.swift
[731/825] Compiling NIOHTTP2 HTTP2ChannelHandler+InlineStreamMultiplexer.swift
[732/825] Compiling NIOHTTP2 HTTP2ChannelHandler.swift
[733/825] Compiling NIOHTTP2 HTTP2CommonInboundStreamMultiplexer.swift
[734/825] Compiling NIOHTTP2 HTTP2ConnectionStateChange.swift
[735/825] Compiling NIOHTTP2 HTTP2Error.swift
[736/825] Compiling NIOHTTP2 HTTP2ErrorCode.swift
[737/825] Compiling NIOHTTP2 ConnectionStateMachine.swift
[738/825] Compiling NIOHTTP2 ConnectionStreamsState.swift
[739/825] Compiling NIOHTTP2 MayReceiveFrames.swift
[740/825] Compiling NIOHTTP2 ReceivingDataState.swift
[741/825] Compiling NIOHTTP2 ReceivingGoAwayState.swift
[742/825] Compiling NIOHTTP2 ReceivingHeadersState.swift
[743/825] Compiling NIOHTTP2 ReceivingPushPromiseState.swift
[747/825] Compiling NIOHTTP2 SendingDataState.swift
[748/825] Compiling NIOHTTP2 SendingGoawayState.swift
[749/825] Compiling NIOHTTP2 SendingHeadersState.swift
[765/825] Compiling NIOHTTP2 HTTP2Frame.swift
[766/825] Compiling NIOHTTP2 HTTP2FrameEncoder.swift
[767/825] Compiling NIOHTTP2 HTTP2FrameParser.swift
[768/825] Compiling NIOHTTP2 HTTP2PingData.swift
[769/825] Compiling NIOHTTP2 HTTP2PipelineHelpers.swift
[770/825] Emitting module NIOHTTP2
[826/938] Compiling Graphiti Reflection.swift
[827/938] Compiling Graphiti TypeProvider.swift
[828/938] Compiling Graphiti TypeReference.swift
[829/938] Compiling Graphiti Wrappers.swift
[830/938] Compiling Graphiti Enum.swift
[831/938] Compiling Graphiti Service.swift
[832/938] Compiling Graphiti Field.swift
[833/944] Compiling Graphiti SubscribeField.swift
[834/944] Compiling Graphiti SubscribeResolve.swift
[835/944] Compiling Graphiti Subscription.swift
[836/944] Compiling Graphiti Type.swift
[837/944] Compiling Graphiti Component.swift
[838/944] Compiling Graphiti ComponentBuilder.swift
[839/944] Compiling Graphiti API.swift
[840/944] Compiling Graphiti Argument.swift
[841/944] Compiling Graphiti ArgumentComponent.swift
[842/944] Compiling Graphiti ArgumentComponentBuilder.swift
[843/944] Compiling Graphiti NoArguments.swift
[844/944] Compiling Graphiti Coders.swift
[845/944] Compiling Graphiti Edge.swift
[846/944] Compiling Graphiti PageInfo.swift
[847/944] Compiling Graphiti BackwardPaginationArguments.swift
[848/944] Compiling Graphiti ForwardPaginationArguments.swift
[849/944] Compiling Graphiti PaginationArguments.swift
[850/944] Compiling Graphiti NoContext.swift
[851/944] Compiling Graphiti Any.swift
[852/944] Compiling Graphiti Entity.swift
[853/944] Compiling Graphiti Key.swift
[854/944] Compiling Graphiti KeyComponent.swift
[855/944] Compiling Graphiti Type+Key.swift
[856/944] Compiling Graphiti Queries.swift
[857/944] Compiling Graphiti Interface.swift
[858/944] Compiling Graphiti Mutation.swift
[859/944] Compiling Graphiti Query.swift
[860/944] Compiling Graphiti Scalar.swift
[861/944] Compiling Graphiti Schema.swift
[862/944] Compiling Graphiti SchemaTypeProvider.swift
[863/949] Emitting module Graphiti
[866/949] Compiling Graphiti TypeComponent.swift
[867/949] Compiling Graphiti TypeComponentBuilder.swift
[868/949] Compiling Graphiti Connection.swift
[869/949] Compiling Graphiti ConnectionType.swift
[870/949] Compiling Graphiti FieldComponent.swift
[871/949] Compiling Graphiti FieldComponentBuilder.swift
[872/949] Compiling Graphiti AsyncResolve.swift
[873/949] Compiling Graphiti ConcurrentResolve.swift
[874/949] Compiling Graphiti PartialSchema.swift
[875/949] Compiling Graphiti SchemaBuilder.swift
[876/949] Compiling Graphiti SimpleAsyncResolve.swift
[877/949] Compiling Graphiti SyncResolve.swift
[878/949] Compiling Graphiti Input.swift
[879/949] Compiling Graphiti InputField.swift
[880/949] Compiling Graphiti InputFieldComponent.swift
[881/949] Compiling Graphiti InputFieldComponentBuilder.swift
[882/949] Compiling Graphiti AnyType.swift
[883/949] Emitting module AsyncHTTPClient
[908/949] Compiling Graphiti Value.swift
[909/949] Compiling Graphiti ValueBuilder.swift
[910/949] Compiling AsyncHTTPClient Singleton.swift
[911/949] Compiling AsyncHTTPClient StringConvertibleInstances.swift
[912/949] Compiling AsyncHTTPClient UnsafeTransfer.swift
[913/949] Compiling AsyncHTTPClient Utils.swift
[917/949] Compiling Graphiti Types.swift
[918/949] Compiling Graphiti Union.swift
[919/949] Compiling Graphiti NoIntrospectionRule.swift
[950/1140] Compiling Vapor JSONCoders+Content.swift
[951/1140] Compiling Vapor PlaintextDecoder.swift
[952/1140] Compiling Vapor PlaintextEncoder.swift
[953/1140] Compiling Vapor URLQueryCoders.swift
[954/1140] Compiling Vapor URLQueryContainer.swift
[955/1140] Compiling Vapor Core.swift
[956/1140] Compiling Vapor Running.swift
[957/1140] Compiling Vapor CORSMiddleware+AllowOriginSetting.swift
[958/1140] Compiling Vapor CORSMiddleware+Configuration+exposedHeaders.swift
[959/1140] Compiling Vapor DotEnvFile+load.swift
[960/1140] Compiling Vapor Routes+caseInsenstive.swift
[961/1140] Compiling Vapor Validatable+validate.swift
[962/1140] Compiling Vapor Environment+Process.swift
[963/1140] Compiling Vapor Environment+Secret.swift
[964/1140] Compiling Vapor Environment.swift
[965/1140] Compiling Vapor Abort.swift
[966/1140] Compiling Vapor AbortError.swift
[967/1140] Compiling Vapor DebuggableError.swift
[968/1140] Compiling Vapor Demangler.swift
[969/1140] Compiling Vapor ErrorSource.swift
[970/1140] Compiling Vapor StackTrace.swift
[971/1161] Compiling Vapor ResponseCompressionMiddleware.swift
[972/1161] Compiling Vapor RouteLoggingMiddleware.swift
[973/1161] Compiling Vapor File+Multipart.swift
[974/1161] Compiling Vapor FormDataDecoder+Content.swift
[975/1161] Compiling Vapor FormDataEncoder+Content.swift
[976/1161] Compiling Vapor Application+Password.swift
[977/1161] Compiling Vapor Application+Passwords.swift
[978/1161] Compiling Vapor AsyncPasswordHasher.swift
[979/1161] Compiling Vapor BcryptHasher.swift
[980/1161] Compiling Vapor PasswordHasher.swift
[981/1161] Compiling Vapor PlaintextHasher.swift
[982/1161] Compiling Vapor Request+Password.swift
[983/1161] Compiling Vapor Redirect.swift
[984/1161] Compiling Vapor Request+Body.swift
[985/1161] Compiling Vapor Request+BodyStream.swift
[986/1161] Compiling Vapor Request.swift
[987/1161] Compiling Vapor Application+Responder.swift
[988/1161] Compiling Vapor DefaultResponder.swift
[989/1161] Compiling Vapor Response+Body.swift
[990/1161] Compiling Vapor Response.swift
[991/1161] Compiling Vapor ResponseCodable.swift
[992/1161] Compiling Vapor Application.swift
[993/1161] Compiling Vapor AuthenticationCache.swift
[994/1161] Compiling Vapor Authenticator.swift
[995/1161] Compiling Vapor BasicAuthorization.swift
[996/1161] Compiling Vapor BearerAuthorization.swift
[997/1161] Compiling Vapor GuardMiddleware.swift
[998/1161] Compiling Vapor RedirectMiddleware.swift
[999/1161] Compiling Vapor SessionAuthenticatable.swift
[1000/1161] Compiling Vapor Bcrypt.swift
[1001/1161] Compiling Vapor Application+Cache.swift
[1002/1161] Compiling Vapor Cache.swift
[1003/1161] Compiling Vapor CacheExpirationTime.swift
[1004/1161] Compiling Vapor MemoryCache.swift
[1005/1161] Compiling Vapor Request+Cache.swift
[1006/1161] Compiling Vapor Application+Clients.swift
[1007/1161] Compiling Vapor Client.swift
[1008/1161] Compiling Vapor ClientRequest.swift
[1009/1161] Compiling Vapor ClientResponse.swift
[1010/1161] Compiling Vapor Request+Client.swift
[1011/1161] Compiling Vapor BootCommand.swift
[1012/1161] Compiling Vapor CommandContext+Application.swift
[1013/1161] Compiling Vapor RoutesCommand.swift
[1014/1161] Compiling Vapor Application+Routes.swift
[1015/1161] Compiling Vapor Parameters+Require.swift
[1016/1161] Compiling Vapor Request+WebSocket.swift
[1017/1161] Compiling Vapor Route.swift
[1018/1161] Compiling Vapor RouteCollection.swift
[1019/1161] Compiling Vapor Routes.swift
[1020/1161] Compiling Vapor RoutesBuilder+Group.swift
[1021/1161] Compiling Vapor RoutesBuilder+Method.swift
[1022/1161] Compiling Vapor RoutesBuilder+Middleware.swift
[1023/1161] Compiling Vapor RoutesBuilder+WebSocket.swift
[1024/1161] Compiling Vapor RoutesBuilder.swift
[1025/1161] Compiling Vapor OTP.swift
[1026/1161] Compiling Vapor Application+Servers.swift
[1027/1161] Compiling Vapor Server.swift
[1028/1161] Compiling Vapor Application+Sessions.swift
[1029/1161] Compiling Vapor MemorySessions.swift
[1030/1161] Compiling Vapor Request+Session.swift
[1031/1161] Compiling Vapor Session.swift
[1032/1161] Compiling Vapor SessionCache.swift
[1033/1161] Compiling Vapor SessionData.swift
[1034/1161] Compiling Vapor SessionDriver.swift
[1035/1161] Compiling Vapor And.swift
[1036/1161] Compiling Vapor Case.swift
[1037/1161] Compiling Vapor CharacterSet.swift
[1038/1161] Compiling Vapor Count.swift
[1039/1161] Compiling Vapor Email.swift
[1040/1161] Compiling Vapor Empty.swift
[1041/1161] Compiling Vapor In.swift
[1042/1161] Compiling Vapor Nil.swift
[1043/1161] Compiling Vapor NilIgnoring.swift
[1044/1161] Compiling Vapor Not.swift
[1045/1161] Compiling Vapor Or.swift
[1046/1161] Compiling Vapor Pattern.swift
[1047/1161] Compiling Vapor Range.swift
[1048/1161] Compiling Vapor URL.swift
[1049/1161] Compiling Vapor Valid.swift
[1050/1161] Compiling Vapor Application+Views.swift
[1051/1161] Compiling Vapor PlaintextRenderer.swift
[1052/1161] Compiling Vapor Request+View.swift
[1053/1161] Compiling Vapor View.swift
[1054/1161] Compiling Vapor ViewRenderer.swift
[1055/1161] Compiling Vapor _Deprecations.swift
[1056/1161] Compiling Vapor HTTPHeaders+ResponseCompression.swift
[1057/1161] Compiling Vapor HTTPHeaders.swift
[1058/1161] Compiling Vapor HTTPMediaType.swift
[1059/1161] Compiling Vapor HTTPMediaTypePreference.swift
[1060/1161] Compiling Vapor Responder.swift
[1061/1161] Compiling Vapor Application+HTTP+Server.swift
[1062/1161] Compiling Vapor HTTPServer.swift
[1063/1161] Compiling Vapor HTTPServerConfiguration+RequestDecompressionConfiguration.swift
[1064/1161] Compiling Vapor HTTPServerConfiguration+ResponseCompressionConfiguration.swift
[1065/1161] Compiling Vapor HTTPServerHandler.swift
[1066/1161] Compiling Vapor HTTPServerRequestDecoder.swift
[1067/1161] Compiling Vapor HTTPServerResponseEncoder.swift
[1068/1161] Compiling Vapor HTTPServerUpgradeHandler.swift
[1069/1161] Compiling Vapor Logger+Report.swift
[1070/1161] Compiling Vapor LoggingSystem+Environment.swift
[1071/1161] Compiling Vapor Application+Middleware.swift
[1072/1161] Compiling Vapor CORSMiddleware.swift
[1073/1161] Compiling Vapor ErrorMiddleware.swift
[1074/1161] Compiling Vapor FileMiddleware.swift
[1075/1161] Compiling Vapor Middleware.swift
[1076/1161] Compiling Vapor MiddlewareConfiguration.swift
[1077/1161] Compiling Vapor Exports.swift
[1078/1161] Compiling Vapor Application+HTTP.swift
[1079/1161] Compiling Vapor BasicResponder.swift
[1080/1161] Compiling Vapor BodyStream.swift
[1081/1161] Compiling Vapor Application+HTTP+Client.swift
[1082/1161] Compiling Vapor EventLoopHTTPClient.swift
[1083/1161] Compiling Vapor EndpointCache.swift
[1084/1161] Compiling Vapor HTTPMethod+String.swift
[1085/1161] Compiling Vapor HTTPStatus.swift
[1086/1161] Compiling Vapor HTTPCookies.swift
[1087/1161] Compiling Vapor HTTPHeaderCacheControl.swift
[1088/1161] Compiling Vapor HTTPHeaderExpires.swift
[1089/1161] Compiling Vapor HTTPHeaderLastModified.swift
[1090/1161] Compiling Vapor HTTPHeaders+Cache.swift
[1091/1161] Compiling Vapor HTTPHeaders+Connection.swift
[1092/1161] Compiling Vapor HTTPHeaders+ContentDisposition.swift
[1093/1161] Compiling Vapor HTTPHeaders+ContentRange.swift
[1094/1161] Compiling Vapor HTTPHeaders+Directive.swift
[1095/1161] Compiling Vapor HTTPHeaders+Forwarded.swift
[1096/1161] Compiling Vapor HTTPHeaders+Link.swift
[1097/1161] Compiling Vapor HTTPHeaders+Name.swift
[1098/1161] Compiling Vapor DirectoryConfiguration.swift
[1099/1161] Compiling Vapor DotEnv.swift
[1100/1161] Compiling Vapor Extendable.swift
[1101/1161] Compiling Vapor File.swift
[1102/1161] Compiling Vapor FileIO.swift
[1103/1161] Compiling Vapor LifecycleHandler.swift
[1104/1161] Compiling Vapor OptionalType.swift
[1105/1161] Compiling Vapor RFC1123.swift
[1106/1161] Compiling Vapor SocketAddress+Hostname.swift
[1107/1161] Compiling Vapor Storage.swift
[1108/1161] Compiling Vapor String+IsIPAddress.swift
[1109/1161] Compiling Vapor Thread.swift
[1110/1161] Compiling Vapor URI.swift
[1111/1161] Compiling Vapor RangeResult.swift
[1112/1161] Compiling Vapor Validatable.swift
[1113/1161] Compiling Vapor Validation.swift
[1114/1161] Compiling Vapor ValidationKey.swift
[1115/1161] Compiling Vapor Validations.swift
[1116/1161] Compiling Vapor ValidationsError.swift
[1117/1161] Compiling Vapor Validator.swift
[1118/1161] Compiling Vapor ValidatorResult.swift
[1119/1161] Compiling Vapor ServeCommand.swift
[1120/1161] Compiling Vapor AnyResponse+Concurrency.swift
[1121/1161] Compiling Vapor AsyncBasicResponder.swift
[1122/1161] Compiling Vapor AsyncMiddleware.swift
[1123/1161] Compiling Vapor AsyncPasswordHasher+Concurrency.swift
[1124/1161] Compiling Vapor AsyncSessionDriver.swift
[1125/1161] Compiling Vapor Authentication+Concurrency.swift
[1126/1161] Compiling Vapor Cache+Concurrency.swift
[1127/1161] Compiling Vapor Client+Concurrency.swift
[1128/1161] Compiling Vapor RequestBody+Concurrency.swift
[1129/1161] Compiling Vapor Responder+Concurrency.swift
[1130/1161] Compiling Vapor ResponseCodable+Concurrency.swift
[1131/1161] Compiling Vapor RoutesBuilder+Concurrency.swift
[1132/1161] Compiling Vapor ViewRenderer+Concurrency.swift
[1133/1161] Compiling Vapor WebSocket+Concurrency.swift
[1134/1161] Compiling Vapor ContainerGetPathExecutor.swift
[1135/1161] Compiling Vapor Content.swift
[1136/1161] Compiling Vapor ContentCoders.swift
[1137/1161] Compiling Vapor ContentConfiguration.swift
[1138/1161] Compiling Vapor ContentContainer.swift
[1139/1161] Compiling Vapor JSONCoder+Custom.swift
[1140/1161] Compiling Vapor SessionsConfiguration.swift
[1141/1161] Compiling Vapor SessionsMiddleware.swift
[1142/1161] Compiling Vapor URLEncodedFormData.swift
[1143/1161] Compiling Vapor URLEncodedFormDecoder.swift
[1144/1161] Compiling Vapor URLEncodedFormEncoder.swift
[1145/1161] Compiling Vapor URLEncodedFormError.swift
[1146/1161] Compiling Vapor URLEncodedFormParser.swift
[1147/1161] Compiling Vapor URLEncodedFormSerializer.swift
[1148/1161] Compiling Vapor URLQueryFragmentConvertible.swift
[1149/1161] Compiling Vapor AnyResponse.swift
[1150/1161] Compiling Vapor Array+Random.swift
[1151/1161] Compiling Vapor Base32.swift
[1152/1161] Compiling Vapor Base64.swift
[1153/1161] Compiling Vapor BaseN.swift
[1154/1161] Compiling Vapor BasicCodingKey.swift
[1155/1161] Compiling Vapor ByteCount.swift
[1156/1161] Compiling Vapor Bytes+Hex.swift
[1157/1161] Compiling Vapor Bytes+SecureCompare.swift
[1158/1161] Compiling Vapor Collection+Safe.swift
[1159/1161] Compiling Vapor DataProtocol+Copy.swift
[1160/1161] Compiling Vapor DecoderUnwrapper.swift
[1161/1161] Emitting module Vapor
[1162/1218] 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`.
[1163/1224] Compiling Pioneer Dictionary+SafeOperation.swift
[1164/1224] Compiling Pioneer OrderedDictionary+Dictionary.swift
[1165/1224] Compiling Pioneer Expression.swift
[1166/1224] Compiling Pioneer Actor+Task.swift
[1167/1224] Compiling Pioneer Task+Starvation.swift
[1168/1224] Compiling Pioneer UInt64+Nanoseconds.swift
[1169/1224] Compiling Pioneer Map+Decoder.swift
[1170/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]
[1171/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]
[1172/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]
[1173/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]
[1174/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]
[1175/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]
[1176/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]
[1177/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
[1178/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
[1179/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
[1180/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
[1181/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
[1182/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
[1183/1224] Compiling Pioneer Request+GraphQLRequest.swift
[1184/1224] Compiling Pioneer Request+PathComponent.swift
[1185/1224] Compiling Pioneer Request+WebSocket.swift
[1186/1224] Compiling Pioneer Request+WebsocketContext.swift
[1187/1224] Compiling Pioneer GraphQLResult+Content.swift
[1188/1224] Compiling Pioneer Response+GraphQLError.swift
[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 WebSocket+WebSocketable.swift
[1196/1224] Compiling Pioneer Pioneer+Http.swift
[1197/1224] Compiling Pioneer Pioneer+IDE.swift
[1198/1224] Compiling Pioneer Pioneer+Standalone.swift
[1199/1224] Compiling Pioneer Pioneer+Vapor+Void.swift
[1200/1224] Compiling Pioneer Pioneer+Vapor.swift
[1201/1224] Compiling Pioneer HttpStrategy.swift
[1202/1224] Compiling Pioneer IDE.swift
[1203/1224] Compiling Pioneer Pioneer.swift
[1204/1224] Compiling Pioneer AsyncEventStream.swift
[1205/1224] Compiling Pioneer AsyncPubSub.swift
[1206/1224] Compiling Pioneer Broadcast.swift
[1207/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`.
[1208/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`.
[1209/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`.
[1210/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`.
[1211/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`.
[1212/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`.
[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.72s)
854
6 /Users/admin/builder/spi-builder-workspace/.docs/d-exclaimation/pioneer/1.4.1
✅ Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/d-exclaimation/pioneer/1.4.1
File count: 854
Doc size: 6.0MB
Preparing doc bundle ...
Uploading prod-d-exclaimation-pioneer-1.4.1-ccd8aacb.zip to s3://spi-docs-inbox/prod-d-exclaimation-pioneer-1.4.1-ccd8aacb.zip
Copying... [10%]
Copying... [20%]
Copying... [30%]
Copying... [40%]
Copying... [50%]
Copying... [60%]
Copying... [70%]
Copying... [80%]
Copying... [90%]
Copying... [100%]
Done.