Build Information
Successful build of Stitch, reference master (260708), with Swift 6.3 for macOS (SPM) on 10 Apr 2026 17:38:47 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64Build Log
========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/jcfalkenberg/stitch.git
Reference: master
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/jcfalkenberg/stitch
* branch master -> FETCH_HEAD
* [new branch] master -> origin/master
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 master
========================================
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",
"traits": [
"default"
],
"dependencies": [
{
"identity": "stitch",
"name": "Stitch",
"url": "https://github.com/jcfalkenberg/stitch.git",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/stitch",
"traits": [
"default"
],
"dependencies": [
]
}
]
}
Fetching https://github.com/jcfalkenberg/stitch.git
[1/862] Fetching stitch
Fetched https://github.com/jcfalkenberg/stitch.git from cache (1.04s)
Creating working copy for https://github.com/jcfalkenberg/stitch.git
Working copy of https://github.com/jcfalkenberg/stitch.git resolved at master (260708b)
warning: '.resolve-product-dependencies': dependency 'stitch' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.3
Building package at path: $PWD
https://github.com/jcfalkenberg/stitch.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version--6988338F2F200930.txt
[3/23] 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]
[4/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]
[5/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]
[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 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
[12/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
[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 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]]()
[16/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]]()
[17/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
[18/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
[19/25] 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
[20/25] 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
[21/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
[22/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
[23/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>
[24/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>
[25/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>
Build complete! (5.33s)
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.