The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Successful build of OperationPlus, reference 1.6.0 (1340f9), with Swift 6.2 (beta) for macOS (SPM) on 20 Jun 2025 09:59:45 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64

Build Log

========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/ChimeHQ/OperationPlus.git
Reference: 1.6.0
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/ChimeHQ/OperationPlus
 * tag               1.6.0      -> FETCH_HEAD
HEAD is now at 1340f95 availability annotation for tests
Cloned https://github.com/ChimeHQ/OperationPlus.git
Revision (git rev-parse @):
1340f95dce3e93d742497d88db18f8676f4badf4
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/ChimeHQ/OperationPlus.git at 1.6.0
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/ChimeHQ/OperationPlus.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Building for debugging...
[0/3] Write sources
[2/3] Write swift-version-1EA4D86E10B52AF.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/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 Operation+Dependencies.swift
[6/27] Compiling OperationPlus OperationQueue+Creation.swift
[7/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/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
[8/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/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
[9/27] Compiling OperationPlus OperationQueue+Dependencies.swift
[10/27] Compiling OperationPlus OperationQueue+Emptied.swift
[11/27] Compiling OperationPlus OperationQueue+Enqueuing.swift
[12/27] Compiling OperationPlus OperationQueue+Preconditions.swift
[13/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 |
[14/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 |
[15/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 |
[16/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 |
[17/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 |
[18/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
[19/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
[20/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
[21/27] 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 |
[22/27] 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 |
[23/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 |
[24/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 |
[25/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
[26/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
[27/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
[28/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 |
[29/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 |     }
[30/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 |
[31/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 |     }
[32/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 |
Build complete! (12.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"
}
Done.