Build Information
Successful build of OpenCombine, reference 0.15.1 (63aef3
), with Swift 6.0 for Linux on 4 Nov 2024 06:07:38 UTC.
Swift 6 data race errors: 5
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4606859-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete 2>&1
Build Log
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | }
19 |
/host/spi-builder-workspace/Sources/OpenCombine/Subscription.swift:18:17: note: protocol 'Subscription' does not conform to the 'Sendable' protocol
16 | /// Canceling a subscription frees up any resources previously allocated by attaching
17 | /// the `Subscriber`.
18 | public protocol Subscription: Cancellable, CustomCombineIdentifierConvertible {
| `- note: protocol 'Subscription' does not conform to the 'Sendable' protocol
19 |
20 | /// Tells a publisher that it may send more values to the subscriber.
/host/spi-builder-workspace/Sources/OpenCombine/Subscriptions.swift:34:32: warning: static property 'singleton' is not concurrency-safe because non-'Sendable' type 'Subscriptions._EmptySubscription' may have shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension Subscriptions {
21 | private struct _EmptySubscription: Subscription,
| `- note: consider making struct '_EmptySubscription' conform to the 'Sendable' protocol
22 | CustomStringConvertible,
23 | CustomReflectable,
:
32 | func cancel() {}
33 |
34 | fileprivate static let singleton = _EmptySubscription()
| |- warning: static property 'singleton' is not concurrency-safe because non-'Sendable' type 'Subscriptions._EmptySubscription' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'singleton' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 |
36 | var description: String { return "Empty" }
[19/111] Compiling OpenCombine Subscriptions.swift
/host/spi-builder-workspace/Sources/OpenCombine/Subscriptions.swift:17:23: warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
15 | /// Use the empty subscription when you need a `Subscription` that ignores requests
16 | /// and cancellation.
17 | public static let empty: Subscription = _EmptySubscription.singleton
| |- warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'empty' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | }
19 |
/host/spi-builder-workspace/Sources/OpenCombine/Subscription.swift:18:17: note: protocol 'Subscription' does not conform to the 'Sendable' protocol
16 | /// Canceling a subscription frees up any resources previously allocated by attaching
17 | /// the `Subscriber`.
18 | public protocol Subscription: Cancellable, CustomCombineIdentifierConvertible {
| `- note: protocol 'Subscription' does not conform to the 'Sendable' protocol
19 |
20 | /// Tells a publisher that it may send more values to the subscriber.
/host/spi-builder-workspace/Sources/OpenCombine/Subscriptions.swift:34:32: warning: static property 'singleton' is not concurrency-safe because non-'Sendable' type 'Subscriptions._EmptySubscription' may have shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension Subscriptions {
21 | private struct _EmptySubscription: Subscription,
| `- note: consider making struct '_EmptySubscription' conform to the 'Sendable' protocol
22 | CustomStringConvertible,
23 | CustomReflectable,
:
32 | func cancel() {}
33 |
34 | fileprivate static let singleton = _EmptySubscription()
| |- warning: static property 'singleton' is not concurrency-safe because non-'Sendable' type 'Subscriptions._EmptySubscription' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'singleton' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 |
36 | var description: String { return "Empty" }
[20/111] Compiling OpenCombine _Introspection.swift
/host/spi-builder-workspace/Sources/OpenCombine/Subscriptions.swift:17:23: warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
15 | /// Use the empty subscription when you need a `Subscription` that ignores requests
16 | /// and cancellation.
17 | public static let empty: Subscription = _EmptySubscription.singleton
| |- warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'empty' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | }
19 |
/host/spi-builder-workspace/Sources/OpenCombine/Subscription.swift:18:17: note: protocol 'Subscription' does not conform to the 'Sendable' protocol
16 | /// Canceling a subscription frees up any resources previously allocated by attaching
17 | /// the `Subscriber`.
18 | public protocol Subscription: Cancellable, CustomCombineIdentifierConvertible {
| `- note: protocol 'Subscription' does not conform to the 'Sendable' protocol
19 |
20 | /// Tells a publisher that it may send more values to the subscriber.
/host/spi-builder-workspace/Sources/OpenCombine/Subscriptions.swift:34:32: warning: static property 'singleton' is not concurrency-safe because non-'Sendable' type 'Subscriptions._EmptySubscription' may have shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | extension Subscriptions {
21 | private struct _EmptySubscription: Subscription,
| `- note: consider making struct '_EmptySubscription' conform to the 'Sendable' protocol
22 | CustomStringConvertible,
23 | CustomReflectable,
:
32 | func cancel() {}
33 |
34 | fileprivate static let singleton = _EmptySubscription()
| |- warning: static property 'singleton' is not concurrency-safe because non-'Sendable' type 'Subscriptions._EmptySubscription' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'singleton' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 |
36 | var description: String { return "Empty" }
[21/111] Compiling OpenCombine Publishers.Debounce.swift
[22/111] Compiling OpenCombine Publishers.Delay.swift
[23/111] Compiling OpenCombine Publishers.Drop.swift
[24/111] Compiling OpenCombine Publishers.DropUntilOutput.swift
[25/111] Compiling OpenCombine Publishers.DropWhile.swift
[26/111] Compiling OpenCombine Publishers.Filter.swift
[27/111] Compiling OpenCombine Publishers.First.swift
[28/111] Compiling OpenCombine Publishers.FlatMap.swift
[29/111] Compiling OpenCombine Publishers.HandleEvents.swift
[30/111] Compiling OpenCombine Publishers.IgnoreOutput.swift
[31/111] Compiling OpenCombine Publishers.Last.swift
[32/111] Compiling OpenCombine Publishers.MakeConnectable.swift
[33/111] Compiling OpenCombine Publishers.Map.swift
[34/111] Compiling OpenCombine Publishers.MapError.swift
[35/111] Compiling OpenCombine Publishers.MeasureInterval.swift
[36/111] Compiling OpenCombine Publishers.Merge.swift
[37/111] Compiling OpenCombine Publishers.Multicast.swift
[38/111] Compiling OpenCombine Publishers.Output.swift
[39/111] Compiling OpenCombine Publishers.PrefixUntilOutput.swift
[40/111] Compiling OpenCombine Publishers.PrefixWhile.swift
[41/111] Compiling OpenCombine Publishers.Print.swift
[42/111] Compiling OpenCombine Publishers.ReceiveOn.swift
[43/111] Compiling OpenCombine Publishers.Reduce.swift
[44/111] Compiling OpenCombine Publishers.RemoveDuplicates.swift
[45/111] Compiling OpenCombine Publishers.ReplaceEmpty.swift
[46/111] Compiling OpenCombine Publishers.ReplaceError.swift
[47/111] Compiling OpenCombine AnyCancellable.swift
/host/spi-builder-workspace/Sources/OpenCombine/Concurrency/GENERATED-Publisher+Concurrency.swift:56:40: warning: capture of 'inner' with non-sendable type 'AsyncPublisher<Upstream>.Iterator.Inner' in a `@Sendable` closure; this is an error in the Swift 6 language mode
54 | return await withTaskCancellationHandler(
55 | operation: { [inner] in await inner.next() },
56 | onCancel: { [inner] in inner.cancel() }
| `- warning: capture of 'inner' with non-sendable type 'AsyncPublisher<Upstream>.Iterator.Inner' in a `@Sendable` closure; this is an error in the Swift 6 language mode
57 | )
58 | }
:
89 | extension AsyncPublisher.Iterator {
90 |
91 | fileprivate final class Inner: Subscriber, Cancellable {
| `- note: class 'Inner' does not conform to the 'Sendable' protocol
92 | typealias Input = Upstream.Output
93 | typealias Failure = Upstream.Failure
/host/spi-builder-workspace/Sources/OpenCombine/Concurrency/GENERATED-Publisher+Concurrency.swift:231:40: warning: capture of 'inner' with non-sendable type 'AsyncThrowingPublisher<Upstream>.Iterator.Inner' in a `@Sendable` closure; this is an error in the Swift 6 language mode
229 | return try await withTaskCancellationHandler(
230 | operation: { [inner] in try await inner.next() },
231 | onCancel: { [inner] in inner.cancel() }
| `- warning: capture of 'inner' with non-sendable type 'AsyncThrowingPublisher<Upstream>.Iterator.Inner' in a `@Sendable` closure; this is an error in the Swift 6 language mode
232 | )
233 | }
:
264 | extension AsyncThrowingPublisher.Iterator {
265 |
266 | fileprivate final class Inner: Subscriber, Cancellable {
| `- note: class 'Inner' does not conform to the 'Sendable' protocol
267 | typealias Input = Upstream.Output
268 | typealias Failure = Upstream.Failure
/host/spi-builder-workspace/Sources/OpenCombine/Subscriptions.swift:17:23: warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
15 | /// Use the empty subscription when you need a `Subscription` that ignores requests
16 | /// and cancellation.
17 | public static let empty: Subscription = _EmptySubscription.singleton
| |- warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'empty' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | }
19 |
/host/spi-builder-workspace/Sources/OpenCombine/Subscription.swift:18:17: note: protocol 'Subscription' does not conform to the 'Sendable' protocol
16 | /// Canceling a subscription frees up any resources previously allocated by attaching
17 | /// the `Subscriber`.
18 | public protocol Subscription: Cancellable, CustomCombineIdentifierConvertible {
| `- note: protocol 'Subscription' does not conform to the 'Sendable' protocol
19 |
20 | /// Tells a publisher that it may send more values to the subscriber.
/host/spi-builder-workspace/Sources/OpenCombine/Concurrency/Future+Concurrency.swift:76:26: warning: sending 'input' risks causing data races; this is an error in the Swift 6 language mode
74 | if let continuation = self.continuation.take() {
75 | lock.unlock()
76 | continuation.resume(returning: input)
| |- warning: sending 'input' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'input' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
77 | } else {
78 | assertionFailure("Unexpected state: already completed")
/host/spi-builder-workspace/Sources/OpenCombine/Concurrency/GENERATED-Publisher+Concurrency.swift:137:26: warning: task-isolated value of type 'AsyncPublisher<Upstream>.Iterator.Inner.Input' (aka 'Upstream.Output') passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
135 | let continuation = pending.removeFirst()
136 | lock.unlock()
137 | continuation.resume(returning: input)
| `- warning: task-isolated value of type 'AsyncPublisher<Upstream>.Iterator.Inner.Input' (aka 'Upstream.Output') passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
138 | return .none
139 | }
/host/spi-builder-workspace/Sources/OpenCombine/Concurrency/GENERATED-Publisher+Concurrency.swift:312:26: warning: task-isolated value of type 'AsyncThrowingPublisher<Upstream>.Iterator.Inner.Input' (aka 'Upstream.Output') passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
310 | let continuation = pending.removeFirst()
311 | lock.unlock()
312 | continuation.resume(returning: input)
| `- warning: task-isolated value of type 'AsyncThrowingPublisher<Upstream>.Iterator.Inner.Input' (aka 'Upstream.Output') passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
313 | return .none
314 | }
[48/111] Compiling OpenCombine AnyPublisher.swift
/host/spi-builder-workspace/Sources/OpenCombine/Concurrency/GENERATED-Publisher+Concurrency.swift:56:40: warning: capture of 'inner' with non-sendable type 'AsyncPublisher<Upstream>.Iterator.Inner' in a `@Sendable` closure; this is an error in the Swift 6 language mode
54 | return await withTaskCancellationHandler(
55 | operation: { [inner] in await inner.next() },
56 | onCancel: { [inner] in inner.cancel() }
| `- warning: capture of 'inner' with non-sendable type 'AsyncPublisher<Upstream>.Iterator.Inner' in a `@Sendable` closure; this is an error in the Swift 6 language mode
57 | )
58 | }
:
89 | extension AsyncPublisher.Iterator {
90 |
91 | fileprivate final class Inner: Subscriber, Cancellable {
| `- note: class 'Inner' does not conform to the 'Sendable' protocol
92 | typealias Input = Upstream.Output
93 | typealias Failure = Upstream.Failure
/host/spi-builder-workspace/Sources/OpenCombine/Concurrency/GENERATED-Publisher+Concurrency.swift:231:40: warning: capture of 'inner' with non-sendable type 'AsyncThrowingPublisher<Upstream>.Iterator.Inner' in a `@Sendable` closure; this is an error in the Swift 6 language mode
229 | return try await withTaskCancellationHandler(
230 | operation: { [inner] in try await inner.next() },
231 | onCancel: { [inner] in inner.cancel() }
| `- warning: capture of 'inner' with non-sendable type 'AsyncThrowingPublisher<Upstream>.Iterator.Inner' in a `@Sendable` closure; this is an error in the Swift 6 language mode
232 | )
233 | }
:
264 | extension AsyncThrowingPublisher.Iterator {
265 |
266 | fileprivate final class Inner: Subscriber, Cancellable {
| `- note: class 'Inner' does not conform to the 'Sendable' protocol
267 | typealias Input = Upstream.Output
268 | typealias Failure = Upstream.Failure
/host/spi-builder-workspace/Sources/OpenCombine/Subscriptions.swift:17:23: warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
15 | /// Use the empty subscription when you need a `Subscription` that ignores requests
16 | /// and cancellation.
17 | public static let empty: Subscription = _EmptySubscription.singleton
| |- warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'empty' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | }
19 |
/host/spi-builder-workspace/Sources/OpenCombine/Subscription.swift:18:17: note: protocol 'Subscription' does not conform to the 'Sendable' protocol
16 | /// Canceling a subscription frees up any resources previously allocated by attaching
17 | /// the `Subscriber`.
18 | public protocol Subscription: Cancellable, CustomCombineIdentifierConvertible {
| `- note: protocol 'Subscription' does not conform to the 'Sendable' protocol
19 |
20 | /// Tells a publisher that it may send more values to the subscriber.
/host/spi-builder-workspace/Sources/OpenCombine/Concurrency/Future+Concurrency.swift:76:26: warning: sending 'input' risks causing data races; this is an error in the Swift 6 language mode
74 | if let continuation = self.continuation.take() {
75 | lock.unlock()
76 | continuation.resume(returning: input)
| |- warning: sending 'input' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'input' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
77 | } else {
78 | assertionFailure("Unexpected state: already completed")
/host/spi-builder-workspace/Sources/OpenCombine/Concurrency/GENERATED-Publisher+Concurrency.swift:137:26: warning: task-isolated value of type 'AsyncPublisher<Upstream>.Iterator.Inner.Input' (aka 'Upstream.Output') passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
135 | let continuation = pending.removeFirst()
136 | lock.unlock()
137 | continuation.resume(returning: input)
| `- warning: task-isolated value of type 'AsyncPublisher<Upstream>.Iterator.Inner.Input' (aka 'Upstream.Output') passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
138 | return .none
139 | }
/host/spi-builder-workspace/Sources/OpenCombine/Concurrency/GENERATED-Publisher+Concurrency.swift:312:26: warning: task-isolated value of type 'AsyncThrowingPublisher<Upstream>.Iterator.Inner.Input' (aka 'Upstream.Output') passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
310 | let continuation = pending.removeFirst()
311 | lock.unlock()
312 | continuation.resume(returning: input)
| `- warning: task-isolated value of type 'AsyncThrowingPublisher<Upstream>.Iterator.Inner.Input' (aka 'Upstream.Output') passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
313 | return .none
314 | }
[49/111] Compiling OpenCombine AnySubscriber.swift
/host/spi-builder-workspace/Sources/OpenCombine/Concurrency/GENERATED-Publisher+Concurrency.swift:56:40: warning: capture of 'inner' with non-sendable type 'AsyncPublisher<Upstream>.Iterator.Inner' in a `@Sendable` closure; this is an error in the Swift 6 language mode
54 | return await withTaskCancellationHandler(
55 | operation: { [inner] in await inner.next() },
56 | onCancel: { [inner] in inner.cancel() }
| `- warning: capture of 'inner' with non-sendable type 'AsyncPublisher<Upstream>.Iterator.Inner' in a `@Sendable` closure; this is an error in the Swift 6 language mode
57 | )
58 | }
:
89 | extension AsyncPublisher.Iterator {
90 |
91 | fileprivate final class Inner: Subscriber, Cancellable {
| `- note: class 'Inner' does not conform to the 'Sendable' protocol
92 | typealias Input = Upstream.Output
93 | typealias Failure = Upstream.Failure
/host/spi-builder-workspace/Sources/OpenCombine/Concurrency/GENERATED-Publisher+Concurrency.swift:231:40: warning: capture of 'inner' with non-sendable type 'AsyncThrowingPublisher<Upstream>.Iterator.Inner' in a `@Sendable` closure; this is an error in the Swift 6 language mode
229 | return try await withTaskCancellationHandler(
230 | operation: { [inner] in try await inner.next() },
231 | onCancel: { [inner] in inner.cancel() }
| `- warning: capture of 'inner' with non-sendable type 'AsyncThrowingPublisher<Upstream>.Iterator.Inner' in a `@Sendable` closure; this is an error in the Swift 6 language mode
232 | )
233 | }
:
264 | extension AsyncThrowingPublisher.Iterator {
265 |
266 | fileprivate final class Inner: Subscriber, Cancellable {
| `- note: class 'Inner' does not conform to the 'Sendable' protocol
267 | typealias Input = Upstream.Output
268 | typealias Failure = Upstream.Failure
/host/spi-builder-workspace/Sources/OpenCombine/Subscriptions.swift:17:23: warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
15 | /// Use the empty subscription when you need a `Subscription` that ignores requests
16 | /// and cancellation.
17 | public static let empty: Subscription = _EmptySubscription.singleton
| |- warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'empty' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | }
19 |
/host/spi-builder-workspace/Sources/OpenCombine/Subscription.swift:18:17: note: protocol 'Subscription' does not conform to the 'Sendable' protocol
16 | /// Canceling a subscription frees up any resources previously allocated by attaching
17 | /// the `Subscriber`.
18 | public protocol Subscription: Cancellable, CustomCombineIdentifierConvertible {
| `- note: protocol 'Subscription' does not conform to the 'Sendable' protocol
19 |
20 | /// Tells a publisher that it may send more values to the subscriber.
/host/spi-builder-workspace/Sources/OpenCombine/Concurrency/Future+Concurrency.swift:76:26: warning: sending 'input' risks causing data races; this is an error in the Swift 6 language mode
74 | if let continuation = self.continuation.take() {
75 | lock.unlock()
76 | continuation.resume(returning: input)
| |- warning: sending 'input' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'input' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
77 | } else {
78 | assertionFailure("Unexpected state: already completed")
/host/spi-builder-workspace/Sources/OpenCombine/Concurrency/GENERATED-Publisher+Concurrency.swift:137:26: warning: task-isolated value of type 'AsyncPublisher<Upstream>.Iterator.Inner.Input' (aka 'Upstream.Output') passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
135 | let continuation = pending.removeFirst()
136 | lock.unlock()
137 | continuation.resume(returning: input)
| `- warning: task-isolated value of type 'AsyncPublisher<Upstream>.Iterator.Inner.Input' (aka 'Upstream.Output') passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
138 | return .none
139 | }
/host/spi-builder-workspace/Sources/OpenCombine/Concurrency/GENERATED-Publisher+Concurrency.swift:312:26: warning: task-isolated value of type 'AsyncThrowingPublisher<Upstream>.Iterator.Inner.Input' (aka 'Upstream.Output') passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
310 | let continuation = pending.removeFirst()
311 | lock.unlock()
312 | continuation.resume(returning: input)
| `- warning: task-isolated value of type 'AsyncThrowingPublisher<Upstream>.Iterator.Inner.Input' (aka 'Upstream.Output') passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
313 | return .none
314 | }
[50/111] Compiling OpenCombine Cancellable.swift
/host/spi-builder-workspace/Sources/OpenCombine/Concurrency/GENERATED-Publisher+Concurrency.swift:56:40: warning: capture of 'inner' with non-sendable type 'AsyncPublisher<Upstream>.Iterator.Inner' in a `@Sendable` closure; this is an error in the Swift 6 language mode
54 | return await withTaskCancellationHandler(
55 | operation: { [inner] in await inner.next() },
56 | onCancel: { [inner] in inner.cancel() }
| `- warning: capture of 'inner' with non-sendable type 'AsyncPublisher<Upstream>.Iterator.Inner' in a `@Sendable` closure; this is an error in the Swift 6 language mode
57 | )
58 | }
:
89 | extension AsyncPublisher.Iterator {
90 |
91 | fileprivate final class Inner: Subscriber, Cancellable {
| `- note: class 'Inner' does not conform to the 'Sendable' protocol
92 | typealias Input = Upstream.Output
93 | typealias Failure = Upstream.Failure
/host/spi-builder-workspace/Sources/OpenCombine/Concurrency/GENERATED-Publisher+Concurrency.swift:231:40: warning: capture of 'inner' with non-sendable type 'AsyncThrowingPublisher<Upstream>.Iterator.Inner' in a `@Sendable` closure; this is an error in the Swift 6 language mode
229 | return try await withTaskCancellationHandler(
230 | operation: { [inner] in try await inner.next() },
231 | onCancel: { [inner] in inner.cancel() }
| `- warning: capture of 'inner' with non-sendable type 'AsyncThrowingPublisher<Upstream>.Iterator.Inner' in a `@Sendable` closure; this is an error in the Swift 6 language mode
232 | )
233 | }
:
264 | extension AsyncThrowingPublisher.Iterator {
265 |
266 | fileprivate final class Inner: Subscriber, Cancellable {
| `- note: class 'Inner' does not conform to the 'Sendable' protocol
267 | typealias Input = Upstream.Output
268 | typealias Failure = Upstream.Failure
/host/spi-builder-workspace/Sources/OpenCombine/Subscriptions.swift:17:23: warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
15 | /// Use the empty subscription when you need a `Subscription` that ignores requests
16 | /// and cancellation.
17 | public static let empty: Subscription = _EmptySubscription.singleton
| |- warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'empty' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | }
19 |
/host/spi-builder-workspace/Sources/OpenCombine/Subscription.swift:18:17: note: protocol 'Subscription' does not conform to the 'Sendable' protocol
16 | /// Canceling a subscription frees up any resources previously allocated by attaching
17 | /// the `Subscriber`.
18 | public protocol Subscription: Cancellable, CustomCombineIdentifierConvertible {
| `- note: protocol 'Subscription' does not conform to the 'Sendable' protocol
19 |
20 | /// Tells a publisher that it may send more values to the subscriber.
/host/spi-builder-workspace/Sources/OpenCombine/Concurrency/Future+Concurrency.swift:76:26: warning: sending 'input' risks causing data races; this is an error in the Swift 6 language mode
74 | if let continuation = self.continuation.take() {
75 | lock.unlock()
76 | continuation.resume(returning: input)
| |- warning: sending 'input' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'input' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
77 | } else {
78 | assertionFailure("Unexpected state: already completed")
/host/spi-builder-workspace/Sources/OpenCombine/Concurrency/GENERATED-Publisher+Concurrency.swift:137:26: warning: task-isolated value of type 'AsyncPublisher<Upstream>.Iterator.Inner.Input' (aka 'Upstream.Output') passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
135 | let continuation = pending.removeFirst()
136 | lock.unlock()
137 | continuation.resume(returning: input)
| `- warning: task-isolated value of type 'AsyncPublisher<Upstream>.Iterator.Inner.Input' (aka 'Upstream.Output') passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
138 | return .none
139 | }
/host/spi-builder-workspace/Sources/OpenCombine/Concurrency/GENERATED-Publisher+Concurrency.swift:312:26: warning: task-isolated value of type 'AsyncThrowingPublisher<Upstream>.Iterator.Inner.Input' (aka 'Upstream.Output') passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
310 | let continuation = pending.removeFirst()
311 | lock.unlock()
312 | continuation.resume(returning: input)
| `- warning: task-isolated value of type 'AsyncThrowingPublisher<Upstream>.Iterator.Inner.Input' (aka 'Upstream.Output') passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
313 | return .none
314 | }
[51/111] Compiling OpenCombine Codable.swift
/host/spi-builder-workspace/Sources/OpenCombine/Concurrency/GENERATED-Publisher+Concurrency.swift:56:40: warning: capture of 'inner' with non-sendable type 'AsyncPublisher<Upstream>.Iterator.Inner' in a `@Sendable` closure; this is an error in the Swift 6 language mode
54 | return await withTaskCancellationHandler(
55 | operation: { [inner] in await inner.next() },
56 | onCancel: { [inner] in inner.cancel() }
| `- warning: capture of 'inner' with non-sendable type 'AsyncPublisher<Upstream>.Iterator.Inner' in a `@Sendable` closure; this is an error in the Swift 6 language mode
57 | )
58 | }
:
89 | extension AsyncPublisher.Iterator {
90 |
91 | fileprivate final class Inner: Subscriber, Cancellable {
| `- note: class 'Inner' does not conform to the 'Sendable' protocol
92 | typealias Input = Upstream.Output
93 | typealias Failure = Upstream.Failure
/host/spi-builder-workspace/Sources/OpenCombine/Concurrency/GENERATED-Publisher+Concurrency.swift:231:40: warning: capture of 'inner' with non-sendable type 'AsyncThrowingPublisher<Upstream>.Iterator.Inner' in a `@Sendable` closure; this is an error in the Swift 6 language mode
229 | return try await withTaskCancellationHandler(
230 | operation: { [inner] in try await inner.next() },
231 | onCancel: { [inner] in inner.cancel() }
| `- warning: capture of 'inner' with non-sendable type 'AsyncThrowingPublisher<Upstream>.Iterator.Inner' in a `@Sendable` closure; this is an error in the Swift 6 language mode
232 | )
233 | }
:
264 | extension AsyncThrowingPublisher.Iterator {
265 |
266 | fileprivate final class Inner: Subscriber, Cancellable {
| `- note: class 'Inner' does not conform to the 'Sendable' protocol
267 | typealias Input = Upstream.Output
268 | typealias Failure = Upstream.Failure
/host/spi-builder-workspace/Sources/OpenCombine/Subscriptions.swift:17:23: warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
15 | /// Use the empty subscription when you need a `Subscription` that ignores requests
16 | /// and cancellation.
17 | public static let empty: Subscription = _EmptySubscription.singleton
| |- warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'empty' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | }
19 |
/host/spi-builder-workspace/Sources/OpenCombine/Subscription.swift:18:17: note: protocol 'Subscription' does not conform to the 'Sendable' protocol
16 | /// Canceling a subscription frees up any resources previously allocated by attaching
17 | /// the `Subscriber`.
18 | public protocol Subscription: Cancellable, CustomCombineIdentifierConvertible {
| `- note: protocol 'Subscription' does not conform to the 'Sendable' protocol
19 |
20 | /// Tells a publisher that it may send more values to the subscriber.
/host/spi-builder-workspace/Sources/OpenCombine/Concurrency/Future+Concurrency.swift:76:26: warning: sending 'input' risks causing data races; this is an error in the Swift 6 language mode
74 | if let continuation = self.continuation.take() {
75 | lock.unlock()
76 | continuation.resume(returning: input)
| |- warning: sending 'input' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'input' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
77 | } else {
78 | assertionFailure("Unexpected state: already completed")
/host/spi-builder-workspace/Sources/OpenCombine/Concurrency/GENERATED-Publisher+Concurrency.swift:137:26: warning: task-isolated value of type 'AsyncPublisher<Upstream>.Iterator.Inner.Input' (aka 'Upstream.Output') passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
135 | let continuation = pending.removeFirst()
136 | lock.unlock()
137 | continuation.resume(returning: input)
| `- warning: task-isolated value of type 'AsyncPublisher<Upstream>.Iterator.Inner.Input' (aka 'Upstream.Output') passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
138 | return .none
139 | }
/host/spi-builder-workspace/Sources/OpenCombine/Concurrency/GENERATED-Publisher+Concurrency.swift:312:26: warning: task-isolated value of type 'AsyncThrowingPublisher<Upstream>.Iterator.Inner.Input' (aka 'Upstream.Output') passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
310 | let continuation = pending.removeFirst()
311 | lock.unlock()
312 | continuation.resume(returning: input)
| `- warning: task-isolated value of type 'AsyncThrowingPublisher<Upstream>.Iterator.Inner.Input' (aka 'Upstream.Output') passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
313 | return .none
314 | }
[52/111] Compiling OpenCombine CombineIdentifier.swift
/host/spi-builder-workspace/Sources/OpenCombine/Concurrency/GENERATED-Publisher+Concurrency.swift:56:40: warning: capture of 'inner' with non-sendable type 'AsyncPublisher<Upstream>.Iterator.Inner' in a `@Sendable` closure; this is an error in the Swift 6 language mode
54 | return await withTaskCancellationHandler(
55 | operation: { [inner] in await inner.next() },
56 | onCancel: { [inner] in inner.cancel() }
| `- warning: capture of 'inner' with non-sendable type 'AsyncPublisher<Upstream>.Iterator.Inner' in a `@Sendable` closure; this is an error in the Swift 6 language mode
57 | )
58 | }
:
89 | extension AsyncPublisher.Iterator {
90 |
91 | fileprivate final class Inner: Subscriber, Cancellable {
| `- note: class 'Inner' does not conform to the 'Sendable' protocol
92 | typealias Input = Upstream.Output
93 | typealias Failure = Upstream.Failure
/host/spi-builder-workspace/Sources/OpenCombine/Concurrency/GENERATED-Publisher+Concurrency.swift:231:40: warning: capture of 'inner' with non-sendable type 'AsyncThrowingPublisher<Upstream>.Iterator.Inner' in a `@Sendable` closure; this is an error in the Swift 6 language mode
229 | return try await withTaskCancellationHandler(
230 | operation: { [inner] in try await inner.next() },
231 | onCancel: { [inner] in inner.cancel() }
| `- warning: capture of 'inner' with non-sendable type 'AsyncThrowingPublisher<Upstream>.Iterator.Inner' in a `@Sendable` closure; this is an error in the Swift 6 language mode
232 | )
233 | }
:
264 | extension AsyncThrowingPublisher.Iterator {
265 |
266 | fileprivate final class Inner: Subscriber, Cancellable {
| `- note: class 'Inner' does not conform to the 'Sendable' protocol
267 | typealias Input = Upstream.Output
268 | typealias Failure = Upstream.Failure
/host/spi-builder-workspace/Sources/OpenCombine/Subscriptions.swift:17:23: warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
15 | /// Use the empty subscription when you need a `Subscription` that ignores requests
16 | /// and cancellation.
17 | public static let empty: Subscription = _EmptySubscription.singleton
| |- warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'empty' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | }
19 |
/host/spi-builder-workspace/Sources/OpenCombine/Subscription.swift:18:17: note: protocol 'Subscription' does not conform to the 'Sendable' protocol
16 | /// Canceling a subscription frees up any resources previously allocated by attaching
17 | /// the `Subscriber`.
18 | public protocol Subscription: Cancellable, CustomCombineIdentifierConvertible {
| `- note: protocol 'Subscription' does not conform to the 'Sendable' protocol
19 |
20 | /// Tells a publisher that it may send more values to the subscriber.
/host/spi-builder-workspace/Sources/OpenCombine/Concurrency/Future+Concurrency.swift:76:26: warning: sending 'input' risks causing data races; this is an error in the Swift 6 language mode
74 | if let continuation = self.continuation.take() {
75 | lock.unlock()
76 | continuation.resume(returning: input)
| |- warning: sending 'input' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'input' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
77 | } else {
78 | assertionFailure("Unexpected state: already completed")
/host/spi-builder-workspace/Sources/OpenCombine/Concurrency/GENERATED-Publisher+Concurrency.swift:137:26: warning: task-isolated value of type 'AsyncPublisher<Upstream>.Iterator.Inner.Input' (aka 'Upstream.Output') passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
135 | let continuation = pending.removeFirst()
136 | lock.unlock()
137 | continuation.resume(returning: input)
| `- warning: task-isolated value of type 'AsyncPublisher<Upstream>.Iterator.Inner.Input' (aka 'Upstream.Output') passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
138 | return .none
139 | }
/host/spi-builder-workspace/Sources/OpenCombine/Concurrency/GENERATED-Publisher+Concurrency.swift:312:26: warning: task-isolated value of type 'AsyncThrowingPublisher<Upstream>.Iterator.Inner.Input' (aka 'Upstream.Output') passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
310 | let continuation = pending.removeFirst()
311 | lock.unlock()
312 | continuation.resume(returning: input)
| `- warning: task-isolated value of type 'AsyncThrowingPublisher<Upstream>.Iterator.Inner.Input' (aka 'Upstream.Output') passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
313 | return .none
314 | }
[53/111] Compiling OpenCombine Future+Concurrency.swift
/host/spi-builder-workspace/Sources/OpenCombine/Concurrency/GENERATED-Publisher+Concurrency.swift:56:40: warning: capture of 'inner' with non-sendable type 'AsyncPublisher<Upstream>.Iterator.Inner' in a `@Sendable` closure; this is an error in the Swift 6 language mode
54 | return await withTaskCancellationHandler(
55 | operation: { [inner] in await inner.next() },
56 | onCancel: { [inner] in inner.cancel() }
| `- warning: capture of 'inner' with non-sendable type 'AsyncPublisher<Upstream>.Iterator.Inner' in a `@Sendable` closure; this is an error in the Swift 6 language mode
57 | )
58 | }
:
89 | extension AsyncPublisher.Iterator {
90 |
91 | fileprivate final class Inner: Subscriber, Cancellable {
| `- note: class 'Inner' does not conform to the 'Sendable' protocol
92 | typealias Input = Upstream.Output
93 | typealias Failure = Upstream.Failure
/host/spi-builder-workspace/Sources/OpenCombine/Concurrency/GENERATED-Publisher+Concurrency.swift:231:40: warning: capture of 'inner' with non-sendable type 'AsyncThrowingPublisher<Upstream>.Iterator.Inner' in a `@Sendable` closure; this is an error in the Swift 6 language mode
229 | return try await withTaskCancellationHandler(
230 | operation: { [inner] in try await inner.next() },
231 | onCancel: { [inner] in inner.cancel() }
| `- warning: capture of 'inner' with non-sendable type 'AsyncThrowingPublisher<Upstream>.Iterator.Inner' in a `@Sendable` closure; this is an error in the Swift 6 language mode
232 | )
233 | }
:
264 | extension AsyncThrowingPublisher.Iterator {
265 |
266 | fileprivate final class Inner: Subscriber, Cancellable {
| `- note: class 'Inner' does not conform to the 'Sendable' protocol
267 | typealias Input = Upstream.Output
268 | typealias Failure = Upstream.Failure
/host/spi-builder-workspace/Sources/OpenCombine/Subscriptions.swift:17:23: warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
15 | /// Use the empty subscription when you need a `Subscription` that ignores requests
16 | /// and cancellation.
17 | public static let empty: Subscription = _EmptySubscription.singleton
| |- warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'empty' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | }
19 |
/host/spi-builder-workspace/Sources/OpenCombine/Subscription.swift:18:17: note: protocol 'Subscription' does not conform to the 'Sendable' protocol
16 | /// Canceling a subscription frees up any resources previously allocated by attaching
17 | /// the `Subscriber`.
18 | public protocol Subscription: Cancellable, CustomCombineIdentifierConvertible {
| `- note: protocol 'Subscription' does not conform to the 'Sendable' protocol
19 |
20 | /// Tells a publisher that it may send more values to the subscriber.
/host/spi-builder-workspace/Sources/OpenCombine/Concurrency/Future+Concurrency.swift:76:26: warning: sending 'input' risks causing data races; this is an error in the Swift 6 language mode
74 | if let continuation = self.continuation.take() {
75 | lock.unlock()
76 | continuation.resume(returning: input)
| |- warning: sending 'input' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'input' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
77 | } else {
78 | assertionFailure("Unexpected state: already completed")
/host/spi-builder-workspace/Sources/OpenCombine/Concurrency/GENERATED-Publisher+Concurrency.swift:137:26: warning: task-isolated value of type 'AsyncPublisher<Upstream>.Iterator.Inner.Input' (aka 'Upstream.Output') passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
135 | let continuation = pending.removeFirst()
136 | lock.unlock()
137 | continuation.resume(returning: input)
| `- warning: task-isolated value of type 'AsyncPublisher<Upstream>.Iterator.Inner.Input' (aka 'Upstream.Output') passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
138 | return .none
139 | }
/host/spi-builder-workspace/Sources/OpenCombine/Concurrency/GENERATED-Publisher+Concurrency.swift:312:26: warning: task-isolated value of type 'AsyncThrowingPublisher<Upstream>.Iterator.Inner.Input' (aka 'Upstream.Output') passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
310 | let continuation = pending.removeFirst()
311 | lock.unlock()
312 | continuation.resume(returning: input)
| `- warning: task-isolated value of type 'AsyncThrowingPublisher<Upstream>.Iterator.Inner.Input' (aka 'Upstream.Output') passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
313 | return .none
314 | }
[54/111] Compiling OpenCombine GENERATED-Publisher+Concurrency.swift
/host/spi-builder-workspace/Sources/OpenCombine/Concurrency/GENERATED-Publisher+Concurrency.swift:56:40: warning: capture of 'inner' with non-sendable type 'AsyncPublisher<Upstream>.Iterator.Inner' in a `@Sendable` closure; this is an error in the Swift 6 language mode
54 | return await withTaskCancellationHandler(
55 | operation: { [inner] in await inner.next() },
56 | onCancel: { [inner] in inner.cancel() }
| `- warning: capture of 'inner' with non-sendable type 'AsyncPublisher<Upstream>.Iterator.Inner' in a `@Sendable` closure; this is an error in the Swift 6 language mode
57 | )
58 | }
:
89 | extension AsyncPublisher.Iterator {
90 |
91 | fileprivate final class Inner: Subscriber, Cancellable {
| `- note: class 'Inner' does not conform to the 'Sendable' protocol
92 | typealias Input = Upstream.Output
93 | typealias Failure = Upstream.Failure
/host/spi-builder-workspace/Sources/OpenCombine/Concurrency/GENERATED-Publisher+Concurrency.swift:231:40: warning: capture of 'inner' with non-sendable type 'AsyncThrowingPublisher<Upstream>.Iterator.Inner' in a `@Sendable` closure; this is an error in the Swift 6 language mode
229 | return try await withTaskCancellationHandler(
230 | operation: { [inner] in try await inner.next() },
231 | onCancel: { [inner] in inner.cancel() }
| `- warning: capture of 'inner' with non-sendable type 'AsyncThrowingPublisher<Upstream>.Iterator.Inner' in a `@Sendable` closure; this is an error in the Swift 6 language mode
232 | )
233 | }
:
264 | extension AsyncThrowingPublisher.Iterator {
265 |
266 | fileprivate final class Inner: Subscriber, Cancellable {
| `- note: class 'Inner' does not conform to the 'Sendable' protocol
267 | typealias Input = Upstream.Output
268 | typealias Failure = Upstream.Failure
/host/spi-builder-workspace/Sources/OpenCombine/Subscriptions.swift:17:23: warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
15 | /// Use the empty subscription when you need a `Subscription` that ignores requests
16 | /// and cancellation.
17 | public static let empty: Subscription = _EmptySubscription.singleton
| |- warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'empty' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | }
19 |
/host/spi-builder-workspace/Sources/OpenCombine/Subscription.swift:18:17: note: protocol 'Subscription' does not conform to the 'Sendable' protocol
16 | /// Canceling a subscription frees up any resources previously allocated by attaching
17 | /// the `Subscriber`.
18 | public protocol Subscription: Cancellable, CustomCombineIdentifierConvertible {
| `- note: protocol 'Subscription' does not conform to the 'Sendable' protocol
19 |
20 | /// Tells a publisher that it may send more values to the subscriber.
/host/spi-builder-workspace/Sources/OpenCombine/Concurrency/Future+Concurrency.swift:76:26: warning: sending 'input' risks causing data races; this is an error in the Swift 6 language mode
74 | if let continuation = self.continuation.take() {
75 | lock.unlock()
76 | continuation.resume(returning: input)
| |- warning: sending 'input' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'input' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
77 | } else {
78 | assertionFailure("Unexpected state: already completed")
/host/spi-builder-workspace/Sources/OpenCombine/Concurrency/GENERATED-Publisher+Concurrency.swift:137:26: warning: task-isolated value of type 'AsyncPublisher<Upstream>.Iterator.Inner.Input' (aka 'Upstream.Output') passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
135 | let continuation = pending.removeFirst()
136 | lock.unlock()
137 | continuation.resume(returning: input)
| `- warning: task-isolated value of type 'AsyncPublisher<Upstream>.Iterator.Inner.Input' (aka 'Upstream.Output') passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
138 | return .none
139 | }
/host/spi-builder-workspace/Sources/OpenCombine/Concurrency/GENERATED-Publisher+Concurrency.swift:312:26: warning: task-isolated value of type 'AsyncThrowingPublisher<Upstream>.Iterator.Inner.Input' (aka 'Upstream.Output') passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
310 | let continuation = pending.removeFirst()
311 | lock.unlock()
312 | continuation.resume(returning: input)
| `- warning: task-isolated value of type 'AsyncThrowingPublisher<Upstream>.Iterator.Inner.Input' (aka 'Upstream.Output') passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
313 | return .none
314 | }
[55/111] Compiling OpenCombine CurrentValueSubject.swift
/host/spi-builder-workspace/Sources/OpenCombine/Concurrency/GENERATED-Publisher+Concurrency.swift:56:40: warning: capture of 'inner' with non-sendable type 'AsyncPublisher<Upstream>.Iterator.Inner' in a `@Sendable` closure; this is an error in the Swift 6 language mode
54 | return await withTaskCancellationHandler(
55 | operation: { [inner] in await inner.next() },
56 | onCancel: { [inner] in inner.cancel() }
| `- warning: capture of 'inner' with non-sendable type 'AsyncPublisher<Upstream>.Iterator.Inner' in a `@Sendable` closure; this is an error in the Swift 6 language mode
57 | )
58 | }
:
89 | extension AsyncPublisher.Iterator {
90 |
91 | fileprivate final class Inner: Subscriber, Cancellable {
| `- note: class 'Inner' does not conform to the 'Sendable' protocol
92 | typealias Input = Upstream.Output
93 | typealias Failure = Upstream.Failure
/host/spi-builder-workspace/Sources/OpenCombine/Concurrency/GENERATED-Publisher+Concurrency.swift:231:40: warning: capture of 'inner' with non-sendable type 'AsyncThrowingPublisher<Upstream>.Iterator.Inner' in a `@Sendable` closure; this is an error in the Swift 6 language mode
229 | return try await withTaskCancellationHandler(
230 | operation: { [inner] in try await inner.next() },
231 | onCancel: { [inner] in inner.cancel() }
| `- warning: capture of 'inner' with non-sendable type 'AsyncThrowingPublisher<Upstream>.Iterator.Inner' in a `@Sendable` closure; this is an error in the Swift 6 language mode
232 | )
233 | }
:
264 | extension AsyncThrowingPublisher.Iterator {
265 |
266 | fileprivate final class Inner: Subscriber, Cancellable {
| `- note: class 'Inner' does not conform to the 'Sendable' protocol
267 | typealias Input = Upstream.Output
268 | typealias Failure = Upstream.Failure
/host/spi-builder-workspace/Sources/OpenCombine/Subscriptions.swift:17:23: warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
15 | /// Use the empty subscription when you need a `Subscription` that ignores requests
16 | /// and cancellation.
17 | public static let empty: Subscription = _EmptySubscription.singleton
| |- warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'empty' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | }
19 |
/host/spi-builder-workspace/Sources/OpenCombine/Subscription.swift:18:17: note: protocol 'Subscription' does not conform to the 'Sendable' protocol
16 | /// Canceling a subscription frees up any resources previously allocated by attaching
17 | /// the `Subscriber`.
18 | public protocol Subscription: Cancellable, CustomCombineIdentifierConvertible {
| `- note: protocol 'Subscription' does not conform to the 'Sendable' protocol
19 |
20 | /// Tells a publisher that it may send more values to the subscriber.
/host/spi-builder-workspace/Sources/OpenCombine/Concurrency/Future+Concurrency.swift:76:26: warning: sending 'input' risks causing data races; this is an error in the Swift 6 language mode
74 | if let continuation = self.continuation.take() {
75 | lock.unlock()
76 | continuation.resume(returning: input)
| |- warning: sending 'input' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'input' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
77 | } else {
78 | assertionFailure("Unexpected state: already completed")
/host/spi-builder-workspace/Sources/OpenCombine/Concurrency/GENERATED-Publisher+Concurrency.swift:137:26: warning: task-isolated value of type 'AsyncPublisher<Upstream>.Iterator.Inner.Input' (aka 'Upstream.Output') passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
135 | let continuation = pending.removeFirst()
136 | lock.unlock()
137 | continuation.resume(returning: input)
| `- warning: task-isolated value of type 'AsyncPublisher<Upstream>.Iterator.Inner.Input' (aka 'Upstream.Output') passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
138 | return .none
139 | }
/host/spi-builder-workspace/Sources/OpenCombine/Concurrency/GENERATED-Publisher+Concurrency.swift:312:26: warning: task-isolated value of type 'AsyncThrowingPublisher<Upstream>.Iterator.Inner.Input' (aka 'Upstream.Output') passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
310 | let continuation = pending.removeFirst()
311 | lock.unlock()
312 | continuation.resume(returning: input)
| `- warning: task-isolated value of type 'AsyncThrowingPublisher<Upstream>.Iterator.Inner.Input' (aka 'Upstream.Output') passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
313 | return .none
314 | }
[56/111] Compiling OpenCombine CustomCombineIdentifierConvertible.swift
/host/spi-builder-workspace/Sources/OpenCombine/Concurrency/GENERATED-Publisher+Concurrency.swift:56:40: warning: capture of 'inner' with non-sendable type 'AsyncPublisher<Upstream>.Iterator.Inner' in a `@Sendable` closure; this is an error in the Swift 6 language mode
54 | return await withTaskCancellationHandler(
55 | operation: { [inner] in await inner.next() },
56 | onCancel: { [inner] in inner.cancel() }
| `- warning: capture of 'inner' with non-sendable type 'AsyncPublisher<Upstream>.Iterator.Inner' in a `@Sendable` closure; this is an error in the Swift 6 language mode
57 | )
58 | }
:
89 | extension AsyncPublisher.Iterator {
90 |
91 | fileprivate final class Inner: Subscriber, Cancellable {
| `- note: class 'Inner' does not conform to the 'Sendable' protocol
92 | typealias Input = Upstream.Output
93 | typealias Failure = Upstream.Failure
/host/spi-builder-workspace/Sources/OpenCombine/Concurrency/GENERATED-Publisher+Concurrency.swift:231:40: warning: capture of 'inner' with non-sendable type 'AsyncThrowingPublisher<Upstream>.Iterator.Inner' in a `@Sendable` closure; this is an error in the Swift 6 language mode
229 | return try await withTaskCancellationHandler(
230 | operation: { [inner] in try await inner.next() },
231 | onCancel: { [inner] in inner.cancel() }
| `- warning: capture of 'inner' with non-sendable type 'AsyncThrowingPublisher<Upstream>.Iterator.Inner' in a `@Sendable` closure; this is an error in the Swift 6 language mode
232 | )
233 | }
:
264 | extension AsyncThrowingPublisher.Iterator {
265 |
266 | fileprivate final class Inner: Subscriber, Cancellable {
| `- note: class 'Inner' does not conform to the 'Sendable' protocol
267 | typealias Input = Upstream.Output
268 | typealias Failure = Upstream.Failure
/host/spi-builder-workspace/Sources/OpenCombine/Subscriptions.swift:17:23: warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
15 | /// Use the empty subscription when you need a `Subscription` that ignores requests
16 | /// and cancellation.
17 | public static let empty: Subscription = _EmptySubscription.singleton
| |- warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'empty' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | }
19 |
/host/spi-builder-workspace/Sources/OpenCombine/Subscription.swift:18:17: note: protocol 'Subscription' does not conform to the 'Sendable' protocol
16 | /// Canceling a subscription frees up any resources previously allocated by attaching
17 | /// the `Subscriber`.
18 | public protocol Subscription: Cancellable, CustomCombineIdentifierConvertible {
| `- note: protocol 'Subscription' does not conform to the 'Sendable' protocol
19 |
20 | /// Tells a publisher that it may send more values to the subscriber.
/host/spi-builder-workspace/Sources/OpenCombine/Concurrency/Future+Concurrency.swift:76:26: warning: sending 'input' risks causing data races; this is an error in the Swift 6 language mode
74 | if let continuation = self.continuation.take() {
75 | lock.unlock()
76 | continuation.resume(returning: input)
| |- warning: sending 'input' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'input' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
77 | } else {
78 | assertionFailure("Unexpected state: already completed")
/host/spi-builder-workspace/Sources/OpenCombine/Concurrency/GENERATED-Publisher+Concurrency.swift:137:26: warning: task-isolated value of type 'AsyncPublisher<Upstream>.Iterator.Inner.Input' (aka 'Upstream.Output') passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
135 | let continuation = pending.removeFirst()
136 | lock.unlock()
137 | continuation.resume(returning: input)
| `- warning: task-isolated value of type 'AsyncPublisher<Upstream>.Iterator.Inner.Input' (aka 'Upstream.Output') passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
138 | return .none
139 | }
/host/spi-builder-workspace/Sources/OpenCombine/Concurrency/GENERATED-Publisher+Concurrency.swift:312:26: warning: task-isolated value of type 'AsyncThrowingPublisher<Upstream>.Iterator.Inner.Input' (aka 'Upstream.Output') passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
310 | let continuation = pending.removeFirst()
311 | lock.unlock()
312 | continuation.resume(returning: input)
| `- warning: task-isolated value of type 'AsyncThrowingPublisher<Upstream>.Iterator.Inner.Input' (aka 'Upstream.Output') passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
313 | return .none
314 | }
[57/111] Compiling OpenCombine Future.swift
/host/spi-builder-workspace/Sources/OpenCombine/Concurrency/GENERATED-Publisher+Concurrency.swift:56:40: warning: capture of 'inner' with non-sendable type 'AsyncPublisher<Upstream>.Iterator.Inner' in a `@Sendable` closure; this is an error in the Swift 6 language mode
54 | return await withTaskCancellationHandler(
55 | operation: { [inner] in await inner.next() },
56 | onCancel: { [inner] in inner.cancel() }
| `- warning: capture of 'inner' with non-sendable type 'AsyncPublisher<Upstream>.Iterator.Inner' in a `@Sendable` closure; this is an error in the Swift 6 language mode
57 | )
58 | }
:
89 | extension AsyncPublisher.Iterator {
90 |
91 | fileprivate final class Inner: Subscriber, Cancellable {
| `- note: class 'Inner' does not conform to the 'Sendable' protocol
92 | typealias Input = Upstream.Output
93 | typealias Failure = Upstream.Failure
/host/spi-builder-workspace/Sources/OpenCombine/Concurrency/GENERATED-Publisher+Concurrency.swift:231:40: warning: capture of 'inner' with non-sendable type 'AsyncThrowingPublisher<Upstream>.Iterator.Inner' in a `@Sendable` closure; this is an error in the Swift 6 language mode
229 | return try await withTaskCancellationHandler(
230 | operation: { [inner] in try await inner.next() },
231 | onCancel: { [inner] in inner.cancel() }
| `- warning: capture of 'inner' with non-sendable type 'AsyncThrowingPublisher<Upstream>.Iterator.Inner' in a `@Sendable` closure; this is an error in the Swift 6 language mode
232 | )
233 | }
:
264 | extension AsyncThrowingPublisher.Iterator {
265 |
266 | fileprivate final class Inner: Subscriber, Cancellable {
| `- note: class 'Inner' does not conform to the 'Sendable' protocol
267 | typealias Input = Upstream.Output
268 | typealias Failure = Upstream.Failure
/host/spi-builder-workspace/Sources/OpenCombine/Subscriptions.swift:17:23: warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
15 | /// Use the empty subscription when you need a `Subscription` that ignores requests
16 | /// and cancellation.
17 | public static let empty: Subscription = _EmptySubscription.singleton
| |- warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'empty' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | }
19 |
/host/spi-builder-workspace/Sources/OpenCombine/Subscription.swift:18:17: note: protocol 'Subscription' does not conform to the 'Sendable' protocol
16 | /// Canceling a subscription frees up any resources previously allocated by attaching
17 | /// the `Subscriber`.
18 | public protocol Subscription: Cancellable, CustomCombineIdentifierConvertible {
| `- note: protocol 'Subscription' does not conform to the 'Sendable' protocol
19 |
20 | /// Tells a publisher that it may send more values to the subscriber.
/host/spi-builder-workspace/Sources/OpenCombine/Concurrency/Future+Concurrency.swift:76:26: warning: sending 'input' risks causing data races; this is an error in the Swift 6 language mode
74 | if let continuation = self.continuation.take() {
75 | lock.unlock()
76 | continuation.resume(returning: input)
| |- warning: sending 'input' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'input' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
77 | } else {
78 | assertionFailure("Unexpected state: already completed")
/host/spi-builder-workspace/Sources/OpenCombine/Concurrency/GENERATED-Publisher+Concurrency.swift:137:26: warning: task-isolated value of type 'AsyncPublisher<Upstream>.Iterator.Inner.Input' (aka 'Upstream.Output') passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
135 | let continuation = pending.removeFirst()
136 | lock.unlock()
137 | continuation.resume(returning: input)
| `- warning: task-isolated value of type 'AsyncPublisher<Upstream>.Iterator.Inner.Input' (aka 'Upstream.Output') passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
138 | return .none
139 | }
/host/spi-builder-workspace/Sources/OpenCombine/Concurrency/GENERATED-Publisher+Concurrency.swift:312:26: warning: task-isolated value of type 'AsyncThrowingPublisher<Upstream>.Iterator.Inner.Input' (aka 'Upstream.Output') passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
310 | let continuation = pending.removeFirst()
311 | lock.unlock()
312 | continuation.resume(returning: input)
| `- warning: task-isolated value of type 'AsyncThrowingPublisher<Upstream>.Iterator.Inner.Input' (aka 'Upstream.Output') passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
313 | return .none
314 | }
[58/111] Compiling OpenCombine ConduitBase.swift
/host/spi-builder-workspace/Sources/OpenCombine/Concurrency/GENERATED-Publisher+Concurrency.swift:56:40: warning: capture of 'inner' with non-sendable type 'AsyncPublisher<Upstream>.Iterator.Inner' in a `@Sendable` closure; this is an error in the Swift 6 language mode
54 | return await withTaskCancellationHandler(
55 | operation: { [inner] in await inner.next() },
56 | onCancel: { [inner] in inner.cancel() }
| `- warning: capture of 'inner' with non-sendable type 'AsyncPublisher<Upstream>.Iterator.Inner' in a `@Sendable` closure; this is an error in the Swift 6 language mode
57 | )
58 | }
:
89 | extension AsyncPublisher.Iterator {
90 |
91 | fileprivate final class Inner: Subscriber, Cancellable {
| `- note: class 'Inner' does not conform to the 'Sendable' protocol
92 | typealias Input = Upstream.Output
93 | typealias Failure = Upstream.Failure
/host/spi-builder-workspace/Sources/OpenCombine/Concurrency/GENERATED-Publisher+Concurrency.swift:231:40: warning: capture of 'inner' with non-sendable type 'AsyncThrowingPublisher<Upstream>.Iterator.Inner' in a `@Sendable` closure; this is an error in the Swift 6 language mode
229 | return try await withTaskCancellationHandler(
230 | operation: { [inner] in try await inner.next() },
231 | onCancel: { [inner] in inner.cancel() }
| `- warning: capture of 'inner' with non-sendable type 'AsyncThrowingPublisher<Upstream>.Iterator.Inner' in a `@Sendable` closure; this is an error in the Swift 6 language mode
232 | )
233 | }
:
264 | extension AsyncThrowingPublisher.Iterator {
265 |
266 | fileprivate final class Inner: Subscriber, Cancellable {
| `- note: class 'Inner' does not conform to the 'Sendable' protocol
267 | typealias Input = Upstream.Output
268 | typealias Failure = Upstream.Failure
/host/spi-builder-workspace/Sources/OpenCombine/Subscriptions.swift:17:23: warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
15 | /// Use the empty subscription when you need a `Subscription` that ignores requests
16 | /// and cancellation.
17 | public static let empty: Subscription = _EmptySubscription.singleton
| |- warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'empty' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | }
19 |
/host/spi-builder-workspace/Sources/OpenCombine/Subscription.swift:18:17: note: protocol 'Subscription' does not conform to the 'Sendable' protocol
16 | /// Canceling a subscription frees up any resources previously allocated by attaching
17 | /// the `Subscriber`.
18 | public protocol Subscription: Cancellable, CustomCombineIdentifierConvertible {
| `- note: protocol 'Subscription' does not conform to the 'Sendable' protocol
19 |
20 | /// Tells a publisher that it may send more values to the subscriber.
/host/spi-builder-workspace/Sources/OpenCombine/Concurrency/Future+Concurrency.swift:76:26: warning: sending 'input' risks causing data races; this is an error in the Swift 6 language mode
74 | if let continuation = self.continuation.take() {
75 | lock.unlock()
76 | continuation.resume(returning: input)
| |- warning: sending 'input' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'input' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
77 | } else {
78 | assertionFailure("Unexpected state: already completed")
/host/spi-builder-workspace/Sources/OpenCombine/Concurrency/GENERATED-Publisher+Concurrency.swift:137:26: warning: task-isolated value of type 'AsyncPublisher<Upstream>.Iterator.Inner.Input' (aka 'Upstream.Output') passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
135 | let continuation = pending.removeFirst()
136 | lock.unlock()
137 | continuation.resume(returning: input)
| `- warning: task-isolated value of type 'AsyncPublisher<Upstream>.Iterator.Inner.Input' (aka 'Upstream.Output') passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
138 | return .none
139 | }
/host/spi-builder-workspace/Sources/OpenCombine/Concurrency/GENERATED-Publisher+Concurrency.swift:312:26: warning: task-isolated value of type 'AsyncThrowingPublisher<Upstream>.Iterator.Inner.Input' (aka 'Upstream.Output') passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
310 | let continuation = pending.removeFirst()
311 | lock.unlock()
312 | continuation.resume(returning: input)
| `- warning: task-isolated value of type 'AsyncThrowingPublisher<Upstream>.Iterator.Inner.Input' (aka 'Upstream.Output') passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
313 | return .none
314 | }
[59/111] Compiling OpenCombine ConduitList.swift
/host/spi-builder-workspace/Sources/OpenCombine/Concurrency/GENERATED-Publisher+Concurrency.swift:56:40: warning: capture of 'inner' with non-sendable type 'AsyncPublisher<Upstream>.Iterator.Inner' in a `@Sendable` closure; this is an error in the Swift 6 language mode
54 | return await withTaskCancellationHandler(
55 | operation: { [inner] in await inner.next() },
56 | onCancel: { [inner] in inner.cancel() }
| `- warning: capture of 'inner' with non-sendable type 'AsyncPublisher<Upstream>.Iterator.Inner' in a `@Sendable` closure; this is an error in the Swift 6 language mode
57 | )
58 | }
:
89 | extension AsyncPublisher.Iterator {
90 |
91 | fileprivate final class Inner: Subscriber, Cancellable {
| `- note: class 'Inner' does not conform to the 'Sendable' protocol
92 | typealias Input = Upstream.Output
93 | typealias Failure = Upstream.Failure
/host/spi-builder-workspace/Sources/OpenCombine/Concurrency/GENERATED-Publisher+Concurrency.swift:231:40: warning: capture of 'inner' with non-sendable type 'AsyncThrowingPublisher<Upstream>.Iterator.Inner' in a `@Sendable` closure; this is an error in the Swift 6 language mode
229 | return try await withTaskCancellationHandler(
230 | operation: { [inner] in try await inner.next() },
231 | onCancel: { [inner] in inner.cancel() }
| `- warning: capture of 'inner' with non-sendable type 'AsyncThrowingPublisher<Upstream>.Iterator.Inner' in a `@Sendable` closure; this is an error in the Swift 6 language mode
232 | )
233 | }
:
264 | extension AsyncThrowingPublisher.Iterator {
265 |
266 | fileprivate final class Inner: Subscriber, Cancellable {
| `- note: class 'Inner' does not conform to the 'Sendable' protocol
267 | typealias Input = Upstream.Output
268 | typealias Failure = Upstream.Failure
/host/spi-builder-workspace/Sources/OpenCombine/Subscriptions.swift:17:23: warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
15 | /// Use the empty subscription when you need a `Subscription` that ignores requests
16 | /// and cancellation.
17 | public static let empty: Subscription = _EmptySubscription.singleton
| |- warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'empty' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | }
19 |
/host/spi-builder-workspace/Sources/OpenCombine/Subscription.swift:18:17: note: protocol 'Subscription' does not conform to the 'Sendable' protocol
16 | /// Canceling a subscription frees up any resources previously allocated by attaching
17 | /// the `Subscriber`.
18 | public protocol Subscription: Cancellable, CustomCombineIdentifierConvertible {
| `- note: protocol 'Subscription' does not conform to the 'Sendable' protocol
19 |
20 | /// Tells a publisher that it may send more values to the subscriber.
/host/spi-builder-workspace/Sources/OpenCombine/Concurrency/Future+Concurrency.swift:76:26: warning: sending 'input' risks causing data races; this is an error in the Swift 6 language mode
74 | if let continuation = self.continuation.take() {
75 | lock.unlock()
76 | continuation.resume(returning: input)
| |- warning: sending 'input' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'input' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
77 | } else {
78 | assertionFailure("Unexpected state: already completed")
/host/spi-builder-workspace/Sources/OpenCombine/Concurrency/GENERATED-Publisher+Concurrency.swift:137:26: warning: task-isolated value of type 'AsyncPublisher<Upstream>.Iterator.Inner.Input' (aka 'Upstream.Output') passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
135 | let continuation = pending.removeFirst()
136 | lock.unlock()
137 | continuation.resume(returning: input)
| `- warning: task-isolated value of type 'AsyncPublisher<Upstream>.Iterator.Inner.Input' (aka 'Upstream.Output') passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
138 | return .none
139 | }
/host/spi-builder-workspace/Sources/OpenCombine/Concurrency/GENERATED-Publisher+Concurrency.swift:312:26: warning: task-isolated value of type 'AsyncThrowingPublisher<Upstream>.Iterator.Inner.Input' (aka 'Upstream.Output') passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
310 | let continuation = pending.removeFirst()
311 | lock.unlock()
312 | continuation.resume(returning: input)
| `- warning: task-isolated value of type 'AsyncThrowingPublisher<Upstream>.Iterator.Inner.Input' (aka 'Upstream.Output') passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
313 | return .none
314 | }
[60/111] Compiling OpenCombine ImmediateScheduler.swift
/host/spi-builder-workspace/Sources/OpenCombine/ImmediateScheduler.swift:133:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'ImmediateScheduler' may have shared mutable state; this is an error in the Swift 6 language mode
11 | /// actions after a specific date, this scheduler ignores the date and performs them
12 | /// immediately.
13 | public struct ImmediateScheduler: Scheduler {
| `- note: consider making struct 'ImmediateScheduler' conform to the 'Sendable' protocol
14 |
15 | /// The time type used by the immediate scheduler.
:
131 | /// You cannot create instances of the immediate scheduler yourself. Use only
132 | /// the shared instance.
133 | public static let shared = ImmediateScheduler()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'ImmediateScheduler' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
134 |
135 | /// Performs the action at the next possible opportunity.
/host/spi-builder-workspace/Sources/OpenCombine/Subscriptions.swift:17:23: warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
15 | /// Use the empty subscription when you need a `Subscription` that ignores requests
16 | /// and cancellation.
17 | public static let empty: Subscription = _EmptySubscription.singleton
| |- warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'empty' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | }
19 |
/host/spi-builder-workspace/Sources/OpenCombine/Subscription.swift:18:17: note: protocol 'Subscription' does not conform to the 'Sendable' protocol
16 | /// Canceling a subscription frees up any resources previously allocated by attaching
17 | /// the `Subscriber`.
18 | public protocol Subscription: Cancellable, CustomCombineIdentifierConvertible {
| `- note: protocol 'Subscription' does not conform to the 'Sendable' protocol
19 |
20 | /// Tells a publisher that it may send more values to the subscriber.
[61/111] Compiling OpenCombine ObservableObject.swift
/host/spi-builder-workspace/Sources/OpenCombine/ImmediateScheduler.swift:133:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'ImmediateScheduler' may have shared mutable state; this is an error in the Swift 6 language mode
11 | /// actions after a specific date, this scheduler ignores the date and performs them
12 | /// immediately.
13 | public struct ImmediateScheduler: Scheduler {
| `- note: consider making struct 'ImmediateScheduler' conform to the 'Sendable' protocol
14 |
15 | /// The time type used by the immediate scheduler.
:
131 | /// You cannot create instances of the immediate scheduler yourself. Use only
132 | /// the shared instance.
133 | public static let shared = ImmediateScheduler()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'ImmediateScheduler' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
134 |
135 | /// Performs the action at the next possible opportunity.
/host/spi-builder-workspace/Sources/OpenCombine/Subscriptions.swift:17:23: warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
15 | /// Use the empty subscription when you need a `Subscription` that ignores requests
16 | /// and cancellation.
17 | public static let empty: Subscription = _EmptySubscription.singleton
| |- warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'empty' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | }
19 |
/host/spi-builder-workspace/Sources/OpenCombine/Subscription.swift:18:17: note: protocol 'Subscription' does not conform to the 'Sendable' protocol
16 | /// Canceling a subscription frees up any resources previously allocated by attaching
17 | /// the `Subscriber`.
18 | public protocol Subscription: Cancellable, CustomCombineIdentifierConvertible {
| `- note: protocol 'Subscription' does not conform to the 'Sendable' protocol
19 |
20 | /// Tells a publisher that it may send more values to the subscriber.
[62/111] Compiling OpenCombine PassthroughSubject.swift
/host/spi-builder-workspace/Sources/OpenCombine/ImmediateScheduler.swift:133:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'ImmediateScheduler' may have shared mutable state; this is an error in the Swift 6 language mode
11 | /// actions after a specific date, this scheduler ignores the date and performs them
12 | /// immediately.
13 | public struct ImmediateScheduler: Scheduler {
| `- note: consider making struct 'ImmediateScheduler' conform to the 'Sendable' protocol
14 |
15 | /// The time type used by the immediate scheduler.
:
131 | /// You cannot create instances of the immediate scheduler yourself. Use only
132 | /// the shared instance.
133 | public static let shared = ImmediateScheduler()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'ImmediateScheduler' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
134 |
135 | /// Performs the action at the next possible opportunity.
/host/spi-builder-workspace/Sources/OpenCombine/Subscriptions.swift:17:23: warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
15 | /// Use the empty subscription when you need a `Subscription` that ignores requests
16 | /// and cancellation.
17 | public static let empty: Subscription = _EmptySubscription.singleton
| |- warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'empty' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | }
19 |
/host/spi-builder-workspace/Sources/OpenCombine/Subscription.swift:18:17: note: protocol 'Subscription' does not conform to the 'Sendable' protocol
16 | /// Canceling a subscription frees up any resources previously allocated by attaching
17 | /// the `Subscriber`.
18 | public protocol Subscription: Cancellable, CustomCombineIdentifierConvertible {
| `- note: protocol 'Subscription' does not conform to the 'Sendable' protocol
19 |
20 | /// Tells a publisher that it may send more values to the subscriber.
[63/111] Compiling OpenCombine Published.swift
/host/spi-builder-workspace/Sources/OpenCombine/ImmediateScheduler.swift:133:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'ImmediateScheduler' may have shared mutable state; this is an error in the Swift 6 language mode
11 | /// actions after a specific date, this scheduler ignores the date and performs them
12 | /// immediately.
13 | public struct ImmediateScheduler: Scheduler {
| `- note: consider making struct 'ImmediateScheduler' conform to the 'Sendable' protocol
14 |
15 | /// The time type used by the immediate scheduler.
:
131 | /// You cannot create instances of the immediate scheduler yourself. Use only
132 | /// the shared instance.
133 | public static let shared = ImmediateScheduler()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'ImmediateScheduler' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
134 |
135 | /// Performs the action at the next possible opportunity.
/host/spi-builder-workspace/Sources/OpenCombine/Subscriptions.swift:17:23: warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
15 | /// Use the empty subscription when you need a `Subscription` that ignores requests
16 | /// and cancellation.
17 | public static let empty: Subscription = _EmptySubscription.singleton
| |- warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'empty' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | }
19 |
/host/spi-builder-workspace/Sources/OpenCombine/Subscription.swift:18:17: note: protocol 'Subscription' does not conform to the 'Sendable' protocol
16 | /// Canceling a subscription frees up any resources previously allocated by attaching
17 | /// the `Subscriber`.
18 | public protocol Subscription: Cancellable, CustomCombineIdentifierConvertible {
| `- note: protocol 'Subscription' does not conform to the 'Sendable' protocol
19 |
20 | /// Tells a publisher that it may send more values to the subscriber.
[64/111] Compiling OpenCombine Publisher+Subscribe.swift
/host/spi-builder-workspace/Sources/OpenCombine/ImmediateScheduler.swift:133:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'ImmediateScheduler' may have shared mutable state; this is an error in the Swift 6 language mode
11 | /// actions after a specific date, this scheduler ignores the date and performs them
12 | /// immediately.
13 | public struct ImmediateScheduler: Scheduler {
| `- note: consider making struct 'ImmediateScheduler' conform to the 'Sendable' protocol
14 |
15 | /// The time type used by the immediate scheduler.
:
131 | /// You cannot create instances of the immediate scheduler yourself. Use only
132 | /// the shared instance.
133 | public static let shared = ImmediateScheduler()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'ImmediateScheduler' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
134 |
135 | /// Performs the action at the next possible opportunity.
/host/spi-builder-workspace/Sources/OpenCombine/Subscriptions.swift:17:23: warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
15 | /// Use the empty subscription when you need a `Subscription` that ignores requests
16 | /// and cancellation.
17 | public static let empty: Subscription = _EmptySubscription.singleton
| |- warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'empty' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | }
19 |
/host/spi-builder-workspace/Sources/OpenCombine/Subscription.swift:18:17: note: protocol 'Subscription' does not conform to the 'Sendable' protocol
16 | /// Canceling a subscription frees up any resources previously allocated by attaching
17 | /// the `Subscriber`.
18 | public protocol Subscription: Cancellable, CustomCombineIdentifierConvertible {
| `- note: protocol 'Subscription' does not conform to the 'Sendable' protocol
19 |
20 | /// Tells a publisher that it may send more values to the subscriber.
[65/111] Compiling OpenCombine Deferred.swift
/host/spi-builder-workspace/Sources/OpenCombine/ImmediateScheduler.swift:133:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'ImmediateScheduler' may have shared mutable state; this is an error in the Swift 6 language mode
11 | /// actions after a specific date, this scheduler ignores the date and performs them
12 | /// immediately.
13 | public struct ImmediateScheduler: Scheduler {
| `- note: consider making struct 'ImmediateScheduler' conform to the 'Sendable' protocol
14 |
15 | /// The time type used by the immediate scheduler.
:
131 | /// You cannot create instances of the immediate scheduler yourself. Use only
132 | /// the shared instance.
133 | public static let shared = ImmediateScheduler()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'ImmediateScheduler' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
134 |
135 | /// Performs the action at the next possible opportunity.
/host/spi-builder-workspace/Sources/OpenCombine/Subscriptions.swift:17:23: warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
15 | /// Use the empty subscription when you need a `Subscription` that ignores requests
16 | /// and cancellation.
17 | public static let empty: Subscription = _EmptySubscription.singleton
| |- warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'empty' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | }
19 |
/host/spi-builder-workspace/Sources/OpenCombine/Subscription.swift:18:17: note: protocol 'Subscription' does not conform to the 'Sendable' protocol
16 | /// Canceling a subscription frees up any resources previously allocated by attaching
17 | /// the `Subscriber`.
18 | public protocol Subscription: Cancellable, CustomCombineIdentifierConvertible {
| `- note: protocol 'Subscription' does not conform to the 'Sendable' protocol
19 |
20 | /// Tells a publisher that it may send more values to the subscriber.
[66/111] Compiling OpenCombine Empty.swift
/host/spi-builder-workspace/Sources/OpenCombine/ImmediateScheduler.swift:133:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'ImmediateScheduler' may have shared mutable state; this is an error in the Swift 6 language mode
11 | /// actions after a specific date, this scheduler ignores the date and performs them
12 | /// immediately.
13 | public struct ImmediateScheduler: Scheduler {
| `- note: consider making struct 'ImmediateScheduler' conform to the 'Sendable' protocol
14 |
15 | /// The time type used by the immediate scheduler.
:
131 | /// You cannot create instances of the immediate scheduler yourself. Use only
132 | /// the shared instance.
133 | public static let shared = ImmediateScheduler()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'ImmediateScheduler' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
134 |
135 | /// Performs the action at the next possible opportunity.
/host/spi-builder-workspace/Sources/OpenCombine/Subscriptions.swift:17:23: warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
15 | /// Use the empty subscription when you need a `Subscription` that ignores requests
16 | /// and cancellation.
17 | public static let empty: Subscription = _EmptySubscription.singleton
| |- warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'empty' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | }
19 |
/host/spi-builder-workspace/Sources/OpenCombine/Subscription.swift:18:17: note: protocol 'Subscription' does not conform to the 'Sendable' protocol
16 | /// Canceling a subscription frees up any resources previously allocated by attaching
17 | /// the `Subscriber`.
18 | public protocol Subscription: Cancellable, CustomCombineIdentifierConvertible {
| `- note: protocol 'Subscription' does not conform to the 'Sendable' protocol
19 |
20 | /// Tells a publisher that it may send more values to the subscriber.
[67/111] Compiling OpenCombine Fail.swift
/host/spi-builder-workspace/Sources/OpenCombine/ImmediateScheduler.swift:133:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'ImmediateScheduler' may have shared mutable state; this is an error in the Swift 6 language mode
11 | /// actions after a specific date, this scheduler ignores the date and performs them
12 | /// immediately.
13 | public struct ImmediateScheduler: Scheduler {
| `- note: consider making struct 'ImmediateScheduler' conform to the 'Sendable' protocol
14 |
15 | /// The time type used by the immediate scheduler.
:
131 | /// You cannot create instances of the immediate scheduler yourself. Use only
132 | /// the shared instance.
133 | public static let shared = ImmediateScheduler()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'ImmediateScheduler' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
134 |
135 | /// Performs the action at the next possible opportunity.
/host/spi-builder-workspace/Sources/OpenCombine/Subscriptions.swift:17:23: warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
15 | /// Use the empty subscription when you need a `Subscription` that ignores requests
16 | /// and cancellation.
17 | public static let empty: Subscription = _EmptySubscription.singleton
| |- warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'empty' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | }
19 |
/host/spi-builder-workspace/Sources/OpenCombine/Subscription.swift:18:17: note: protocol 'Subscription' does not conform to the 'Sendable' protocol
16 | /// Canceling a subscription frees up any resources previously allocated by attaching
17 | /// the `Subscriber`.
18 | public protocol Subscription: Cancellable, CustomCombineIdentifierConvertible {
| `- note: protocol 'Subscription' does not conform to the 'Sendable' protocol
19 |
20 | /// Tells a publisher that it may send more values to the subscriber.
[68/111] Compiling OpenCombine GENERATED-Publishers.Catch.swift
/host/spi-builder-workspace/Sources/OpenCombine/ImmediateScheduler.swift:133:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'ImmediateScheduler' may have shared mutable state; this is an error in the Swift 6 language mode
11 | /// actions after a specific date, this scheduler ignores the date and performs them
12 | /// immediately.
13 | public struct ImmediateScheduler: Scheduler {
| `- note: consider making struct 'ImmediateScheduler' conform to the 'Sendable' protocol
14 |
15 | /// The time type used by the immediate scheduler.
:
131 | /// You cannot create instances of the immediate scheduler yourself. Use only
132 | /// the shared instance.
133 | public static let shared = ImmediateScheduler()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'ImmediateScheduler' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
134 |
135 | /// Performs the action at the next possible opportunity.
/host/spi-builder-workspace/Sources/OpenCombine/Subscriptions.swift:17:23: warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
15 | /// Use the empty subscription when you need a `Subscription` that ignores requests
16 | /// and cancellation.
17 | public static let empty: Subscription = _EmptySubscription.singleton
| |- warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'empty' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | }
19 |
/host/spi-builder-workspace/Sources/OpenCombine/Subscription.swift:18:17: note: protocol 'Subscription' does not conform to the 'Sendable' protocol
16 | /// Canceling a subscription frees up any resources previously allocated by attaching
17 | /// the `Subscriber`.
18 | public protocol Subscription: Cancellable, CustomCombineIdentifierConvertible {
| `- note: protocol 'Subscription' does not conform to the 'Sendable' protocol
19 |
20 | /// Tells a publisher that it may send more values to the subscriber.
[69/111] Compiling OpenCombine GENERATED-Publishers.Encode.swift
/host/spi-builder-workspace/Sources/OpenCombine/ImmediateScheduler.swift:133:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'ImmediateScheduler' may have shared mutable state; this is an error in the Swift 6 language mode
11 | /// actions after a specific date, this scheduler ignores the date and performs them
12 | /// immediately.
13 | public struct ImmediateScheduler: Scheduler {
| `- note: consider making struct 'ImmediateScheduler' conform to the 'Sendable' protocol
14 |
15 | /// The time type used by the immediate scheduler.
:
131 | /// You cannot create instances of the immediate scheduler yourself. Use only
132 | /// the shared instance.
133 | public static let shared = ImmediateScheduler()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'ImmediateScheduler' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
134 |
135 | /// Performs the action at the next possible opportunity.
/host/spi-builder-workspace/Sources/OpenCombine/Subscriptions.swift:17:23: warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
15 | /// Use the empty subscription when you need a `Subscription` that ignores requests
16 | /// and cancellation.
17 | public static let empty: Subscription = _EmptySubscription.singleton
| |- warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'empty' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | }
19 |
/host/spi-builder-workspace/Sources/OpenCombine/Subscription.swift:18:17: note: protocol 'Subscription' does not conform to the 'Sendable' protocol
16 | /// Canceling a subscription frees up any resources previously allocated by attaching
17 | /// the `Subscriber`.
18 | public protocol Subscription: Cancellable, CustomCombineIdentifierConvertible {
| `- note: protocol 'Subscription' does not conform to the 'Sendable' protocol
19 |
20 | /// Tells a publisher that it may send more values to the subscriber.
[70/111] Compiling OpenCombine GENERATED-Publishers.MapKeyPath.swift
/host/spi-builder-workspace/Sources/OpenCombine/ImmediateScheduler.swift:133:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'ImmediateScheduler' may have shared mutable state; this is an error in the Swift 6 language mode
11 | /// actions after a specific date, this scheduler ignores the date and performs them
12 | /// immediately.
13 | public struct ImmediateScheduler: Scheduler {
| `- note: consider making struct 'ImmediateScheduler' conform to the 'Sendable' protocol
14 |
15 | /// The time type used by the immediate scheduler.
:
131 | /// You cannot create instances of the immediate scheduler yourself. Use only
132 | /// the shared instance.
133 | public static let shared = ImmediateScheduler()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'ImmediateScheduler' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
134 |
135 | /// Performs the action at the next possible opportunity.
/host/spi-builder-workspace/Sources/OpenCombine/Subscriptions.swift:17:23: warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
15 | /// Use the empty subscription when you need a `Subscription` that ignores requests
16 | /// and cancellation.
17 | public static let empty: Subscription = _EmptySubscription.singleton
| |- warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'empty' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | }
19 |
/host/spi-builder-workspace/Sources/OpenCombine/Subscription.swift:18:17: note: protocol 'Subscription' does not conform to the 'Sendable' protocol
16 | /// Canceling a subscription frees up any resources previously allocated by attaching
17 | /// the `Subscriber`.
18 | public protocol Subscription: Cancellable, CustomCombineIdentifierConvertible {
| `- note: protocol 'Subscription' does not conform to the 'Sendable' protocol
19 |
20 | /// Tells a publisher that it may send more values to the subscriber.
[71/111] Compiling OpenCombine Just.swift
/host/spi-builder-workspace/Sources/OpenCombine/ImmediateScheduler.swift:133:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'ImmediateScheduler' may have shared mutable state; this is an error in the Swift 6 language mode
11 | /// actions after a specific date, this scheduler ignores the date and performs them
12 | /// immediately.
13 | public struct ImmediateScheduler: Scheduler {
| `- note: consider making struct 'ImmediateScheduler' conform to the 'Sendable' protocol
14 |
15 | /// The time type used by the immediate scheduler.
:
131 | /// You cannot create instances of the immediate scheduler yourself. Use only
132 | /// the shared instance.
133 | public static let shared = ImmediateScheduler()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'ImmediateScheduler' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
134 |
135 | /// Performs the action at the next possible opportunity.
/host/spi-builder-workspace/Sources/OpenCombine/Subscriptions.swift:17:23: warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
15 | /// Use the empty subscription when you need a `Subscription` that ignores requests
16 | /// and cancellation.
17 | public static let empty: Subscription = _EmptySubscription.singleton
| |- warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'empty' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | }
19 |
/host/spi-builder-workspace/Sources/OpenCombine/Subscription.swift:18:17: note: protocol 'Subscription' does not conform to the 'Sendable' protocol
16 | /// Canceling a subscription frees up any resources previously allocated by attaching
17 | /// the `Subscriber`.
18 | public protocol Subscription: Cancellable, CustomCombineIdentifierConvertible {
| `- note: protocol 'Subscription' does not conform to the 'Sendable' protocol
19 |
20 | /// Tells a publisher that it may send more values to the subscriber.
[72/111] Compiling OpenCombine Optional.Publisher.swift
/host/spi-builder-workspace/Sources/OpenCombine/ImmediateScheduler.swift:133:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'ImmediateScheduler' may have shared mutable state; this is an error in the Swift 6 language mode
11 | /// actions after a specific date, this scheduler ignores the date and performs them
12 | /// immediately.
13 | public struct ImmediateScheduler: Scheduler {
| `- note: consider making struct 'ImmediateScheduler' conform to the 'Sendable' protocol
14 |
15 | /// The time type used by the immediate scheduler.
:
131 | /// You cannot create instances of the immediate scheduler yourself. Use only
132 | /// the shared instance.
133 | public static let shared = ImmediateScheduler()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'ImmediateScheduler' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
134 |
135 | /// Performs the action at the next possible opportunity.
/host/spi-builder-workspace/Sources/OpenCombine/Subscriptions.swift:17:23: warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
15 | /// Use the empty subscription when you need a `Subscription` that ignores requests
16 | /// and cancellation.
17 | public static let empty: Subscription = _EmptySubscription.singleton
| |- warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'empty' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | }
19 |
/host/spi-builder-workspace/Sources/OpenCombine/Subscription.swift:18:17: note: protocol 'Subscription' does not conform to the 'Sendable' protocol
16 | /// Canceling a subscription frees up any resources previously allocated by attaching
17 | /// the `Subscriber`.
18 | public protocol Subscription: Cancellable, CustomCombineIdentifierConvertible {
| `- note: protocol 'Subscription' does not conform to the 'Sendable' protocol
19 |
20 | /// Tells a publisher that it may send more values to the subscriber.
[73/111] Compiling OpenCombine DebugHook.swift
/host/spi-builder-workspace/Sources/OpenCombine/Helpers/DebugHook.swift:65:24: warning: static property 'globalHook' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
63 | }
64 |
65 | private static var globalHook: DebugHook?
| |- warning: static property 'globalHook' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'globalHook' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'globalHook' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
66 |
67 | private static let globalLock = UnfairLock.allocate()
/host/spi-builder-workspace/Sources/OpenCombine/Helpers/DebugHook.swift:67:24: warning: static property 'globalLock' is not concurrency-safe because non-'Sendable' type '__UnfairLock' may have shared mutable state; this is an error in the Swift 6 language mode
65 | private static var globalHook: DebugHook?
66 |
67 | private static let globalLock = UnfairLock.allocate()
| |- warning: static property 'globalLock' is not concurrency-safe because non-'Sendable' type '__UnfairLock' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'globalLock' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
68 |
69 | private let lock = UnfairLock.allocate()
COpenCombineHelpers.__UnfairLock:1:15: note: struct '__UnfairLock' does not conform to the 'Sendable' protocol
1 | public struct __UnfairLock {
| `- note: struct '__UnfairLock' does not conform to the 'Sendable' protocol
2 | public init(opaque: UnsafeMutableRawPointer)
3 | public var opaque: UnsafeMutableRawPointer
[74/111] Compiling OpenCombine FilterProducer.swift
/host/spi-builder-workspace/Sources/OpenCombine/Helpers/DebugHook.swift:65:24: warning: static property 'globalHook' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
63 | }
64 |
65 | private static var globalHook: DebugHook?
| |- warning: static property 'globalHook' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'globalHook' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'globalHook' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
66 |
67 | private static let globalLock = UnfairLock.allocate()
/host/spi-builder-workspace/Sources/OpenCombine/Helpers/DebugHook.swift:67:24: warning: static property 'globalLock' is not concurrency-safe because non-'Sendable' type '__UnfairLock' may have shared mutable state; this is an error in the Swift 6 language mode
65 | private static var globalHook: DebugHook?
66 |
67 | private static let globalLock = UnfairLock.allocate()
| |- warning: static property 'globalLock' is not concurrency-safe because non-'Sendable' type '__UnfairLock' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'globalLock' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
68 |
69 | private let lock = UnfairLock.allocate()
COpenCombineHelpers.__UnfairLock:1:15: note: struct '__UnfairLock' does not conform to the 'Sendable' protocol
1 | public struct __UnfairLock {
| `- note: struct '__UnfairLock' does not conform to the 'Sendable' protocol
2 | public init(opaque: UnsafeMutableRawPointer)
3 | public var opaque: UnsafeMutableRawPointer
[75/111] Compiling OpenCombine Locking.swift
/host/spi-builder-workspace/Sources/OpenCombine/Helpers/DebugHook.swift:65:24: warning: static property 'globalHook' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
63 | }
64 |
65 | private static var globalHook: DebugHook?
| |- warning: static property 'globalHook' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'globalHook' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'globalHook' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
66 |
67 | private static let globalLock = UnfairLock.allocate()
/host/spi-builder-workspace/Sources/OpenCombine/Helpers/DebugHook.swift:67:24: warning: static property 'globalLock' is not concurrency-safe because non-'Sendable' type '__UnfairLock' may have shared mutable state; this is an error in the Swift 6 language mode
65 | private static var globalHook: DebugHook?
66 |
67 | private static let globalLock = UnfairLock.allocate()
| |- warning: static property 'globalLock' is not concurrency-safe because non-'Sendable' type '__UnfairLock' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'globalLock' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
68 |
69 | private let lock = UnfairLock.allocate()
COpenCombineHelpers.__UnfairLock:1:15: note: struct '__UnfairLock' does not conform to the 'Sendable' protocol
1 | public struct __UnfairLock {
| `- note: struct '__UnfairLock' does not conform to the 'Sendable' protocol
2 | public init(opaque: UnsafeMutableRawPointer)
3 | public var opaque: UnsafeMutableRawPointer
[76/111] Compiling OpenCombine PartialCompletion.swift
/host/spi-builder-workspace/Sources/OpenCombine/Helpers/DebugHook.swift:65:24: warning: static property 'globalHook' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
63 | }
64 |
65 | private static var globalHook: DebugHook?
| |- warning: static property 'globalHook' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'globalHook' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'globalHook' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
66 |
67 | private static let globalLock = UnfairLock.allocate()
/host/spi-builder-workspace/Sources/OpenCombine/Helpers/DebugHook.swift:67:24: warning: static property 'globalLock' is not concurrency-safe because non-'Sendable' type '__UnfairLock' may have shared mutable state; this is an error in the Swift 6 language mode
65 | private static var globalHook: DebugHook?
66 |
67 | private static let globalLock = UnfairLock.allocate()
| |- warning: static property 'globalLock' is not concurrency-safe because non-'Sendable' type '__UnfairLock' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'globalLock' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
68 |
69 | private let lock = UnfairLock.allocate()
COpenCombineHelpers.__UnfairLock:1:15: note: struct '__UnfairLock' does not conform to the 'Sendable' protocol
1 | public struct __UnfairLock {
| `- note: struct '__UnfairLock' does not conform to the 'Sendable' protocol
2 | public init(opaque: UnsafeMutableRawPointer)
3 | public var opaque: UnsafeMutableRawPointer
[77/111] Compiling OpenCombine PublishedSubject.swift
/host/spi-builder-workspace/Sources/OpenCombine/Helpers/DebugHook.swift:65:24: warning: static property 'globalHook' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
63 | }
64 |
65 | private static var globalHook: DebugHook?
| |- warning: static property 'globalHook' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'globalHook' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'globalHook' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
66 |
67 | private static let globalLock = UnfairLock.allocate()
/host/spi-builder-workspace/Sources/OpenCombine/Helpers/DebugHook.swift:67:24: warning: static property 'globalLock' is not concurrency-safe because non-'Sendable' type '__UnfairLock' may have shared mutable state; this is an error in the Swift 6 language mode
65 | private static var globalHook: DebugHook?
66 |
67 | private static let globalLock = UnfairLock.allocate()
| |- warning: static property 'globalLock' is not concurrency-safe because non-'Sendable' type '__UnfairLock' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'globalLock' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
68 |
69 | private let lock = UnfairLock.allocate()
COpenCombineHelpers.__UnfairLock:1:15: note: struct '__UnfairLock' does not conform to the 'Sendable' protocol
1 | public struct __UnfairLock {
| `- note: struct '__UnfairLock' does not conform to the 'Sendable' protocol
2 | public init(opaque: UnsafeMutableRawPointer)
3 | public var opaque: UnsafeMutableRawPointer
[78/111] Compiling OpenCombine PublishedSubscriber.swift
/host/spi-builder-workspace/Sources/OpenCombine/Helpers/DebugHook.swift:65:24: warning: static property 'globalHook' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
63 | }
64 |
65 | private static var globalHook: DebugHook?
| |- warning: static property 'globalHook' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'globalHook' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'globalHook' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
66 |
67 | private static let globalLock = UnfairLock.allocate()
/host/spi-builder-workspace/Sources/OpenCombine/Helpers/DebugHook.swift:67:24: warning: static property 'globalLock' is not concurrency-safe because non-'Sendable' type '__UnfairLock' may have shared mutable state; this is an error in the Swift 6 language mode
65 | private static var globalHook: DebugHook?
66 |
67 | private static let globalLock = UnfairLock.allocate()
| |- warning: static property 'globalLock' is not concurrency-safe because non-'Sendable' type '__UnfairLock' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'globalLock' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
68 |
69 | private let lock = UnfairLock.allocate()
COpenCombineHelpers.__UnfairLock:1:15: note: struct '__UnfairLock' does not conform to the 'Sendable' protocol
1 | public struct __UnfairLock {
| `- note: struct '__UnfairLock' does not conform to the 'Sendable' protocol
2 | public init(opaque: UnsafeMutableRawPointer)
3 | public var opaque: UnsafeMutableRawPointer
[79/111] Compiling OpenCombine ReduceProducer.swift
/host/spi-builder-workspace/Sources/OpenCombine/Helpers/DebugHook.swift:65:24: warning: static property 'globalHook' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
63 | }
64 |
65 | private static var globalHook: DebugHook?
| |- warning: static property 'globalHook' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'globalHook' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'globalHook' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
66 |
67 | private static let globalLock = UnfairLock.allocate()
/host/spi-builder-workspace/Sources/OpenCombine/Helpers/DebugHook.swift:67:24: warning: static property 'globalLock' is not concurrency-safe because non-'Sendable' type '__UnfairLock' may have shared mutable state; this is an error in the Swift 6 language mode
65 | private static var globalHook: DebugHook?
66 |
67 | private static let globalLock = UnfairLock.allocate()
| |- warning: static property 'globalLock' is not concurrency-safe because non-'Sendable' type '__UnfairLock' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'globalLock' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
68 |
69 | private let lock = UnfairLock.allocate()
COpenCombineHelpers.__UnfairLock:1:15: note: struct '__UnfairLock' does not conform to the 'Sendable' protocol
1 | public struct __UnfairLock {
| `- note: struct '__UnfairLock' does not conform to the 'Sendable' protocol
2 | public init(opaque: UnsafeMutableRawPointer)
3 | public var opaque: UnsafeMutableRawPointer
[80/111] Compiling OpenCombine SubjectSubscriber.swift
/host/spi-builder-workspace/Sources/OpenCombine/Helpers/DebugHook.swift:65:24: warning: static property 'globalHook' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
63 | }
64 |
65 | private static var globalHook: DebugHook?
| |- warning: static property 'globalHook' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'globalHook' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'globalHook' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
66 |
67 | private static let globalLock = UnfairLock.allocate()
/host/spi-builder-workspace/Sources/OpenCombine/Helpers/DebugHook.swift:67:24: warning: static property 'globalLock' is not concurrency-safe because non-'Sendable' type '__UnfairLock' may have shared mutable state; this is an error in the Swift 6 language mode
65 | private static var globalHook: DebugHook?
66 |
67 | private static let globalLock = UnfairLock.allocate()
| |- warning: static property 'globalLock' is not concurrency-safe because non-'Sendable' type '__UnfairLock' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'globalLock' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
68 |
69 | private let lock = UnfairLock.allocate()
COpenCombineHelpers.__UnfairLock:1:15: note: struct '__UnfairLock' does not conform to the 'Sendable' protocol
1 | public struct __UnfairLock {
| `- note: struct '__UnfairLock' does not conform to the 'Sendable' protocol
2 | public init(opaque: UnsafeMutableRawPointer)
3 | public var opaque: UnsafeMutableRawPointer
[81/111] Compiling OpenCombine SubscriberTap.swift
/host/spi-builder-workspace/Sources/OpenCombine/Helpers/DebugHook.swift:65:24: warning: static property 'globalHook' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
63 | }
64 |
65 | private static var globalHook: DebugHook?
| |- warning: static property 'globalHook' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'globalHook' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'globalHook' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
66 |
67 | private static let globalLock = UnfairLock.allocate()
/host/spi-builder-workspace/Sources/OpenCombine/Helpers/DebugHook.swift:67:24: warning: static property 'globalLock' is not concurrency-safe because non-'Sendable' type '__UnfairLock' may have shared mutable state; this is an error in the Swift 6 language mode
65 | private static var globalHook: DebugHook?
66 |
67 | private static let globalLock = UnfairLock.allocate()
| |- warning: static property 'globalLock' is not concurrency-safe because non-'Sendable' type '__UnfairLock' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'globalLock' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
68 |
69 | private let lock = UnfairLock.allocate()
COpenCombineHelpers.__UnfairLock:1:15: note: struct '__UnfairLock' does not conform to the 'Sendable' protocol
1 | public struct __UnfairLock {
| `- note: struct '__UnfairLock' does not conform to the 'Sendable' protocol
2 | public init(opaque: UnsafeMutableRawPointer)
3 | public var opaque: UnsafeMutableRawPointer
[82/111] Compiling OpenCombine SubscriptionStatus.swift
/host/spi-builder-workspace/Sources/OpenCombine/Helpers/DebugHook.swift:65:24: warning: static property 'globalHook' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
63 | }
64 |
65 | private static var globalHook: DebugHook?
| |- warning: static property 'globalHook' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'globalHook' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'globalHook' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
66 |
67 | private static let globalLock = UnfairLock.allocate()
/host/spi-builder-workspace/Sources/OpenCombine/Helpers/DebugHook.swift:67:24: warning: static property 'globalLock' is not concurrency-safe because non-'Sendable' type '__UnfairLock' may have shared mutable state; this is an error in the Swift 6 language mode
65 | private static var globalHook: DebugHook?
66 |
67 | private static let globalLock = UnfairLock.allocate()
| |- warning: static property 'globalLock' is not concurrency-safe because non-'Sendable' type '__UnfairLock' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'globalLock' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
68 |
69 | private let lock = UnfairLock.allocate()
COpenCombineHelpers.__UnfairLock:1:15: note: struct '__UnfairLock' does not conform to the 'Sendable' protocol
1 | public struct __UnfairLock {
| `- note: struct '__UnfairLock' does not conform to the 'Sendable' protocol
2 | public init(opaque: UnsafeMutableRawPointer)
3 | public var opaque: UnsafeMutableRawPointer
[83/111] Compiling OpenCombine SubscriptionTap.swift
/host/spi-builder-workspace/Sources/OpenCombine/Helpers/DebugHook.swift:65:24: warning: static property 'globalHook' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
63 | }
64 |
65 | private static var globalHook: DebugHook?
| |- warning: static property 'globalHook' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'globalHook' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'globalHook' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
66 |
67 | private static let globalLock = UnfairLock.allocate()
/host/spi-builder-workspace/Sources/OpenCombine/Helpers/DebugHook.swift:67:24: warning: static property 'globalLock' is not concurrency-safe because non-'Sendable' type '__UnfairLock' may have shared mutable state; this is an error in the Swift 6 language mode
65 | private static var globalHook: DebugHook?
66 |
67 | private static let globalLock = UnfairLock.allocate()
| |- warning: static property 'globalLock' is not concurrency-safe because non-'Sendable' type '__UnfairLock' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'globalLock' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
68 |
69 | private let lock = UnfairLock.allocate()
COpenCombineHelpers.__UnfairLock:1:15: note: struct '__UnfairLock' does not conform to the 'Sendable' protocol
1 | public struct __UnfairLock {
| `- note: struct '__UnfairLock' does not conform to the 'Sendable' protocol
2 | public init(opaque: UnsafeMutableRawPointer)
3 | public var opaque: UnsafeMutableRawPointer
[84/111] Compiling OpenCombine Utils.swift
/host/spi-builder-workspace/Sources/OpenCombine/Helpers/DebugHook.swift:65:24: warning: static property 'globalHook' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
63 | }
64 |
65 | private static var globalHook: DebugHook?
| |- warning: static property 'globalHook' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'globalHook' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'globalHook' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
66 |
67 | private static let globalLock = UnfairLock.allocate()
/host/spi-builder-workspace/Sources/OpenCombine/Helpers/DebugHook.swift:67:24: warning: static property 'globalLock' is not concurrency-safe because non-'Sendable' type '__UnfairLock' may have shared mutable state; this is an error in the Swift 6 language mode
65 | private static var globalHook: DebugHook?
66 |
67 | private static let globalLock = UnfairLock.allocate()
| |- warning: static property 'globalLock' is not concurrency-safe because non-'Sendable' type '__UnfairLock' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'globalLock' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
68 |
69 | private let lock = UnfairLock.allocate()
COpenCombineHelpers.__UnfairLock:1:15: note: struct '__UnfairLock' does not conform to the 'Sendable' protocol
1 | public struct __UnfairLock {
| `- note: struct '__UnfairLock' does not conform to the 'Sendable' protocol
2 | public init(opaque: UnsafeMutableRawPointer)
3 | public var opaque: UnsafeMutableRawPointer
[85/111] Compiling OpenCombine Violations.swift
/host/spi-builder-workspace/Sources/OpenCombine/Helpers/DebugHook.swift:65:24: warning: static property 'globalHook' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
63 | }
64 |
65 | private static var globalHook: DebugHook?
| |- warning: static property 'globalHook' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'globalHook' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'globalHook' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
66 |
67 | private static let globalLock = UnfairLock.allocate()
/host/spi-builder-workspace/Sources/OpenCombine/Helpers/DebugHook.swift:67:24: warning: static property 'globalLock' is not concurrency-safe because non-'Sendable' type '__UnfairLock' may have shared mutable state; this is an error in the Swift 6 language mode
65 | private static var globalHook: DebugHook?
66 |
67 | private static let globalLock = UnfairLock.allocate()
| |- warning: static property 'globalLock' is not concurrency-safe because non-'Sendable' type '__UnfairLock' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'globalLock' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
68 |
69 | private let lock = UnfairLock.allocate()
COpenCombineHelpers.__UnfairLock:1:15: note: struct '__UnfairLock' does not conform to the 'Sendable' protocol
1 | public struct __UnfairLock {
| `- note: struct '__UnfairLock' does not conform to the 'Sendable' protocol
2 | public init(opaque: UnsafeMutableRawPointer)
3 | public var opaque: UnsafeMutableRawPointer
[86/111] Compiling OpenCombine Publishers.Retry.swift
/host/spi-builder-workspace/Sources/OpenCombine/Subscriptions.swift:17:23: warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
15 | /// Use the empty subscription when you need a `Subscription` that ignores requests
16 | /// and cancellation.
17 | public static let empty: Subscription = _EmptySubscription.singleton
| |- warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'empty' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | }
19 |
/host/spi-builder-workspace/Sources/OpenCombine/Subscription.swift:18:17: note: protocol 'Subscription' does not conform to the 'Sendable' protocol
16 | /// Canceling a subscription frees up any resources previously allocated by attaching
17 | /// the `Subscriber`.
18 | public protocol Subscription: Cancellable, CustomCombineIdentifierConvertible {
| `- note: protocol 'Subscription' does not conform to the 'Sendable' protocol
19 |
20 | /// Tells a publisher that it may send more values to the subscriber.
[87/111] Compiling OpenCombine Publishers.Scan.swift
/host/spi-builder-workspace/Sources/OpenCombine/Subscriptions.swift:17:23: warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
15 | /// Use the empty subscription when you need a `Subscription` that ignores requests
16 | /// and cancellation.
17 | public static let empty: Subscription = _EmptySubscription.singleton
| |- warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'empty' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | }
19 |
/host/spi-builder-workspace/Sources/OpenCombine/Subscription.swift:18:17: note: protocol 'Subscription' does not conform to the 'Sendable' protocol
16 | /// Canceling a subscription frees up any resources previously allocated by attaching
17 | /// the `Subscriber`.
18 | public protocol Subscription: Cancellable, CustomCombineIdentifierConvertible {
| `- note: protocol 'Subscription' does not conform to the 'Sendable' protocol
19 |
20 | /// Tells a publisher that it may send more values to the subscriber.
[88/111] Compiling OpenCombine Publishers.Sequence.swift
/host/spi-builder-workspace/Sources/OpenCombine/Subscriptions.swift:17:23: warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
15 | /// Use the empty subscription when you need a `Subscription` that ignores requests
16 | /// and cancellation.
17 | public static let empty: Subscription = _EmptySubscription.singleton
| |- warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'empty' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | }
19 |
/host/spi-builder-workspace/Sources/OpenCombine/Subscription.swift:18:17: note: protocol 'Subscription' does not conform to the 'Sendable' protocol
16 | /// Canceling a subscription frees up any resources previously allocated by attaching
17 | /// the `Subscriber`.
18 | public protocol Subscription: Cancellable, CustomCombineIdentifierConvertible {
| `- note: protocol 'Subscription' does not conform to the 'Sendable' protocol
19 |
20 | /// Tells a publisher that it may send more values to the subscriber.
[89/111] Compiling OpenCombine Publishers.SetFailureType.swift
/host/spi-builder-workspace/Sources/OpenCombine/Subscriptions.swift:17:23: warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
15 | /// Use the empty subscription when you need a `Subscription` that ignores requests
16 | /// and cancellation.
17 | public static let empty: Subscription = _EmptySubscription.singleton
| |- warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'empty' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | }
19 |
/host/spi-builder-workspace/Sources/OpenCombine/Subscription.swift:18:17: note: protocol 'Subscription' does not conform to the 'Sendable' protocol
16 | /// Canceling a subscription frees up any resources previously allocated by attaching
17 | /// the `Subscriber`.
18 | public protocol Subscription: Cancellable, CustomCombineIdentifierConvertible {
| `- note: protocol 'Subscription' does not conform to the 'Sendable' protocol
19 |
20 | /// Tells a publisher that it may send more values to the subscriber.
[90/111] Compiling OpenCombine Publishers.Share.swift
/host/spi-builder-workspace/Sources/OpenCombine/Subscriptions.swift:17:23: warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
15 | /// Use the empty subscription when you need a `Subscription` that ignores requests
16 | /// and cancellation.
17 | public static let empty: Subscription = _EmptySubscription.singleton
| |- warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'empty' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | }
19 |
/host/spi-builder-workspace/Sources/OpenCombine/Subscription.swift:18:17: note: protocol 'Subscription' does not conform to the 'Sendable' protocol
16 | /// Canceling a subscription frees up any resources previously allocated by attaching
17 | /// the `Subscriber`.
18 | public protocol Subscription: Cancellable, CustomCombineIdentifierConvertible {
| `- note: protocol 'Subscription' does not conform to the 'Sendable' protocol
19 |
20 | /// Tells a publisher that it may send more values to the subscriber.
[91/111] Compiling OpenCombine Publishers.SubscribeOn.swift
/host/spi-builder-workspace/Sources/OpenCombine/Subscriptions.swift:17:23: warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
15 | /// Use the empty subscription when you need a `Subscription` that ignores requests
16 | /// and cancellation.
17 | public static let empty: Subscription = _EmptySubscription.singleton
| |- warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'empty' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | }
19 |
/host/spi-builder-workspace/Sources/OpenCombine/Subscription.swift:18:17: note: protocol 'Subscription' does not conform to the 'Sendable' protocol
16 | /// Canceling a subscription frees up any resources previously allocated by attaching
17 | /// the `Subscriber`.
18 | public protocol Subscription: Cancellable, CustomCombineIdentifierConvertible {
| `- note: protocol 'Subscription' does not conform to the 'Sendable' protocol
19 |
20 | /// Tells a publisher that it may send more values to the subscriber.
[92/111] Compiling OpenCombine Publishers.SwitchToLatest.swift
/host/spi-builder-workspace/Sources/OpenCombine/Subscriptions.swift:17:23: warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
15 | /// Use the empty subscription when you need a `Subscription` that ignores requests
16 | /// and cancellation.
17 | public static let empty: Subscription = _EmptySubscription.singleton
| |- warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'empty' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | }
19 |
/host/spi-builder-workspace/Sources/OpenCombine/Subscription.swift:18:17: note: protocol 'Subscription' does not conform to the 'Sendable' protocol
16 | /// Canceling a subscription frees up any resources previously allocated by attaching
17 | /// the `Subscriber`.
18 | public protocol Subscription: Cancellable, CustomCombineIdentifierConvertible {
| `- note: protocol 'Subscription' does not conform to the 'Sendable' protocol
19 |
20 | /// Tells a publisher that it may send more values to the subscriber.
[93/111] Compiling OpenCombine Publishers.Throttle.swift
/host/spi-builder-workspace/Sources/OpenCombine/Subscriptions.swift:17:23: warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
15 | /// Use the empty subscription when you need a `Subscription` that ignores requests
16 | /// and cancellation.
17 | public static let empty: Subscription = _EmptySubscription.singleton
| |- warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'empty' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | }
19 |
/host/spi-builder-workspace/Sources/OpenCombine/Subscription.swift:18:17: note: protocol 'Subscription' does not conform to the 'Sendable' protocol
16 | /// Canceling a subscription frees up any resources previously allocated by attaching
17 | /// the `Subscriber`.
18 | public protocol Subscription: Cancellable, CustomCombineIdentifierConvertible {
| `- note: protocol 'Subscription' does not conform to the 'Sendable' protocol
19 |
20 | /// Tells a publisher that it may send more values to the subscriber.
[94/111] Compiling OpenCombine Publishers.Timeout.swift
/host/spi-builder-workspace/Sources/OpenCombine/Subscriptions.swift:17:23: warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
15 | /// Use the empty subscription when you need a `Subscription` that ignores requests
16 | /// and cancellation.
17 | public static let empty: Subscription = _EmptySubscription.singleton
| |- warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'empty' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | }
19 |
/host/spi-builder-workspace/Sources/OpenCombine/Subscription.swift:18:17: note: protocol 'Subscription' does not conform to the 'Sendable' protocol
16 | /// Canceling a subscription frees up any resources previously allocated by attaching
17 | /// the `Subscriber`.
18 | public protocol Subscription: Cancellable, CustomCombineIdentifierConvertible {
| `- note: protocol 'Subscription' does not conform to the 'Sendable' protocol
19 |
20 | /// Tells a publisher that it may send more values to the subscriber.
[95/111] Compiling OpenCombine Publishers.Zip.swift
/host/spi-builder-workspace/Sources/OpenCombine/Subscriptions.swift:17:23: warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
15 | /// Use the empty subscription when you need a `Subscription` that ignores requests
16 | /// and cancellation.
17 | public static let empty: Subscription = _EmptySubscription.singleton
| |- warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'empty' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | }
19 |
/host/spi-builder-workspace/Sources/OpenCombine/Subscription.swift:18:17: note: protocol 'Subscription' does not conform to the 'Sendable' protocol
16 | /// Canceling a subscription frees up any resources previously allocated by attaching
17 | /// the `Subscriber`.
18 | public protocol Subscription: Cancellable, CustomCombineIdentifierConvertible {
| `- note: protocol 'Subscription' does not conform to the 'Sendable' protocol
19 |
20 | /// Tells a publisher that it may send more values to the subscriber.
[96/111] Compiling OpenCombine Publishers.swift
/host/spi-builder-workspace/Sources/OpenCombine/Subscriptions.swift:17:23: warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
15 | /// Use the empty subscription when you need a `Subscription` that ignores requests
16 | /// and cancellation.
17 | public static let empty: Subscription = _EmptySubscription.singleton
| |- warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'empty' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | }
19 |
/host/spi-builder-workspace/Sources/OpenCombine/Subscription.swift:18:17: note: protocol 'Subscription' does not conform to the 'Sendable' protocol
16 | /// Canceling a subscription frees up any resources previously allocated by attaching
17 | /// the `Subscriber`.
18 | public protocol Subscription: Cancellable, CustomCombineIdentifierConvertible {
| `- note: protocol 'Subscription' does not conform to the 'Sendable' protocol
19 |
20 | /// Tells a publisher that it may send more values to the subscriber.
[97/111] Compiling OpenCombine Record.swift
/host/spi-builder-workspace/Sources/OpenCombine/Subscriptions.swift:17:23: warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
15 | /// Use the empty subscription when you need a `Subscription` that ignores requests
16 | /// and cancellation.
17 | public static let empty: Subscription = _EmptySubscription.singleton
| |- warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'empty' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | }
19 |
/host/spi-builder-workspace/Sources/OpenCombine/Subscription.swift:18:17: note: protocol 'Subscription' does not conform to the 'Sendable' protocol
16 | /// Canceling a subscription frees up any resources previously allocated by attaching
17 | /// the `Subscriber`.
18 | public protocol Subscription: Cancellable, CustomCombineIdentifierConvertible {
| `- note: protocol 'Subscription' does not conform to the 'Sendable' protocol
19 |
20 | /// Tells a publisher that it may send more values to the subscriber.
[98/111] Compiling OpenCombine Result.Publisher.swift
/host/spi-builder-workspace/Sources/OpenCombine/Subscriptions.swift:17:23: warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
15 | /// Use the empty subscription when you need a `Subscription` that ignores requests
16 | /// and cancellation.
17 | public static let empty: Subscription = _EmptySubscription.singleton
| |- warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'any Subscription' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'empty' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | }
19 |
/host/spi-builder-workspace/Sources/OpenCombine/Subscription.swift:18:17: note: protocol 'Subscription' does not conform to the 'Sendable' protocol
16 | /// Canceling a subscription frees up any resources previously allocated by attaching
17 | /// the `Subscriber`.
18 | public protocol Subscription: Cancellable, CustomCombineIdentifierConvertible {
| `- note: protocol 'Subscription' does not conform to the 'Sendable' protocol
19 |
20 | /// Tells a publisher that it may send more values to the subscriber.
[99/111] Compiling OpenCombine Publishers.AllSatisfy.swift
[100/111] Compiling OpenCombine Publishers.AssertNoFailure.swift
[101/111] Compiling OpenCombine Publishers.Autoconnect.swift
[102/111] Compiling OpenCombine Publishers.Breakpoint.swift
[103/111] Compiling OpenCombine Publishers.Buffer.swift
[104/111] Compiling OpenCombine Publishers.Collect.swift
[105/111] Compiling OpenCombine Publishers.CollectByCount.swift
[106/111] Compiling OpenCombine Publishers.CombineLatest.swift
[107/111] Compiling OpenCombine Publishers.CompactMap.swift
[108/111] Compiling OpenCombine Publishers.Comparison.swift
[109/111] Compiling OpenCombine Publishers.Concatenate.swift
[110/111] Compiling OpenCombine Publishers.Contains.swift
[111/111] Compiling OpenCombine Publishers.Count.swift
[113/125] Compiling OpenCombineDispatch DispatchQueue+Scheduler.swift
/host/spi-builder-workspace/Sources/OpenCombineDispatch/DispatchQueue+Scheduler.swift:302:34: warning: passing non-sendable parameter 'action' to function expecting a @Sendable closure
295 |
296 | public func schedule(options: SchedulerOptions?,
297 | _ action: @escaping () -> Void) {
| `- note: parameter 'action' is implicitly non-sendable
298 | let options = options ?? .init()
299 | queue.async(group: options.group,
300 | qos: options.qos,
301 | flags: options.flags,
302 | execute: action)
| `- warning: passing non-sendable parameter 'action' to function expecting a @Sendable closure
303 | }
304 |
/host/spi-builder-workspace/Sources/OpenCombineDispatch/DispatchQueue+Scheduler.swift:313:39: warning: passing non-sendable parameter 'action' to function expecting a @Sendable closure
306 | tolerance: SchedulerTimeType.Stride,
307 | options: SchedulerOptions?,
308 | _ action: @escaping () -> Void) {
| `- note: parameter 'action' is implicitly non-sendable
309 | let options = options ?? .init()
310 | queue.asyncAfter(deadline: date.dispatchTime,
311 | qos: options.qos,
312 | flags: options.flags,
313 | execute: action)
| `- warning: passing non-sendable parameter 'action' to function expecting a @Sendable closure
314 | }
315 |
[114/125] Emitting module OpenCombineDispatch
[116/126] Compiling OpenCombineFoundation Utils.swift
[117/126] Compiling OpenCombineFoundation Violations.swift
[118/127] Emitting module OpenCombineFoundation
/host/spi-builder-workspace/Sources/OpenCombineFoundation/OperationQueue+Scheduler.swift:160:29: warning: class 'DelayReadyOperation' must restate inherited '@unchecked Sendable' conformance
158 | }
159 |
160 | private final class DelayReadyOperation: Operation, Cancellable {
| `- warning: class 'DelayReadyOperation' must restate inherited '@unchecked Sendable' conformance
161 |
162 | fileprivate final class CancellationContext: Cancellable {
[119/127] Compiling OpenCombineFoundation Locking.swift
/host/spi-builder-workspace/Sources/OpenCombineFoundation/Helpers/Portability.swift:56:22: warning: capture of 'block' with non-sendable type '(Timer) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
54 | interval: interval,
55 | repeats: repeats,
56 | block: { block(Timer(underlyingTimer: $0)) }
| |- warning: capture of 'block' with non-sendable type '(Timer) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
57 | )
58 | #endif
/host/spi-builder-workspace/Sources/OpenCombineFoundation/Helpers/Portability.swift:141:17: warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
135 | }
136 |
137 | internal func performBlockPortably(_ block: @escaping () -> Void) {
| `- note: parameter 'block' is implicitly non-sendable
138 | #if canImport(Darwin)
139 | CFRunLoopPerformBlock(getCFRunLoop(), CFRunLoopMode.defaultMode.rawValue, block)
140 | #else
141 | perform(block)
| `- warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
142 | #endif
143 | }
[120/127] Compiling OpenCombineFoundation Portability.swift
/host/spi-builder-workspace/Sources/OpenCombineFoundation/Helpers/Portability.swift:56:22: warning: capture of 'block' with non-sendable type '(Timer) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
54 | interval: interval,
55 | repeats: repeats,
56 | block: { block(Timer(underlyingTimer: $0)) }
| |- warning: capture of 'block' with non-sendable type '(Timer) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
57 | )
58 | #endif
/host/spi-builder-workspace/Sources/OpenCombineFoundation/Helpers/Portability.swift:141:17: warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
135 | }
136 |
137 | internal func performBlockPortably(_ block: @escaping () -> Void) {
| `- note: parameter 'block' is implicitly non-sendable
138 | #if canImport(Darwin)
139 | CFRunLoopPerformBlock(getCFRunLoop(), CFRunLoopMode.defaultMode.rawValue, block)
140 | #else
141 | perform(block)
| `- warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
142 | #endif
143 | }
[121/127] Compiling OpenCombineFoundation JSONEncoder.swift
/host/spi-builder-workspace/Sources/OpenCombineFoundation/NotificationCenter.swift:169:21: warning: capture of 'self' with non-sendable type 'Notification.Subscription<Downstream>?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
137 |
138 | extension Notification {
139 | fileprivate final class Subscription<Downstream: Subscriber>
| `- note: generic class 'Subscription' does not conform to the 'Sendable' protocol
140 | : OpenCombine.Subscription,
141 | CustomStringConvertible,
:
167 | self.observation = center
168 | .addObserver(forName: name, object: object, queue: nil) { [weak self] in
169 | self?.didReceiveNotification($0, downstream: downstream)
| `- warning: capture of 'self' with non-sendable type 'Notification.Subscription<Downstream>?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
170 | }
171 | }
/host/spi-builder-workspace/Sources/OpenCombineFoundation/NotificationCenter.swift:169:66: warning: capture of 'downstream' with non-sendable type 'Downstream' in a `@Sendable` closure; this is an error in the Swift 6 language mode
137 |
138 | extension Notification {
139 | fileprivate final class Subscription<Downstream: Subscriber>
| `- note: consider making generic parameter 'Downstream' conform to the 'Sendable' protocol
140 | : OpenCombine.Subscription,
141 | CustomStringConvertible,
:
167 | self.observation = center
168 | .addObserver(forName: name, object: object, queue: nil) { [weak self] in
169 | self?.didReceiveNotification($0, downstream: downstream)
| `- warning: capture of 'downstream' with non-sendable type 'Downstream' in a `@Sendable` closure; this is an error in the Swift 6 language mode
170 | }
171 | }
[122/127] Compiling OpenCombineFoundation NotificationCenter.swift
/host/spi-builder-workspace/Sources/OpenCombineFoundation/NotificationCenter.swift:169:21: warning: capture of 'self' with non-sendable type 'Notification.Subscription<Downstream>?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
137 |
138 | extension Notification {
139 | fileprivate final class Subscription<Downstream: Subscriber>
| `- note: generic class 'Subscription' does not conform to the 'Sendable' protocol
140 | : OpenCombine.Subscription,
141 | CustomStringConvertible,
:
167 | self.observation = center
168 | .addObserver(forName: name, object: object, queue: nil) { [weak self] in
169 | self?.didReceiveNotification($0, downstream: downstream)
| `- warning: capture of 'self' with non-sendable type 'Notification.Subscription<Downstream>?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
170 | }
171 | }
/host/spi-builder-workspace/Sources/OpenCombineFoundation/NotificationCenter.swift:169:66: warning: capture of 'downstream' with non-sendable type 'Downstream' in a `@Sendable` closure; this is an error in the Swift 6 language mode
137 |
138 | extension Notification {
139 | fileprivate final class Subscription<Downstream: Subscriber>
| `- note: consider making generic parameter 'Downstream' conform to the 'Sendable' protocol
140 | : OpenCombine.Subscription,
141 | CustomStringConvertible,
:
167 | self.observation = center
168 | .addObserver(forName: name, object: object, queue: nil) { [weak self] in
169 | self?.didReceiveNotification($0, downstream: downstream)
| `- warning: capture of 'downstream' with non-sendable type 'Downstream' in a `@Sendable` closure; this is an error in the Swift 6 language mode
170 | }
171 | }
[123/127] Compiling OpenCombineFoundation OperationQueue+Scheduler.swift
/host/spi-builder-workspace/Sources/OpenCombineFoundation/OperationQueue+Scheduler.swift:160:29: warning: class 'DelayReadyOperation' must restate inherited '@unchecked Sendable' conformance
158 | }
159 |
160 | private final class DelayReadyOperation: Operation, Cancellable {
| `- warning: class 'DelayReadyOperation' must restate inherited '@unchecked Sendable' conformance
161 |
162 | fileprivate final class CancellationContext: Cancellable {
/host/spi-builder-workspace/Sources/OpenCombineFoundation/OperationQueue+Scheduler.swift:304:44: warning: passing non-sendable parameter 'action' to function expecting a @Sendable closure
301 |
302 | public func schedule(options: SchedulerOptions?,
303 | _ action: @escaping () -> Void) {
| `- note: parameter 'action' is implicitly non-sendable
304 | let op = BlockOperation(block: action)
| `- warning: passing non-sendable parameter 'action' to function expecting a @Sendable closure
305 | queue.addOperation(op)
306 | }
[124/127] Compiling OpenCombineFoundation PropertyListEncoder.swift
[125/127] Compiling OpenCombineFoundation RunLoop+Scheduler.swift
[126/127] Compiling OpenCombineFoundation Timer+Publisher.swift
[127/127] Compiling OpenCombineFoundation URLSession.swift
/host/spi-builder-workspace/Sources/OpenCombineFoundation/URLSession.swift:171:67: warning: converting non-sendable function value to '@Sendable (Data?, URLResponse?, (any Error)?) -> Void' may introduce data races
169 | if self.task == nil {
170 | task = parent.session.dataTask(with: parent.request,
171 | completionHandler: handleResponse)
| `- warning: converting non-sendable function value to '@Sendable (Data?, URLResponse?, (any Error)?) -> Void' may introduce data races
172 | }
173 | self.demand += demand
[129/130] Emitting module OpenCombineShim
[130/130] Compiling OpenCombineShim OpenCombineShim.swift
Build complete! (27.75s)
Build complete.
{
"cxx_language_standard" : "c++17",
"dependencies" : [
],
"manifest_display_name" : "OpenCombine",
"name" : "OpenCombine",
"path" : "/host/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "OpenCombine",
"targets" : [
"OpenCombine"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "OpenCombineDispatch",
"targets" : [
"OpenCombineDispatch"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "OpenCombineFoundation",
"targets" : [
"OpenCombineFoundation"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "OpenCombineShim",
"targets" : [
"OpenCombineShim"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "OpenCombineTests",
"module_type" : "SwiftTarget",
"name" : "OpenCombineTests",
"path" : "Tests/OpenCombineTests",
"sources" : [
"AnyCancellableTests.swift",
"AnyPublisherTests.swift",
"AnySubscriberTests.swift",
"CombineIdentifierTests.swift",
"ConcurrencyTests/FutureConcurrencyTests.swift",
"ConcurrencyTests/PublisherConcurrencyTests.swift",
"CurrentValueSubjectTests.swift",
"DispatchTests/DispatchQueueSchedulerTests.swift",
"FoundationTests/JSONDecoderTests.swift",
"FoundationTests/JSONEncoderTests.swift",
"FoundationTests/NotificationCenterTests.swift",
"FoundationTests/OperationQueueSchedulerTests.swift",
"FoundationTests/PropertyListDecoderTests.swift",
"FoundationTests/PropertyListEncoderTests.swift",
"FoundationTests/RunLoopSchedulerTests.swift",
"FoundationTests/TimerPublisherTests.swift",
"FoundationTests/URLSessionTests.swift",
"Helpers/AssertCrashes.swift",
"Helpers/AutomaticallyFinish.swift",
"Helpers/CleaningUpSubscriber.swift",
"Helpers/CommonTests.swift",
"Helpers/CustomPublisher.swift",
"Helpers/CustomSubscription.swift",
"Helpers/ExecuteOnBackgroundThread.swift",
"Helpers/FairPriorityQueue.swift",
"Helpers/OperatorTestHelper.swift",
"Helpers/TestCoders.swift",
"Helpers/TestLifecycle.swift",
"Helpers/TestReflection.swift",
"Helpers/TestingError.swift",
"Helpers/TestingThreadSafety.swift",
"Helpers/TrackingCollection.swift",
"Helpers/TrackingEncoder.swift",
"Helpers/TrackingIntrospection.swift",
"Helpers/TrackingSubscriber.swift",
"Helpers/VirtualTimeScheduler.swift",
"HelpersTests/ViolationsTests.swift",
"ImmediateSchedulerTests.swift",
"IntrospectionTests.swift",
"ObservableObjectPublisherTests.swift",
"ObservableObjectTests.swift",
"PassthroughSubjectTests.swift",
"PublishedTests.swift",
"PublisherTests.swift",
"PublisherTests/AllSatisfyTests.swift",
"PublisherTests/AssertNoFailureTests.swift",
"PublisherTests/AutoconnectTests.swift",
"PublisherTests/BreakpointTests.swift",
"PublisherTests/BufferTests.swift",
"PublisherTests/CatchTests.swift",
"PublisherTests/CollectByCountTests.swift",
"PublisherTests/CollectTests.swift",
"PublisherTests/CombineLatestTests.swift",
"PublisherTests/CompactMapTests.swift",
"PublisherTests/ComparisonTests.swift",
"PublisherTests/ConcatenateTests.swift",
"PublisherTests/ContainsTests.swift",
"PublisherTests/CountTests.swift",
"PublisherTests/DebounceTests.swift",
"PublisherTests/DeferredTests.swift",
"PublisherTests/DelayTests.swift",
"PublisherTests/DropTests.swift",
"PublisherTests/DropUntilOutputTests.swift",
"PublisherTests/DropWhileTests.swift",
"PublisherTests/EmptyTests.swift",
"PublisherTests/EncodeTests.swift",
"PublisherTests/FailTests.swift",
"PublisherTests/FilterTests.swift",
"PublisherTests/FirstTests.swift",
"PublisherTests/FlatMapTests.swift",
"PublisherTests/FutureTests.swift",
"PublisherTests/HandleEventsTests.swift",
"PublisherTests/IgnoreOutputTests.swift",
"PublisherTests/JustTests.swift",
"PublisherTests/LastTests.swift",
"PublisherTests/MakeConnectableTests.swift",
"PublisherTests/MapErrorTests.swift",
"PublisherTests/MapKeyPathTests.swift",
"PublisherTests/MapTests.swift",
"PublisherTests/MeasureIntervalTests.swift",
"PublisherTests/MergeTests.swift",
"PublisherTests/MulticastTests.swift",
"PublisherTests/OptionalPublisherTests.swift",
"PublisherTests/OutputTests.swift",
"PublisherTests/PrefixUntilOutputTests.swift",
"PublisherTests/PrefixWhileTests.swift",
"PublisherTests/PrintTests.swift",
"PublisherTests/ReceiveOnTests.swift",
"PublisherTests/RecordTests.swift",
"PublisherTests/ReduceTests.swift",
"PublisherTests/RemoveDuplicatesTests.swift",
"PublisherTests/ReplaceEmptyTests.swift",
"PublisherTests/ReplaceErrorTests.swift",
"PublisherTests/ReplaceNilTests.swift",
"PublisherTests/ResultPublisherTests.swift",
"PublisherTests/RetryTests.swift",
"PublisherTests/ScanTests.swift",
"PublisherTests/SequenceTests.swift",
"PublisherTests/SetFailureTypeTests.swift",
"PublisherTests/ShareTests.swift",
"PublisherTests/SubscribeOnTests.swift",
"PublisherTests/SwitchToLatestTests.swift",
"PublisherTests/ThrottleTests.swift",
"PublisherTests/TimeoutTests.swift",
"PublisherTests/ZipTests.swift",
"SubscribersTests/AssignTests.swift",
"SubscribersTests/CompletionTests.swift",
"SubscribersTests/SinkTests.swift",
"SubscribersTests/SubscribersDemandTests.swift",
"Subscriptions/EmptySubscriptionTests.swift",
"VirtualTimeSchedulerTests.swift"
],
"target_dependencies" : [
"OpenCombine",
"OpenCombineDispatch",
"OpenCombineFoundation"
],
"type" : "test"
},
{
"c99name" : "OpenCombineShim",
"module_type" : "SwiftTarget",
"name" : "OpenCombineShim",
"path" : "Sources/OpenCombineShim",
"product_memberships" : [
"OpenCombineShim"
],
"sources" : [
"OpenCombineShim.swift"
],
"target_dependencies" : [
"OpenCombine",
"OpenCombineDispatch",
"OpenCombineFoundation"
],
"type" : "library"
},
{
"c99name" : "OpenCombineFoundation",
"module_type" : "SwiftTarget",
"name" : "OpenCombineFoundation",
"path" : "Sources/OpenCombineFoundation",
"product_memberships" : [
"OpenCombineFoundation",
"OpenCombineShim"
],
"sources" : [
"Helpers/Locking.swift",
"Helpers/Portability.swift",
"Helpers/Utils.swift",
"Helpers/Violations.swift",
"JSONEncoder.swift",
"NotificationCenter.swift",
"OperationQueue+Scheduler.swift",
"PropertyListEncoder.swift",
"RunLoop+Scheduler.swift",
"Timer+Publisher.swift",
"URLSession.swift"
],
"target_dependencies" : [
"OpenCombine",
"COpenCombineHelpers"
],
"type" : "library"
},
{
"c99name" : "OpenCombineDispatch",
"module_type" : "SwiftTarget",
"name" : "OpenCombineDispatch",
"path" : "Sources/OpenCombineDispatch",
"product_memberships" : [
"OpenCombineDispatch",
"OpenCombineShim"
],
"sources" : [
"DispatchQueue+Scheduler.swift"
],
"target_dependencies" : [
"OpenCombine"
],
"type" : "library"
},
{
"c99name" : "OpenCombine",
"module_type" : "SwiftTarget",
"name" : "OpenCombine",
"path" : "Sources/OpenCombine",
"product_memberships" : [
"OpenCombine",
"OpenCombineDispatch",
"OpenCombineFoundation",
"OpenCombineShim"
],
"sources" : [
"AnyCancellable.swift",
"AnyPublisher.swift",
"AnySubscriber.swift",
"Cancellable.swift",
"Codable.swift",
"CombineIdentifier.swift",
"Concurrency/Future+Concurrency.swift",
"Concurrency/GENERATED-Publisher+Concurrency.swift",
"CurrentValueSubject.swift",
"CustomCombineIdentifierConvertible.swift",
"Future.swift",
"Helpers/ConduitBase.swift",
"Helpers/ConduitList.swift",
"Helpers/DebugHook.swift",
"Helpers/FilterProducer.swift",
"Helpers/Locking.swift",
"Helpers/PartialCompletion.swift",
"Helpers/PublishedSubject.swift",
"Helpers/PublishedSubscriber.swift",
"Helpers/ReduceProducer.swift",
"Helpers/SubjectSubscriber.swift",
"Helpers/SubscriberTap.swift",
"Helpers/SubscriptionStatus.swift",
"Helpers/SubscriptionTap.swift",
"Helpers/Utils.swift",
"Helpers/Violations.swift",
"ImmediateScheduler.swift",
"ObservableObject.swift",
"PassthroughSubject.swift",
"Published.swift",
"Publisher+Subscribe.swift",
"Publishers/Deferred.swift",
"Publishers/Empty.swift",
"Publishers/Fail.swift",
"Publishers/GENERATED-Publishers.Catch.swift",
"Publishers/GENERATED-Publishers.Encode.swift",
"Publishers/GENERATED-Publishers.MapKeyPath.swift",
"Publishers/Just.swift",
"Publishers/Optional.Publisher.swift",
"Publishers/Publishers.AllSatisfy.swift",
"Publishers/Publishers.AssertNoFailure.swift",
"Publishers/Publishers.Autoconnect.swift",
"Publishers/Publishers.Breakpoint.swift",
"Publishers/Publishers.Buffer.swift",
"Publishers/Publishers.Collect.swift",
"Publishers/Publishers.CollectByCount.swift",
"Publishers/Publishers.CombineLatest.swift",
"Publishers/Publishers.CompactMap.swift",
"Publishers/Publishers.Comparison.swift",
"Publishers/Publishers.Concatenate.swift",
"Publishers/Publishers.Contains.swift",
"Publishers/Publishers.Count.swift",
"Publishers/Publishers.Debounce.swift",
"Publishers/Publishers.Delay.swift",
"Publishers/Publishers.Drop.swift",
"Publishers/Publishers.DropUntilOutput.swift",
"Publishers/Publishers.DropWhile.swift",
"Publishers/Publishers.Filter.swift",
"Publishers/Publishers.First.swift",
"Publishers/Publishers.FlatMap.swift",
"Publishers/Publishers.HandleEvents.swift",
"Publishers/Publishers.IgnoreOutput.swift",
"Publishers/Publishers.Last.swift",
"Publishers/Publishers.MakeConnectable.swift",
"Publishers/Publishers.Map.swift",
"Publishers/Publishers.MapError.swift",
"Publishers/Publishers.MeasureInterval.swift",
"Publishers/Publishers.Merge.swift",
"Publishers/Publishers.Multicast.swift",
"Publishers/Publishers.Output.swift",
"Publishers/Publishers.PrefixUntilOutput.swift",
"Publishers/Publishers.PrefixWhile.swift",
"Publishers/Publishers.Print.swift",
"Publishers/Publishers.ReceiveOn.swift",
"Publishers/Publishers.Reduce.swift",
"Publishers/Publishers.RemoveDuplicates.swift",
"Publishers/Publishers.ReplaceEmpty.swift",
"Publishers/Publishers.ReplaceError.swift",
"Publishers/Publishers.Retry.swift",
"Publishers/Publishers.Scan.swift",
"Publishers/Publishers.Sequence.swift",
"Publishers/Publishers.SetFailureType.swift",
"Publishers/Publishers.Share.swift",
"Publishers/Publishers.SubscribeOn.swift",
"Publishers/Publishers.SwitchToLatest.swift",
"Publishers/Publishers.Throttle.swift",
"Publishers/Publishers.Timeout.swift",
"Publishers/Publishers.Zip.swift",
"Publishers/Publishers.swift",
"Publishers/Record.swift",
"Publishers/Result.Publisher.swift",
"Result.swift",
"RootProtocols.swift",
"Scheduler.swift",
"Subject+Void.swift",
"Subscriber+Void.swift",
"Subscribers/Subscribers.Assign.swift",
"Subscribers/Subscribers.Completion.swift",
"Subscribers/Subscribers.Demand.swift",
"Subscribers/Subscribers.Sink.swift",
"Subscribers/Subscribers.swift",
"Subscription.swift",
"Subscriptions.swift",
"_Introspection.swift"
],
"target_dependencies" : [
"COpenCombineHelpers"
],
"type" : "library"
},
{
"c99name" : "COpenCombineHelpers",
"module_type" : "ClangTarget",
"name" : "COpenCombineHelpers",
"path" : "Sources/COpenCombineHelpers",
"product_memberships" : [
"OpenCombine",
"OpenCombineDispatch",
"OpenCombineFoundation",
"OpenCombineShim"
],
"sources" : [
"COpenCombineHelpers.cpp"
],
"type" : "library"
}
],
"tools_version" : "5.9"
}
basic-6.0-latest: Pulling from finestructure/spi-images
Digest: sha256:47d26c99ca4f1ac0a332c85fd5b13ff4390e72115219984a57a68fe9d1063a05
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.0-latest
Done.