The Swift Package Index logo.Swift Package Index

Build Information

Successful build of Stitch, reference 1.0.0 (260708), with Swift 6.2 for macOS (SPM) on 17 Jun 2025 20:24:39 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/jcfalkenberg/stitch.git
Reference: 1.0.0
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/jcfalkenberg/stitch
 * tag               1.0.0      -> FETCH_HEAD
HEAD is now at 260708b Stitch: Documentation updates! Add some documentation about working with Objective-C and swift packages Add documentation to *most* StitchStore public methods. Some should *not* be called directly by the developer.
Cloned https://github.com/jcfalkenberg/stitch.git
Revision (git rev-parse @):
260708b47817a47f875806dddc7c956202af9d29
SUCCESS checkout https://github.com/jcfalkenberg/stitch.git at 1.0.0
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/jcfalkenberg/stitch.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-1EA4D86E10B52AF.txt
[3/23] Compiling Stitch Stitch+ChangeSets.swift
/Users/admin/builder/spi-builder-workspace/Sources/Stitch/Stitch+Batch.swift:23:14: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 21 |    }
 22 |
 23 |    @available (iOS 13.0, tvOS 13.0, macOS 14.0, watchOS 6.0, *)
    |              `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 24 |    func batchInsert(_ request: NSBatchInsertRequest,
 25 |                     context: NSManagedObjectContext) throws -> NSBatchInsertResult
[4/23] Compiling Stitch Stitch+Fetch.swift
/Users/admin/builder/spi-builder-workspace/Sources/Stitch/Stitch+Batch.swift:23:14: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 21 |    }
 22 |
 23 |    @available (iOS 13.0, tvOS 13.0, macOS 14.0, watchOS 6.0, *)
    |              `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 24 |    func batchInsert(_ request: NSBatchInsertRequest,
 25 |                     context: NSManagedObjectContext) throws -> NSBatchInsertResult
[5/25] Emitting module Stitch
/Users/admin/builder/spi-builder-workspace/Sources/Stitch/Stitch+Batch.swift:23:14: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 21 |    }
 22 |
 23 |    @available (iOS 13.0, tvOS 13.0, macOS 14.0, watchOS 6.0, *)
    |              `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 24 |    func batchInsert(_ request: NSBatchInsertRequest,
 25 |                     context: NSManagedObjectContext) throws -> NSBatchInsertResult
/Users/admin/builder/spi-builder-workspace/Sources/Stitch/SyncEntityDownloadOperations.swift:26:7: warning: class 'EntityDownloadOperation' must restate inherited '@unchecked Sendable' conformance
 24 | }
 25 |
 26 | class EntityDownloadOperation: CKQueryOperation {
    |       `- warning: class 'EntityDownloadOperation' must restate inherited '@unchecked Sendable' conformance
 27 |    var downloadedRecords = [CKRecord]()
 28 |
