Build Information
Successful build of Pioneer, reference 1.4.1 (210d7d
), with Swift 6.2 (beta) for macOS (SPM) on 22 Jun 2025 17:46:01 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Build Log
52 | guard !Task.isCancelled else { return }
53 | let fut: Future<GraphQL.GraphQLResult> = elem
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncEventStream+Future+GraphQLResult.swift:51:39: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
49 | Task.init {
50 | do {
51 | for try await elem in self {
| `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
52 | guard !Task.isCancelled else { return }
53 | let fut: Future<GraphQL.GraphQLResult> = elem
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncEventStream+Future+GraphQLResult.swift:43:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
41 | /// - next: A callback ran on each element of this sequence.
42 | /// - Returns: The Task used to consume this AsyncSequence
43 | func pipe<ActorType: Actor>(
| `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
44 | to sink: ActorType,
45 | complete: @Sendable @escaping (ActorType) async -> Void,
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:30:43: warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
28 | let task = Task.init {
29 | do {
30 | for try await each in self {
| `- warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
31 | let element: Element = each
32 | continuation.yield(element)
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:30:43: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
28 | let task = Task.init {
29 | do {
30 | for try await each in self {
| `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
31 | let element: Element = each
32 | continuation.yield(element)
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:24:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
22 | /// - Parameters:
23 | /// - onTermination: onTermination callback
24 | func toEventStream(
| `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
25 | onTermination callback: @Sendable @escaping (Termination) -> Void
26 | ) -> EventStream<Element> {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:25:23: warning: capture of non-sendable type 'Self.Type' in an isolated local function; this is an error in the Swift 6 language mode
23 | /// - onTermination: onTermination callback
24 | func toEventStream(
25 | onTermination callback: @Sendable @escaping (Termination) -> Void
| `- warning: capture of non-sendable type 'Self.Type' in an isolated local function; this is an error in the Swift 6 language mode
26 | ) -> EventStream<Element> {
27 | let stream = AsyncThrowingStream<Element, Error> { continuation in
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:63:43: warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
61 | let task = Task.init {
62 | do {
63 | for try await each in self {
| `- warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
64 | let element: Element = each
65 | continuation.yield(element)
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:63:43: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
61 | let task = Task.init {
62 | do {
63 | for try await each in self {
| `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
64 | let element: Element = each
65 | continuation.yield(element)
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:56:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
54 | /// - endValue: Ending value
55 | /// - onTermination: onTermination callback
56 | func toEventStream(
| `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
57 | endValue: @escaping () -> Element,
58 | onTermination callback: @Sendable @escaping (Termination) -> Void
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:58:23: warning: capture of non-sendable type 'Self.Type' in an isolated local function; this is an error in the Swift 6 language mode
56 | func toEventStream(
57 | endValue: @escaping () -> Element,
58 | onTermination callback: @Sendable @escaping (Termination) -> Void
| `- warning: capture of non-sendable type 'Self.Type' in an isolated local function; this is an error in the Swift 6 language mode
59 | ) -> EventStream<Element> {
60 | let stream = AsyncThrowingStream<Element, Error> { continuation in
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:94:60: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
92 | onTermination callback: @Sendable @escaping (Termination) -> Void
93 | ) -> EventStream<Element> {
94 | let stream = AsyncThrowingStream<Element, Error> { continuation in
| `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
95 | let task = Task.init {
96 | do {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:98:43: warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
96 | do {
97 | continuation.yield(initialValue)
98 | for try await each in self {
| `- warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
99 | let element: Element = each
100 | continuation.yield(element)
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:98:43: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
96 | do {
97 | continuation.yield(initialValue)
98 | for try await each in self {
| `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
99 | let element: Element = each
100 | continuation.yield(element)
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:92:23: warning: capture of non-sendable type 'Self.Type' in an isolated local function; this is an error in the Swift 6 language mode
90 | func toEventStream(
91 | initialValue: Element,
92 | onTermination callback: @Sendable @escaping (Termination) -> Void
| `- warning: capture of non-sendable type 'Self.Type' in an isolated local function; this is an error in the Swift 6 language mode
93 | ) -> EventStream<Element> {
94 | let stream = AsyncThrowingStream<Element, Error> { continuation in
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:130:60: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
128 | onTermination callback: @Sendable @escaping (Termination) -> Void
129 | ) -> EventStream<Element> {
130 | let stream = AsyncThrowingStream<Element, Error> { continuation in
| `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
131 | let task = Task.init {
132 | do {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:134:43: warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
132 | do {
133 | continuation.yield(initialValue)
134 | for try await each in self {
| `- warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
135 | let element: Element = each
136 | continuation.yield(element)
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:134:43: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
132 | do {
133 | continuation.yield(initialValue)
134 | for try await each in self {
| `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
135 | let element: Element = each
136 | continuation.yield(element)
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:128:23: warning: capture of non-sendable type 'Self.Type' in an isolated local function; this is an error in the Swift 6 language mode
126 | initialValue: Element,
127 | endValue: @escaping () -> Element,
128 | onTermination callback: @Sendable @escaping (Termination) -> Void
| `- warning: capture of non-sendable type 'Self.Type' in an isolated local function; this is an error in the Swift 6 language mode
129 | ) -> EventStream<Element> {
130 | let stream = AsyncThrowingStream<Element, Error> { continuation in
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:165:60: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
163 | endValue: @escaping () -> Element
164 | ) -> EventStream<Element> {
165 | let stream = AsyncThrowingStream<Element, Error> { continuation in
| `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
166 | let task = Task.init {
167 | do {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:169:43: warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
167 | do {
168 | continuation.yield(initialValue)
169 | for try await each in self {
| `- warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
170 | let element: Element = each
171 | continuation.yield(element)
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:169:43: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
167 | do {
168 | continuation.yield(initialValue)
169 | for try await each in self {
| `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
170 | let element: Element = each
171 | continuation.yield(element)
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:181:18: warning: capture of non-sendable type 'Self.Type' in an isolated local function; this is an error in the Swift 6 language mode
179 |
180 | @Sendable
181 | func onTermination(_: Termination) {
| `- warning: capture of non-sendable type 'Self.Type' in an isolated local function; this is an error in the Swift 6 language mode
182 | task.cancel()
183 | }
[1955/2004] Compiling Pioneer Interval.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncEventStream+Future+GraphQLResult.swift:51:39: warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
49 | Task.init {
50 | do {
51 | for try await elem in self {
| `- warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
52 | guard !Task.isCancelled else { return }
53 | let fut: Future<GraphQL.GraphQLResult> = elem
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncEventStream+Future+GraphQLResult.swift:51:39: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
49 | Task.init {
50 | do {
51 | for try await elem in self {
| `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
52 | guard !Task.isCancelled else { return }
53 | let fut: Future<GraphQL.GraphQLResult> = elem
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncEventStream+Future+GraphQLResult.swift:43:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
41 | /// - next: A callback ran on each element of this sequence.
42 | /// - Returns: The Task used to consume this AsyncSequence
43 | func pipe<ActorType: Actor>(
| `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
44 | to sink: ActorType,
45 | complete: @Sendable @escaping (ActorType) async -> Void,
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:30:43: warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
28 | let task = Task.init {
29 | do {
30 | for try await each in self {
| `- warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
31 | let element: Element = each
32 | continuation.yield(element)
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:30:43: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
28 | let task = Task.init {
29 | do {
30 | for try await each in self {
| `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
31 | let element: Element = each
32 | continuation.yield(element)
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:24:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
22 | /// - Parameters:
23 | /// - onTermination: onTermination callback
24 | func toEventStream(
| `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
25 | onTermination callback: @Sendable @escaping (Termination) -> Void
26 | ) -> EventStream<Element> {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:25:23: warning: capture of non-sendable type 'Self.Type' in an isolated local function; this is an error in the Swift 6 language mode
23 | /// - onTermination: onTermination callback
24 | func toEventStream(
25 | onTermination callback: @Sendable @escaping (Termination) -> Void
| `- warning: capture of non-sendable type 'Self.Type' in an isolated local function; this is an error in the Swift 6 language mode
26 | ) -> EventStream<Element> {
27 | let stream = AsyncThrowingStream<Element, Error> { continuation in
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:63:43: warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
61 | let task = Task.init {
62 | do {
63 | for try await each in self {
| `- warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
64 | let element: Element = each
65 | continuation.yield(element)
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:63:43: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
61 | let task = Task.init {
62 | do {
63 | for try await each in self {
| `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
64 | let element: Element = each
65 | continuation.yield(element)
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:56:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
54 | /// - endValue: Ending value
55 | /// - onTermination: onTermination callback
56 | func toEventStream(
| `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
57 | endValue: @escaping () -> Element,
58 | onTermination callback: @Sendable @escaping (Termination) -> Void
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:58:23: warning: capture of non-sendable type 'Self.Type' in an isolated local function; this is an error in the Swift 6 language mode
56 | func toEventStream(
57 | endValue: @escaping () -> Element,
58 | onTermination callback: @Sendable @escaping (Termination) -> Void
| `- warning: capture of non-sendable type 'Self.Type' in an isolated local function; this is an error in the Swift 6 language mode
59 | ) -> EventStream<Element> {
60 | let stream = AsyncThrowingStream<Element, Error> { continuation in
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:94:60: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
92 | onTermination callback: @Sendable @escaping (Termination) -> Void
93 | ) -> EventStream<Element> {
94 | let stream = AsyncThrowingStream<Element, Error> { continuation in
| `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
95 | let task = Task.init {
96 | do {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:98:43: warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
96 | do {
97 | continuation.yield(initialValue)
98 | for try await each in self {
| `- warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
99 | let element: Element = each
100 | continuation.yield(element)
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:98:43: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
96 | do {
97 | continuation.yield(initialValue)
98 | for try await each in self {
| `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
99 | let element: Element = each
100 | continuation.yield(element)
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:92:23: warning: capture of non-sendable type 'Self.Type' in an isolated local function; this is an error in the Swift 6 language mode
90 | func toEventStream(
91 | initialValue: Element,
92 | onTermination callback: @Sendable @escaping (Termination) -> Void
| `- warning: capture of non-sendable type 'Self.Type' in an isolated local function; this is an error in the Swift 6 language mode
93 | ) -> EventStream<Element> {
94 | let stream = AsyncThrowingStream<Element, Error> { continuation in
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:130:60: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
128 | onTermination callback: @Sendable @escaping (Termination) -> Void
129 | ) -> EventStream<Element> {
130 | let stream = AsyncThrowingStream<Element, Error> { continuation in
| `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
131 | let task = Task.init {
132 | do {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:134:43: warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
132 | do {
133 | continuation.yield(initialValue)
134 | for try await each in self {
| `- warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
135 | let element: Element = each
136 | continuation.yield(element)
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:134:43: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
132 | do {
133 | continuation.yield(initialValue)
134 | for try await each in self {
| `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
135 | let element: Element = each
136 | continuation.yield(element)
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:128:23: warning: capture of non-sendable type 'Self.Type' in an isolated local function; this is an error in the Swift 6 language mode
126 | initialValue: Element,
127 | endValue: @escaping () -> Element,
128 | onTermination callback: @Sendable @escaping (Termination) -> Void
| `- warning: capture of non-sendable type 'Self.Type' in an isolated local function; this is an error in the Swift 6 language mode
129 | ) -> EventStream<Element> {
130 | let stream = AsyncThrowingStream<Element, Error> { continuation in
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:165:60: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
163 | endValue: @escaping () -> Element
164 | ) -> EventStream<Element> {
165 | let stream = AsyncThrowingStream<Element, Error> { continuation in
| `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
166 | let task = Task.init {
167 | do {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:169:43: warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
167 | do {
168 | continuation.yield(initialValue)
169 | for try await each in self {
| `- warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
170 | let element: Element = each
171 | continuation.yield(element)
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:169:43: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
167 | do {
168 | continuation.yield(initialValue)
169 | for try await each in self {
| `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
170 | let element: Element = each
171 | continuation.yield(element)
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:181:18: warning: capture of non-sendable type 'Self.Type' in an isolated local function; this is an error in the Swift 6 language mode
179 |
180 | @Sendable
181 | func onTermination(_: Termination) {
| `- warning: capture of non-sendable type 'Self.Type' in an isolated local function; this is an error in the Swift 6 language mode
182 | task.cancel()
183 | }
[1956/2004] Compiling Pioneer Request+GraphQLRequest.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Vapor/Extensions/Response/GraphQLResult+Content.swift:11:1: warning: conformance to 'Sendable' must occur in the same source file as struct 'GraphQLResult'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
9 | import protocol Vapor.Content
10 |
11 | extension GraphQLResult: Vapor.Content {}
| `- warning: conformance to 'Sendable' must occur in the same source file as struct 'GraphQLResult'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
12 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/GraphQL.swift:4:16: warning: stored property 'data' of 'Sendable'-conforming struct 'GraphQLResult' has non-sendable type 'Map?'; this is an error in the Swift 6 language mode
2 |
3 | public struct GraphQLResult: Equatable, Codable, CustomStringConvertible {
4 | public var data: Map?
| `- warning: stored property 'data' of 'Sendable'-conforming struct 'GraphQLResult' has non-sendable type 'Map?'; this is an error in the Swift 6 language mode
5 | public var errors: [GraphQLError]
6 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/Map/Map.swift:14:13: note: consider making enum 'Map' conform to the 'Sendable' protocol
12 | // MARK: Map
13 |
14 | public enum Map {
| `- note: consider making enum 'Map' conform to the 'Sendable' protocol
15 | case undefined
16 | case null
[1957/2004] Compiling Pioneer Request+PathComponent.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Vapor/Extensions/Response/GraphQLResult+Content.swift:11:1: warning: conformance to 'Sendable' must occur in the same source file as struct 'GraphQLResult'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
9 | import protocol Vapor.Content
10 |
11 | extension GraphQLResult: Vapor.Content {}
| `- warning: conformance to 'Sendable' must occur in the same source file as struct 'GraphQLResult'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
12 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/GraphQL.swift:4:16: warning: stored property 'data' of 'Sendable'-conforming struct 'GraphQLResult' has non-sendable type 'Map?'; this is an error in the Swift 6 language mode
2 |
3 | public struct GraphQLResult: Equatable, Codable, CustomStringConvertible {
4 | public var data: Map?
| `- warning: stored property 'data' of 'Sendable'-conforming struct 'GraphQLResult' has non-sendable type 'Map?'; this is an error in the Swift 6 language mode
5 | public var errors: [GraphQLError]
6 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/Map/Map.swift:14:13: note: consider making enum 'Map' conform to the 'Sendable' protocol
12 | // MARK: Map
13 |
14 | public enum Map {
| `- note: consider making enum 'Map' conform to the 'Sendable' protocol
15 | case undefined
16 | case null
[1958/2004] Compiling Pioneer Request+WebSocket.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Vapor/Extensions/Response/GraphQLResult+Content.swift:11:1: warning: conformance to 'Sendable' must occur in the same source file as struct 'GraphQLResult'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
9 | import protocol Vapor.Content
10 |
11 | extension GraphQLResult: Vapor.Content {}
| `- warning: conformance to 'Sendable' must occur in the same source file as struct 'GraphQLResult'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
12 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/GraphQL.swift:4:16: warning: stored property 'data' of 'Sendable'-conforming struct 'GraphQLResult' has non-sendable type 'Map?'; this is an error in the Swift 6 language mode
2 |
3 | public struct GraphQLResult: Equatable, Codable, CustomStringConvertible {
4 | public var data: Map?
| `- warning: stored property 'data' of 'Sendable'-conforming struct 'GraphQLResult' has non-sendable type 'Map?'; this is an error in the Swift 6 language mode
5 | public var errors: [GraphQLError]
6 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/Map/Map.swift:14:13: note: consider making enum 'Map' conform to the 'Sendable' protocol
12 | // MARK: Map
13 |
14 | public enum Map {
| `- note: consider making enum 'Map' conform to the 'Sendable' protocol
15 | case undefined
16 | case null
[1959/2004] Compiling Pioneer Request+WebsocketContext.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Vapor/Extensions/Response/GraphQLResult+Content.swift:11:1: warning: conformance to 'Sendable' must occur in the same source file as struct 'GraphQLResult'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
9 | import protocol Vapor.Content
10 |
11 | extension GraphQLResult: Vapor.Content {}
| `- warning: conformance to 'Sendable' must occur in the same source file as struct 'GraphQLResult'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
12 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/GraphQL.swift:4:16: warning: stored property 'data' of 'Sendable'-conforming struct 'GraphQLResult' has non-sendable type 'Map?'; this is an error in the Swift 6 language mode
2 |
3 | public struct GraphQLResult: Equatable, Codable, CustomStringConvertible {
4 | public var data: Map?
| `- warning: stored property 'data' of 'Sendable'-conforming struct 'GraphQLResult' has non-sendable type 'Map?'; this is an error in the Swift 6 language mode
5 | public var errors: [GraphQLError]
6 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/Map/Map.swift:14:13: note: consider making enum 'Map' conform to the 'Sendable' protocol
12 | // MARK: Map
13 |
14 | public enum Map {
| `- note: consider making enum 'Map' conform to the 'Sendable' protocol
15 | case undefined
16 | case null
[1960/2004] Compiling Pioneer GraphQLResult+Content.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Vapor/Extensions/Response/GraphQLResult+Content.swift:11:1: warning: conformance to 'Sendable' must occur in the same source file as struct 'GraphQLResult'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
9 | import protocol Vapor.Content
10 |
11 | extension GraphQLResult: Vapor.Content {}
| `- warning: conformance to 'Sendable' must occur in the same source file as struct 'GraphQLResult'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
12 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/GraphQL.swift:4:16: warning: stored property 'data' of 'Sendable'-conforming struct 'GraphQLResult' has non-sendable type 'Map?'; this is an error in the Swift 6 language mode
2 |
3 | public struct GraphQLResult: Equatable, Codable, CustomStringConvertible {
4 | public var data: Map?
| `- warning: stored property 'data' of 'Sendable'-conforming struct 'GraphQLResult' has non-sendable type 'Map?'; this is an error in the Swift 6 language mode
5 | public var errors: [GraphQLError]
6 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/Map/Map.swift:14:13: note: consider making enum 'Map' conform to the 'Sendable' protocol
12 | // MARK: Map
13 |
14 | public enum Map {
| `- note: consider making enum 'Map' conform to the 'Sendable' protocol
15 | case undefined
16 | case null
[1961/2004] Compiling Pioneer Response+GraphQLError.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Vapor/Extensions/Response/GraphQLResult+Content.swift:11:1: warning: conformance to 'Sendable' must occur in the same source file as struct 'GraphQLResult'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
9 | import protocol Vapor.Content
10 |
11 | extension GraphQLResult: Vapor.Content {}
| `- warning: conformance to 'Sendable' must occur in the same source file as struct 'GraphQLResult'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
12 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/GraphQL.swift:4:16: warning: stored property 'data' of 'Sendable'-conforming struct 'GraphQLResult' has non-sendable type 'Map?'; this is an error in the Swift 6 language mode
2 |
3 | public struct GraphQLResult: Equatable, Codable, CustomStringConvertible {
4 | public var data: Map?
| `- warning: stored property 'data' of 'Sendable'-conforming struct 'GraphQLResult' has non-sendable type 'Map?'; this is an error in the Swift 6 language mode
5 | public var errors: [GraphQLError]
6 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/Map/Map.swift:14:13: note: consider making enum 'Map' conform to the 'Sendable' protocol
12 | // MARK: Map
13 |
14 | public enum Map {
| `- note: consider making enum 'Map' conform to the 'Sendable' protocol
15 | case undefined
16 | case null
[1962/2004] 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`.
[1963/2004] 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`.
[1964/2004] 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`.
[1965/2004] 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`.
[1966/2004] 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`.
[1967/2004] 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`.
[1968/2004] Compiling Pioneer Pioneer+Graphiti.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:29:21: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
27 | { context, arguments, eventLoopGroup in
28 | eventLoopGroup.makeFutureWithTask {
29 | await function(type)(context, arguments, eventLoopGroup)
| `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
30 | }
31 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:29:27: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
27 | { context, arguments, eventLoopGroup in
28 | eventLoopGroup.makeFutureWithTask {
29 | await function(type)(context, arguments, eventLoopGroup)
| `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
30 | }
31 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:23:12: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
21 | convenience init(
22 | _ name: String,
23 | at function: @escaping AsyncAwaitResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>,
| `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
24 | @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
25 | ) {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:23:12: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
21 | convenience init(
22 | _ name: String,
23 | at function: @escaping AsyncAwaitResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>,
| `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
24 | @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
25 | ) {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:43:21: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
41 | { context, arguments, eventLoopGroup in
42 | eventLoopGroup.makeFutureWithTask {
43 | await function(type)(context, arguments, eventLoopGroup)
| `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
44 | }
45 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:38:12: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
36 | convenience init(
37 | _ name: String,
38 | at function: @escaping AsyncAwaitResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>
| `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
39 | ) where Arguments == NoArguments {
40 | let resolve: AsyncResolve<ObjectType, Context, Arguments, FieldType> = { type in
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:60:25: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
58 | { context, arguments, eventLoopGroup in
59 | eventLoopGroup.makeFutureWithTask {
60 | try await function(type)(context, arguments, eventLoopGroup)
| `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
61 | }
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:60:31: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
58 | { context, arguments, eventLoopGroup in
59 | eventLoopGroup.makeFutureWithTask {
60 | try await function(type)(context, arguments, eventLoopGroup)
| `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
61 | }
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:54:12: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
52 | convenience init(
53 | _ name: String,
54 | at function: @escaping AsyncAwaitThrowingResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>,
| `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
55 | @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
56 | ) {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:54:12: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
52 | convenience init(
53 | _ name: String,
54 | at function: @escaping AsyncAwaitThrowingResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>,
| `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
55 | @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
56 | ) {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:74:25: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
72 | { context, arguments, eventLoopGroup in
73 | eventLoopGroup.makeFutureWithTask {
74 | try await function(type)(context, arguments, eventLoopGroup)
| `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
75 | }
76 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:69:12: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
67 | convenience init(
68 | _ name: String,
69 | at function: @escaping AsyncAwaitThrowingResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>
| `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
70 | ) where Arguments == NoArguments {
71 | let resolve: AsyncResolve<ObjectType, Context, Arguments, FieldType> = { type in
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:94:27: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
92 | { context, arguments, eventLoopGroup in
93 | eventLoopGroup.makeFutureWithTask {
94 | await function(type)(context, arguments, eventLoopGroup)
| `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
95 | }
96 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:87:12: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
85 | convenience init<ResolveType>(
86 | _ name: String,
87 | at function: @escaping AsyncAwaitResolveWithEventLoop<ObjectType, Context, Arguments, ResolveType>,
| `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
88 | as: FieldType.Type,
89 | @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:127:31: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
125 | { context, arguments, eventLoopGroup in
126 | eventLoopGroup.makeFutureWithTask {
127 | try await function(type)(context, arguments, eventLoopGroup)
| `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
128 | }
129 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:120:12: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
118 | convenience init<ResolveType>(
119 | _ name: String,
120 | at function: @escaping AsyncAwaitThrowingResolveWithEventLoop<ObjectType, Context, Arguments, ResolveType>,
| `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
121 | as: FieldType.Type,
122 | @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
/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]
/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 |
[1969/2004] Compiling Pioneer Data+Json.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:29:21: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
27 | { context, arguments, eventLoopGroup in
28 | eventLoopGroup.makeFutureWithTask {
29 | await function(type)(context, arguments, eventLoopGroup)
| `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
30 | }
31 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:29:27: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
27 | { context, arguments, eventLoopGroup in
28 | eventLoopGroup.makeFutureWithTask {
29 | await function(type)(context, arguments, eventLoopGroup)
| `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
30 | }
31 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:23:12: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
21 | convenience init(
22 | _ name: String,
23 | at function: @escaping AsyncAwaitResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>,
| `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
24 | @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
25 | ) {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:23:12: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
21 | convenience init(
22 | _ name: String,
23 | at function: @escaping AsyncAwaitResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>,
| `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
24 | @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
25 | ) {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:43:21: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
41 | { context, arguments, eventLoopGroup in
42 | eventLoopGroup.makeFutureWithTask {
43 | await function(type)(context, arguments, eventLoopGroup)
| `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
44 | }
45 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:38:12: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
36 | convenience init(
37 | _ name: String,
38 | at function: @escaping AsyncAwaitResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>
| `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
39 | ) where Arguments == NoArguments {
40 | let resolve: AsyncResolve<ObjectType, Context, Arguments, FieldType> = { type in
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:60:25: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
58 | { context, arguments, eventLoopGroup in
59 | eventLoopGroup.makeFutureWithTask {
60 | try await function(type)(context, arguments, eventLoopGroup)
| `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
61 | }
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:60:31: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
58 | { context, arguments, eventLoopGroup in
59 | eventLoopGroup.makeFutureWithTask {
60 | try await function(type)(context, arguments, eventLoopGroup)
| `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
61 | }
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:54:12: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
52 | convenience init(
53 | _ name: String,
54 | at function: @escaping AsyncAwaitThrowingResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>,
| `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
55 | @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
56 | ) {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:54:12: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
52 | convenience init(
53 | _ name: String,
54 | at function: @escaping AsyncAwaitThrowingResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>,
| `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
55 | @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
56 | ) {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:74:25: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
72 | { context, arguments, eventLoopGroup in
73 | eventLoopGroup.makeFutureWithTask {
74 | try await function(type)(context, arguments, eventLoopGroup)
| `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
75 | }
76 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:69:12: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
67 | convenience init(
68 | _ name: String,
69 | at function: @escaping AsyncAwaitThrowingResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>
| `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
70 | ) where Arguments == NoArguments {
71 | let resolve: AsyncResolve<ObjectType, Context, Arguments, FieldType> = { type in
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:94:27: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
92 | { context, arguments, eventLoopGroup in
93 | eventLoopGroup.makeFutureWithTask {
94 | await function(type)(context, arguments, eventLoopGroup)
| `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
95 | }
96 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:87:12: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
85 | convenience init<ResolveType>(
86 | _ name: String,
87 | at function: @escaping AsyncAwaitResolveWithEventLoop<ObjectType, Context, Arguments, ResolveType>,
| `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
88 | as: FieldType.Type,
89 | @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:127:31: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
125 | { context, arguments, eventLoopGroup in
126 | eventLoopGroup.makeFutureWithTask {
127 | try await function(type)(context, arguments, eventLoopGroup)
| `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
128 | }
129 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:120:12: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
118 | convenience init<ResolveType>(
119 | _ name: String,
120 | at function: @escaping AsyncAwaitThrowingResolveWithEventLoop<ObjectType, Context, Arguments, ResolveType>,
| `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
121 | as: FieldType.Type,
122 | @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
/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]
/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 |
[1970/2004] Compiling Pioneer BuiltinTypes.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:29:21: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
27 | { context, arguments, eventLoopGroup in
28 | eventLoopGroup.makeFutureWithTask {
29 | await function(type)(context, arguments, eventLoopGroup)
| `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
30 | }
31 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:29:27: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
27 | { context, arguments, eventLoopGroup in
28 | eventLoopGroup.makeFutureWithTask {
29 | await function(type)(context, arguments, eventLoopGroup)
| `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
30 | }
31 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:23:12: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
21 | convenience init(
22 | _ name: String,
23 | at function: @escaping AsyncAwaitResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>,
| `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
24 | @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
25 | ) {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:23:12: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
21 | convenience init(
22 | _ name: String,
23 | at function: @escaping AsyncAwaitResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>,
| `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
24 | @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
25 | ) {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:43:21: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
41 | { context, arguments, eventLoopGroup in
42 | eventLoopGroup.makeFutureWithTask {
43 | await function(type)(context, arguments, eventLoopGroup)
| `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
44 | }
45 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:38:12: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
36 | convenience init(
37 | _ name: String,
38 | at function: @escaping AsyncAwaitResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>
| `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
39 | ) where Arguments == NoArguments {
40 | let resolve: AsyncResolve<ObjectType, Context, Arguments, FieldType> = { type in
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:60:25: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
58 | { context, arguments, eventLoopGroup in
59 | eventLoopGroup.makeFutureWithTask {
60 | try await function(type)(context, arguments, eventLoopGroup)
| `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
61 | }
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:60:31: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
58 | { context, arguments, eventLoopGroup in
59 | eventLoopGroup.makeFutureWithTask {
60 | try await function(type)(context, arguments, eventLoopGroup)
| `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
61 | }
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:54:12: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
52 | convenience init(
53 | _ name: String,
54 | at function: @escaping AsyncAwaitThrowingResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>,
| `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
55 | @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
56 | ) {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:54:12: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
52 | convenience init(
53 | _ name: String,
54 | at function: @escaping AsyncAwaitThrowingResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>,
| `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
55 | @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
56 | ) {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:74:25: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
72 | { context, arguments, eventLoopGroup in
73 | eventLoopGroup.makeFutureWithTask {
74 | try await function(type)(context, arguments, eventLoopGroup)
| `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
75 | }
76 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:69:12: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
67 | convenience init(
68 | _ name: String,
69 | at function: @escaping AsyncAwaitThrowingResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>
| `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
70 | ) where Arguments == NoArguments {
71 | let resolve: AsyncResolve<ObjectType, Context, Arguments, FieldType> = { type in
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:94:27: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
92 | { context, arguments, eventLoopGroup in
93 | eventLoopGroup.makeFutureWithTask {
94 | await function(type)(context, arguments, eventLoopGroup)
| `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
95 | }
96 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:87:12: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
85 | convenience init<ResolveType>(
86 | _ name: String,
87 | at function: @escaping AsyncAwaitResolveWithEventLoop<ObjectType, Context, Arguments, ResolveType>,
| `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
88 | as: FieldType.Type,
89 | @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:127:31: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
125 | { context, arguments, eventLoopGroup in
126 | eventLoopGroup.makeFutureWithTask {
127 | try await function(type)(context, arguments, eventLoopGroup)
| `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
128 | }
129 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:120:12: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
118 | convenience init<ResolveType>(
119 | _ name: String,
120 | at function: @escaping AsyncAwaitThrowingResolveWithEventLoop<ObjectType, Context, Arguments, ResolveType>,
| `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
121 | as: FieldType.Type,
122 | @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
/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]
/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 |
[1971/2004] Compiling Pioneer Field+AsyncAwait.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:29:21: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
27 | { context, arguments, eventLoopGroup in
28 | eventLoopGroup.makeFutureWithTask {
29 | await function(type)(context, arguments, eventLoopGroup)
| `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
30 | }
31 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:29:27: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
27 | { context, arguments, eventLoopGroup in
28 | eventLoopGroup.makeFutureWithTask {
29 | await function(type)(context, arguments, eventLoopGroup)
| `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
30 | }
31 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:23:12: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
21 | convenience init(
22 | _ name: String,
23 | at function: @escaping AsyncAwaitResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>,
| `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
24 | @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
25 | ) {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:23:12: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
21 | convenience init(
22 | _ name: String,
23 | at function: @escaping AsyncAwaitResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>,
| `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
24 | @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
25 | ) {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:43:21: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
41 | { context, arguments, eventLoopGroup in
42 | eventLoopGroup.makeFutureWithTask {
43 | await function(type)(context, arguments, eventLoopGroup)
| `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
44 | }
45 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:38:12: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
36 | convenience init(
37 | _ name: String,
38 | at function: @escaping AsyncAwaitResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>
| `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
39 | ) where Arguments == NoArguments {
40 | let resolve: AsyncResolve<ObjectType, Context, Arguments, FieldType> = { type in
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:60:25: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
58 | { context, arguments, eventLoopGroup in
59 | eventLoopGroup.makeFutureWithTask {
60 | try await function(type)(context, arguments, eventLoopGroup)
| `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
61 | }
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:60:31: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
58 | { context, arguments, eventLoopGroup in
59 | eventLoopGroup.makeFutureWithTask {
60 | try await function(type)(context, arguments, eventLoopGroup)
| `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
61 | }
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:54:12: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
52 | convenience init(
53 | _ name: String,
54 | at function: @escaping AsyncAwaitThrowingResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>,
| `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
55 | @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
56 | ) {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:54:12: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
52 | convenience init(
53 | _ name: String,
54 | at function: @escaping AsyncAwaitThrowingResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>,
| `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
55 | @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
56 | ) {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:74:25: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
72 | { context, arguments, eventLoopGroup in
73 | eventLoopGroup.makeFutureWithTask {
74 | try await function(type)(context, arguments, eventLoopGroup)
| `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
75 | }
76 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:69:12: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
67 | convenience init(
68 | _ name: String,
69 | at function: @escaping AsyncAwaitThrowingResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>
| `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
70 | ) where Arguments == NoArguments {
71 | let resolve: AsyncResolve<ObjectType, Context, Arguments, FieldType> = { type in
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:94:27: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
92 | { context, arguments, eventLoopGroup in
93 | eventLoopGroup.makeFutureWithTask {
94 | await function(type)(context, arguments, eventLoopGroup)
| `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
95 | }
96 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:87:12: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
85 | convenience init<ResolveType>(
86 | _ name: String,
87 | at function: @escaping AsyncAwaitResolveWithEventLoop<ObjectType, Context, Arguments, ResolveType>,
| `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
88 | as: FieldType.Type,
89 | @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:127:31: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
125 | { context, arguments, eventLoopGroup in
126 | eventLoopGroup.makeFutureWithTask {
127 | try await function(type)(context, arguments, eventLoopGroup)
| `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
128 | }
129 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:120:12: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
118 | convenience init<ResolveType>(
119 | _ name: String,
120 | at function: @escaping AsyncAwaitThrowingResolveWithEventLoop<ObjectType, Context, Arguments, ResolveType>,
| `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
121 | as: FieldType.Type,
122 | @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
/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]
/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 |
[1972/2004] Compiling Pioneer Field+Middleware.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:29:21: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
27 | { context, arguments, eventLoopGroup in
28 | eventLoopGroup.makeFutureWithTask {
29 | await function(type)(context, arguments, eventLoopGroup)
| `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
30 | }
31 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:29:27: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
27 | { context, arguments, eventLoopGroup in
28 | eventLoopGroup.makeFutureWithTask {
29 | await function(type)(context, arguments, eventLoopGroup)
| `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
30 | }
31 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:23:12: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
21 | convenience init(
22 | _ name: String,
23 | at function: @escaping AsyncAwaitResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>,
| `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
24 | @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
25 | ) {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:23:12: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
21 | convenience init(
22 | _ name: String,
23 | at function: @escaping AsyncAwaitResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>,
| `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
24 | @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
25 | ) {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:43:21: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
41 | { context, arguments, eventLoopGroup in
42 | eventLoopGroup.makeFutureWithTask {
43 | await function(type)(context, arguments, eventLoopGroup)
| `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
44 | }
45 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:38:12: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
36 | convenience init(
37 | _ name: String,
38 | at function: @escaping AsyncAwaitResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>
| `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
39 | ) where Arguments == NoArguments {
40 | let resolve: AsyncResolve<ObjectType, Context, Arguments, FieldType> = { type in
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:60:25: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
58 | { context, arguments, eventLoopGroup in
59 | eventLoopGroup.makeFutureWithTask {
60 | try await function(type)(context, arguments, eventLoopGroup)
| `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
61 | }
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:60:31: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
58 | { context, arguments, eventLoopGroup in
59 | eventLoopGroup.makeFutureWithTask {
60 | try await function(type)(context, arguments, eventLoopGroup)
| `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
61 | }
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:54:12: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
52 | convenience init(
53 | _ name: String,
54 | at function: @escaping AsyncAwaitThrowingResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>,
| `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
55 | @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
56 | ) {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:54:12: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
52 | convenience init(
53 | _ name: String,
54 | at function: @escaping AsyncAwaitThrowingResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>,
| `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
55 | @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
56 | ) {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:74:25: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
72 | { context, arguments, eventLoopGroup in
73 | eventLoopGroup.makeFutureWithTask {
74 | try await function(type)(context, arguments, eventLoopGroup)
| `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
75 | }
76 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:69:12: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
67 | convenience init(
68 | _ name: String,
69 | at function: @escaping AsyncAwaitThrowingResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>
| `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
70 | ) where Arguments == NoArguments {
71 | let resolve: AsyncResolve<ObjectType, Context, Arguments, FieldType> = { type in
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:94:27: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
92 | { context, arguments, eventLoopGroup in
93 | eventLoopGroup.makeFutureWithTask {
94 | await function(type)(context, arguments, eventLoopGroup)
| `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
95 | }
96 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:87:12: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
85 | convenience init<ResolveType>(
86 | _ name: String,
87 | at function: @escaping AsyncAwaitResolveWithEventLoop<ObjectType, Context, Arguments, ResolveType>,
| `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
88 | as: FieldType.Type,
89 | @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:127:31: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
125 | { context, arguments, eventLoopGroup in
126 | eventLoopGroup.makeFutureWithTask {
127 | try await function(type)(context, arguments, eventLoopGroup)
| `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
128 | }
129 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:120:12: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
118 | convenience init<ResolveType>(
119 | _ name: String,
120 | at function: @escaping AsyncAwaitThrowingResolveWithEventLoop<ObjectType, Context, Arguments, ResolveType>,
| `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
121 | as: FieldType.Type,
122 | @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
/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]
/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 |
[1973/2004] Compiling Pioneer GraphQL+Execution.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:29:21: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
27 | { context, arguments, eventLoopGroup in
28 | eventLoopGroup.makeFutureWithTask {
29 | await function(type)(context, arguments, eventLoopGroup)
| `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
30 | }
31 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:29:27: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
27 | { context, arguments, eventLoopGroup in
28 | eventLoopGroup.makeFutureWithTask {
29 | await function(type)(context, arguments, eventLoopGroup)
| `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
30 | }
31 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:23:12: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
21 | convenience init(
22 | _ name: String,
23 | at function: @escaping AsyncAwaitResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>,
| `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
24 | @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
25 | ) {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:23:12: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
21 | convenience init(
22 | _ name: String,
23 | at function: @escaping AsyncAwaitResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>,
| `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
24 | @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
25 | ) {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:43:21: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
41 | { context, arguments, eventLoopGroup in
42 | eventLoopGroup.makeFutureWithTask {
43 | await function(type)(context, arguments, eventLoopGroup)
| `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
44 | }
45 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:38:12: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
36 | convenience init(
37 | _ name: String,
38 | at function: @escaping AsyncAwaitResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>
| `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
39 | ) where Arguments == NoArguments {
40 | let resolve: AsyncResolve<ObjectType, Context, Arguments, FieldType> = { type in
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:60:25: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
58 | { context, arguments, eventLoopGroup in
59 | eventLoopGroup.makeFutureWithTask {
60 | try await function(type)(context, arguments, eventLoopGroup)
| `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
61 | }
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:60:31: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
58 | { context, arguments, eventLoopGroup in
59 | eventLoopGroup.makeFutureWithTask {
60 | try await function(type)(context, arguments, eventLoopGroup)
| `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
61 | }
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:54:12: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
52 | convenience init(
53 | _ name: String,
54 | at function: @escaping AsyncAwaitThrowingResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>,
| `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
55 | @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
56 | ) {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:54:12: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
52 | convenience init(
53 | _ name: String,
54 | at function: @escaping AsyncAwaitThrowingResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>,
| `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
55 | @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
56 | ) {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:74:25: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
72 | { context, arguments, eventLoopGroup in
73 | eventLoopGroup.makeFutureWithTask {
74 | try await function(type)(context, arguments, eventLoopGroup)
| `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
75 | }
76 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:69:12: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
67 | convenience init(
68 | _ name: String,
69 | at function: @escaping AsyncAwaitThrowingResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>
| `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
70 | ) where Arguments == NoArguments {
71 | let resolve: AsyncResolve<ObjectType, Context, Arguments, FieldType> = { type in
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:94:27: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
92 | { context, arguments, eventLoopGroup in
93 | eventLoopGroup.makeFutureWithTask {
94 | await function(type)(context, arguments, eventLoopGroup)
| `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
95 | }
96 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:87:12: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
85 | convenience init<ResolveType>(
86 | _ name: String,
87 | at function: @escaping AsyncAwaitResolveWithEventLoop<ObjectType, Context, Arguments, ResolveType>,
| `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
88 | as: FieldType.Type,
89 | @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:127:31: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
125 | { context, arguments, eventLoopGroup in
126 | eventLoopGroup.makeFutureWithTask {
127 | try await function(type)(context, arguments, eventLoopGroup)
| `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
128 | }
129 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:120:12: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
118 | convenience init<ResolveType>(
119 | _ name: String,
120 | at function: @escaping AsyncAwaitThrowingResolveWithEventLoop<ObjectType, Context, Arguments, ResolveType>,
| `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
121 | as: FieldType.Type,
122 | @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
/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]
/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 |
[1974/2004] Compiling Pioneer GraphQLError+Error.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:29:21: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
27 | { context, arguments, eventLoopGroup in
28 | eventLoopGroup.makeFutureWithTask {
29 | await function(type)(context, arguments, eventLoopGroup)
| `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
30 | }
31 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:29:27: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
27 | { context, arguments, eventLoopGroup in
28 | eventLoopGroup.makeFutureWithTask {
29 | await function(type)(context, arguments, eventLoopGroup)
| `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
30 | }
31 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:23:12: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
21 | convenience init(
22 | _ name: String,
23 | at function: @escaping AsyncAwaitResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>,
| `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
24 | @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
25 | ) {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:23:12: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
21 | convenience init(
22 | _ name: String,
23 | at function: @escaping AsyncAwaitResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>,
| `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
24 | @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
25 | ) {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:43:21: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
41 | { context, arguments, eventLoopGroup in
42 | eventLoopGroup.makeFutureWithTask {
43 | await function(type)(context, arguments, eventLoopGroup)
| `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
44 | }
45 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:38:12: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
36 | convenience init(
37 | _ name: String,
38 | at function: @escaping AsyncAwaitResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>
| `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
39 | ) where Arguments == NoArguments {
40 | let resolve: AsyncResolve<ObjectType, Context, Arguments, FieldType> = { type in
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:60:25: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
58 | { context, arguments, eventLoopGroup in
59 | eventLoopGroup.makeFutureWithTask {
60 | try await function(type)(context, arguments, eventLoopGroup)
| `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
61 | }
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:60:31: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
58 | { context, arguments, eventLoopGroup in
59 | eventLoopGroup.makeFutureWithTask {
60 | try await function(type)(context, arguments, eventLoopGroup)
| `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
61 | }
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:54:12: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
52 | convenience init(
53 | _ name: String,
54 | at function: @escaping AsyncAwaitThrowingResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>,
| `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
55 | @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
56 | ) {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:54:12: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
52 | convenience init(
53 | _ name: String,
54 | at function: @escaping AsyncAwaitThrowingResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>,
| `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
55 | @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
56 | ) {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:74:25: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
72 | { context, arguments, eventLoopGroup in
73 | eventLoopGroup.makeFutureWithTask {
74 | try await function(type)(context, arguments, eventLoopGroup)
| `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
75 | }
76 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:69:12: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
67 | convenience init(
68 | _ name: String,
69 | at function: @escaping AsyncAwaitThrowingResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>
| `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
70 | ) where Arguments == NoArguments {
71 | let resolve: AsyncResolve<ObjectType, Context, Arguments, FieldType> = { type in
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:94:27: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
92 | { context, arguments, eventLoopGroup in
93 | eventLoopGroup.makeFutureWithTask {
94 | await function(type)(context, arguments, eventLoopGroup)
| `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
95 | }
96 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:87:12: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
85 | convenience init<ResolveType>(
86 | _ name: String,
87 | at function: @escaping AsyncAwaitResolveWithEventLoop<ObjectType, Context, Arguments, ResolveType>,
| `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
88 | as: FieldType.Type,
89 | @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:127:31: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
125 | { context, arguments, eventLoopGroup in
126 | eventLoopGroup.makeFutureWithTask {
127 | try await function(type)(context, arguments, eventLoopGroup)
| `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
128 | }
129 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:120:12: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
118 | convenience init<ResolveType>(
119 | _ name: String,
120 | at function: @escaping AsyncAwaitThrowingResolveWithEventLoop<ObjectType, Context, Arguments, ResolveType>,
| `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
121 | as: FieldType.Type,
122 | @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
/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]
/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 |
[1975/2004] 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 [#SendableClosureCaptures]
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 [#SendableClosureCaptures]
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
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[1976/2004] 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 [#SendableClosureCaptures]
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 [#SendableClosureCaptures]
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
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[1977/2004] 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 [#SendableClosureCaptures]
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 [#SendableClosureCaptures]
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
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[1978/2004] 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 [#SendableClosureCaptures]
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 [#SendableClosureCaptures]
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
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[1979/2004] 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 [#SendableClosureCaptures]
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 [#SendableClosureCaptures]
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
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[1980/2004] 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 [#SendableClosureCaptures]
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 [#SendableClosureCaptures]
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
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[1981/2004] Compiling Pioneer WebSocket+WebSocketable.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Vapor/Pioneer+Standalone.swift:31:23: warning: 'init(_:_:)' is deprecated: Migrate to using the async APIs. Use use Application.make(_:_:) instead [#DeprecatedDeclaration]
29 | cors: CORSMiddleware.Configuration? = nil
30 | ) throws {
31 | let app = try Application(
| `- warning: 'init(_:_:)' is deprecated: Migrate to using the async APIs. Use use Application.make(_:_:) instead [#DeprecatedDeclaration]
32 | .specified(port: port, host: host, env: env)
33 | )
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1982/2004] Compiling Pioneer Pioneer+Http.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Vapor/Pioneer+Standalone.swift:31:23: warning: 'init(_:_:)' is deprecated: Migrate to using the async APIs. Use use Application.make(_:_:) instead [#DeprecatedDeclaration]
29 | cors: CORSMiddleware.Configuration? = nil
30 | ) throws {
31 | let app = try Application(
| `- warning: 'init(_:_:)' is deprecated: Migrate to using the async APIs. Use use Application.make(_:_:) instead [#DeprecatedDeclaration]
32 | .specified(port: port, host: host, env: env)
33 | )
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1983/2004] Compiling Pioneer Pioneer+IDE.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Vapor/Pioneer+Standalone.swift:31:23: warning: 'init(_:_:)' is deprecated: Migrate to using the async APIs. Use use Application.make(_:_:) instead [#DeprecatedDeclaration]
29 | cors: CORSMiddleware.Configuration? = nil
30 | ) throws {
31 | let app = try Application(
| `- warning: 'init(_:_:)' is deprecated: Migrate to using the async APIs. Use use Application.make(_:_:) instead [#DeprecatedDeclaration]
32 | .specified(port: port, host: host, env: env)
33 | )
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1984/2004] Compiling Pioneer Pioneer+Standalone.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Vapor/Pioneer+Standalone.swift:31:23: warning: 'init(_:_:)' is deprecated: Migrate to using the async APIs. Use use Application.make(_:_:) instead [#DeprecatedDeclaration]
29 | cors: CORSMiddleware.Configuration? = nil
30 | ) throws {
31 | let app = try Application(
| `- warning: 'init(_:_:)' is deprecated: Migrate to using the async APIs. Use use Application.make(_:_:) instead [#DeprecatedDeclaration]
32 | .specified(port: port, host: host, env: env)
33 | )
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1985/2004] Compiling Pioneer Pioneer+Vapor+Void.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Vapor/Pioneer+Standalone.swift:31:23: warning: 'init(_:_:)' is deprecated: Migrate to using the async APIs. Use use Application.make(_:_:) instead [#DeprecatedDeclaration]
29 | cors: CORSMiddleware.Configuration? = nil
30 | ) throws {
31 | let app = try Application(
| `- warning: 'init(_:_:)' is deprecated: Migrate to using the async APIs. Use use Application.make(_:_:) instead [#DeprecatedDeclaration]
32 | .specified(port: port, host: host, env: env)
33 | )
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1986/2004] Compiling Pioneer Pioneer+Vapor.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Vapor/Pioneer+Standalone.swift:31:23: warning: 'init(_:_:)' is deprecated: Migrate to using the async APIs. Use use Application.make(_:_:) instead [#DeprecatedDeclaration]
29 | cors: CORSMiddleware.Configuration? = nil
30 | ) throws {
31 | let app = try Application(
| `- warning: 'init(_:_:)' is deprecated: Migrate to using the async APIs. Use use Application.make(_:_:) instead [#DeprecatedDeclaration]
32 | .specified(port: port, host: host, env: env)
33 | )
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1987/2004] Compiling Pioneer GraphQLMessage.swift
[1988/2004] Compiling Pioneer GraphQLMiddleware.swift
[1989/2004] Compiling Pioneer GraphQLRequest.swift
[1990/2004] Compiling Pioneer GraphQLViolation.swift
[1991/2004] Compiling Pioneer CSRFProtections.swift
[1992/2004] Compiling Pioneer HTTPGraphQL.swift
[1993/2004] Compiling Pioneer HttpStrategy.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/AsyncEventStream.swift:30:48: warning: capture of non-sendable type 'Sequence.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
28 | let task = Task {
29 | do {
30 | for try await each in self.sequence {
| `- warning: capture of non-sendable type 'Sequence.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
31 | let res = try closure(each)
32 | continuation.yield(res)
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/AsyncEventStream.swift:30:48: warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
28 | let task = Task {
29 | do {
30 | for try await each in self.sequence {
| `- warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
31 | let res = try closure(each)
32 | continuation.yield(res)
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/AsyncEventStream.swift:23:26: warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
21 | /// - Parameter closure: Transformation closure.
22 | /// - Returns: A new EventStream with the new type.
23 | override public func map<To>(_ closure: @escaping (Element) throws -> To) -> EventStream<To> {
| `- warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
24 | /// Use AsyncStream as bridging instead of the built-in map function to allow for type casting
25 | /// as using `map` will make the type too complicated to be casted to any meaningful value
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Broadcast.swift:20:35: warning: capture of non-sendable type 'Sequence.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
18 | public func pipe<Sequence: AsyncSequence>(_ stream: Sequence) -> Task<Void, Error> where Sequence.Element == MessageType {
19 | Task { [unowned self] in
20 | for try await each in stream {
| `- warning: capture of non-sendable type 'Sequence.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
21 | await self.publish(each)
22 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Broadcast.swift:20:35: warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
18 | public func pipe<Sequence: AsyncSequence>(_ stream: Sequence) -> Task<Void, Error> where Sequence.Element == MessageType {
19 | Task { [unowned self] in
20 | for try await each in stream {
| `- warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
21 | await self.publish(each)
22 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Broadcast.swift:18:49: warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
16 | /// - Parameter stream: The AsyncSequence used to push messages
17 | /// - Returns: The Task used to consumed it
18 | public func pipe<Sequence: AsyncSequence>(_ stream: Sequence) -> Task<Void, Error> where Sequence.Element == MessageType {
| `- warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
19 | Task { [unowned self] in
20 | for try await each in stream {
[1994/2004] Compiling Pioneer IDE.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/AsyncEventStream.swift:30:48: warning: capture of non-sendable type 'Sequence.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
28 | let task = Task {
29 | do {
30 | for try await each in self.sequence {
| `- warning: capture of non-sendable type 'Sequence.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
31 | let res = try closure(each)
32 | continuation.yield(res)
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/AsyncEventStream.swift:30:48: warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
28 | let task = Task {
29 | do {
30 | for try await each in self.sequence {
| `- warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
31 | let res = try closure(each)
32 | continuation.yield(res)
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/AsyncEventStream.swift:23:26: warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
21 | /// - Parameter closure: Transformation closure.
22 | /// - Returns: A new EventStream with the new type.
23 | override public func map<To>(_ closure: @escaping (Element) throws -> To) -> EventStream<To> {
| `- warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
24 | /// Use AsyncStream as bridging instead of the built-in map function to allow for type casting
25 | /// as using `map` will make the type too complicated to be casted to any meaningful value
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Broadcast.swift:20:35: warning: capture of non-sendable type 'Sequence.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
18 | public func pipe<Sequence: AsyncSequence>(_ stream: Sequence) -> Task<Void, Error> where Sequence.Element == MessageType {
19 | Task { [unowned self] in
20 | for try await each in stream {
| `- warning: capture of non-sendable type 'Sequence.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
21 | await self.publish(each)
22 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Broadcast.swift:20:35: warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
18 | public func pipe<Sequence: AsyncSequence>(_ stream: Sequence) -> Task<Void, Error> where Sequence.Element == MessageType {
19 | Task { [unowned self] in
20 | for try await each in stream {
| `- warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
21 | await self.publish(each)
22 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Broadcast.swift:18:49: warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
16 | /// - Parameter stream: The AsyncSequence used to push messages
17 | /// - Returns: The Task used to consumed it
18 | public func pipe<Sequence: AsyncSequence>(_ stream: Sequence) -> Task<Void, Error> where Sequence.Element == MessageType {
| `- warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
19 | Task { [unowned self] in
20 | for try await each in stream {
[1995/2004] Compiling Pioneer Pioneer.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/AsyncEventStream.swift:30:48: warning: capture of non-sendable type 'Sequence.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
28 | let task = Task {
29 | do {
30 | for try await each in self.sequence {
| `- warning: capture of non-sendable type 'Sequence.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
31 | let res = try closure(each)
32 | continuation.yield(res)
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/AsyncEventStream.swift:30:48: warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
28 | let task = Task {
29 | do {
30 | for try await each in self.sequence {
| `- warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
31 | let res = try closure(each)
32 | continuation.yield(res)
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/AsyncEventStream.swift:23:26: warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
21 | /// - Parameter closure: Transformation closure.
22 | /// - Returns: A new EventStream with the new type.
23 | override public func map<To>(_ closure: @escaping (Element) throws -> To) -> EventStream<To> {
| `- warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
24 | /// Use AsyncStream as bridging instead of the built-in map function to allow for type casting
25 | /// as using `map` will make the type too complicated to be casted to any meaningful value
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Broadcast.swift:20:35: warning: capture of non-sendable type 'Sequence.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
18 | public func pipe<Sequence: AsyncSequence>(_ stream: Sequence) -> Task<Void, Error> where Sequence.Element == MessageType {
19 | Task { [unowned self] in
20 | for try await each in stream {
| `- warning: capture of non-sendable type 'Sequence.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
21 | await self.publish(each)
22 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Broadcast.swift:20:35: warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
18 | public func pipe<Sequence: AsyncSequence>(_ stream: Sequence) -> Task<Void, Error> where Sequence.Element == MessageType {
19 | Task { [unowned self] in
20 | for try await each in stream {
| `- warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
21 | await self.publish(each)
22 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Broadcast.swift:18:49: warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
16 | /// - Parameter stream: The AsyncSequence used to push messages
17 | /// - Returns: The Task used to consumed it
18 | public func pipe<Sequence: AsyncSequence>(_ stream: Sequence) -> Task<Void, Error> where Sequence.Element == MessageType {
| `- warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
19 | Task { [unowned self] in
20 | for try await each in stream {
[1996/2004] Compiling Pioneer AsyncEventStream.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/AsyncEventStream.swift:30:48: warning: capture of non-sendable type 'Sequence.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
28 | let task = Task {
29 | do {
30 | for try await each in self.sequence {
| `- warning: capture of non-sendable type 'Sequence.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
31 | let res = try closure(each)
32 | continuation.yield(res)
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/AsyncEventStream.swift:30:48: warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
28 | let task = Task {
29 | do {
30 | for try await each in self.sequence {
| `- warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
31 | let res = try closure(each)
32 | continuation.yield(res)
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/AsyncEventStream.swift:23:26: warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
21 | /// - Parameter closure: Transformation closure.
22 | /// - Returns: A new EventStream with the new type.
23 | override public func map<To>(_ closure: @escaping (Element) throws -> To) -> EventStream<To> {
| `- warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
24 | /// Use AsyncStream as bridging instead of the built-in map function to allow for type casting
25 | /// as using `map` will make the type too complicated to be casted to any meaningful value
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Broadcast.swift:20:35: warning: capture of non-sendable type 'Sequence.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
18 | public func pipe<Sequence: AsyncSequence>(_ stream: Sequence) -> Task<Void, Error> where Sequence.Element == MessageType {
19 | Task { [unowned self] in
20 | for try await each in stream {
| `- warning: capture of non-sendable type 'Sequence.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
21 | await self.publish(each)
22 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Broadcast.swift:20:35: warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
18 | public func pipe<Sequence: AsyncSequence>(_ stream: Sequence) -> Task<Void, Error> where Sequence.Element == MessageType {
19 | Task { [unowned self] in
20 | for try await each in stream {
| `- warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
21 | await self.publish(each)
22 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Broadcast.swift:18:49: warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
16 | /// - Parameter stream: The AsyncSequence used to push messages
17 | /// - Returns: The Task used to consumed it
18 | public func pipe<Sequence: AsyncSequence>(_ stream: Sequence) -> Task<Void, Error> where Sequence.Element == MessageType {
| `- warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
19 | Task { [unowned self] in
20 | for try await each in stream {
[1997/2004] Compiling Pioneer AsyncPubSub.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/AsyncEventStream.swift:30:48: warning: capture of non-sendable type 'Sequence.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
28 | let task = Task {
29 | do {
30 | for try await each in self.sequence {
| `- warning: capture of non-sendable type 'Sequence.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
31 | let res = try closure(each)
32 | continuation.yield(res)
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/AsyncEventStream.swift:30:48: warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
28 | let task = Task {
29 | do {
30 | for try await each in self.sequence {
| `- warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
31 | let res = try closure(each)
32 | continuation.yield(res)
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/AsyncEventStream.swift:23:26: warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
21 | /// - Parameter closure: Transformation closure.
22 | /// - Returns: A new EventStream with the new type.
23 | override public func map<To>(_ closure: @escaping (Element) throws -> To) -> EventStream<To> {
| `- warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
24 | /// Use AsyncStream as bridging instead of the built-in map function to allow for type casting
25 | /// as using `map` will make the type too complicated to be casted to any meaningful value
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Broadcast.swift:20:35: warning: capture of non-sendable type 'Sequence.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
18 | public func pipe<Sequence: AsyncSequence>(_ stream: Sequence) -> Task<Void, Error> where Sequence.Element == MessageType {
19 | Task { [unowned self] in
20 | for try await each in stream {
| `- warning: capture of non-sendable type 'Sequence.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
21 | await self.publish(each)
22 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Broadcast.swift:20:35: warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
18 | public func pipe<Sequence: AsyncSequence>(_ stream: Sequence) -> Task<Void, Error> where Sequence.Element == MessageType {
19 | Task { [unowned self] in
20 | for try await each in stream {
| `- warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
21 | await self.publish(each)
22 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Broadcast.swift:18:49: warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
16 | /// - Parameter stream: The AsyncSequence used to push messages
17 | /// - Returns: The Task used to consumed it
18 | public func pipe<Sequence: AsyncSequence>(_ stream: Sequence) -> Task<Void, Error> where Sequence.Element == MessageType {
| `- warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
19 | Task { [unowned self] in
20 | for try await each in stream {
[1998/2004] Compiling Pioneer Broadcast.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/AsyncEventStream.swift:30:48: warning: capture of non-sendable type 'Sequence.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
28 | let task = Task {
29 | do {
30 | for try await each in self.sequence {
| `- warning: capture of non-sendable type 'Sequence.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
31 | let res = try closure(each)
32 | continuation.yield(res)
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/AsyncEventStream.swift:30:48: warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
28 | let task = Task {
29 | do {
30 | for try await each in self.sequence {
| `- warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
31 | let res = try closure(each)
32 | continuation.yield(res)
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/AsyncEventStream.swift:23:26: warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
21 | /// - Parameter closure: Transformation closure.
22 | /// - Returns: A new EventStream with the new type.
23 | override public func map<To>(_ closure: @escaping (Element) throws -> To) -> EventStream<To> {
| `- warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
24 | /// Use AsyncStream as bridging instead of the built-in map function to allow for type casting
25 | /// as using `map` will make the type too complicated to be casted to any meaningful value
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Broadcast.swift:20:35: warning: capture of non-sendable type 'Sequence.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
18 | public func pipe<Sequence: AsyncSequence>(_ stream: Sequence) -> Task<Void, Error> where Sequence.Element == MessageType {
19 | Task { [unowned self] in
20 | for try await each in stream {
| `- warning: capture of non-sendable type 'Sequence.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
21 | await self.publish(each)
22 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Broadcast.swift:20:35: warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
18 | public func pipe<Sequence: AsyncSequence>(_ stream: Sequence) -> Task<Void, Error> where Sequence.Element == MessageType {
19 | Task { [unowned self] in
20 | for try await each in stream {
| `- warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
21 | await self.publish(each)
22 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Broadcast.swift:18:49: warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
16 | /// - Parameter stream: The AsyncSequence used to push messages
17 | /// - Returns: The Task used to consumed it
18 | public func pipe<Sequence: AsyncSequence>(_ stream: Sequence) -> Task<Void, Error> where Sequence.Element == MessageType {
| `- warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
19 | Task { [unowned self] in
20 | for try await each in stream {
[1999/2004] Compiling Pioneer Drone.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:79:49: warning: non-sendable type 'any SubProtocol.Type' of property 'proto' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
77 | with: oid,
78 | to: client,
79 | given: .from(type: self.proto.next, id: oid, value)
| `- warning: non-sendable type 'any SubProtocol.Type' of property 'proto' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
80 | )
81 | case let .failure(error):
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:86:49: warning: non-sendable type 'any SubProtocol.Type' of property 'proto' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
84 | with: oid,
85 | to: client,
86 | given: .from(type: self.proto.next, id: oid, result)
| `- warning: non-sendable type 'any SubProtocol.Type' of property 'proto' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
87 | )
88 | }
[2000/2004] Compiling Pioneer Probe.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:79:49: warning: non-sendable type 'any SubProtocol.Type' of property 'proto' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
77 | with: oid,
78 | to: client,
79 | given: .from(type: self.proto.next, id: oid, value)
| `- warning: non-sendable type 'any SubProtocol.Type' of property 'proto' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
80 | )
81 | case let .failure(error):
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:86:49: warning: non-sendable type 'any SubProtocol.Type' of property 'proto' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
84 | with: oid,
85 | to: client,
86 | given: .from(type: self.proto.next, id: oid, result)
| `- warning: non-sendable type 'any SubProtocol.Type' of property 'proto' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
87 | )
88 | }
[2001/2004] Compiling Pioneer GraphQLWs.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:79:49: warning: non-sendable type 'any SubProtocol.Type' of property 'proto' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
77 | with: oid,
78 | to: client,
79 | given: .from(type: self.proto.next, id: oid, value)
| `- warning: non-sendable type 'any SubProtocol.Type' of property 'proto' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
80 | )
81 | case let .failure(error):
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:86:49: warning: non-sendable type 'any SubProtocol.Type' of property 'proto' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
84 | with: oid,
85 | to: client,
86 | given: .from(type: self.proto.next, id: oid, result)
| `- warning: non-sendable type 'any SubProtocol.Type' of property 'proto' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
87 | )
88 | }
[2002/2004] Compiling Pioneer SubProtocol.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:79:49: warning: non-sendable type 'any SubProtocol.Type' of property 'proto' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
77 | with: oid,
78 | to: client,
79 | given: .from(type: self.proto.next, id: oid, value)
| `- warning: non-sendable type 'any SubProtocol.Type' of property 'proto' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
80 | )
81 | case let .failure(error):
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:86:49: warning: non-sendable type 'any SubProtocol.Type' of property 'proto' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
84 | with: oid,
85 | to: client,
86 | given: .from(type: self.proto.next, id: oid, result)
| `- warning: non-sendable type 'any SubProtocol.Type' of property 'proto' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
87 | )
88 | }
[2003/2004] Compiling Pioneer SubscriptionsTransportWs.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:79:49: warning: non-sendable type 'any SubProtocol.Type' of property 'proto' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
77 | with: oid,
78 | to: client,
79 | given: .from(type: self.proto.next, id: oid, value)
| `- warning: non-sendable type 'any SubProtocol.Type' of property 'proto' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
80 | )
81 | case let .failure(error):
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:86:49: warning: non-sendable type 'any SubProtocol.Type' of property 'proto' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
84 | with: oid,
85 | to: client,
86 | given: .from(type: self.proto.next, id: oid, result)
| `- warning: non-sendable type 'any SubProtocol.Type' of property 'proto' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
87 | )
88 | }
[2004/2004] Compiling Pioneer WebsocketProtocol.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:79:49: warning: non-sendable type 'any SubProtocol.Type' of property 'proto' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
77 | with: oid,
78 | to: client,
79 | given: .from(type: self.proto.next, id: oid, value)
| `- warning: non-sendable type 'any SubProtocol.Type' of property 'proto' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
80 | )
81 | case let .failure(error):
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:86:49: warning: non-sendable type 'any SubProtocol.Type' of property 'proto' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
84 | with: oid,
85 | to: client,
86 | given: .from(type: self.proto.next, id: oid, result)
| `- warning: non-sendable type 'any SubProtocol.Type' of property 'proto' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
87 | )
88 | }
Build complete! (88.72s)
Fetching https://github.com/GraphQLSwift/GraphQL.git
Fetching https://github.com/GraphQLSwift/Graphiti.git
Fetching https://github.com/vapor/vapor.git
[1/5026] Fetching graphql
[2/8526] Fetching graphql, graphiti
Fetched https://github.com/GraphQLSwift/GraphQL.git from cache (1.06s)
[1/74546] Fetching vapor
Fetched https://github.com/GraphQLSwift/Graphiti.git from cache (2.57s)
Fetched https://github.com/vapor/vapor.git from cache (2.57s)
Computing version for https://github.com/GraphQLSwift/GraphQL.git
Computed https://github.com/GraphQLSwift/GraphQL.git at 2.10.3 (3.01s)
Fetching https://github.com/apple/swift-nio.git
Fetching https://github.com/apple/swift-collections
[1/16640] Fetching swift-collections
[4161/92979] Fetching swift-collections, swift-nio
Fetched https://github.com/apple/swift-nio.git from cache (3.66s)
Fetched https://github.com/apple/swift-collections from cache (3.66s)
Computing version for https://github.com/GraphQLSwift/Graphiti.git
Computed https://github.com/GraphQLSwift/Graphiti.git at 1.15.2 (4.11s)
Computing version for https://github.com/apple/swift-collections
Computed https://github.com/apple/swift-collections at 1.2.0 (0.54s)
Computing version for https://github.com/vapor/vapor.git
Computed https://github.com/vapor/vapor.git at 4.115.0 (3.08s)
Fetching https://github.com/vapor/multipart-kit.git
Fetching https://github.com/apple/swift-distributed-tracing.git
Fetching https://github.com/apple/swift-metrics.git
Fetching https://github.com/apple/swift-service-context.git
Fetching https://github.com/vapor/websocket-kit.git
Fetching https://github.com/apple/swift-atomics.git
Fetching https://github.com/apple/swift-algorithms.git
[1/1797] Fetching swift-atomics
[73/2878] Fetching swift-atomics, swift-service-context
[203/5084] Fetching swift-atomics, swift-service-context, swift-metrics
[270/8552] Fetching swift-atomics, swift-service-context, swift-metrics, multipart-kit
[819/14511] Fetching swift-atomics, swift-service-context, swift-metrics, multipart-kit, swift-algorithms
[939/17120] Fetching swift-atomics, swift-service-context, swift-metrics, multipart-kit, swift-algorithms, websocket-kit
[1248/22113] Fetching swift-atomics, swift-service-context, swift-metrics, multipart-kit, swift-algorithms, websocket-kit, swift-distributed-tracing
Fetched https://github.com/apple/swift-service-context.git from cache (1.17s)
Fetched https://github.com/vapor/websocket-kit.git from cache (1.17s)
Fetching https://github.com/apple/swift-log.git
Fetching https://github.com/apple/swift-nio-extras.git
[16604/18423] Fetching swift-atomics, swift-metrics, multipart-kit, swift-algorithms, swift-distributed-tracing
Fetched https://github.com/vapor/multipart-kit.git from cache (1.82s)
Fetched https://github.com/apple/swift-distributed-tracing.git from cache (1.82s)
Fetched https://github.com/apple/swift-algorithms.git from cache (1.82s)
Fetched https://github.com/apple/swift-metrics.git from cache (1.82s)
Fetched https://github.com/apple/swift-atomics.git from cache (1.82s)
Fetching https://github.com/apple/swift-nio-ssl.git
Fetching https://github.com/vapor/routing-kit.git
Fetching https://github.com/apple/swift-crypto.git
Fetching https://github.com/apple/swift-nio-http2.git
Fetching https://github.com/vapor/console-kit.git
[1/5942] Fetching swift-nio-extras
[120/9778] Fetching swift-nio-extras, swift-log
Fetched https://github.com/apple/swift-log.git from cache (1.01s)
Fetching https://github.com/vapor/async-kit.git
Fetched https://github.com/apple/swift-nio-extras.git from cache (1.05s)
Fetching https://github.com/swift-server/async-http-client.git
[1/6018] Fetching console-kit
[302/26870] Fetching console-kit, routing-kit
[424/38402] Fetching console-kit, routing-kit, swift-nio-http2
[2812/53821] Fetching console-kit, routing-kit, swift-nio-http2, swift-crypto
[11636/68711] Fetching console-kit, routing-kit, swift-nio-http2, swift-crypto, swift-nio-ssl
[12060/71081] Fetching console-kit, routing-kit, swift-nio-http2, swift-crypto, swift-nio-ssl, async-kit
Fetched https://github.com/vapor/async-kit.git from cache (0.85s)
[36750/68711] Fetching console-kit, routing-kit, swift-nio-http2, swift-crypto, swift-nio-ssl
[41929/82725] Fetching console-kit, routing-kit, swift-nio-http2, swift-crypto, swift-nio-ssl, async-http-client
Fetched https://github.com/swift-server/async-http-client.git from cache (1.45s)
Fetched https://github.com/vapor/console-kit.git from cache (1.91s)
Fetched https://github.com/apple/swift-nio-http2.git from cache (1.91s)
Fetched https://github.com/vapor/routing-kit.git from cache (1.91s)
Fetched https://github.com/apple/swift-crypto.git from cache (1.91s)
Fetched https://github.com/apple/swift-nio-ssl.git from cache (1.93s)
Computing version for https://github.com/apple/swift-atomics.git
Computed https://github.com/apple/swift-atomics.git at 1.3.0 (4.23s)
Computing version for https://github.com/vapor/routing-kit.git
Computed https://github.com/vapor/routing-kit.git at 4.9.2 (0.40s)
Computing version for https://github.com/apple/swift-nio.git
Computed https://github.com/apple/swift-nio.git at 2.83.0 (0.60s)
Fetching https://github.com/apple/swift-system.git
[1/4436] Fetching swift-system
Fetched https://github.com/apple/swift-system.git from cache (0.99s)
Computing version for https://github.com/apple/swift-algorithms.git
Computed https://github.com/apple/swift-algorithms.git at 1.2.1 (1.53s)
Fetching https://github.com/apple/swift-numerics.git
[1/5757] Fetching swift-numerics
Fetched https://github.com/apple/swift-numerics.git from cache (1.03s)
Computing version for https://github.com/apple/swift-service-context.git
Computed https://github.com/apple/swift-service-context.git at 1.2.1 (1.45s)
Computing version for https://github.com/apple/swift-system.git
Computed https://github.com/apple/swift-system.git at 1.5.0 (0.40s)
Computing version for https://github.com/apple/swift-numerics.git
Computed https://github.com/apple/swift-numerics.git at 1.0.3 (0.52s)
Computing version for https://github.com/vapor/websocket-kit.git
Computed https://github.com/vapor/websocket-kit.git at 2.16.1 (0.41s)
Fetching https://github.com/apple/swift-nio-transport-services.git
[1/2667] Fetching swift-nio-transport-services
Fetched https://github.com/apple/swift-nio-transport-services.git from cache (0.95s)
Computing version for https://github.com/apple/swift-metrics.git
Computed https://github.com/apple/swift-metrics.git at 2.7.0 (1.38s)
Computing version for https://github.com/apple/swift-distributed-tracing.git
Computed https://github.com/apple/swift-distributed-tracing.git at 1.2.1 (0.48s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.6.3 (0.42s)
Computing version for https://github.com/apple/swift-nio-extras.git
Computed https://github.com/apple/swift-nio-extras.git at 1.28.0 (0.47s)
Fetching https://github.com/apple/swift-async-algorithms.git
Fetching https://github.com/swift-server/swift-service-lifecycle.git
Fetching https://github.com/apple/swift-http-structured-headers.git
Fetching https://github.com/apple/swift-http-types.git
Fetching https://github.com/apple/swift-certificates.git
Fetching https://github.com/apple/swift-asn1.git
[1/904] Fetching swift-http-types
[146/7088] Fetching swift-http-types, swift-certificates
[208/8704] Fetching swift-http-types, swift-certificates, swift-asn1
[322/11130] Fetching swift-http-types, swift-certificates, swift-asn1, swift-service-lifecycle
[1262/16115] Fetching swift-http-types, swift-certificates, swift-asn1, swift-service-lifecycle, swift-async-algorithms
[1918/17284] Fetching swift-http-types, swift-certificates, swift-asn1, swift-service-lifecycle, swift-async-algorithms, swift-http-structured-headers
Fetched https://github.com/apple/swift-asn1.git from cache (1.02s)
[15220/15668] Fetching swift-http-types, swift-certificates, swift-service-lifecycle, swift-async-algorithms, swift-http-structured-headers
Fetched https://github.com/apple/swift-certificates.git from cache (1.03s)
Fetched https://github.com/apple/swift-http-structured-headers.git from cache (1.03s)
Fetched https://github.com/swift-server/swift-service-lifecycle.git from cache (1.03s)
Fetched https://github.com/apple/swift-http-types.git from cache (1.08s)
Fetched https://github.com/apple/swift-async-algorithms.git from cache (1.08s)
Computing version for https://github.com/swift-server/swift-service-lifecycle.git
Computed https://github.com/swift-server/swift-service-lifecycle.git at 2.8.0 (1.53s)
Computing version for https://github.com/apple/swift-async-algorithms.git
Computed https://github.com/apple/swift-async-algorithms.git at 1.0.4 (0.50s)
Computing version for https://github.com/apple/swift-certificates.git
Computed https://github.com/apple/swift-certificates.git at 1.10.0 (0.55s)
Computing version for https://github.com/apple/swift-crypto.git
Computed https://github.com/apple/swift-crypto.git at 3.12.3 (0.71s)
Computing version for https://github.com/apple/swift-asn1.git
Computed https://github.com/apple/swift-asn1.git at 1.3.2 (0.50s)
Computing version for https://github.com/apple/swift-http-types.git
Computed https://github.com/apple/swift-http-types.git at 1.4.0 (0.41s)
Computing version for https://github.com/apple/swift-nio-ssl.git
Computed https://github.com/apple/swift-nio-ssl.git at 2.32.0 (0.55s)
Computing version for https://github.com/apple/swift-http-structured-headers.git
Computed https://github.com/apple/swift-http-structured-headers.git at 1.3.0 (0.41s)
Computing version for https://github.com/vapor/console-kit.git
Computed https://github.com/vapor/console-kit.git at 4.15.2 (0.43s)
Computing version for https://github.com/vapor/async-kit.git
Computed https://github.com/vapor/async-kit.git at 1.20.0 (0.49s)
Computing version for https://github.com/swift-server/async-http-client.git
Computed https://github.com/swift-server/async-http-client.git at 1.26.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.36.0 (0.43s)
Computing version for https://github.com/apple/swift-nio-transport-services.git
Computed https://github.com/apple/swift-nio-transport-services.git at 1.24.0 (0.42s)
Computing version for https://github.com/vapor/multipart-kit.git
Computed https://github.com/vapor/multipart-kit.git at 4.7.1 (0.42s)
Creating working copy for https://github.com/apple/swift-collections
Working copy of https://github.com/apple/swift-collections resolved at 1.2.0
Creating working copy for https://github.com/GraphQLSwift/Graphiti.git
Working copy of https://github.com/GraphQLSwift/Graphiti.git resolved at 1.15.2
Creating working copy for https://github.com/GraphQLSwift/GraphQL.git
Working copy of https://github.com/GraphQLSwift/GraphQL.git resolved at 2.10.3
Creating working copy for https://github.com/apple/swift-nio-transport-services.git
Working copy of https://github.com/apple/swift-nio-transport-services.git resolved at 1.24.0
Creating working copy for https://github.com/apple/swift-http-types.git
Working copy of https://github.com/apple/swift-http-types.git resolved at 1.4.0
Creating working copy for https://github.com/vapor/console-kit.git
Working copy of https://github.com/vapor/console-kit.git resolved at 4.15.2
Creating working copy for https://github.com/apple/swift-service-context.git
Working copy of https://github.com/apple/swift-service-context.git resolved at 1.2.1
Creating working copy for https://github.com/apple/swift-nio-http2.git
Working copy of https://github.com/apple/swift-nio-http2.git resolved at 1.36.0
Creating working copy for https://github.com/vapor/websocket-kit.git
Working copy of https://github.com/vapor/websocket-kit.git resolved at 2.16.1
Creating working copy for https://github.com/apple/swift-nio-ssl.git
Working copy of https://github.com/apple/swift-nio-ssl.git resolved at 2.32.0
Creating working copy for https://github.com/apple/swift-system.git
Working copy of https://github.com/apple/swift-system.git resolved at 1.5.0
Creating working copy for https://github.com/apple/swift-async-algorithms.git
Working copy of https://github.com/apple/swift-async-algorithms.git resolved at 1.0.4
Creating working copy for https://github.com/apple/swift-asn1.git
Working copy of https://github.com/apple/swift-asn1.git resolved at 1.3.2
Creating working copy for https://github.com/swift-server/swift-service-lifecycle.git
Working copy of https://github.com/swift-server/swift-service-lifecycle.git resolved at 2.8.0
Creating working copy for https://github.com/apple/swift-nio-extras.git
Working copy of https://github.com/apple/swift-nio-extras.git resolved at 1.28.0
Creating working copy for https://github.com/vapor/routing-kit.git
Working copy of https://github.com/vapor/routing-kit.git resolved at 4.9.2
Creating working copy for https://github.com/swift-server/async-http-client.git
Working copy of https://github.com/swift-server/async-http-client.git resolved at 1.26.1
Creating working copy for https://github.com/apple/swift-crypto.git
Working copy of https://github.com/apple/swift-crypto.git resolved at 3.12.3
Creating working copy for https://github.com/apple/swift-metrics.git
Working copy of https://github.com/apple/swift-metrics.git resolved at 2.7.0
Creating working copy for https://github.com/apple/swift-certificates.git
Working copy of https://github.com/apple/swift-certificates.git resolved at 1.10.0
Creating working copy for https://github.com/apple/swift-numerics.git
Working copy of https://github.com/apple/swift-numerics.git resolved at 1.0.3
Creating working copy for https://github.com/vapor/vapor.git
Working copy of https://github.com/vapor/vapor.git resolved at 4.115.0
Creating working copy for https://github.com/vapor/multipart-kit.git
Working copy of https://github.com/vapor/multipart-kit.git resolved at 4.7.1
Creating working copy for https://github.com/apple/swift-nio.git
Working copy of https://github.com/apple/swift-nio.git resolved at 2.83.0
Creating working copy for https://github.com/apple/swift-algorithms.git
Working copy of https://github.com/apple/swift-algorithms.git resolved at 1.2.1
Creating working copy for https://github.com/apple/swift-distributed-tracing.git
Working copy of https://github.com/apple/swift-distributed-tracing.git resolved at 1.2.1
Creating working copy for https://github.com/apple/swift-http-structured-headers.git
Working copy of https://github.com/apple/swift-http-structured-headers.git resolved at 1.3.0
Creating working copy for https://github.com/vapor/async-kit.git
Working copy of https://github.com/vapor/async-kit.git resolved at 1.20.0
Creating working copy for https://github.com/apple/swift-log.git
Working copy of https://github.com/apple/swift-log.git resolved at 1.6.3
Creating working copy for https://github.com/apple/swift-atomics.git
Working copy of https://github.com/apple/swift-atomics.git resolved at 1.3.0
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"
}
Done.