The Swift Package Index logo.Swift Package Index

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

Build Information

Successful build of OperationPlus, reference main (1551ba), with Swift 6.0 for macOS (SPM) on 8 Nov 2024 16:15:46 UTC.

Swift 6 data race errors: 1

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete

Build Log

========================================
RunAll
========================================
Builder version: 4.57.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/ChimeHQ/OperationPlus.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/ChimeHQ/OperationPlus
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 1551ba3 Prepare for archiving
Cloned https://github.com/ChimeHQ/OperationPlus.git
Revision (git rev-parse @):
1551ba35b689ea1e4cfb479dda3f9a782d942be3
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/ChimeHQ/OperationPlus.git at main
========================================
ResolveProductDependencies
========================================
Resolving dependencies ...
{
  "identity": ".resolve-product-dependencies",
  "name": "resolve-dependencies",
  "url": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
  "version": "unspecified",
  "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
  "dependencies": [
    {
      "identity": "operationplus",
      "name": "OperationPlus",
      "url": "https://github.com/ChimeHQ/OperationPlus.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/OperationPlus",
      "dependencies": [
      ]
    }
  ]
}
Fetching https://github.com/ChimeHQ/OperationPlus.git
[1/525] Fetching operationplus
Fetched https://github.com/ChimeHQ/OperationPlus.git from cache (0.76s)
Creating working copy for https://github.com/ChimeHQ/OperationPlus.git
Working copy of https://github.com/ChimeHQ/OperationPlus.git resolved at main (1551ba3)
warning: '.resolve-product-dependencies': dependency 'operationplus' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $PWD
https://github.com/ChimeHQ/OperationPlus.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete
Building for debugging...
[0/3] Write sources
[2/3] Write swift-version--7754E27361AE5C74.txt
[4/25] Emitting module OperationPlus
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/AsyncBlockConsumerOperation.swift:12:14: warning: class 'AsyncBlockConsumerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An asynchronous variant of BlockConsumerOperation
12 | public class AsyncBlockConsumerOperation<Input>: AsyncConsumerOperation<Input> {
   |              `- warning: class 'AsyncBlockConsumerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     public typealias CompletionHandler = (Input, @escaping () -> Void) -> Void
14 |
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/AsyncBlockConsumerProducerOperation.swift:12:14: warning: class 'AsyncBlockConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An asynchronous variant of BlockConsumerProducerOperation
12 | public class AsyncBlockConsumerProducerOperation<Input, Output>: AsyncConsumerProducerOperation<Input, Output> {
   |              `- warning: class 'AsyncBlockConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     public typealias CompletionHandler = (Input, @escaping (Output?) -> Void) -> Void
14 |
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/AsyncBlockOperation.swift:12:14: warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An operation for enqueuing inline work that can be completed with a callback
12 | public class AsyncBlockOperation: AsyncOperation {
   |              `- warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
13 |     public typealias CompletionHandler = (@escaping () -> Void) -> Void
14 |
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/AsyncBlockProducerOperation.swift:12:14: warning: class 'AsyncBlockProducerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An asynchronous variant of BlockProducerOperation
12 | public class AsyncBlockProducerOperation<Output>: AsyncProducerOperation<Output> {
   |              `- warning: class 'AsyncBlockProducerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     public typealias CompletionHandler = (@escaping (Output?) -> Void) -> Void
14 |
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/AsyncConsumerOperation.swift:12:12: warning: class 'AsyncConsumerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An asynchronous variant of ConsumerOperation
12 | open class AsyncConsumerOperation<Input>: ConsumerOperation<Input> {
   |            `- warning: class 'AsyncConsumerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     override open var isAsynchronous: Bool {
14 |         return true
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/AsyncConsumerProducerOperation.swift:12:12: warning: class 'AsyncConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An asynchronous variant of ConsumerProducerOperation
12 | open class AsyncConsumerProducerOperation<Input, Output>: ConsumerProducerOperation<Input, Output> {
   |            `- warning: class 'AsyncConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     override open var isAsynchronous: Bool {
14 |         return true
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/AsyncOperation.swift:11:12: warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
 9 | import Foundation
10 |
11 | open class AsyncOperation : BaseOperation {
   |            `- warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
12 |     override open var isAsynchronous: Bool {
13 |         return true
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/AsyncProducerOperation.swift:11:12: warning: class 'AsyncProducerOperation' must restate inherited '@unchecked Sendable' conformance
 9 | import Foundation
10 |
11 | open class AsyncProducerOperation<Output> : ProducerOperation<Output> {
   |            `- warning: class 'AsyncProducerOperation' must restate inherited '@unchecked Sendable' conformance
12 |     override open var isAsynchronous: Bool {
13 |         return true
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/BaseOperation.swift:11:12: warning: class 'BaseOperation' must restate inherited '@unchecked Sendable' conformance
  9 | import Foundation
 10 |
 11 | open class BaseOperation : Operation {
    |            `- warning: class 'BaseOperation' must restate inherited '@unchecked Sendable' conformance
 12 |     public enum State {
 13 |         case notStarted
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/BaseOperationError.swift:20:10: warning: associated value 'stateTransitionInvalid' of 'Sendable'-conforming enum 'BaseOperationError' has non-sendable type 'BaseOperation.State'; this is an error in the Swift 6 language mode
18 | public enum BaseOperationError: Error {
19 |     case dependencyAddedInInvalidState(Operation)
20 |     case stateTransitionInvalid(BaseOperation.State)
   |          `- warning: associated value 'stateTransitionInvalid' of 'Sendable'-conforming enum 'BaseOperationError' has non-sendable type 'BaseOperation.State'; this is an error in the Swift 6 language mode
21 |     case timedOut
22 | }
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/BaseOperation.swift:12:17: note: consider making enum 'State' conform to the 'Sendable' protocol
 10 |
 11 | open class BaseOperation : Operation {
 12 |     public enum State {
    |                 `- note: consider making enum 'State' conform to the 'Sendable' protocol
 13 |         case notStarted
 14 |         case running
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/BlockConsumerOperation.swift:12:14: warning: class 'BlockConsumerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// A block-based version of ConsumerOperation
12 | public class BlockConsumerOperation<Input>: ConsumerOperation<Input> {
   |              `- warning: class 'BlockConsumerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     private let block: (Input) -> Void
14 |
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/BlockConsumerProducerOperation.swift:12:14: warning: class 'BlockConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// A block-based version of ConsumerProducerOperation
12 | public class BlockConsumerProducerOperation<Input, Output>: ConsumerProducerOperation<Input, Output> {
   |              `- warning: class 'BlockConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     public typealias Block = (Input) -> Output?
14 |
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/BlockProducerOperation.swift:12:14: warning: class 'BlockProducerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// A block-based version of ProducerOperation
12 | public class BlockProducerOperation<Output>: ProducerOperation<Output> {
   |              `- warning: class 'BlockProducerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     private let block: () -> Output?
14 |
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/ConsumerProducerOperation.swift:13:12: warning: class 'ConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
11 | /// An operation that depends on and uses the value of a ProducerOperation, and also
12 | /// itself produces a value
13 | open class ConsumerProducerOperation<Input, Output>: ProducerOperation<Output> {
   |            `- warning: class 'ConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
14 |     private let producerOp: ProducerOperation<Input>
15 |
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/Extensions/Publishers.swift:32:14: warning: class 'PublisherOperation' must restate inherited '@unchecked Sendable' conformance
30 | /// A `ProducerOperation` subclass takes a publisher. When executed, it creates a subscription and outputs the results.
31 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 6.0, *)
32 | public class PublisherOperation<Output, Failure: Error>: AsyncProducerOperation<Result<Output, Failure>> {
   |              `- warning: class 'PublisherOperation' must restate inherited '@unchecked Sendable' conformance
33 |     public typealias Publisher = AnyPublisher<Output, Failure>
34 |
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/ProducerOperation.swift:11:12: warning: class 'ProducerOperation' must restate inherited '@unchecked Sendable' conformance
 9 | import Foundation
10 |
11 | open class ProducerOperation<Output> : BaseOperation {
   |            `- warning: class 'ProducerOperation' must restate inherited '@unchecked Sendable' conformance
12 |     public enum OutputCompletionBlockBehavior {
13 |         case onCompletionOnly
[5/27] Compiling OperationPlus OperationQueue+Dependencies.swift
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/Extensions/OperationQueue+Emptied.swift:14:40: warning: passing non-sendable parameter 'completionBlock' to function expecting a @Sendable closure
11 | extension OperationQueue {
12 |     @discardableResult
13 |     public func currentOperationsFinished(completionBlock: @escaping () -> Void) -> Operation {
   |                                           `- note: parameter 'completionBlock' is implicitly non-sendable
14 |         let op = BlockOperation(block: completionBlock)
   |                                        `- warning: passing non-sendable parameter 'completionBlock' to function expecting a @Sendable closure
15 |
16 |         addOperation(op, dependencies: self.operations)
[6/27] Compiling OperationPlus OperationQueue+Emptied.swift
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/Extensions/OperationQueue+Emptied.swift:14:40: warning: passing non-sendable parameter 'completionBlock' to function expecting a @Sendable closure
11 | extension OperationQueue {
12 |     @discardableResult
13 |     public func currentOperationsFinished(completionBlock: @escaping () -> Void) -> Operation {
   |                                           `- note: parameter 'completionBlock' is implicitly non-sendable
14 |         let op = BlockOperation(block: completionBlock)
   |                                        `- warning: passing non-sendable parameter 'completionBlock' to function expecting a @Sendable closure
15 |
16 |         addOperation(op, dependencies: self.operations)
[7/27] Compiling OperationPlus Operation+Dependencies.swift
[8/27] Compiling OperationPlus OperationQueue+Creation.swift
[9/27] Compiling OperationPlus Publishers.swift
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/Extensions/Publishers.swift:32:14: warning: class 'PublisherOperation' must restate inherited '@unchecked Sendable' conformance
30 | /// A `ProducerOperation` subclass takes a publisher. When executed, it creates a subscription and outputs the results.
31 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 6.0, *)
32 | public class PublisherOperation<Output, Failure: Error>: AsyncProducerOperation<Result<Output, Failure>> {
   |              `- warning: class 'PublisherOperation' must restate inherited '@unchecked Sendable' conformance
33 |     public typealias Publisher = AnyPublisher<Output, Failure>
34 |
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/Extensions/Publishers.swift:12:17: warning: capture of 'promise' with non-sendable type '(Result<Void, Never>) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
10 |         return Future { promise in
11 |             self.completionBlock = {
12 |                 promise(.success(()))
   |                 |- warning: capture of 'promise' with non-sendable type '(Result<Void, Never>) -> 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'
13 |             }
14 |         }.eraseToAnyPublisher()
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/ProducerOperation.swift:11:12: warning: class 'ProducerOperation' must restate inherited '@unchecked Sendable' conformance
 9 | import Foundation
10 |
11 | open class ProducerOperation<Output> : BaseOperation {
   |            `- warning: class 'ProducerOperation' must restate inherited '@unchecked Sendable' conformance
12 |     public enum OutputCompletionBlockBehavior {
13 |         case onCompletionOnly
[10/27] Compiling OperationPlus ProducerOperation.swift
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/Extensions/Publishers.swift:32:14: warning: class 'PublisherOperation' must restate inherited '@unchecked Sendable' conformance
30 | /// A `ProducerOperation` subclass takes a publisher. When executed, it creates a subscription and outputs the results.
31 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 6.0, *)
32 | public class PublisherOperation<Output, Failure: Error>: AsyncProducerOperation<Result<Output, Failure>> {
   |              `- warning: class 'PublisherOperation' must restate inherited '@unchecked Sendable' conformance
33 |     public typealias Publisher = AnyPublisher<Output, Failure>
34 |
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/Extensions/Publishers.swift:12:17: warning: capture of 'promise' with non-sendable type '(Result<Void, Never>) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
10 |         return Future { promise in
11 |             self.completionBlock = {
12 |                 promise(.success(()))
   |                 |- warning: capture of 'promise' with non-sendable type '(Result<Void, Never>) -> 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'
13 |             }
14 |         }.eraseToAnyPublisher()
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/ProducerOperation.swift:11:12: warning: class 'ProducerOperation' must restate inherited '@unchecked Sendable' conformance
 9 | import Foundation
10 |
11 | open class ProducerOperation<Output> : BaseOperation {
   |            `- warning: class 'ProducerOperation' must restate inherited '@unchecked Sendable' conformance
12 |     public enum OutputCompletionBlockBehavior {
13 |         case onCompletionOnly
[11/27] Compiling OperationPlus BaseOperationError.swift
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/BaseOperationError.swift:20:10: warning: associated value 'stateTransitionInvalid' of 'Sendable'-conforming enum 'BaseOperationError' has non-sendable type 'BaseOperation.State'; this is an error in the Swift 6 language mode
18 | public enum BaseOperationError: Error {
19 |     case dependencyAddedInInvalidState(Operation)
20 |     case stateTransitionInvalid(BaseOperation.State)
   |          `- warning: associated value 'stateTransitionInvalid' of 'Sendable'-conforming enum 'BaseOperationError' has non-sendable type 'BaseOperation.State'; this is an error in the Swift 6 language mode
21 |     case timedOut
22 | }
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/BaseOperation.swift:12:17: note: consider making enum 'State' conform to the 'Sendable' protocol
 10 |
 11 | open class BaseOperation : Operation {
 12 |     public enum State {
    |                 `- note: consider making enum 'State' conform to the 'Sendable' protocol
 13 |         case notStarted
 14 |         case running
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/BlockConsumerOperation.swift:12:14: warning: class 'BlockConsumerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// A block-based version of ConsumerOperation
12 | public class BlockConsumerOperation<Input>: ConsumerOperation<Input> {
   |              `- warning: class 'BlockConsumerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     private let block: (Input) -> Void
14 |
[12/27] Compiling OperationPlus BlockConsumerOperation.swift
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/BaseOperationError.swift:20:10: warning: associated value 'stateTransitionInvalid' of 'Sendable'-conforming enum 'BaseOperationError' has non-sendable type 'BaseOperation.State'; this is an error in the Swift 6 language mode
18 | public enum BaseOperationError: Error {
19 |     case dependencyAddedInInvalidState(Operation)
20 |     case stateTransitionInvalid(BaseOperation.State)
   |          `- warning: associated value 'stateTransitionInvalid' of 'Sendable'-conforming enum 'BaseOperationError' has non-sendable type 'BaseOperation.State'; this is an error in the Swift 6 language mode
21 |     case timedOut
22 | }
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/BaseOperation.swift:12:17: note: consider making enum 'State' conform to the 'Sendable' protocol
 10 |
 11 | open class BaseOperation : Operation {
 12 |     public enum State {
    |                 `- note: consider making enum 'State' conform to the 'Sendable' protocol
 13 |         case notStarted
 14 |         case running
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/BlockConsumerOperation.swift:12:14: warning: class 'BlockConsumerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// A block-based version of ConsumerOperation
12 | public class BlockConsumerOperation<Input>: ConsumerOperation<Input> {
   |              `- warning: class 'BlockConsumerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     private let block: (Input) -> Void
14 |
[13/27] Compiling OperationPlus OperationQueue+Enqueuing.swift
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/Extensions/OperationQueue+Enqueuing.swift:58:44: warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
 55 |     /// - Parameter delay: The amount of time to wait before scheduling op.
 56 |     /// - Parameter block: The block to be invoked on the queue.
 57 |     public func addOperation(afterDelay delay: TimeInterval, block: @escaping () -> Void) {
    |                                                              `- note: parameter 'block' is implicitly non-sendable
 58 |         addOperation(BlockOperation(block: block), afterDelay: delay)
    |                                            `- warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
 59 |     }
 60 | }
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/Extensions/OperationQueue+Enqueuing.swift:73:27: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
 71 |     public func addOperation(block: @Sendable @escaping () async -> Void) {
 72 |         let op = AsyncBlockOperation { opBlock in
 73 |             Task.detached {
    |                           `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
 74 |                 await block()
 75 |
 76 |                 opBlock()
    |                 `- note: closure captures 'opBlock' which is accessible to code in the current task
 77 |             }
 78 |         }
[14/27] Compiling OperationPlus OperationQueue+Preconditions.swift
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/Extensions/OperationQueue+Enqueuing.swift:58:44: warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
 55 |     /// - Parameter delay: The amount of time to wait before scheduling op.
 56 |     /// - Parameter block: The block to be invoked on the queue.
 57 |     public func addOperation(afterDelay delay: TimeInterval, block: @escaping () -> Void) {
    |                                                              `- note: parameter 'block' is implicitly non-sendable
 58 |         addOperation(BlockOperation(block: block), afterDelay: delay)
    |                                            `- warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
 59 |     }
 60 | }
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/Extensions/OperationQueue+Enqueuing.swift:73:27: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
 71 |     public func addOperation(block: @Sendable @escaping () async -> Void) {
 72 |         let op = AsyncBlockOperation { opBlock in
 73 |             Task.detached {
    |                           `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
 74 |                 await block()
 75 |
 76 |                 opBlock()
    |                 `- note: closure captures 'opBlock' which is accessible to code in the current task
 77 |             }
 78 |         }
[15/27] Compiling OperationPlus AsyncOperation.swift
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/AsyncOperation.swift:11:12: warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
 9 | import Foundation
10 |
11 | open class AsyncOperation : BaseOperation {
   |            `- warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
12 |     override open var isAsynchronous: Bool {
13 |         return true
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/AsyncProducerOperation.swift:11:12: warning: class 'AsyncProducerOperation' must restate inherited '@unchecked Sendable' conformance
 9 | import Foundation
10 |
11 | open class AsyncProducerOperation<Output> : ProducerOperation<Output> {
   |            `- warning: class 'AsyncProducerOperation' must restate inherited '@unchecked Sendable' conformance
12 |     override open var isAsynchronous: Bool {
13 |         return true
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/BaseOperation.swift:11:12: warning: class 'BaseOperation' must restate inherited '@unchecked Sendable' conformance
  9 | import Foundation
 10 |
 11 | open class BaseOperation : Operation {
    |            `- warning: class 'BaseOperation' must restate inherited '@unchecked Sendable' conformance
 12 |     public enum State {
 13 |         case notStarted
[16/27] Compiling OperationPlus AsyncProducerOperation.swift
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/AsyncOperation.swift:11:12: warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
 9 | import Foundation
10 |
11 | open class AsyncOperation : BaseOperation {
   |            `- warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
12 |     override open var isAsynchronous: Bool {
13 |         return true
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/AsyncProducerOperation.swift:11:12: warning: class 'AsyncProducerOperation' must restate inherited '@unchecked Sendable' conformance
 9 | import Foundation
10 |
11 | open class AsyncProducerOperation<Output> : ProducerOperation<Output> {
   |            `- warning: class 'AsyncProducerOperation' must restate inherited '@unchecked Sendable' conformance
12 |     override open var isAsynchronous: Bool {
13 |         return true
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/BaseOperation.swift:11:12: warning: class 'BaseOperation' must restate inherited '@unchecked Sendable' conformance
  9 | import Foundation
 10 |
 11 | open class BaseOperation : Operation {
    |            `- warning: class 'BaseOperation' must restate inherited '@unchecked Sendable' conformance
 12 |     public enum State {
 13 |         case notStarted
[17/27] Compiling OperationPlus BaseOperation.swift
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/AsyncOperation.swift:11:12: warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
 9 | import Foundation
10 |
11 | open class AsyncOperation : BaseOperation {
   |            `- warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
12 |     override open var isAsynchronous: Bool {
13 |         return true
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/AsyncProducerOperation.swift:11:12: warning: class 'AsyncProducerOperation' must restate inherited '@unchecked Sendable' conformance
 9 | import Foundation
10 |
11 | open class AsyncProducerOperation<Output> : ProducerOperation<Output> {
   |            `- warning: class 'AsyncProducerOperation' must restate inherited '@unchecked Sendable' conformance
12 |     override open var isAsynchronous: Bool {
13 |         return true
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/BaseOperation.swift:11:12: warning: class 'BaseOperation' must restate inherited '@unchecked Sendable' conformance
  9 | import Foundation
 10 |
 11 | open class BaseOperation : Operation {
    |            `- warning: class 'BaseOperation' must restate inherited '@unchecked Sendable' conformance
 12 |     public enum State {
 13 |         case notStarted
[18/27] Compiling OperationPlus BlockConsumerProducerOperation.swift
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/BlockConsumerProducerOperation.swift:12:14: warning: class 'BlockConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// A block-based version of ConsumerProducerOperation
12 | public class BlockConsumerProducerOperation<Input, Output>: ConsumerProducerOperation<Input, Output> {
   |              `- warning: class 'BlockConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     public typealias Block = (Input) -> Output?
14 |
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/BlockProducerOperation.swift:12:14: warning: class 'BlockProducerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// A block-based version of ProducerOperation
12 | public class BlockProducerOperation<Output>: ProducerOperation<Output> {
   |              `- warning: class 'BlockProducerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     private let block: () -> Output?
14 |
[19/27] Compiling OperationPlus BlockProducerOperation.swift
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/BlockConsumerProducerOperation.swift:12:14: warning: class 'BlockConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// A block-based version of ConsumerProducerOperation
12 | public class BlockConsumerProducerOperation<Input, Output>: ConsumerProducerOperation<Input, Output> {
   |              `- warning: class 'BlockConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     public typealias Block = (Input) -> Output?
14 |
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/BlockProducerOperation.swift:12:14: warning: class 'BlockProducerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// A block-based version of ProducerOperation
12 | public class BlockProducerOperation<Output>: ProducerOperation<Output> {
   |              `- warning: class 'BlockProducerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     private let block: () -> Output?
14 |
[20/27] Compiling OperationPlus AsyncBlockConsumerOperation.swift
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/AsyncBlockConsumerOperation.swift:12:14: warning: class 'AsyncBlockConsumerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An asynchronous variant of BlockConsumerOperation
12 | public class AsyncBlockConsumerOperation<Input>: AsyncConsumerOperation<Input> {
   |              `- warning: class 'AsyncBlockConsumerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     public typealias CompletionHandler = (Input, @escaping () -> Void) -> Void
14 |
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/AsyncBlockConsumerProducerOperation.swift:12:14: warning: class 'AsyncBlockConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An asynchronous variant of BlockConsumerProducerOperation
12 | public class AsyncBlockConsumerProducerOperation<Input, Output>: AsyncConsumerProducerOperation<Input, Output> {
   |              `- warning: class 'AsyncBlockConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     public typealias CompletionHandler = (Input, @escaping (Output?) -> Void) -> Void
14 |
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/AsyncBlockOperation.swift:12:14: warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An operation for enqueuing inline work that can be completed with a callback
12 | public class AsyncBlockOperation: AsyncOperation {
   |              `- warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
13 |     public typealias CompletionHandler = (@escaping () -> Void) -> Void
14 |
[21/27] Compiling OperationPlus AsyncBlockConsumerProducerOperation.swift
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/AsyncBlockConsumerOperation.swift:12:14: warning: class 'AsyncBlockConsumerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An asynchronous variant of BlockConsumerOperation
12 | public class AsyncBlockConsumerOperation<Input>: AsyncConsumerOperation<Input> {
   |              `- warning: class 'AsyncBlockConsumerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     public typealias CompletionHandler = (Input, @escaping () -> Void) -> Void
14 |
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/AsyncBlockConsumerProducerOperation.swift:12:14: warning: class 'AsyncBlockConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An asynchronous variant of BlockConsumerProducerOperation
12 | public class AsyncBlockConsumerProducerOperation<Input, Output>: AsyncConsumerProducerOperation<Input, Output> {
   |              `- warning: class 'AsyncBlockConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     public typealias CompletionHandler = (Input, @escaping (Output?) -> Void) -> Void
14 |
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/AsyncBlockOperation.swift:12:14: warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An operation for enqueuing inline work that can be completed with a callback
12 | public class AsyncBlockOperation: AsyncOperation {
   |              `- warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
13 |     public typealias CompletionHandler = (@escaping () -> Void) -> Void
14 |
[22/27] Compiling OperationPlus AsyncBlockOperation.swift
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/AsyncBlockConsumerOperation.swift:12:14: warning: class 'AsyncBlockConsumerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An asynchronous variant of BlockConsumerOperation
12 | public class AsyncBlockConsumerOperation<Input>: AsyncConsumerOperation<Input> {
   |              `- warning: class 'AsyncBlockConsumerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     public typealias CompletionHandler = (Input, @escaping () -> Void) -> Void
14 |
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/AsyncBlockConsumerProducerOperation.swift:12:14: warning: class 'AsyncBlockConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An asynchronous variant of BlockConsumerProducerOperation
12 | public class AsyncBlockConsumerProducerOperation<Input, Output>: AsyncConsumerProducerOperation<Input, Output> {
   |              `- warning: class 'AsyncBlockConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     public typealias CompletionHandler = (Input, @escaping (Output?) -> Void) -> Void
14 |
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/AsyncBlockOperation.swift:12:14: warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An operation for enqueuing inline work that can be completed with a callback
12 | public class AsyncBlockOperation: AsyncOperation {
   |              `- warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
13 |     public typealias CompletionHandler = (@escaping () -> Void) -> Void
14 |
[23/27] Compiling OperationPlus ConsumerOperation.swift
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/ConsumerProducerOperation.swift:13:12: warning: class 'ConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
11 | /// An operation that depends on and uses the value of a ProducerOperation, and also
12 | /// itself produces a value
13 | open class ConsumerProducerOperation<Input, Output>: ProducerOperation<Output> {
   |            `- warning: class 'ConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
14 |     private let producerOp: ProducerOperation<Input>
15 |
[24/27] Compiling OperationPlus ConsumerProducerOperation.swift
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/ConsumerProducerOperation.swift:13:12: warning: class 'ConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
11 | /// An operation that depends on and uses the value of a ProducerOperation, and also
12 | /// itself produces a value
13 | open class ConsumerProducerOperation<Input, Output>: ProducerOperation<Output> {
   |            `- warning: class 'ConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
14 |     private let producerOp: ProducerOperation<Input>
15 |
[25/27] Compiling OperationPlus AsyncBlockProducerOperation.swift
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/AsyncBlockProducerOperation.swift:12:14: warning: class 'AsyncBlockProducerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An asynchronous variant of BlockProducerOperation
12 | public class AsyncBlockProducerOperation<Output>: AsyncProducerOperation<Output> {
   |              `- warning: class 'AsyncBlockProducerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     public typealias CompletionHandler = (@escaping (Output?) -> Void) -> Void
14 |
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/AsyncConsumerOperation.swift:12:12: warning: class 'AsyncConsumerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An asynchronous variant of ConsumerOperation
12 | open class AsyncConsumerOperation<Input>: ConsumerOperation<Input> {
   |            `- warning: class 'AsyncConsumerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     override open var isAsynchronous: Bool {
14 |         return true
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/AsyncConsumerProducerOperation.swift:12:12: warning: class 'AsyncConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An asynchronous variant of ConsumerProducerOperation
12 | open class AsyncConsumerProducerOperation<Input, Output>: ConsumerProducerOperation<Input, Output> {
   |            `- warning: class 'AsyncConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     override open var isAsynchronous: Bool {
14 |         return true
[26/27] Compiling OperationPlus AsyncConsumerOperation.swift
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/AsyncBlockProducerOperation.swift:12:14: warning: class 'AsyncBlockProducerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An asynchronous variant of BlockProducerOperation
12 | public class AsyncBlockProducerOperation<Output>: AsyncProducerOperation<Output> {
   |              `- warning: class 'AsyncBlockProducerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     public typealias CompletionHandler = (@escaping (Output?) -> Void) -> Void
14 |
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/AsyncConsumerOperation.swift:12:12: warning: class 'AsyncConsumerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An asynchronous variant of ConsumerOperation
12 | open class AsyncConsumerOperation<Input>: ConsumerOperation<Input> {
   |            `- warning: class 'AsyncConsumerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     override open var isAsynchronous: Bool {
14 |         return true
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/AsyncConsumerProducerOperation.swift:12:12: warning: class 'AsyncConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An asynchronous variant of ConsumerProducerOperation
12 | open class AsyncConsumerProducerOperation<Input, Output>: ConsumerProducerOperation<Input, Output> {
   |            `- warning: class 'AsyncConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     override open var isAsynchronous: Bool {
14 |         return true
[27/27] Compiling OperationPlus AsyncConsumerProducerOperation.swift
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/AsyncBlockProducerOperation.swift:12:14: warning: class 'AsyncBlockProducerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An asynchronous variant of BlockProducerOperation
12 | public class AsyncBlockProducerOperation<Output>: AsyncProducerOperation<Output> {
   |              `- warning: class 'AsyncBlockProducerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     public typealias CompletionHandler = (@escaping (Output?) -> Void) -> Void
14 |
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/AsyncConsumerOperation.swift:12:12: warning: class 'AsyncConsumerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An asynchronous variant of ConsumerOperation
12 | open class AsyncConsumerOperation<Input>: ConsumerOperation<Input> {
   |            `- warning: class 'AsyncConsumerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     override open var isAsynchronous: Bool {
14 |         return true
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/AsyncConsumerProducerOperation.swift:12:12: warning: class 'AsyncConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An asynchronous variant of ConsumerProducerOperation
12 | open class AsyncConsumerProducerOperation<Input, Output>: ConsumerProducerOperation<Input, Output> {
   |            `- warning: class 'AsyncConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     override open var isAsynchronous: Bool {
14 |         return true
[28/32] Compiling OperationTestingPlus NeverFinishingProducerOperation.swift
/Users/admin/builder/spi-builder-workspace/Sources/OperationTestingPlus/NeverFinishingProducerOperation.swift:16:14: warning: class 'NeverFinishingProducerOperation' must restate inherited '@unchecked Sendable' conformance
14 | ///
15 | /// Warning: This operation will completely block a serial queue forever
16 | public class NeverFinishingProducerOperation<Output>: ProducerOperation<Output> {
   |              `- warning: class 'NeverFinishingProducerOperation' must restate inherited '@unchecked Sendable' conformance
17 |     public override func main() {
18 |     }
[29/32] Compiling OperationTestingPlus NeverFinishingOperation.swift
/Users/admin/builder/spi-builder-workspace/Sources/OperationTestingPlus/NeverFinishingOperation.swift:16:14: warning: class 'NeverFinishingOperation' must restate inherited '@unchecked Sendable' conformance
14 | ///
15 | /// Warning: This operation will completely block a serial queue forever
16 | public class NeverFinishingOperation: BaseOperation {
   |              `- warning: class 'NeverFinishingOperation' must restate inherited '@unchecked Sendable' conformance
17 |     public override func main() {
18 |     }
[30/32] Compiling OperationTestingPlus OperationExpectation.swift
/Users/admin/builder/spi-builder-workspace/Sources/OperationTestingPlus/OperationExpectation.swift:14:14: warning: class 'OperationExpectation' must restate inherited '@unchecked Sendable' conformance
12 | /// An expectation that is fulfilled when an operation
13 | /// has finished execution.
14 | public class OperationExpectation: XCTestExpectation {
   |              `- warning: class 'OperationExpectation' must restate inherited '@unchecked Sendable' conformance
15 |     public var queue: OperationQueue
16 |
[31/32] Emitting module OperationTestingPlus
/Users/admin/builder/spi-builder-workspace/Sources/OperationTestingPlus/FulfillExpectationOperation.swift:13:14: warning: class 'FulfillExpectationOperation' must restate inherited '@unchecked Sendable' conformance
11 | /// This Operation subclass will fulfill an `XCTestExpectation` when it
12 | /// completes.
13 | public class FulfillExpectationOperation: Operation {
   |              `- warning: class 'FulfillExpectationOperation' must restate inherited '@unchecked Sendable' conformance
14 |     private let expectation: XCTestExpectation
15 |
/Users/admin/builder/spi-builder-workspace/Sources/OperationTestingPlus/NeverFinishingOperation.swift:16:14: warning: class 'NeverFinishingOperation' must restate inherited '@unchecked Sendable' conformance
14 | ///
15 | /// Warning: This operation will completely block a serial queue forever
16 | public class NeverFinishingOperation: BaseOperation {
   |              `- warning: class 'NeverFinishingOperation' must restate inherited '@unchecked Sendable' conformance
17 |     public override func main() {
18 |     }
/Users/admin/builder/spi-builder-workspace/Sources/OperationTestingPlus/NeverFinishingProducerOperation.swift:16:14: warning: class 'NeverFinishingProducerOperation' must restate inherited '@unchecked Sendable' conformance
14 | ///
15 | /// Warning: This operation will completely block a serial queue forever
16 | public class NeverFinishingProducerOperation<Output>: ProducerOperation<Output> {
   |              `- warning: class 'NeverFinishingProducerOperation' must restate inherited '@unchecked Sendable' conformance
17 |     public override func main() {
18 |     }
/Users/admin/builder/spi-builder-workspace/Sources/OperationTestingPlus/OperationExpectation.swift:14:14: warning: class 'OperationExpectation' must restate inherited '@unchecked Sendable' conformance
12 | /// An expectation that is fulfilled when an operation
13 | /// has finished execution.
14 | public class OperationExpectation: XCTestExpectation {
   |              `- warning: class 'OperationExpectation' must restate inherited '@unchecked Sendable' conformance
15 |     public var queue: OperationQueue
16 |
[32/32] Compiling OperationTestingPlus FulfillExpectationOperation.swift
/Users/admin/builder/spi-builder-workspace/Sources/OperationTestingPlus/FulfillExpectationOperation.swift:13:14: warning: class 'FulfillExpectationOperation' must restate inherited '@unchecked Sendable' conformance
11 | /// This Operation subclass will fulfill an `XCTestExpectation` when it
12 | /// completes.
13 | public class FulfillExpectationOperation: Operation {
   |              `- warning: class 'FulfillExpectationOperation' must restate inherited '@unchecked Sendable' conformance
14 |     private let expectation: XCTestExpectation
15 |
Build complete! (26.08s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "OperationPlus",
  "name" : "OperationPlus",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.10"
    },
    {
      "name" : "ios",
      "version" : "9.0"
    },
    {
      "name" : "tvos",
      "version" : "10.0"
    },
    {
      "name" : "watchos",
      "version" : "3.0"
    }
  ],
  "products" : [
    {
      "name" : "OperationPlus",
      "targets" : [
        "OperationPlus"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "OperationTestingPlus",
      "targets" : [
        "OperationTestingPlus"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "swift_languages_versions" : [
    "5"
  ],
  "targets" : [
    {
      "c99name" : "OperationTestingPlus",
      "module_type" : "SwiftTarget",
      "name" : "OperationTestingPlus",
      "path" : "Sources/OperationTestingPlus",
      "product_memberships" : [
        "OperationTestingPlus"
      ],
      "sources" : [
        "FulfillExpectationOperation.swift",
        "NeverFinishingOperation.swift",
        "NeverFinishingProducerOperation.swift",
        "OperationExpectation.swift"
      ],
      "target_dependencies" : [
        "OperationPlus"
      ],
      "type" : "library"
    },
    {
      "c99name" : "OperationPlusTests",
      "module_type" : "SwiftTarget",
      "name" : "OperationPlusTests",
      "path" : "Tests/OperationPlusTests",
      "sources" : [
        "AsyncBlockOperationTests.swift",
        "BaseOperationTests.swift",
        "CombineTests.swift",
        "OperationQueueTests.swift",
        "ProducerConsumerTests.swift",
        "TestHelpers.swift"
      ],
      "target_dependencies" : [
        "OperationPlus",
        "OperationTestingPlus"
      ],
      "type" : "test"
    },
    {
      "c99name" : "OperationPlus",
      "module_type" : "SwiftTarget",
      "name" : "OperationPlus",
      "path" : "Sources/OperationPlus",
      "product_memberships" : [
        "OperationPlus",
        "OperationTestingPlus"
      ],
      "sources" : [
        "AsyncBlockConsumerOperation.swift",
        "AsyncBlockConsumerProducerOperation.swift",
        "AsyncBlockOperation.swift",
        "AsyncBlockProducerOperation.swift",
        "AsyncConsumerOperation.swift",
        "AsyncConsumerProducerOperation.swift",
        "AsyncOperation.swift",
        "AsyncProducerOperation.swift",
        "BaseOperation.swift",
        "BaseOperationError.swift",
        "BlockConsumerOperation.swift",
        "BlockConsumerProducerOperation.swift",
        "BlockProducerOperation.swift",
        "ConsumerOperation.swift",
        "ConsumerProducerOperation.swift",
        "Extensions/Operation+Dependencies.swift",
        "Extensions/OperationQueue+Creation.swift",
        "Extensions/OperationQueue+Dependencies.swift",
        "Extensions/OperationQueue+Emptied.swift",
        "Extensions/OperationQueue+Enqueuing.swift",
        "Extensions/OperationQueue+Preconditions.swift",
        "Extensions/Publishers.swift",
        "ProducerOperation.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.0"
}
✅  Doc result (pending) reported
========================================
GenerateDocs
========================================
Generating docs at path:  $PWD/.docs/chimehq/operationplus/main
Repository:               ChimeHQ/OperationPlus
Swift version used:       6.0
Target:                   OperationPlus
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/swift-docc-render-artifact/.git/
From https://github.com/swiftlang/swift-docc-render-artifact
 * branch            88815688627177b9716a01ca41da19397bd30e47 -> FETCH_HEAD
HEAD is now at 8881568 Update the artifact
Extracting symbol information for 'OperationPlus'...
Finished extracting symbol information for 'OperationPlus'. (3.97s)
Building documentation for 'OperationPlus'...
Finished building documentation for 'OperationPlus' (0.23s)
Generated documentation archive at:
  /Users/admin/builder/spi-builder-workspace/.docs/chimehq/operationplus/main
Fetching https://github.com/swiftlang/swift-docc-plugin
[1/2038] Fetching swift-docc-plugin
Fetched https://github.com/swiftlang/swift-docc-plugin from cache (1.33s)
Computing version for https://github.com/swiftlang/swift-docc-plugin
Computed https://github.com/swiftlang/swift-docc-plugin at 1.4.3 (0.63s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3168] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (1.27s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (0.66s)
Creating working copy for https://github.com/swiftlang/swift-docc-plugin
Working copy of https://github.com/swiftlang/swift-docc-plugin resolved at 1.4.3
Creating working copy for https://github.com/swiftlang/swift-docc-symbolkit
Working copy of https://github.com/swiftlang/swift-docc-symbolkit resolved at 1.0.0
Building for debugging...
[0/8] Write sources
[3/8] Write snippet-extract-tool-entitlement.plist
[4/8] Write swift-version--7754E27361AE5C74.txt
[6/53] Compiling SymbolKit SemanticVersion.swift
[7/53] Compiling SymbolKit AccessControl.swift
[8/53] Compiling SymbolKit Availability.swift
[9/53] Compiling SymbolKit AvailabilityItem.swift
[10/53] Compiling SymbolKit Domain.swift
[11/57] Emitting module SymbolKit
[12/57] Compiling SymbolKit Mixin+Equals.swift
[13/57] Compiling SymbolKit Mixin+Hash.swift
[14/57] Compiling SymbolKit Mixin.swift
[15/57] Compiling SymbolKit LineList.swift
[16/57] Compiling SymbolKit Position.swift
[17/57] Compiling SymbolKit DeclarationFragments.swift
[18/57] Compiling SymbolKit Fragment.swift
[19/57] Compiling SymbolKit FragmentKind.swift
[20/57] Compiling SymbolKit FunctionParameter.swift
[21/57] Compiling SymbolKit FunctionSignature.swift
[22/57] Compiling SymbolKit Identifier.swift
[23/57] Compiling SymbolKit KindIdentifier.swift
[24/57] Compiling SymbolKit Location.swift
[25/57] Compiling SymbolKit Mutability.swift
[26/57] Compiling SymbolKit Relationship.swift
[27/57] Compiling SymbolKit RelationshipKind.swift
[28/57] Compiling SymbolKit SourceOrigin.swift
[29/57] Compiling SymbolKit GenericConstraints.swift
[30/57] Compiling SymbolKit Swift.swift
[31/57] Compiling SymbolKit Names.swift
[32/57] Compiling SymbolKit SPI.swift
[33/57] Compiling SymbolKit Snippet.swift
[34/57] Compiling SymbolKit Extension.swift
[35/57] Compiling SymbolKit GenericConstraint.swift
[36/57] Compiling SymbolKit GenericParameter.swift
[37/57] Compiling SymbolKit Generics.swift
[38/57] Compiling SymbolKit Namespace.swift
[39/57] Compiling SymbolKit Symbol.swift
[40/57] Compiling SymbolKit SymbolKind.swift
[41/57] Compiling SymbolKit SymbolGraph.swift
[42/57] Compiling SymbolKit GraphCollector.swift
[43/57] Compiling SymbolKit SourceRange.swift
[44/57] Compiling SymbolKit Metadata.swift
[45/57] Compiling SymbolKit Module.swift
[46/57] Compiling SymbolKit OperatingSystem.swift
[47/57] Compiling SymbolKit Platform.swift
[48/57] Compiling SymbolKit UnifiedSymbol+Encodable.swift
[49/57] Compiling SymbolKit UnifiedSymbol.swift
[50/57] Compiling SymbolKit UnifiedSymbolGraph+Encodable.swift
[51/57] Compiling SymbolKit UnifiedSymbolGraph.swift
[52/57] Compiling Snippets SnippetParser.swift
[53/57] Compiling Snippets Snippet.swift
[54/57] Emitting module Snippets
[55/61] Compiling snippet_extract URL+Status.swift
[56/61] Compiling snippet_extract SymbolGraph+Snippet.swift
[57/61] Emitting module snippet_extract
[58/61] Compiling snippet_extract SnippetBuildCommand.swift
[58/61] Write Objects.LinkFileList
[59/61] Linking snippet-extract-tool
[60/61] Applying snippet-extract-tool
Build of product 'snippet-extract' complete! (4.09s)
Building for debugging...
[0/1] Write swift-version--7754E27361AE5C74.txt
[2/23] Emitting module OperationPlus
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/AsyncBlockConsumerOperation.swift:12:14: warning: class 'AsyncBlockConsumerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An asynchronous variant of BlockConsumerOperation
12 | public class AsyncBlockConsumerOperation<Input>: AsyncConsumerOperation<Input> {
   |              `- warning: class 'AsyncBlockConsumerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     public typealias CompletionHandler = (Input, @escaping () -> Void) -> Void
14 |
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/AsyncBlockConsumerProducerOperation.swift:12:14: warning: class 'AsyncBlockConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An asynchronous variant of BlockConsumerProducerOperation
12 | public class AsyncBlockConsumerProducerOperation<Input, Output>: AsyncConsumerProducerOperation<Input, Output> {
   |              `- warning: class 'AsyncBlockConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     public typealias CompletionHandler = (Input, @escaping (Output?) -> Void) -> Void
14 |
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/AsyncBlockOperation.swift:12:14: warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An operation for enqueuing inline work that can be completed with a callback
12 | public class AsyncBlockOperation: AsyncOperation {
   |              `- warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
13 |     public typealias CompletionHandler = (@escaping () -> Void) -> Void
14 |
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/AsyncBlockProducerOperation.swift:12:14: warning: class 'AsyncBlockProducerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An asynchronous variant of BlockProducerOperation
12 | public class AsyncBlockProducerOperation<Output>: AsyncProducerOperation<Output> {
   |              `- warning: class 'AsyncBlockProducerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     public typealias CompletionHandler = (@escaping (Output?) -> Void) -> Void
14 |
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/AsyncConsumerOperation.swift:12:12: warning: class 'AsyncConsumerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An asynchronous variant of ConsumerOperation
12 | open class AsyncConsumerOperation<Input>: ConsumerOperation<Input> {
   |            `- warning: class 'AsyncConsumerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     override open var isAsynchronous: Bool {
14 |         return true
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/AsyncConsumerProducerOperation.swift:12:12: warning: class 'AsyncConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An asynchronous variant of ConsumerProducerOperation
12 | open class AsyncConsumerProducerOperation<Input, Output>: ConsumerProducerOperation<Input, Output> {
   |            `- warning: class 'AsyncConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     override open var isAsynchronous: Bool {
14 |         return true
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/AsyncOperation.swift:11:12: warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
 9 | import Foundation
10 |
11 | open class AsyncOperation : BaseOperation {
   |            `- warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
12 |     override open var isAsynchronous: Bool {
13 |         return true
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/AsyncProducerOperation.swift:11:12: warning: class 'AsyncProducerOperation' must restate inherited '@unchecked Sendable' conformance
 9 | import Foundation
10 |
11 | open class AsyncProducerOperation<Output> : ProducerOperation<Output> {
   |            `- warning: class 'AsyncProducerOperation' must restate inherited '@unchecked Sendable' conformance
12 |     override open var isAsynchronous: Bool {
13 |         return true
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/BaseOperation.swift:11:12: warning: class 'BaseOperation' must restate inherited '@unchecked Sendable' conformance
  9 | import Foundation
 10 |
 11 | open class BaseOperation : Operation {
    |            `- warning: class 'BaseOperation' must restate inherited '@unchecked Sendable' conformance
 12 |     public enum State {
 13 |         case notStarted
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/BlockConsumerOperation.swift:12:14: warning: class 'BlockConsumerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// A block-based version of ConsumerOperation
12 | public class BlockConsumerOperation<Input>: ConsumerOperation<Input> {
   |              `- warning: class 'BlockConsumerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     private let block: (Input) -> Void
14 |
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/BlockConsumerProducerOperation.swift:12:14: warning: class 'BlockConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// A block-based version of ConsumerProducerOperation
12 | public class BlockConsumerProducerOperation<Input, Output>: ConsumerProducerOperation<Input, Output> {
   |              `- warning: class 'BlockConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     public typealias Block = (Input) -> Output?
14 |
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/BlockProducerOperation.swift:12:14: warning: class 'BlockProducerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// A block-based version of ProducerOperation
12 | public class BlockProducerOperation<Output>: ProducerOperation<Output> {
   |              `- warning: class 'BlockProducerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     private let block: () -> Output?
14 |
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/ConsumerProducerOperation.swift:13:12: warning: class 'ConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
11 | /// An operation that depends on and uses the value of a ProducerOperation, and also
12 | /// itself produces a value
13 | open class ConsumerProducerOperation<Input, Output>: ProducerOperation<Output> {
   |            `- warning: class 'ConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
14 |     private let producerOp: ProducerOperation<Input>
15 |
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/Extensions/Publishers.swift:32:14: warning: class 'PublisherOperation' must restate inherited '@unchecked Sendable' conformance
30 | /// A `ProducerOperation` subclass takes a publisher. When executed, it creates a subscription and outputs the results.
31 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 6.0, *)
32 | public class PublisherOperation<Output, Failure: Error>: AsyncProducerOperation<Result<Output, Failure>> {
   |              `- warning: class 'PublisherOperation' must restate inherited '@unchecked Sendable' conformance
33 |     public typealias Publisher = AnyPublisher<Output, Failure>
34 |
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/ProducerOperation.swift:11:12: warning: class 'ProducerOperation' must restate inherited '@unchecked Sendable' conformance
 9 | import Foundation
10 |
11 | open class ProducerOperation<Output> : BaseOperation {
   |            `- warning: class 'ProducerOperation' must restate inherited '@unchecked Sendable' conformance
12 |     public enum OutputCompletionBlockBehavior {
13 |         case onCompletionOnly
[3/25] Compiling OperationPlus OperationQueue+Dependencies.swift
[4/25] Compiling OperationPlus OperationQueue+Emptied.swift
[5/25] Compiling OperationPlus ConsumerOperation.swift
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/ConsumerProducerOperation.swift:13:12: warning: class 'ConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
11 | /// An operation that depends on and uses the value of a ProducerOperation, and also
12 | /// itself produces a value
13 | open class ConsumerProducerOperation<Input, Output>: ProducerOperation<Output> {
   |            `- warning: class 'ConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
14 |     private let producerOp: ProducerOperation<Input>
15 |
[6/25] Compiling OperationPlus ConsumerProducerOperation.swift
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/ConsumerProducerOperation.swift:13:12: warning: class 'ConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
11 | /// An operation that depends on and uses the value of a ProducerOperation, and also
12 | /// itself produces a value
13 | open class ConsumerProducerOperation<Input, Output>: ProducerOperation<Output> {
   |            `- warning: class 'ConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
14 |     private let producerOp: ProducerOperation<Input>
15 |
[7/25] Compiling OperationPlus Operation+Dependencies.swift
[8/25] Compiling OperationPlus OperationQueue+Creation.swift
[9/25] Compiling OperationPlus BaseOperationError.swift
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/BlockConsumerOperation.swift:12:14: warning: class 'BlockConsumerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// A block-based version of ConsumerOperation
12 | public class BlockConsumerOperation<Input>: ConsumerOperation<Input> {
   |              `- warning: class 'BlockConsumerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     private let block: (Input) -> Void
14 |
[10/25] Compiling OperationPlus BlockConsumerOperation.swift
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/BlockConsumerOperation.swift:12:14: warning: class 'BlockConsumerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// A block-based version of ConsumerOperation
12 | public class BlockConsumerOperation<Input>: ConsumerOperation<Input> {
   |              `- warning: class 'BlockConsumerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     private let block: (Input) -> Void
14 |
[11/25] Compiling OperationPlus OperationQueue+Enqueuing.swift
[12/25] Compiling OperationPlus OperationQueue+Preconditions.swift
[13/25] Compiling OperationPlus AsyncBlockConsumerOperation.swift
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/AsyncBlockConsumerOperation.swift:12:14: warning: class 'AsyncBlockConsumerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An asynchronous variant of BlockConsumerOperation
12 | public class AsyncBlockConsumerOperation<Input>: AsyncConsumerOperation<Input> {
   |              `- warning: class 'AsyncBlockConsumerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     public typealias CompletionHandler = (Input, @escaping () -> Void) -> Void
14 |
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/AsyncBlockConsumerProducerOperation.swift:12:14: warning: class 'AsyncBlockConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An asynchronous variant of BlockConsumerProducerOperation
12 | public class AsyncBlockConsumerProducerOperation<Input, Output>: AsyncConsumerProducerOperation<Input, Output> {
   |              `- warning: class 'AsyncBlockConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     public typealias CompletionHandler = (Input, @escaping (Output?) -> Void) -> Void
14 |
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/AsyncBlockOperation.swift:12:14: warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An operation for enqueuing inline work that can be completed with a callback
12 | public class AsyncBlockOperation: AsyncOperation {
   |              `- warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
13 |     public typealias CompletionHandler = (@escaping () -> Void) -> Void
14 |
[14/25] Compiling OperationPlus AsyncBlockConsumerProducerOperation.swift
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/AsyncBlockConsumerOperation.swift:12:14: warning: class 'AsyncBlockConsumerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An asynchronous variant of BlockConsumerOperation
12 | public class AsyncBlockConsumerOperation<Input>: AsyncConsumerOperation<Input> {
   |              `- warning: class 'AsyncBlockConsumerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     public typealias CompletionHandler = (Input, @escaping () -> Void) -> Void
14 |
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/AsyncBlockConsumerProducerOperation.swift:12:14: warning: class 'AsyncBlockConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An asynchronous variant of BlockConsumerProducerOperation
12 | public class AsyncBlockConsumerProducerOperation<Input, Output>: AsyncConsumerProducerOperation<Input, Output> {
   |              `- warning: class 'AsyncBlockConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     public typealias CompletionHandler = (Input, @escaping (Output?) -> Void) -> Void
14 |
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/AsyncBlockOperation.swift:12:14: warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An operation for enqueuing inline work that can be completed with a callback
12 | public class AsyncBlockOperation: AsyncOperation {
   |              `- warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
13 |     public typealias CompletionHandler = (@escaping () -> Void) -> Void
14 |
[15/25] Compiling OperationPlus AsyncBlockOperation.swift
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/AsyncBlockConsumerOperation.swift:12:14: warning: class 'AsyncBlockConsumerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An asynchronous variant of BlockConsumerOperation
12 | public class AsyncBlockConsumerOperation<Input>: AsyncConsumerOperation<Input> {
   |              `- warning: class 'AsyncBlockConsumerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     public typealias CompletionHandler = (Input, @escaping () -> Void) -> Void
14 |
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/AsyncBlockConsumerProducerOperation.swift:12:14: warning: class 'AsyncBlockConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An asynchronous variant of BlockConsumerProducerOperation
12 | public class AsyncBlockConsumerProducerOperation<Input, Output>: AsyncConsumerProducerOperation<Input, Output> {
   |              `- warning: class 'AsyncBlockConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     public typealias CompletionHandler = (Input, @escaping (Output?) -> Void) -> Void
14 |
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/AsyncBlockOperation.swift:12:14: warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An operation for enqueuing inline work that can be completed with a callback
12 | public class AsyncBlockOperation: AsyncOperation {
   |              `- warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
13 |     public typealias CompletionHandler = (@escaping () -> Void) -> Void
14 |
[16/25] Compiling OperationPlus AsyncBlockProducerOperation.swift
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/AsyncBlockProducerOperation.swift:12:14: warning: class 'AsyncBlockProducerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An asynchronous variant of BlockProducerOperation
12 | public class AsyncBlockProducerOperation<Output>: AsyncProducerOperation<Output> {
   |              `- warning: class 'AsyncBlockProducerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     public typealias CompletionHandler = (@escaping (Output?) -> Void) -> Void
14 |
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/AsyncConsumerOperation.swift:12:12: warning: class 'AsyncConsumerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An asynchronous variant of ConsumerOperation
12 | open class AsyncConsumerOperation<Input>: ConsumerOperation<Input> {
   |            `- warning: class 'AsyncConsumerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     override open var isAsynchronous: Bool {
14 |         return true
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/AsyncConsumerProducerOperation.swift:12:12: warning: class 'AsyncConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An asynchronous variant of ConsumerProducerOperation
12 | open class AsyncConsumerProducerOperation<Input, Output>: ConsumerProducerOperation<Input, Output> {
   |            `- warning: class 'AsyncConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     override open var isAsynchronous: Bool {
14 |         return true
[17/25] Compiling OperationPlus AsyncConsumerOperation.swift
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/AsyncBlockProducerOperation.swift:12:14: warning: class 'AsyncBlockProducerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An asynchronous variant of BlockProducerOperation
12 | public class AsyncBlockProducerOperation<Output>: AsyncProducerOperation<Output> {
   |              `- warning: class 'AsyncBlockProducerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     public typealias CompletionHandler = (@escaping (Output?) -> Void) -> Void
14 |
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/AsyncConsumerOperation.swift:12:12: warning: class 'AsyncConsumerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An asynchronous variant of ConsumerOperation
12 | open class AsyncConsumerOperation<Input>: ConsumerOperation<Input> {
   |            `- warning: class 'AsyncConsumerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     override open var isAsynchronous: Bool {
14 |         return true
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/AsyncConsumerProducerOperation.swift:12:12: warning: class 'AsyncConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An asynchronous variant of ConsumerProducerOperation
12 | open class AsyncConsumerProducerOperation<Input, Output>: ConsumerProducerOperation<Input, Output> {
   |            `- warning: class 'AsyncConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     override open var isAsynchronous: Bool {
14 |         return true
[18/25] Compiling OperationPlus AsyncConsumerProducerOperation.swift
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/AsyncBlockProducerOperation.swift:12:14: warning: class 'AsyncBlockProducerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An asynchronous variant of BlockProducerOperation
12 | public class AsyncBlockProducerOperation<Output>: AsyncProducerOperation<Output> {
   |              `- warning: class 'AsyncBlockProducerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     public typealias CompletionHandler = (@escaping (Output?) -> Void) -> Void
14 |
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/AsyncConsumerOperation.swift:12:12: warning: class 'AsyncConsumerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An asynchronous variant of ConsumerOperation
12 | open class AsyncConsumerOperation<Input>: ConsumerOperation<Input> {
   |            `- warning: class 'AsyncConsumerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     override open var isAsynchronous: Bool {
14 |         return true
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/AsyncConsumerProducerOperation.swift:12:12: warning: class 'AsyncConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An asynchronous variant of ConsumerProducerOperation
12 | open class AsyncConsumerProducerOperation<Input, Output>: ConsumerProducerOperation<Input, Output> {
   |            `- warning: class 'AsyncConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     override open var isAsynchronous: Bool {
14 |         return true
[19/25] Compiling OperationPlus AsyncOperation.swift
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/AsyncOperation.swift:11:12: warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
 9 | import Foundation
10 |
11 | open class AsyncOperation : BaseOperation {
   |            `- warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
12 |     override open var isAsynchronous: Bool {
13 |         return true
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/AsyncProducerOperation.swift:11:12: warning: class 'AsyncProducerOperation' must restate inherited '@unchecked Sendable' conformance
 9 | import Foundation
10 |
11 | open class AsyncProducerOperation<Output> : ProducerOperation<Output> {
   |            `- warning: class 'AsyncProducerOperation' must restate inherited '@unchecked Sendable' conformance
12 |     override open var isAsynchronous: Bool {
13 |         return true
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/BaseOperation.swift:11:12: warning: class 'BaseOperation' must restate inherited '@unchecked Sendable' conformance
  9 | import Foundation
 10 |
 11 | open class BaseOperation : Operation {
    |            `- warning: class 'BaseOperation' must restate inherited '@unchecked Sendable' conformance
 12 |     public enum State {
 13 |         case notStarted
[20/25] Compiling OperationPlus AsyncProducerOperation.swift
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/AsyncOperation.swift:11:12: warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
 9 | import Foundation
10 |
11 | open class AsyncOperation : BaseOperation {
   |            `- warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
12 |     override open var isAsynchronous: Bool {
13 |         return true
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/AsyncProducerOperation.swift:11:12: warning: class 'AsyncProducerOperation' must restate inherited '@unchecked Sendable' conformance
 9 | import Foundation
10 |
11 | open class AsyncProducerOperation<Output> : ProducerOperation<Output> {
   |            `- warning: class 'AsyncProducerOperation' must restate inherited '@unchecked Sendable' conformance
12 |     override open var isAsynchronous: Bool {
13 |         return true
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/BaseOperation.swift:11:12: warning: class 'BaseOperation' must restate inherited '@unchecked Sendable' conformance
  9 | import Foundation
 10 |
 11 | open class BaseOperation : Operation {
    |            `- warning: class 'BaseOperation' must restate inherited '@unchecked Sendable' conformance
 12 |     public enum State {
 13 |         case notStarted
[21/25] Compiling OperationPlus BaseOperation.swift
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/AsyncOperation.swift:11:12: warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
 9 | import Foundation
10 |
11 | open class AsyncOperation : BaseOperation {
   |            `- warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
12 |     override open var isAsynchronous: Bool {
13 |         return true
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/AsyncProducerOperation.swift:11:12: warning: class 'AsyncProducerOperation' must restate inherited '@unchecked Sendable' conformance
 9 | import Foundation
10 |
11 | open class AsyncProducerOperation<Output> : ProducerOperation<Output> {
   |            `- warning: class 'AsyncProducerOperation' must restate inherited '@unchecked Sendable' conformance
12 |     override open var isAsynchronous: Bool {
13 |         return true
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/BaseOperation.swift:11:12: warning: class 'BaseOperation' must restate inherited '@unchecked Sendable' conformance
  9 | import Foundation
 10 |
 11 | open class BaseOperation : Operation {
    |            `- warning: class 'BaseOperation' must restate inherited '@unchecked Sendable' conformance
 12 |     public enum State {
 13 |         case notStarted
[22/25] Compiling OperationPlus BlockConsumerProducerOperation.swift
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/BlockConsumerProducerOperation.swift:12:14: warning: class 'BlockConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// A block-based version of ConsumerProducerOperation
12 | public class BlockConsumerProducerOperation<Input, Output>: ConsumerProducerOperation<Input, Output> {
   |              `- warning: class 'BlockConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     public typealias Block = (Input) -> Output?
14 |
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/BlockProducerOperation.swift:12:14: warning: class 'BlockProducerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// A block-based version of ProducerOperation
12 | public class BlockProducerOperation<Output>: ProducerOperation<Output> {
   |              `- warning: class 'BlockProducerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     private let block: () -> Output?
14 |
[23/25] Compiling OperationPlus BlockProducerOperation.swift
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/BlockConsumerProducerOperation.swift:12:14: warning: class 'BlockConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// A block-based version of ConsumerProducerOperation
12 | public class BlockConsumerProducerOperation<Input, Output>: ConsumerProducerOperation<Input, Output> {
   |              `- warning: class 'BlockConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     public typealias Block = (Input) -> Output?
14 |
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/BlockProducerOperation.swift:12:14: warning: class 'BlockProducerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// A block-based version of ProducerOperation
12 | public class BlockProducerOperation<Output>: ProducerOperation<Output> {
   |              `- warning: class 'BlockProducerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     private let block: () -> Output?
14 |
[24/25] Compiling OperationPlus Publishers.swift
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/Extensions/Publishers.swift:32:14: warning: class 'PublisherOperation' must restate inherited '@unchecked Sendable' conformance
30 | /// A `ProducerOperation` subclass takes a publisher. When executed, it creates a subscription and outputs the results.
31 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 6.0, *)
32 | public class PublisherOperation<Output, Failure: Error>: AsyncProducerOperation<Result<Output, Failure>> {
   |              `- warning: class 'PublisherOperation' must restate inherited '@unchecked Sendable' conformance
33 |     public typealias Publisher = AnyPublisher<Output, Failure>
34 |
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/ProducerOperation.swift:11:12: warning: class 'ProducerOperation' must restate inherited '@unchecked Sendable' conformance
 9 | import Foundation
10 |
11 | open class ProducerOperation<Output> : BaseOperation {
   |            `- warning: class 'ProducerOperation' must restate inherited '@unchecked Sendable' conformance
12 |     public enum OutputCompletionBlockBehavior {
13 |         case onCompletionOnly
[25/25] Compiling OperationPlus ProducerOperation.swift
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/Extensions/Publishers.swift:32:14: warning: class 'PublisherOperation' must restate inherited '@unchecked Sendable' conformance
30 | /// A `ProducerOperation` subclass takes a publisher. When executed, it creates a subscription and outputs the results.
31 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 6.0, *)
32 | public class PublisherOperation<Output, Failure: Error>: AsyncProducerOperation<Result<Output, Failure>> {
   |              `- warning: class 'PublisherOperation' must restate inherited '@unchecked Sendable' conformance
33 |     public typealias Publisher = AnyPublisher<Output, Failure>
34 |
/Users/admin/builder/spi-builder-workspace/Sources/OperationPlus/ProducerOperation.swift:11:12: warning: class 'ProducerOperation' must restate inherited '@unchecked Sendable' conformance
 9 | import Foundation
10 |
11 | open class ProducerOperation<Output> : BaseOperation {
   |            `- warning: class 'ProducerOperation' must restate inherited '@unchecked Sendable' conformance
12 |     public enum OutputCompletionBlockBehavior {
13 |         case onCompletionOnly
Build of target: 'OperationPlus' complete! (1.25s)
     284
3	/Users/admin/builder/spi-builder-workspace/.docs/chimehq/operationplus/main
✅  Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/chimehq/operationplus/main
File count: 284
Doc size:   3.0MB
Preparing doc bundle ...
Uploading prod-chimehq-operationplus-main-36284059.zip to s3://spi-docs-inbox/prod-chimehq-operationplus-main-36284059.zip
Copying... [11%]
Copying... [22%]
Copying... [33%]
Copying... [45%]
Copying... [56%]
Copying... [67%]
Copying... [78%]
Copying... [89%]
Copying... [100%]
Done.