/Users/admin/builder/spi-builder-workspace/Sources/Stitch/SyncEntityDownloadOperations.swift:57:7: warning: class 'EntityDownloadOperationWrapper' must restate inherited '@unchecked Sendable' conformance
 55 | }
 56 |
 57 | class EntityDownloadOperationWrapper: AsyncOperation {
    |       `- warning: class 'EntityDownloadOperationWrapper' must restate inherited '@unchecked Sendable' conformance
 58 |
 59 |    var entityName: String
/Users/admin/builder/spi-builder-workspace/Sources/Stitch/SyncEntityDownloadOperations.swift:115:7: warning: class 'MigrationDownloadOperation' must restate inherited '@unchecked Sendable' conformance
113 | }
114 |
115 | class MigrationDownloadOperation: AsyncOperation {
    |       `- warning: class 'MigrationDownloadOperation' must restate inherited '@unchecked Sendable' conformance
116 |    var changedEntities: [String]
117 |
/Users/admin/builder/spi-builder-workspace/Sources/Stitch/SyncFetchOperation.swift:28:7: warning: class 'FetchChangesOperation' must restate inherited '@unchecked Sendable' conformance
26 | }
27 |
28 | class FetchChangesOperation: CKFetchRecordZoneChangesOperation {
   |       `- warning: class 'FetchChangesOperation' must restate inherited '@unchecked Sendable' conformance
29 |    fileprivate var modified = [CKRecord]()
30 |    fileprivate var removedByType = [String: [CKRecord.ID]]()
/Users/admin/builder/spi-builder-workspace/Sources/Stitch/SyncOperation.swift:11:7: warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
  9 | import CloudKit
 10 |
 11 | class AsyncOperation: Operation {
    |       `- warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
 12 |    override var isAsynchronous: Bool { return true }
 13 |
/Users/admin/builder/spi-builder-workspace/Sources/Stitch/SyncOperation.swift:48:7: warning: class 'SyncOperation' must restate inherited '@unchecked Sendable' conformance
 46 | typealias SyncResultHandler = (Result<SyncedObjects, Error>) -> Void
 47 |
 48 | class SyncOperation: AsyncOperation {
    |       `- warning: class 'SyncOperation' must restate inherited '@unchecked Sendable' conformance
 49 |    fileprivate var startDate = Date()
 50 |
/Users/admin/builder/spi-builder-workspace/Sources/Stitch/SyncPushOperation.swift:13:7: warning: class 'ModifyRecordsOperation' must restate inherited '@unchecked Sendable' conformance
 11 | typealias ModifyRecordsHandler = (Result<ModifyRecordsOperation, Error>) -> Void
 12 |
 13 | class ModifyRecordsOperation: CKModifyRecordsOperation
    |       `- warning: class 'ModifyRecordsOperation' must restate inherited '@unchecked Sendable' conformance
 14 | {
 15 |    var handler: ModifyRecordsHandler
/Users/admin/builder/spi-builder-workspace/Sources/Stitch/SyncPushOperation.swift:46:7: warning: class 'SyncPushOperation' must restate inherited '@unchecked Sendable' conformance
 44 | }
 45 |
 46 | class SyncPushOperation: AsyncOperation {
    |       `- warning: class 'SyncPushOperation' must restate inherited '@unchecked Sendable' conformance
 47 |
 48 |    var updates: [CKRecord]
[6/25] Compiling Stitch CKRecord+NSManagedObject.swift
/Users/admin/builder/spi-builder-workspace/Sources/Stitch/Stitch+Batch.swift:23:14: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 21 |    }
 22 |
 23 |    @available (iOS 13.0, tvOS 13.0, macOS 14.0, watchOS 6.0, *)
    |              `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 24 |    func batchInsert(_ request: NSBatchInsertRequest,
 25 |                     context: NSManagedObjectContext) throws -> NSBatchInsertResult
[7/25] Compiling Stitch ChangeSet.swift
/Users/admin/builder/spi-builder-workspace/Sources/Stitch/Stitch+Batch.swift:23:14: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 21 |    }
 22 |
 23 |    @available (iOS 13.0, tvOS 13.0, macOS 14.0, watchOS 6.0, *)
    |              `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 24 |    func batchInsert(_ request: NSBatchInsertRequest,
 25 |                     context: NSManagedObjectContext) throws -> NSBatchInsertResult
[8/25] Compiling Stitch CloudKitSetupOperations.swift
/Users/admin/builder/spi-builder-workspace/Sources/Stitch/Stitch+Batch.swift:23:14: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 21 |    }
 22 |
 23 |    @available (iOS 13.0, tvOS 13.0, macOS 14.0, watchOS 6.0, *)
    |              `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 24 |    func batchInsert(_ request: NSBatchInsertRequest,
 25 |                     context: NSManagedObjectContext) throws -> NSBatchInsertResult
[9/25] Compiling Stitch NSManagedObjectContext+Stitch.swift
/Users/admin/builder/spi-builder-workspace/Sources/Stitch/Stitch+Batch.swift:23:14: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 21 |    }
 22 |
 23 |    @available (iOS 13.0, tvOS 13.0, macOS 14.0, watchOS 6.0, *)
    |              `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 24 |    func batchInsert(_ request: NSBatchInsertRequest,
 25 |                     context: NSManagedObjectContext) throws -> NSBatchInsertResult
[10/25] Compiling Stitch NSManagedObjectModel+Stitch.swift
/Users/admin/builder/spi-builder-workspace/Sources/Stitch/Stitch+Batch.swift:23:14: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 21 |    }
 22 |
 23 |    @available (iOS 13.0, tvOS 13.0, macOS 14.0, watchOS 6.0, *)
    |              `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 24 |    func batchInsert(_ request: NSBatchInsertRequest,
 25 |                     context: NSManagedObjectContext) throws -> NSBatchInsertResult
[11/25] Compiling Stitch SyncEntityDownloadOperations.swift
/Users/admin/builder/spi-builder-workspace/Sources/Stitch/SyncEntityDownloadOperations.swift:26:7: warning: class 'EntityDownloadOperation' must restate inherited '@unchecked Sendable' conformance
 24 | }
 25 |
 26 | class EntityDownloadOperation: CKQueryOperation {
    |       `- warning: class 'EntityDownloadOperation' must restate inherited '@unchecked Sendable' conformance
 27 |    var downloadedRecords = [CKRecord]()
 28 |
/Users/admin/builder/spi-builder-workspace/Sources/Stitch/SyncEntityDownloadOperations.swift:57:7: warning: class 'EntityDownloadOperationWrapper' must restate inherited '@unchecked Sendable' conformance
 55 | }
 56 |
 57 | class EntityDownloadOperationWrapper: AsyncOperation {
    |       `- warning: class 'EntityDownloadOperationWrapper' must restate inherited '@unchecked Sendable' conformance
 58 |
 59 |    var entityName: String
/Users/admin/builder/spi-builder-workspace/Sources/Stitch/SyncEntityDownloadOperations.swift:115:7: warning: class 'MigrationDownloadOperation' must restate inherited '@unchecked Sendable' conformance
113 | }
114 |
115 | class MigrationDownloadOperation: AsyncOperation {
    |       `- warning: class 'MigrationDownloadOperation' must restate inherited '@unchecked Sendable' conformance
116 |    var changedEntities: [String]
117 |
/Users/admin/builder/spi-builder-workspace/Sources/Stitch/SyncFetchOperation.swift:28:7: warning: class 'FetchChangesOperation' must restate inherited '@unchecked Sendable' conformance
26 | }
27 |
28 | class FetchChangesOperation: CKFetchRecordZoneChangesOperation {
   |       `- warning: class 'FetchChangesOperation' must restate inherited '@unchecked Sendable' conformance
29 |    fileprivate var modified = [CKRecord]()
30 |    fileprivate var removedByType = [String: [CKRecord.ID]]()
[12/25] Compiling Stitch SyncFetchOperation.swift
/Users/admin/builder/spi-builder-workspace/Sources/Stitch/SyncEntityDownloadOperations.swift:26:7: warning: class 'EntityDownloadOperation' must restate inherited '@unchecked Sendable' conformance
 24 | }
 25 |
 26 | class EntityDownloadOperation: CKQueryOperation {
    |       `- warning: class 'EntityDownloadOperation' must restate inherited '@unchecked Sendable' conformance
 27 |    var downloadedRecords = [CKRecord]()
 28 |
/Users/admin/builder/spi-builder-workspace/Sources/Stitch/SyncEntityDownloadOperations.swift:57:7: warning: class 'EntityDownloadOperationWrapper' must restate inherited '@unchecked Sendable' conformance
 55 | }
 56 |
 57 | class EntityDownloadOperationWrapper: AsyncOperation {
    |       `- warning: class 'EntityDownloadOperationWrapper' must restate inherited '@unchecked Sendable' conformance
 58 |
 59 |    var entityName: String
/Users/admin/builder/spi-builder-workspace/Sources/Stitch/SyncEntityDownloadOperations.swift:115:7: warning: class 'MigrationDownloadOperation' must restate inherited '@unchecked Sendable' conformance
113 | }
114 |
115 | class MigrationDownloadOperation: AsyncOperation {
    |       `- warning: class 'MigrationDownloadOperation' must restate inherited '@unchecked Sendable' conformance
116 |    var changedEntities: [String]
117 |
/Users/admin/builder/spi-builder-workspace/Sources/Stitch/SyncFetchOperation.swift:28:7: warning: class 'FetchChangesOperation' must restate inherited '@unchecked Sendable' conformance
26 | }
27 |
28 | class FetchChangesOperation: CKFetchRecordZoneChangesOperation {
   |       `- warning: class 'FetchChangesOperation' must restate inherited '@unchecked Sendable' conformance
29 |    fileprivate var modified = [CKRecord]()
30 |    fileprivate var removedByType = [String: [CKRecord.ID]]()
[13/25] Compiling Stitch SyncAssetDownloadOperation.swift
/Users/admin/builder/spi-builder-workspace/Sources/Stitch/Stitch+Batch.swift:23:14: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 21 |    }
 22 |
 23 |    @available (iOS 13.0, tvOS 13.0, macOS 14.0, watchOS 6.0, *)
    |              `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 24 |    func batchInsert(_ request: NSBatchInsertRequest,
 25 |                     context: NSManagedObjectContext) throws -> NSBatchInsertResult
[14/25] Compiling Stitch SyncCollectionExtensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Stitch/Stitch+Batch.swift:23:14: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 21 |    }
 22 |
 23 |    @available (iOS 13.0, tvOS 13.0, macOS 14.0, watchOS 6.0, *)
    |              `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 24 |    func batchInsert(_ request: NSBatchInsertRequest,
 25 |                     context: NSManagedObjectContext) throws -> NSBatchInsertResult
