Build Information
Successful build of Pioneer, reference main (6f3fff
), with Swift 6.2 (beta) for macOS (SPM) on 16 Jul 2025 03:12:29 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
/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 | }
[1981/2022] Compiling Pioneer AsyncStream+Statics.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 | }
[1982/2022] Compiling Pioneer EventStream+Static.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 | }
[1983/2022] Compiling Pioneer PubSub.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 | }
[1984/2022] 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 | }
[1985/2022] Compiling Pioneer Request+GraphQLRequest.swift
[1986/2022] Compiling Pioneer Request+PathComponent.swift
[1987/2022] Compiling Pioneer Request+WebSocket.swift
[1988/2022] Compiling Pioneer Request+WebsocketContext.swift
[1989/2022] Compiling Pioneer GraphQLResult+Content.swift
[1990/2022] Compiling Pioneer Response+GraphQLError.swift
[1991/2022] 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
[1992/2022] 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
[1993/2022] 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
[1994/2022] 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
[1995/2022] 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
[1996/2022] 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
[1997/2022] 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
[1998/2022] Compiling Pioneer WebSocket+WebSocketable.swift
[1999/2022] Compiling Pioneer Pioneer+Http.swift
[2000/2022] Compiling Pioneer Pioneer+IDE.swift
[2001/2022] Compiling Pioneer Pioneer+Standalone.swift
[2002/2022] Compiling Pioneer Pioneer+Vapor+Void.swift
[2003/2022] Compiling Pioneer Pioneer+Vapor.swift
[2004/2022] Emitting module Pioneer
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Pioneer.swift:18:29: warning: stored property 'schema' of 'Sendable'-conforming generic struct 'Pioneer' has non-sendable type 'GraphQLSchema'; this is an error in the Swift 6 language mode
16 | public struct Pioneer<Resolver: Sendable, Context: Sendable>: Sendable {
17 | /// Graphiti schema used to execute operations
18 | public private(set) var schema: GraphQLSchema
| `- warning: stored property 'schema' of 'Sendable'-conforming generic struct 'Pioneer' has non-sendable type 'GraphQLSchema'; this is an error in the Swift 6 language mode
19 | /// Resolver used by the GraphQL schema
20 | public private(set) var resolver: Resolver
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/Type/Schema.swift:30:20: note: class 'GraphQLSchema' does not conform to the 'Sendable' protocol
28 | *
29 | */
30 | public final class GraphQLSchema {
| `- note: class 'GraphQLSchema' does not conform to the 'Sendable' protocol
31 | let description: String?
32 | let extensions: [GraphQLSchemaExtensions]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Pioneer.swift:9:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
7 |
8 | import Foundation
9 | import struct GraphQL.GraphQLError
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
10 | import struct GraphQL.GraphQLResult
11 | import class GraphQL.GraphQLSchema
/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`.
[2005/2022] Compiling Pioneer GraphQLMessage.swift
[2006/2022] Compiling Pioneer GraphQLMiddleware.swift
[2007/2022] Compiling Pioneer GraphQLRequest.swift
[2008/2022] Compiling Pioneer GraphQLViolation.swift
[2009/2022] Compiling Pioneer CSRFProtections.swift
[2010/2022] Compiling Pioneer HTTPGraphQL.swift
[2011/2022] Compiling Pioneer HttpStrategy.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Pioneer.swift:18:29: warning: stored property 'schema' of 'Sendable'-conforming generic struct 'Pioneer' has non-sendable type 'GraphQLSchema'; this is an error in the Swift 6 language mode
16 | public struct Pioneer<Resolver: Sendable, Context: Sendable>: Sendable {
17 | /// Graphiti schema used to execute operations
18 | public private(set) var schema: GraphQLSchema
| `- warning: stored property 'schema' of 'Sendable'-conforming generic struct 'Pioneer' has non-sendable type 'GraphQLSchema'; this is an error in the Swift 6 language mode
19 | /// Resolver used by the GraphQL schema
20 | public private(set) var resolver: Resolver
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/Type/Schema.swift:30:20: note: class 'GraphQLSchema' does not conform to the 'Sendable' protocol
28 | *
29 | */
30 | public final class GraphQLSchema {
| `- note: class 'GraphQLSchema' does not conform to the 'Sendable' protocol
31 | let description: String?
32 | let extensions: [GraphQLSchemaExtensions]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Pioneer.swift:9:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
7 |
8 | import Foundation
9 | import struct GraphQL.GraphQLError
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
10 | import struct GraphQL.GraphQLResult
11 | import class GraphQL.GraphQLSchema
/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 {
[2012/2022] Compiling Pioneer IDE.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Pioneer.swift:18:29: warning: stored property 'schema' of 'Sendable'-conforming generic struct 'Pioneer' has non-sendable type 'GraphQLSchema'; this is an error in the Swift 6 language mode
16 | public struct Pioneer<Resolver: Sendable, Context: Sendable>: Sendable {
17 | /// Graphiti schema used to execute operations
18 | public private(set) var schema: GraphQLSchema
| `- warning: stored property 'schema' of 'Sendable'-conforming generic struct 'Pioneer' has non-sendable type 'GraphQLSchema'; this is an error in the Swift 6 language mode
19 | /// Resolver used by the GraphQL schema
20 | public private(set) var resolver: Resolver
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/Type/Schema.swift:30:20: note: class 'GraphQLSchema' does not conform to the 'Sendable' protocol
28 | *
29 | */
30 | public final class GraphQLSchema {
| `- note: class 'GraphQLSchema' does not conform to the 'Sendable' protocol
31 | let description: String?
32 | let extensions: [GraphQLSchemaExtensions]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Pioneer.swift:9:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
7 |
8 | import Foundation
9 | import struct GraphQL.GraphQLError
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
10 | import struct GraphQL.GraphQLResult
11 | import class GraphQL.GraphQLSchema
/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 {
[2013/2022] Compiling Pioneer Pioneer.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Pioneer.swift:18:29: warning: stored property 'schema' of 'Sendable'-conforming generic struct 'Pioneer' has non-sendable type 'GraphQLSchema'; this is an error in the Swift 6 language mode
16 | public struct Pioneer<Resolver: Sendable, Context: Sendable>: Sendable {
17 | /// Graphiti schema used to execute operations
18 | public private(set) var schema: GraphQLSchema
| `- warning: stored property 'schema' of 'Sendable'-conforming generic struct 'Pioneer' has non-sendable type 'GraphQLSchema'; this is an error in the Swift 6 language mode
19 | /// Resolver used by the GraphQL schema
20 | public private(set) var resolver: Resolver
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/Type/Schema.swift:30:20: note: class 'GraphQLSchema' does not conform to the 'Sendable' protocol
28 | *
29 | */
30 | public final class GraphQLSchema {
| `- note: class 'GraphQLSchema' does not conform to the 'Sendable' protocol
31 | let description: String?
32 | let extensions: [GraphQLSchemaExtensions]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Pioneer.swift:9:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
7 |
8 | import Foundation
9 | import struct GraphQL.GraphQLError
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
10 | import struct GraphQL.GraphQLResult
11 | import class GraphQL.GraphQLSchema
/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 {
[2014/2022] Compiling Pioneer AsyncEventStream.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Pioneer.swift:18:29: warning: stored property 'schema' of 'Sendable'-conforming generic struct 'Pioneer' has non-sendable type 'GraphQLSchema'; this is an error in the Swift 6 language mode
16 | public struct Pioneer<Resolver: Sendable, Context: Sendable>: Sendable {
17 | /// Graphiti schema used to execute operations
18 | public private(set) var schema: GraphQLSchema
| `- warning: stored property 'schema' of 'Sendable'-conforming generic struct 'Pioneer' has non-sendable type 'GraphQLSchema'; this is an error in the Swift 6 language mode
19 | /// Resolver used by the GraphQL schema
20 | public private(set) var resolver: Resolver
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/Type/Schema.swift:30:20: note: class 'GraphQLSchema' does not conform to the 'Sendable' protocol
28 | *
29 | */
30 | public final class GraphQLSchema {
| `- note: class 'GraphQLSchema' does not conform to the 'Sendable' protocol
31 | let description: String?
32 | let extensions: [GraphQLSchemaExtensions]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Pioneer.swift:9:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
7 |
8 | import Foundation
9 | import struct GraphQL.GraphQLError
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
10 | import struct GraphQL.GraphQLResult
11 | import class GraphQL.GraphQLSchema
/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 {
[2015/2022] Compiling Pioneer AsyncPubSub.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Pioneer.swift:18:29: warning: stored property 'schema' of 'Sendable'-conforming generic struct 'Pioneer' has non-sendable type 'GraphQLSchema'; this is an error in the Swift 6 language mode
16 | public struct Pioneer<Resolver: Sendable, Context: Sendable>: Sendable {
17 | /// Graphiti schema used to execute operations
18 | public private(set) var schema: GraphQLSchema
| `- warning: stored property 'schema' of 'Sendable'-conforming generic struct 'Pioneer' has non-sendable type 'GraphQLSchema'; this is an error in the Swift 6 language mode
19 | /// Resolver used by the GraphQL schema
20 | public private(set) var resolver: Resolver
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/Type/Schema.swift:30:20: note: class 'GraphQLSchema' does not conform to the 'Sendable' protocol
28 | *
29 | */
30 | public final class GraphQLSchema {
| `- note: class 'GraphQLSchema' does not conform to the 'Sendable' protocol
31 | let description: String?
32 | let extensions: [GraphQLSchemaExtensions]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Pioneer.swift:9:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
7 |
8 | import Foundation
9 | import struct GraphQL.GraphQLError
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
10 | import struct GraphQL.GraphQLResult
11 | import class GraphQL.GraphQLSchema
/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 {
[2016/2022] Compiling Pioneer Broadcast.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Pioneer.swift:18:29: warning: stored property 'schema' of 'Sendable'-conforming generic struct 'Pioneer' has non-sendable type 'GraphQLSchema'; this is an error in the Swift 6 language mode
16 | public struct Pioneer<Resolver: Sendable, Context: Sendable>: Sendable {
17 | /// Graphiti schema used to execute operations
18 | public private(set) var schema: GraphQLSchema
| `- warning: stored property 'schema' of 'Sendable'-conforming generic struct 'Pioneer' has non-sendable type 'GraphQLSchema'; this is an error in the Swift 6 language mode
19 | /// Resolver used by the GraphQL schema
20 | public private(set) var resolver: Resolver
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/Type/Schema.swift:30:20: note: class 'GraphQLSchema' does not conform to the 'Sendable' protocol
28 | *
29 | */
30 | public final class GraphQLSchema {
| `- note: class 'GraphQLSchema' does not conform to the 'Sendable' protocol
31 | let description: String?
32 | let extensions: [GraphQLSchemaExtensions]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Pioneer.swift:9:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
7 |
8 | import Foundation
9 | import struct GraphQL.GraphQLError
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
10 | import struct GraphQL.GraphQLResult
11 | import class GraphQL.GraphQLSchema
/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 {
[2017/2022] 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 | }
[2018/2022] 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 | }
[2019/2022] 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 | }
[2020/2022] 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 | }
[2021/2022] 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 | }
[2022/2022] 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! (91.58s)
Fetching https://github.com/GraphQLSwift/Graphiti.git
Fetching https://github.com/GraphQLSwift/GraphQL.git
Fetching https://github.com/vapor/vapor.git
[1/3574] Fetching graphiti
[287/8820] Fetching graphiti, graphql
[8821/83490] Fetching graphiti, graphql, vapor
Fetched https://github.com/vapor/vapor.git from cache (2.63s)
Fetched https://github.com/GraphQLSwift/Graphiti.git from cache (2.63s)
Fetched https://github.com/GraphQLSwift/GraphQL.git from cache (2.63s)
Computing version for https://github.com/GraphQLSwift/Graphiti.git
Computed https://github.com/GraphQLSwift/Graphiti.git at 2.1.0 (3.10s)
Computing version for https://github.com/GraphQLSwift/GraphQL.git
Computed https://github.com/GraphQLSwift/GraphQL.git at 3.0.2 (0.40s)
Fetching https://github.com/apple/swift-nio.git
Fetching https://github.com/apple/swift-collections
[1/16746] Fetching swift-collections
[1844/93418] Fetching swift-collections, swift-nio
Fetched https://github.com/apple/swift-collections from cache (4.07s)
Fetched https://github.com/apple/swift-nio.git from cache (4.07s)
Computing version for https://github.com/apple/swift-collections
Computed https://github.com/apple/swift-collections at 1.2.0 (4.62s)
Computing version for https://github.com/vapor/vapor.git
Computed https://github.com/vapor/vapor.git at 4.115.1 (2.60s)
Fetching https://github.com/vapor/multipart-kit.git
Fetching https://github.com/apple/swift-distributed-tracing.git
Fetching https://github.com/apple/swift-atomics.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-algorithms.git
[1/3485] Fetching multipart-kit
[176/5293] Fetching multipart-kit, swift-atomics
[493/7902] Fetching multipart-kit, swift-atomics, websocket-kit
[546/10114] Fetching multipart-kit, swift-atomics, websocket-kit, swift-metrics
[905/11195] Fetching multipart-kit, swift-atomics, websocket-kit, swift-metrics, swift-service-context
[2388/17154] Fetching multipart-kit, swift-atomics, websocket-kit, swift-metrics, swift-service-context, swift-algorithms
Fetched https://github.com/apple/swift-metrics.git from cache (0.95s)
[6988/14942] Fetching multipart-kit, swift-atomics, websocket-kit, swift-service-context, swift-algorithms
Fetching https://github.com/apple/swift-log.git
[8925/19985] Fetching multipart-kit, swift-atomics, websocket-kit, swift-service-context, swift-algorithms, swift-distributed-tracing
[8926/23839] Fetching multipart-kit, swift-atomics, websocket-kit, swift-service-context, swift-algorithms, swift-distributed-tracing, swift-log
Fetched https://github.com/apple/swift-log.git from cache (1.00s)
[12651/19985] Fetching multipart-kit, swift-atomics, websocket-kit, swift-service-context, swift-algorithms, swift-distributed-tracing
Fetching https://github.com/apple/swift-nio-extras.git
[15031/26024] Fetching multipart-kit, swift-atomics, websocket-kit, swift-service-context, swift-algorithms, swift-distributed-tracing, swift-nio-extras
Fetched https://github.com/vapor/websocket-kit.git from cache (2.87s)
Fetched https://github.com/apple/swift-algorithms.git from cache (2.87s)
Fetched https://github.com/apple/swift-service-context.git from cache (2.87s)
[8658/16375] Fetching multipart-kit, swift-atomics, swift-distributed-tracing, swift-nio-extras
Fetching https://github.com/apple/swift-nio-ssl.git
Fetching https://github.com/vapor/routing-kit.git
Fetching https://github.com/apple/swift-nio-http2.git
Fetched https://github.com/apple/swift-nio-extras.git from cache (1.04s)
Fetching https://github.com/apple/swift-crypto.git
[6201/10336] Fetching multipart-kit, swift-atomics, swift-distributed-tracing
[6656/31188] Fetching multipart-kit, swift-atomics, swift-distributed-tracing, routing-kit
[7074/42808] Fetching multipart-kit, swift-atomics, swift-distributed-tracing, routing-kit, swift-nio-http2
[8815/57786] Fetching multipart-kit, swift-atomics, swift-distributed-tracing, routing-kit, swift-nio-http2, swift-nio-ssl
[11017/73535] Fetching multipart-kit, swift-atomics, swift-distributed-tracing, routing-kit, swift-nio-http2, swift-nio-ssl, swift-crypto
Fetched https://github.com/apple/swift-nio-http2.git from cache (1.64s)
Fetched https://github.com/vapor/routing-kit.git from cache (1.64s)
[30743/41063] Fetching multipart-kit, swift-atomics, swift-distributed-tracing, swift-nio-ssl, swift-crypto
Fetching https://github.com/vapor/async-kit.git
Fetching https://github.com/vapor/console-kit.git
Fetched https://github.com/apple/swift-nio-ssl.git from cache (1.81s)
[23540/26085] Fetching multipart-kit, swift-atomics, swift-distributed-tracing, swift-crypto
Fetching https://github.com/swift-server/async-http-client.git
Fetched https://github.com/apple/swift-crypto.git from cache (1.87s)
[8925/12706] Fetching multipart-kit, swift-atomics, swift-distributed-tracing, async-kit
[8973/18724] Fetching multipart-kit, swift-atomics, swift-distributed-tracing, async-kit, console-kit
Fetched https://github.com/vapor/console-kit.git from cache (1.00s)
Fetched https://github.com/vapor/async-kit.git from cache (1.00s)
[8958/10336] Fetching multipart-kit, swift-atomics, swift-distributed-tracing
[8959/24358] Fetching multipart-kit, swift-atomics, swift-distributed-tracing, async-http-client
Fetched https://github.com/apple/swift-atomics.git from cache (5.99s)
[22550/22550] Fetching multipart-kit, swift-distributed-tracing, async-http-client
Fetched https://github.com/apple/swift-distributed-tracing.git from cache (5.99s)
[14022/14022] Fetching async-http-client
Fetched https://github.com/vapor/multipart-kit.git from cache (5.99s)
Fetched https://github.com/swift-server/async-http-client.git from cache (1.41s)
Computing version for https://github.com/apple/swift-atomics.git
Computed https://github.com/apple/swift-atomics.git at 1.3.0 (6.56s)
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-algorithms.git
Computed https://github.com/apple/swift-algorithms.git at 1.2.1 (0.50s)
Fetching https://github.com/apple/swift-numerics.git
[1/5757] Fetching swift-numerics
Fetched https://github.com/apple/swift-numerics.git from cache (1.00s)
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.44s)
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/apple/swift-nio.git
Computed https://github.com/apple/swift-nio.git at 2.84.0 (0.63s)
Fetching https://github.com/apple/swift-system.git
[1/4657] Fetching swift-system
Fetched https://github.com/apple/swift-system.git from cache (1.01s)
Computing version for https://github.com/apple/swift-system.git
Computed https://github.com/apple/swift-system.git at 1.5.0 (1.43s)
Computing version for https://github.com/vapor/websocket-kit.git
Computed https://github.com/vapor/websocket-kit.git at 2.16.1 (0.40s)
Fetching https://github.com/apple/swift-nio-transport-services.git
[1/2673] Fetching swift-nio-transport-services
Fetched https://github.com/apple/swift-nio-transport-services.git from cache (1.02s)
Computing version for https://github.com/apple/swift-metrics.git
Computed https://github.com/apple/swift-metrics.git at 2.7.0 (1.45s)
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.41s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.6.3 (0.40s)
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.45s)
Fetching https://github.com/apple/swift-async-algorithms.git
Fetching https://github.com/apple/swift-asn1.git
Fetching https://github.com/swift-server/swift-service-lifecycle.git
Fetching https://github.com/apple/swift-certificates.git
Fetching https://github.com/apple/swift-http-types.git
Fetching https://github.com/apple/swift-http-structured-headers.git
[1/904] Fetching swift-http-types
[146/2520] Fetching swift-http-types, swift-asn1
[260/3689] Fetching swift-http-types, swift-asn1, swift-http-structured-headers
[307/8679] Fetching swift-http-types, swift-asn1, swift-http-structured-headers, swift-async-algorithms
[308/11105] Fetching swift-http-types, swift-asn1, swift-http-structured-headers, swift-async-algorithms, swift-service-lifecycle
[1020/17473] Fetching swift-http-types, swift-asn1, swift-http-structured-headers, swift-async-algorithms, swift-service-lifecycle, swift-certificates
Fetched https://github.com/apple/swift-async-algorithms.git from cache (1.04s)
[7899/12483] Fetching swift-http-types, swift-asn1, swift-http-structured-headers, swift-service-lifecycle, swift-certificates
Fetched https://github.com/apple/swift-http-types.git from cache (1.40s)
Fetched https://github.com/apple/swift-http-structured-headers.git from cache (1.40s)
Fetched https://github.com/apple/swift-asn1.git from cache (1.40s)
Fetched https://github.com/apple/swift-certificates.git from cache (1.40s)
Fetched https://github.com/swift-server/swift-service-lifecycle.git from cache (1.40s)
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.87s)
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-asn1.git
Computed https://github.com/apple/swift-asn1.git at 1.4.0 (0.52s)
Computing version for https://github.com/apple/swift-certificates.git
Computed https://github.com/apple/swift-certificates.git at 1.11.0 (0.52s)
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-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.42s)
Computing version for https://github.com/vapor/async-kit.git
Computed https://github.com/vapor/async-kit.git at 1.20.0 (0.51s)
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.43s)
Computing version for https://github.com/apple/swift-nio-http2.git
Computed https://github.com/apple/swift-nio-http2.git at 1.37.0 (0.41s)
Computing version for https://github.com/apple/swift-nio-transport-services.git
Computed https://github.com/apple/swift-nio-transport-services.git at 1.25.0 (0.41s)
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/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/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-transport-services.git
Working copy of https://github.com/apple/swift-nio-transport-services.git resolved at 1.25.0
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.git
Working copy of https://github.com/apple/swift-nio.git resolved at 2.84.0
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-nio-http2.git
Working copy of https://github.com/apple/swift-nio-http2.git resolved at 1.37.0
Creating working copy for https://github.com/apple/swift-asn1.git
Working copy of https://github.com/apple/swift-asn1.git resolved at 1.4.0
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/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/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-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/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-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-algorithms.git
Working copy of https://github.com/apple/swift-algorithms.git resolved at 1.2.1
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/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-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/GraphQLSwift/Graphiti.git
Working copy of https://github.com/GraphQLSwift/Graphiti.git resolved at 2.1.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-system.git
Working copy of https://github.com/apple/swift-system.git resolved at 1.5.0
Creating working copy for https://github.com/GraphQLSwift/GraphQL.git
Working copy of https://github.com/GraphQLSwift/GraphQL.git resolved at 3.0.2
Creating working copy for https://github.com/vapor/vapor.git
Working copy of https://github.com/vapor/vapor.git resolved at 4.115.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-numerics.git
Working copy of https://github.com/apple/swift-numerics.git resolved at 1.0.3
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-certificates.git
Working copy of https://github.com/apple/swift-certificates.git resolved at 1.11.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/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" : "4.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/GraphQLSwift/GraphQL.git"
},
{
"identity" : "graphiti",
"requirement" : {
"range" : [
{
"lower_bound" : "1.15.1",
"upper_bound" : "3.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.