[15/25] Compiling Stitch Stitch+Save.swift
/Users/admin/builder/spi-builder-workspace/Sources/Stitch/Stitch+Batch.swift:23:14: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 21 |    }
 22 |
 23 |    @available (iOS 13.0, tvOS 13.0, macOS 14.0, watchOS 6.0, *)
    |              `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 24 |    func batchInsert(_ request: NSBatchInsertRequest,
 25 |                     context: NSManagedObjectContext) throws -> NSBatchInsertResult
[16/25] Compiling Stitch Stitch+Sync.swift
/Users/admin/builder/spi-builder-workspace/Sources/Stitch/Stitch+Batch.swift:23:14: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 21 |    }
 22 |
 23 |    @available (iOS 13.0, tvOS 13.0, macOS 14.0, watchOS 6.0, *)
    |              `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 24 |    func batchInsert(_ request: NSBatchInsertRequest,
 25 |                     context: NSManagedObjectContext) throws -> NSBatchInsertResult
[17/25] Compiling Stitch NSPredicate+Stitch.swift
/Users/admin/builder/spi-builder-workspace/Sources/Stitch/Stitch+Batch.swift:23:14: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 21 |    }
 22 |
 23 |    @available (iOS 13.0, tvOS 13.0, macOS 14.0, watchOS 6.0, *)
    |              `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 24 |    func batchInsert(_ request: NSBatchInsertRequest,
 25 |                     context: NSManagedObjectContext) throws -> NSBatchInsertResult
[18/25] Compiling Stitch Stitch+Batch.swift
/Users/admin/builder/spi-builder-workspace/Sources/Stitch/Stitch+Batch.swift:23:14: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 21 |    }
 22 |
 23 |    @available (iOS 13.0, tvOS 13.0, macOS 14.0, watchOS 6.0, *)
    |              `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 24 |    func batchInsert(_ request: NSBatchInsertRequest,
 25 |                     context: NSManagedObjectContext) throws -> NSBatchInsertResult
[19/25] Compiling Stitch NSEntityDescription+Stitch.swift
/Users/admin/builder/spi-builder-workspace/Sources/Stitch/NSEntityDescription+Stitch.swift:20:7: warning: 'isIndexed' was deprecated in macOS 10.13: Use NSEntityDescription.indexes instead [#DeprecatedDeclaration]
18 |       self.name = name
19 |       isOptional = optional
20 |       isIndexed = indexed
   |       `- warning: 'isIndexed' was deprecated in macOS 10.13: Use NSEntityDescription.indexes instead [#DeprecatedDeclaration]
21 |       attributeType = type
22 |       self.defaultValue = defaultValue
/Users/admin/builder/spi-builder-workspace/Sources/Stitch/Stitch+Batch.swift:23:14: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 21 |    }
 22 |
 23 |    @available (iOS 13.0, tvOS 13.0, macOS 14.0, watchOS 6.0, *)
    |              `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 24 |    func batchInsert(_ request: NSBatchInsertRequest,
 25 |                     context: NSManagedObjectContext) throws -> NSBatchInsertResult
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[20/25] Compiling Stitch NSFetchRequest+Stitch.swift
/Users/admin/builder/spi-builder-workspace/Sources/Stitch/NSEntityDescription+Stitch.swift:20:7: warning: 'isIndexed' was deprecated in macOS 10.13: Use NSEntityDescription.indexes instead [#DeprecatedDeclaration]
18 |       self.name = name
19 |       isOptional = optional
20 |       isIndexed = indexed
   |       `- warning: 'isIndexed' was deprecated in macOS 10.13: Use NSEntityDescription.indexes instead [#DeprecatedDeclaration]
21 |       attributeType = type
22 |       self.defaultValue = defaultValue
/Users/admin/builder/spi-builder-workspace/Sources/Stitch/Stitch+Batch.swift:23:14: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 21 |    }
 22 |
 23 |    @available (iOS 13.0, tvOS 13.0, macOS 14.0, watchOS 6.0, *)
    |              `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 24 |    func batchInsert(_ request: NSBatchInsertRequest,
 25 |                     context: NSManagedObjectContext) throws -> NSBatchInsertResult
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[21/25] Compiling Stitch NSManagedObject+CKRecord.swift
/Users/admin/builder/spi-builder-workspace/Sources/Stitch/NSEntityDescription+Stitch.swift:20:7: warning: 'isIndexed' was deprecated in macOS 10.13: Use NSEntityDescription.indexes instead [#DeprecatedDeclaration]
18 |       self.name = name
19 |       isOptional = optional
20 |       isIndexed = indexed
   |       `- warning: 'isIndexed' was deprecated in macOS 10.13: Use NSEntityDescription.indexes instead [#DeprecatedDeclaration]
21 |       attributeType = type
22 |       self.defaultValue = defaultValue
/Users/admin/builder/spi-builder-workspace/Sources/Stitch/Stitch+Batch.swift:23:14: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 21 |    }
 22 |
 23 |    @available (iOS 13.0, tvOS 13.0, macOS 14.0, watchOS 6.0, *)
    |              `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 24 |    func batchInsert(_ request: NSBatchInsertRequest,
 25 |                     context: NSManagedObjectContext) throws -> NSBatchInsertResult
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[22/25] Compiling Stitch Stitch+Token.swift
/Users/admin/builder/spi-builder-workspace/Sources/Stitch/Stitch+Batch.swift:23:14: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 21 |    }
 22 |
 23 |    @available (iOS 13.0, tvOS 13.0, macOS 14.0, watchOS 6.0, *)
    |              `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 24 |    func batchInsert(_ request: NSBatchInsertRequest,
 25 |                     context: NSManagedObjectContext) throws -> NSBatchInsertResult
[23/25] Compiling Stitch Stitch.swift
/Users/admin/builder/spi-builder-workspace/Sources/Stitch/Stitch+Batch.swift:23:14: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 21 |    }
 22 |
 23 |    @available (iOS 13.0, tvOS 13.0, macOS 14.0, watchOS 6.0, *)
    |              `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 24 |    func batchInsert(_ request: NSBatchInsertRequest,
 25 |                     context: NSManagedObjectContext) throws -> NSBatchInsertResult
[24/25] Compiling Stitch SyncOperation.swift
/Users/admin/builder/spi-builder-workspace/Sources/Stitch/SyncOperation.swift:11:7: warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
  9 | import CloudKit
 10 |
 11 | class AsyncOperation: Operation {
    |       `- warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
 12 |    override var isAsynchronous: Bool { return true }
 13 |
/Users/admin/builder/spi-builder-workspace/Sources/Stitch/Stitch+Batch.swift:23:14: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 21 |    }
 22 |
 23 |    @available (iOS 13.0, tvOS 13.0, macOS 14.0, watchOS 6.0, *)
    |              `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 24 |    func batchInsert(_ request: NSBatchInsertRequest,
 25 |                     context: NSManagedObjectContext) throws -> NSBatchInsertResult
/Users/admin/builder/spi-builder-workspace/Sources/Stitch/SyncOperation.swift:48:7: warning: class 'SyncOperation' must restate inherited '@unchecked Sendable' conformance
 46 | typealias SyncResultHandler = (Result<SyncedObjects, Error>) -> Void
 47 |
 48 | class SyncOperation: AsyncOperation {
    |       `- warning: class 'SyncOperation' must restate inherited '@unchecked Sendable' conformance
 49 |    fileprivate var startDate = Date()
 50 |
/Users/admin/builder/spi-builder-workspace/Sources/Stitch/SyncPushOperation.swift:13:7: warning: class 'ModifyRecordsOperation' must restate inherited '@unchecked Sendable' conformance
 11 | typealias ModifyRecordsHandler = (Result<ModifyRecordsOperation, Error>) -> Void
 12 |
 13 | class ModifyRecordsOperation: CKModifyRecordsOperation
    |       `- warning: class 'ModifyRecordsOperation' must restate inherited '@unchecked Sendable' conformance
 14 | {
 15 |    var handler: ModifyRecordsHandler
/Users/admin/builder/spi-builder-workspace/Sources/Stitch/SyncPushOperation.swift:46:7: warning: class 'SyncPushOperation' must restate inherited '@unchecked Sendable' conformance
 44 | }
 45 |
 46 | class SyncPushOperation: AsyncOperation {
    |       `- warning: class 'SyncPushOperation' must restate inherited '@unchecked Sendable' conformance
 47 |
 48 |    var updates: [CKRecord]
[25/25] Compiling Stitch SyncPushOperation.swift
/Users/admin/builder/spi-builder-workspace/Sources/Stitch/SyncOperation.swift:11:7: warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
  9 | import CloudKit
 10 |
 11 | class AsyncOperation: Operation {
    |       `- warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
 12 |    override var isAsynchronous: Bool { return true }
 13 |
/Users/admin/builder/spi-builder-workspace/Sources/Stitch/Stitch+Batch.swift:23:14: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 21 |    }
 22 |
 23 |    @available (iOS 13.0, tvOS 13.0, macOS 14.0, watchOS 6.0, *)
    |              `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 24 |    func batchInsert(_ request: NSBatchInsertRequest,
 25 |                     context: NSManagedObjectContext) throws -> NSBatchInsertResult
/Users/admin/builder/spi-builder-workspace/Sources/Stitch/SyncOperation.swift:48:7: warning: class 'SyncOperation' must restate inherited '@unchecked Sendable' conformance
 46 | typealias SyncResultHandler = (Result<SyncedObjects, Error>) -> Void
 47 |
 48 | class SyncOperation: AsyncOperation {
    |       `- warning: class 'SyncOperation' must restate inherited '@unchecked Sendable' conformance
 49 |    fileprivate var startDate = Date()
 50 |
/Users/admin/builder/spi-builder-workspace/Sources/Stitch/SyncPushOperation.swift:13:7: warning: class 'ModifyRecordsOperation' must restate inherited '@unchecked Sendable' conformance
 11 | typealias ModifyRecordsHandler = (Result<ModifyRecordsOperation, Error>) -> Void
 12 |
 13 | class ModifyRecordsOperation: CKModifyRecordsOperation
    |       `- warning: class 'ModifyRecordsOperation' must restate inherited '@unchecked Sendable' conformance
 14 | {
 15 |    var handler: ModifyRecordsHandler
/Users/admin/builder/spi-builder-workspace/Sources/Stitch/SyncPushOperation.swift:46:7: warning: class 'SyncPushOperation' must restate inherited '@unchecked Sendable' conformance
 44 | }
 45 |
 46 | class SyncPushOperation: AsyncOperation {
    |       `- warning: class 'SyncPushOperation' must restate inherited '@unchecked Sendable' conformance
 47 |
 48 |    var updates: [CKRecord]
Build complete! (4.90s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Stitch",
  "name" : "Stitch",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.12"
    },
    {
      "name" : "ios",
      "version" : "10.0"
    },
    {
      "name" : "tvos",
      "version" : "10.0"
    },
    {
      "name" : "watchos",
      "version" : "4.0"
    }
  ],
  "products" : [
    {
      "name" : "Stitch",
      "targets" : [
        "Stitch"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "StitchTests",
      "module_type" : "SwiftTarget",
      "name" : "StitchTests",
      "path" : "Tests/StitchTests",
      "sources" : [
        "StitchStoreAddedTests.swift",
        "StitchTests.swift",
        "XCTestManifests.swift"
      ],
      "target_dependencies" : [
        "Stitch"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Stitch",
      "module_type" : "SwiftTarget",
      "name" : "Stitch",
      "path" : "Sources/Stitch",
      "product_memberships" : [
        "Stitch"
      ],
      "sources" : [
        "CKRecord+NSManagedObject.swift",
        "ChangeSet.swift",
        "CloudKitSetupOperations.swift",
        "NSEntityDescription+Stitch.swift",
        "NSFetchRequest+Stitch.swift",
        "NSManagedObject+CKRecord.swift",
        "NSManagedObjectContext+Stitch.swift",
        "NSManagedObjectModel+Stitch.swift",
        "NSPredicate+Stitch.swift",
        "Stitch+Batch.swift",
        "Stitch+ChangeSets.swift",
        "Stitch+Fetch.swift",
        "Stitch+Save.swift",
        "Stitch+Sync.swift",
        "Stitch+Token.swift",
        "Stitch.swift",
        "SyncAssetDownloadOperation.swift",
        "SyncCollectionExtensions.swift",
        "SyncEntityDownloadOperations.swift",
        "SyncFetchOperation.swift",
        "SyncOperation.swift",
        "SyncPushOperation.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.1"
}
Done.