The Swift Package Index logo.Swift Package Index

Build Information

Failed to build CareKit, reference main (348a5e), with Swift 6.3 for macOS (SPM) on 19 Apr 2026 20:05:20 UTC.

Build Command

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

Build Log

/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:94:21: warning: capture of 'preUpdateValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
 92 |
 93 |                 // Perform updates
 94 |                 try preUpdateValidate()
    |                     |- warning: capture of 'preUpdateValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 95 |
 96 |                 if !updates.isEmpty {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:113:21: warning: capture of 'preSaveValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
111 |                 }
112 |
113 |                 try preSaveValidate()
    |                     |- warning: capture of 'preSaveValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
114 |                 try self.context.save()
115 |                 completion(.success(result))
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:180:36: warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
178 |
179 |         let existing = try context.performAndWait {
180 |             try context.count(for: request)
    |                                    `- warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
181 |         }
182 |
/Applications/Xcode-26.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchRequest.h:47:12: note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 45 |
 46 | API_AVAILABLE(macosx(10.4),ios(3.0))
 47 | @interface NSFetchRequest<__covariant ResultType:id<NSFetchRequestResult>> : NSPersistentStoreRequest <NSCoding, NSCopying> {
    |            `- note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 48 | }
 49 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:31:1: warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'CoreData' as warnings
 29 |  */
 30 |
 31 | import CoreData
    | `- warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'CoreData' as warnings
 32 | import Foundation
 33 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:206:36: warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
204 |
205 |         let deletes = try context.performAndWait {
206 |             try context.count(for: request)
    |                                    `- warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
207 |         }
208 |
/Applications/Xcode-26.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchRequest.h:47:12: note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 45 |
 46 | API_AVAILABLE(macosx(10.4),ios(3.0))
 47 | @interface NSFetchRequest<__covariant ResultType:id<NSFetchRequestResult>> : NSPersistentStoreRequest <NSCoding, NSCopying> {
    |            `- note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 48 | }
 49 |
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDScheduleElement.swift:74:24: warning: capture of 'self' with non-Sendable type 'OCKCDScheduleElement' in a '@Sendable' closure [#SendableClosureCaptures]
 33 |
 34 | @objc(OCKCDScheduleElement)
 35 | class OCKCDScheduleElement: NSManagedObject {
    |       `- note: class 'OCKCDScheduleElement' does not conform to the 'Sendable' protocol
 36 |     @NSManaged var text: String?
 37 |     @NSManaged var task: OCKCDTask?
    :
 72 |         self.managedObjectContext!.performAndWait {
 73 |             scheduleElement = OCKScheduleElement(
 74 |                 start: startDate,
    |                        `- warning: capture of 'self' with non-Sendable type 'OCKCDScheduleElement' in a '@Sendable' closure [#SendableClosureCaptures]
 75 |                 end: endDate,
 76 |                 interval: interval,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDScheduleElement.swift:73:13: warning: mutation of captured var 'scheduleElement' in concurrently-executing code [#SendableClosureCaptures]
 71 |
 72 |         self.managedObjectContext!.performAndWait {
 73 |             scheduleElement = OCKScheduleElement(
    |             `- warning: mutation of captured var 'scheduleElement' in concurrently-executing code [#SendableClosureCaptures]
 74 |                 start: startDate,
 75 |                 end: endDate,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:73:21: warning: capture of 'self' with non-Sendable type 'OCKCDTask' in a '@Sendable' closure [#SendableClosureCaptures]
43 |
44 | @objc(OCKCDTask)
45 | class OCKCDTask: OCKCDTaskBase {
   |       `- note: class 'OCKCDTask' does not conform to the 'Sendable' protocol
46 |
47 |     convenience init(task: OCKTask, context: NSManagedObjectContext) {
   :
71 |         self.managedObjectContext!.performAndWait {
72 |             task = OCKTask(
73 |                 id: id,
   |                     `- warning: capture of 'self' with non-Sendable type 'OCKCDTask' in a '@Sendable' closure [#SendableClosureCaptures]
74 |                 title: title,
75 |                 carePlanUUID: carePlan?.uuid,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:72:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
70 |
71 |         self.managedObjectContext!.performAndWait {
72 |             task = OCKTask(
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
73 |                 id: id,
74 |                 title: title,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:79:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
77 |             )
78 |
79 |             task.copyVersionedValues(from: self)
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
80 |             task.instructions = instructions
81 |             task.impactsAdherence = impactsAdherence
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:80:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
78 |
79 |             task.copyVersionedValues(from: self)
80 |             task.instructions = instructions
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
81 |             task.impactsAdherence = impactsAdherence
82 |         }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:81:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
79 |             task.copyVersionedValues(from: self)
80 |             task.instructions = instructions
81 |             task.impactsAdherence = impactsAdherence
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
82 |         }
83 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+HealthKit.swift:71:17: warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 69 |                     .filtered(dateInterval: query.dateInterval, excludeTasksWithNoEvents: query.excludesTasksWithNoEvents)
 70 |
 71 |                 result = .success(tasks)
    |                 `- warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 72 |             } catch {
 73 |                 result = .failure(error)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+HealthKit.swift:73:17: warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 71 |                 result = .success(tasks)
 72 |             } catch {
 73 |                 result = .failure(error)
    |                 `- warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 74 |             }
 75 |         }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:54:37: warning: capture of 'predicate' with non-Sendable type 'NSPredicate' in a '@Sendable' closure [#SendableClosureCaptures]
 52 |                 let request = NSFetchRequest<OCKCDVersionedObject>(
 53 |                     entityName: T.entity().name!)
 54 |                 request.predicate = predicate
    |                                     `- warning: capture of 'predicate' with non-Sendable type 'NSPredicate' in a '@Sendable' closure [#SendableClosureCaptures]
 55 |                 request.sortDescriptors = sortDescriptors
 56 |                 request.fetchLimit = limit ?? 0
/Applications/Xcode-26.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPredicate.h:18:12: note: class 'NSPredicate' does not conform to the 'Sendable' protocol
16 |
17 | API_AVAILABLE(macos(10.4), ios(3.0), watchos(2.0), tvos(9.0))
18 | @interface NSPredicate : NSObject <NSSecureCoding, NSCopying> {
   |            `- note: class 'NSPredicate' does not conform to the 'Sendable' protocol
19 |     struct _predicateFlags {
20 |         unsigned int _evaluationBlocked:1;
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:55:43: warning: capture of 'sortDescriptors' with non-Sendable type '[NSSortDescriptor]' in a '@Sendable' closure [#SendableClosureCaptures]
 53 |                     entityName: T.entity().name!)
 54 |                 request.predicate = predicate
 55 |                 request.sortDescriptors = sortDescriptors
    |                                           `- warning: capture of 'sortDescriptors' with non-Sendable type '[NSSortDescriptor]' in a '@Sendable' closure [#SendableClosureCaptures]
 56 |                 request.fetchLimit = limit ?? 0
 57 |                 request.fetchOffset = offset
Swift.Array:1:23: note: generic struct 'Array' does not conform to the 'Sendable' protocol
1 | @frozen public struct Array<Element> : _DestructorSafeContainer {
  |                       `- note: generic struct 'Array' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:82:21: warning: capture of 'preInsertValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
 80 |         context.perform {
 81 |             do {
 82 |                 try preInsertValidate()
    |                     |- warning: capture of 'preInsertValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 83 |                 var result = TransactionResult<T>()
 84 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:94:21: warning: capture of 'preUpdateValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
 92 |
 93 |                 // Perform updates
 94 |                 try preUpdateValidate()
    |                     |- warning: capture of 'preUpdateValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 95 |
 96 |                 if !updates.isEmpty {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:113:21: warning: capture of 'preSaveValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
111 |                 }
112 |
113 |                 try preSaveValidate()
    |                     |- warning: capture of 'preSaveValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
114 |                 try self.context.save()
115 |                 completion(.success(result))
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:180:36: warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
178 |
179 |         let existing = try context.performAndWait {
180 |             try context.count(for: request)
    |                                    `- warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
181 |         }
182 |
/Applications/Xcode-26.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchRequest.h:47:12: note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 45 |
 46 | API_AVAILABLE(macosx(10.4),ios(3.0))
 47 | @interface NSFetchRequest<__covariant ResultType:id<NSFetchRequestResult>> : NSPersistentStoreRequest <NSCoding, NSCopying> {
    |            `- note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 48 | }
 49 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:31:1: warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'CoreData' as warnings
 29 |  */
 30 |
 31 | import CoreData
    | `- warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'CoreData' as warnings
 32 | import Foundation
 33 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:206:36: warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
204 |
205 |         let deletes = try context.performAndWait {
206 |             try context.count(for: request)
    |                                    `- warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
207 |         }
208 |
/Applications/Xcode-26.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchRequest.h:47:12: note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 45 |
 46 | API_AVAILABLE(macosx(10.4),ios(3.0))
 47 | @interface NSFetchRequest<__covariant ResultType:id<NSFetchRequestResult>> : NSPersistentStoreRequest <NSCoding, NSCopying> {
    |            `- note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 48 | }
 49 |
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDScheduleElement.swift:74:24: warning: capture of 'self' with non-Sendable type 'OCKCDScheduleElement' in a '@Sendable' closure [#SendableClosureCaptures]
 33 |
 34 | @objc(OCKCDScheduleElement)
 35 | class OCKCDScheduleElement: NSManagedObject {
    |       `- note: class 'OCKCDScheduleElement' does not conform to the 'Sendable' protocol
 36 |     @NSManaged var text: String?
 37 |     @NSManaged var task: OCKCDTask?
    :
 72 |         self.managedObjectContext!.performAndWait {
 73 |             scheduleElement = OCKScheduleElement(
 74 |                 start: startDate,
    |                        `- warning: capture of 'self' with non-Sendable type 'OCKCDScheduleElement' in a '@Sendable' closure [#SendableClosureCaptures]
 75 |                 end: endDate,
 76 |                 interval: interval,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDScheduleElement.swift:73:13: warning: mutation of captured var 'scheduleElement' in concurrently-executing code [#SendableClosureCaptures]
 71 |
 72 |         self.managedObjectContext!.performAndWait {
 73 |             scheduleElement = OCKScheduleElement(
    |             `- warning: mutation of captured var 'scheduleElement' in concurrently-executing code [#SendableClosureCaptures]
 74 |                 start: startDate,
 75 |                 end: endDate,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:73:21: warning: capture of 'self' with non-Sendable type 'OCKCDTask' in a '@Sendable' closure [#SendableClosureCaptures]
43 |
44 | @objc(OCKCDTask)
45 | class OCKCDTask: OCKCDTaskBase {
   |       `- note: class 'OCKCDTask' does not conform to the 'Sendable' protocol
46 |
47 |     convenience init(task: OCKTask, context: NSManagedObjectContext) {
   :
71 |         self.managedObjectContext!.performAndWait {
72 |             task = OCKTask(
73 |                 id: id,
   |                     `- warning: capture of 'self' with non-Sendable type 'OCKCDTask' in a '@Sendable' closure [#SendableClosureCaptures]
74 |                 title: title,
75 |                 carePlanUUID: carePlan?.uuid,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:72:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
70 |
71 |         self.managedObjectContext!.performAndWait {
72 |             task = OCKTask(
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
73 |                 id: id,
74 |                 title: title,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:79:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
77 |             )
78 |
79 |             task.copyVersionedValues(from: self)
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
80 |             task.instructions = instructions
81 |             task.impactsAdherence = impactsAdherence
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:80:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
78 |
79 |             task.copyVersionedValues(from: self)
80 |             task.instructions = instructions
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
81 |             task.impactsAdherence = impactsAdherence
82 |         }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:81:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
79 |             task.copyVersionedValues(from: self)
80 |             task.instructions = instructions
81 |             task.impactsAdherence = impactsAdherence
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
82 |         }
83 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+HealthKit.swift:71:17: warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 69 |                     .filtered(dateInterval: query.dateInterval, excludeTasksWithNoEvents: query.excludesTasksWithNoEvents)
 70 |
 71 |                 result = .success(tasks)
    |                 `- warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 72 |             } catch {
 73 |                 result = .failure(error)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+HealthKit.swift:73:17: warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 71 |                 result = .success(tasks)
 72 |             } catch {
 73 |                 result = .failure(error)
    |                 `- warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 74 |             }
 75 |         }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:54:37: warning: capture of 'predicate' with non-Sendable type 'NSPredicate' in a '@Sendable' closure [#SendableClosureCaptures]
 52 |                 let request = NSFetchRequest<OCKCDVersionedObject>(
 53 |                     entityName: T.entity().name!)
 54 |                 request.predicate = predicate
    |                                     `- warning: capture of 'predicate' with non-Sendable type 'NSPredicate' in a '@Sendable' closure [#SendableClosureCaptures]
 55 |                 request.sortDescriptors = sortDescriptors
 56 |                 request.fetchLimit = limit ?? 0
/Applications/Xcode-26.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPredicate.h:18:12: note: class 'NSPredicate' does not conform to the 'Sendable' protocol
16 |
17 | API_AVAILABLE(macos(10.4), ios(3.0), watchos(2.0), tvos(9.0))
18 | @interface NSPredicate : NSObject <NSSecureCoding, NSCopying> {
   |            `- note: class 'NSPredicate' does not conform to the 'Sendable' protocol
19 |     struct _predicateFlags {
20 |         unsigned int _evaluationBlocked:1;
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:55:43: warning: capture of 'sortDescriptors' with non-Sendable type '[NSSortDescriptor]' in a '@Sendable' closure [#SendableClosureCaptures]
 53 |                     entityName: T.entity().name!)
 54 |                 request.predicate = predicate
 55 |                 request.sortDescriptors = sortDescriptors
    |                                           `- warning: capture of 'sortDescriptors' with non-Sendable type '[NSSortDescriptor]' in a '@Sendable' closure [#SendableClosureCaptures]
 56 |                 request.fetchLimit = limit ?? 0
 57 |                 request.fetchOffset = offset
Swift.Array:1:23: note: generic struct 'Array' does not conform to the 'Sendable' protocol
1 | @frozen public struct Array<Element> : _DestructorSafeContainer {
  |                       `- note: generic struct 'Array' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:82:21: warning: capture of 'preInsertValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
 80 |         context.perform {
 81 |             do {
 82 |                 try preInsertValidate()
    |                     |- warning: capture of 'preInsertValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 83 |                 var result = TransactionResult<T>()
 84 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:94:21: warning: capture of 'preUpdateValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
 92 |
 93 |                 // Perform updates
 94 |                 try preUpdateValidate()
    |                     |- warning: capture of 'preUpdateValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 95 |
 96 |                 if !updates.isEmpty {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:113:21: warning: capture of 'preSaveValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
111 |                 }
112 |
113 |                 try preSaveValidate()
    |                     |- warning: capture of 'preSaveValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
114 |                 try self.context.save()
115 |                 completion(.success(result))
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:180:36: warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
178 |
179 |         let existing = try context.performAndWait {
180 |             try context.count(for: request)
    |                                    `- warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
181 |         }
182 |
/Applications/Xcode-26.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchRequest.h:47:12: note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 45 |
 46 | API_AVAILABLE(macosx(10.4),ios(3.0))
 47 | @interface NSFetchRequest<__covariant ResultType:id<NSFetchRequestResult>> : NSPersistentStoreRequest <NSCoding, NSCopying> {
    |            `- note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 48 | }
 49 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:31:1: warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'CoreData' as warnings
 29 |  */
 30 |
 31 | import CoreData
    | `- warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'CoreData' as warnings
 32 | import Foundation
 33 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:206:36: warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
204 |
205 |         let deletes = try context.performAndWait {
206 |             try context.count(for: request)
    |                                    `- warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
207 |         }
208 |
/Applications/Xcode-26.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchRequest.h:47:12: note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 45 |
 46 | API_AVAILABLE(macosx(10.4),ios(3.0))
 47 | @interface NSFetchRequest<__covariant ResultType:id<NSFetchRequestResult>> : NSPersistentStoreRequest <NSCoding, NSCopying> {
    |            `- note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 48 | }
 49 |
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDScheduleElement.swift:74:24: warning: capture of 'self' with non-Sendable type 'OCKCDScheduleElement' in a '@Sendable' closure [#SendableClosureCaptures]
 33 |
 34 | @objc(OCKCDScheduleElement)
 35 | class OCKCDScheduleElement: NSManagedObject {
    |       `- note: class 'OCKCDScheduleElement' does not conform to the 'Sendable' protocol
 36 |     @NSManaged var text: String?
 37 |     @NSManaged var task: OCKCDTask?
    :
 72 |         self.managedObjectContext!.performAndWait {
 73 |             scheduleElement = OCKScheduleElement(
 74 |                 start: startDate,
    |                        `- warning: capture of 'self' with non-Sendable type 'OCKCDScheduleElement' in a '@Sendable' closure [#SendableClosureCaptures]
 75 |                 end: endDate,
 76 |                 interval: interval,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDScheduleElement.swift:73:13: warning: mutation of captured var 'scheduleElement' in concurrently-executing code [#SendableClosureCaptures]
 71 |
 72 |         self.managedObjectContext!.performAndWait {
 73 |             scheduleElement = OCKScheduleElement(
    |             `- warning: mutation of captured var 'scheduleElement' in concurrently-executing code [#SendableClosureCaptures]
 74 |                 start: startDate,
 75 |                 end: endDate,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:73:21: warning: capture of 'self' with non-Sendable type 'OCKCDTask' in a '@Sendable' closure [#SendableClosureCaptures]
43 |
44 | @objc(OCKCDTask)
45 | class OCKCDTask: OCKCDTaskBase {
   |       `- note: class 'OCKCDTask' does not conform to the 'Sendable' protocol
46 |
47 |     convenience init(task: OCKTask, context: NSManagedObjectContext) {
   :
71 |         self.managedObjectContext!.performAndWait {
72 |             task = OCKTask(
73 |                 id: id,
   |                     `- warning: capture of 'self' with non-Sendable type 'OCKCDTask' in a '@Sendable' closure [#SendableClosureCaptures]
74 |                 title: title,
75 |                 carePlanUUID: carePlan?.uuid,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:72:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
70 |
71 |         self.managedObjectContext!.performAndWait {
72 |             task = OCKTask(
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
73 |                 id: id,
74 |                 title: title,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:79:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
77 |             )
78 |
79 |             task.copyVersionedValues(from: self)
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
80 |             task.instructions = instructions
81 |             task.impactsAdherence = impactsAdherence
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:80:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
78 |
79 |             task.copyVersionedValues(from: self)
80 |             task.instructions = instructions
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
81 |             task.impactsAdherence = impactsAdherence
82 |         }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:81:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
79 |             task.copyVersionedValues(from: self)
80 |             task.instructions = instructions
81 |             task.impactsAdherence = impactsAdherence
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
82 |         }
83 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+HealthKit.swift:71:17: warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 69 |                     .filtered(dateInterval: query.dateInterval, excludeTasksWithNoEvents: query.excludesTasksWithNoEvents)
 70 |
 71 |                 result = .success(tasks)
    |                 `- warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 72 |             } catch {
 73 |                 result = .failure(error)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+HealthKit.swift:73:17: warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 71 |                 result = .success(tasks)
 72 |             } catch {
 73 |                 result = .failure(error)
    |                 `- warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 74 |             }
 75 |         }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:54:37: warning: capture of 'predicate' with non-Sendable type 'NSPredicate' in a '@Sendable' closure [#SendableClosureCaptures]
 52 |                 let request = NSFetchRequest<OCKCDVersionedObject>(
 53 |                     entityName: T.entity().name!)
 54 |                 request.predicate = predicate
    |                                     `- warning: capture of 'predicate' with non-Sendable type 'NSPredicate' in a '@Sendable' closure [#SendableClosureCaptures]
 55 |                 request.sortDescriptors = sortDescriptors
 56 |                 request.fetchLimit = limit ?? 0
/Applications/Xcode-26.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPredicate.h:18:12: note: class 'NSPredicate' does not conform to the 'Sendable' protocol
16 |
17 | API_AVAILABLE(macos(10.4), ios(3.0), watchos(2.0), tvos(9.0))
18 | @interface NSPredicate : NSObject <NSSecureCoding, NSCopying> {
   |            `- note: class 'NSPredicate' does not conform to the 'Sendable' protocol
19 |     struct _predicateFlags {
20 |         unsigned int _evaluationBlocked:1;
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:55:43: warning: capture of 'sortDescriptors' with non-Sendable type '[NSSortDescriptor]' in a '@Sendable' closure [#SendableClosureCaptures]
 53 |                     entityName: T.entity().name!)
 54 |                 request.predicate = predicate
 55 |                 request.sortDescriptors = sortDescriptors
    |                                           `- warning: capture of 'sortDescriptors' with non-Sendable type '[NSSortDescriptor]' in a '@Sendable' closure [#SendableClosureCaptures]
 56 |                 request.fetchLimit = limit ?? 0
 57 |                 request.fetchOffset = offset
Swift.Array:1:23: note: generic struct 'Array' does not conform to the 'Sendable' protocol
1 | @frozen public struct Array<Element> : _DestructorSafeContainer {
  |                       `- note: generic struct 'Array' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:82:21: warning: capture of 'preInsertValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
 80 |         context.perform {
 81 |             do {
 82 |                 try preInsertValidate()
    |                     |- warning: capture of 'preInsertValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 83 |                 var result = TransactionResult<T>()
 84 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:94:21: warning: capture of 'preUpdateValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
 92 |
 93 |                 // Perform updates
 94 |                 try preUpdateValidate()
    |                     |- warning: capture of 'preUpdateValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 95 |
 96 |                 if !updates.isEmpty {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:113:21: warning: capture of 'preSaveValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
111 |                 }
112 |
113 |                 try preSaveValidate()
    |                     |- warning: capture of 'preSaveValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
114 |                 try self.context.save()
115 |                 completion(.success(result))
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:180:36: warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
178 |
179 |         let existing = try context.performAndWait {
180 |             try context.count(for: request)
    |                                    `- warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
181 |         }
182 |
/Applications/Xcode-26.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchRequest.h:47:12: note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 45 |
 46 | API_AVAILABLE(macosx(10.4),ios(3.0))
 47 | @interface NSFetchRequest<__covariant ResultType:id<NSFetchRequestResult>> : NSPersistentStoreRequest <NSCoding, NSCopying> {
    |            `- note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 48 | }
 49 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:31:1: warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'CoreData' as warnings
 29 |  */
 30 |
 31 | import CoreData
    | `- warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'CoreData' as warnings
 32 | import Foundation
 33 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:206:36: warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
204 |
205 |         let deletes = try context.performAndWait {
206 |             try context.count(for: request)
    |                                    `- warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
207 |         }
208 |
/Applications/Xcode-26.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchRequest.h:47:12: note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 45 |
 46 | API_AVAILABLE(macosx(10.4),ios(3.0))
 47 | @interface NSFetchRequest<__covariant ResultType:id<NSFetchRequestResult>> : NSPersistentStoreRequest <NSCoding, NSCopying> {
    |            `- note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 48 | }
 49 |
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDScheduleElement.swift:74:24: warning: capture of 'self' with non-Sendable type 'OCKCDScheduleElement' in a '@Sendable' closure [#SendableClosureCaptures]
 33 |
 34 | @objc(OCKCDScheduleElement)
 35 | class OCKCDScheduleElement: NSManagedObject {
    |       `- note: class 'OCKCDScheduleElement' does not conform to the 'Sendable' protocol
 36 |     @NSManaged var text: String?
 37 |     @NSManaged var task: OCKCDTask?
    :
 72 |         self.managedObjectContext!.performAndWait {
 73 |             scheduleElement = OCKScheduleElement(
 74 |                 start: startDate,
    |                        `- warning: capture of 'self' with non-Sendable type 'OCKCDScheduleElement' in a '@Sendable' closure [#SendableClosureCaptures]
 75 |                 end: endDate,
 76 |                 interval: interval,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDScheduleElement.swift:73:13: warning: mutation of captured var 'scheduleElement' in concurrently-executing code [#SendableClosureCaptures]
 71 |
 72 |         self.managedObjectContext!.performAndWait {
 73 |             scheduleElement = OCKScheduleElement(
    |             `- warning: mutation of captured var 'scheduleElement' in concurrently-executing code [#SendableClosureCaptures]
 74 |                 start: startDate,
 75 |                 end: endDate,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:73:21: warning: capture of 'self' with non-Sendable type 'OCKCDTask' in a '@Sendable' closure [#SendableClosureCaptures]
43 |
44 | @objc(OCKCDTask)
45 | class OCKCDTask: OCKCDTaskBase {
   |       `- note: class 'OCKCDTask' does not conform to the 'Sendable' protocol
46 |
47 |     convenience init(task: OCKTask, context: NSManagedObjectContext) {
   :
71 |         self.managedObjectContext!.performAndWait {
72 |             task = OCKTask(
73 |                 id: id,
   |                     `- warning: capture of 'self' with non-Sendable type 'OCKCDTask' in a '@Sendable' closure [#SendableClosureCaptures]
74 |                 title: title,
75 |                 carePlanUUID: carePlan?.uuid,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:72:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
70 |
71 |         self.managedObjectContext!.performAndWait {
72 |             task = OCKTask(
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
73 |                 id: id,
74 |                 title: title,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:79:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
77 |             )
78 |
79 |             task.copyVersionedValues(from: self)
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
80 |             task.instructions = instructions
81 |             task.impactsAdherence = impactsAdherence
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:80:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
78 |
79 |             task.copyVersionedValues(from: self)
80 |             task.instructions = instructions
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
81 |             task.impactsAdherence = impactsAdherence
82 |         }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:81:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
79 |             task.copyVersionedValues(from: self)
80 |             task.instructions = instructions
81 |             task.impactsAdherence = impactsAdherence
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
82 |         }
83 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+HealthKit.swift:71:17: warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 69 |                     .filtered(dateInterval: query.dateInterval, excludeTasksWithNoEvents: query.excludesTasksWithNoEvents)
 70 |
 71 |                 result = .success(tasks)
    |                 `- warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 72 |             } catch {
 73 |                 result = .failure(error)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+HealthKit.swift:73:17: warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 71 |                 result = .success(tasks)
 72 |             } catch {
 73 |                 result = .failure(error)
    |                 `- warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 74 |             }
 75 |         }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:54:37: warning: capture of 'predicate' with non-Sendable type 'NSPredicate' in a '@Sendable' closure [#SendableClosureCaptures]
 52 |                 let request = NSFetchRequest<OCKCDVersionedObject>(
 53 |                     entityName: T.entity().name!)
 54 |                 request.predicate = predicate
    |                                     `- warning: capture of 'predicate' with non-Sendable type 'NSPredicate' in a '@Sendable' closure [#SendableClosureCaptures]
 55 |                 request.sortDescriptors = sortDescriptors
 56 |                 request.fetchLimit = limit ?? 0
/Applications/Xcode-26.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPredicate.h:18:12: note: class 'NSPredicate' does not conform to the 'Sendable' protocol
16 |
17 | API_AVAILABLE(macos(10.4), ios(3.0), watchos(2.0), tvos(9.0))
18 | @interface NSPredicate : NSObject <NSSecureCoding, NSCopying> {
   |            `- note: class 'NSPredicate' does not conform to the 'Sendable' protocol
19 |     struct _predicateFlags {
20 |         unsigned int _evaluationBlocked:1;
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:55:43: warning: capture of 'sortDescriptors' with non-Sendable type '[NSSortDescriptor]' in a '@Sendable' closure [#SendableClosureCaptures]
 53 |                     entityName: T.entity().name!)
 54 |                 request.predicate = predicate
 55 |                 request.sortDescriptors = sortDescriptors
    |                                           `- warning: capture of 'sortDescriptors' with non-Sendable type '[NSSortDescriptor]' in a '@Sendable' closure [#SendableClosureCaptures]
 56 |                 request.fetchLimit = limit ?? 0
 57 |                 request.fetchOffset = offset
Swift.Array:1:23: note: generic struct 'Array' does not conform to the 'Sendable' protocol
1 | @frozen public struct Array<Element> : _DestructorSafeContainer {
  |                       `- note: generic struct 'Array' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:82:21: warning: capture of 'preInsertValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
 80 |         context.perform {
 81 |             do {
 82 |                 try preInsertValidate()
    |                     |- warning: capture of 'preInsertValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 83 |                 var result = TransactionResult<T>()
 84 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:94:21: warning: capture of 'preUpdateValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
 92 |
 93 |                 // Perform updates
 94 |                 try preUpdateValidate()
    |                     |- warning: capture of 'preUpdateValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 95 |
 96 |                 if !updates.isEmpty {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:113:21: warning: capture of 'preSaveValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
111 |                 }
112 |
113 |                 try preSaveValidate()
    |                     |- warning: capture of 'preSaveValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
114 |                 try self.context.save()
115 |                 completion(.success(result))
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:180:36: warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
178 |
179 |         let existing = try context.performAndWait {
180 |             try context.count(for: request)
    |                                    `- warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
181 |         }
182 |
/Applications/Xcode-26.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchRequest.h:47:12: note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 45 |
 46 | API_AVAILABLE(macosx(10.4),ios(3.0))
 47 | @interface NSFetchRequest<__covariant ResultType:id<NSFetchRequestResult>> : NSPersistentStoreRequest <NSCoding, NSCopying> {
    |            `- note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 48 | }
 49 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:31:1: warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'CoreData' as warnings
 29 |  */
 30 |
 31 | import CoreData
    | `- warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'CoreData' as warnings
 32 | import Foundation
 33 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:206:36: warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
204 |
205 |         let deletes = try context.performAndWait {
206 |             try context.count(for: request)
    |                                    `- warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
207 |         }
208 |
/Applications/Xcode-26.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchRequest.h:47:12: note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 45 |
 46 | API_AVAILABLE(macosx(10.4),ios(3.0))
 47 | @interface NSFetchRequest<__covariant ResultType:id<NSFetchRequestResult>> : NSPersistentStoreRequest <NSCoding, NSCopying> {
    |            `- note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 48 | }
 49 |
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDScheduleElement.swift:74:24: warning: capture of 'self' with non-Sendable type 'OCKCDScheduleElement' in a '@Sendable' closure [#SendableClosureCaptures]
 33 |
 34 | @objc(OCKCDScheduleElement)
 35 | class OCKCDScheduleElement: NSManagedObject {
    |       `- note: class 'OCKCDScheduleElement' does not conform to the 'Sendable' protocol
 36 |     @NSManaged var text: String?
 37 |     @NSManaged var task: OCKCDTask?
    :
 72 |         self.managedObjectContext!.performAndWait {
 73 |             scheduleElement = OCKScheduleElement(
 74 |                 start: startDate,
    |                        `- warning: capture of 'self' with non-Sendable type 'OCKCDScheduleElement' in a '@Sendable' closure [#SendableClosureCaptures]
 75 |                 end: endDate,
 76 |                 interval: interval,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDScheduleElement.swift:73:13: warning: mutation of captured var 'scheduleElement' in concurrently-executing code [#SendableClosureCaptures]
 71 |
 72 |         self.managedObjectContext!.performAndWait {
 73 |             scheduleElement = OCKScheduleElement(
    |             `- warning: mutation of captured var 'scheduleElement' in concurrently-executing code [#SendableClosureCaptures]
 74 |                 start: startDate,
 75 |                 end: endDate,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:73:21: warning: capture of 'self' with non-Sendable type 'OCKCDTask' in a '@Sendable' closure [#SendableClosureCaptures]
43 |
44 | @objc(OCKCDTask)
45 | class OCKCDTask: OCKCDTaskBase {
   |       `- note: class 'OCKCDTask' does not conform to the 'Sendable' protocol
46 |
47 |     convenience init(task: OCKTask, context: NSManagedObjectContext) {
   :
71 |         self.managedObjectContext!.performAndWait {
72 |             task = OCKTask(
73 |                 id: id,
   |                     `- warning: capture of 'self' with non-Sendable type 'OCKCDTask' in a '@Sendable' closure [#SendableClosureCaptures]
74 |                 title: title,
75 |                 carePlanUUID: carePlan?.uuid,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:72:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
70 |
71 |         self.managedObjectContext!.performAndWait {
72 |             task = OCKTask(
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
73 |                 id: id,
74 |                 title: title,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:79:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
77 |             )
78 |
79 |             task.copyVersionedValues(from: self)
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
80 |             task.instructions = instructions
81 |             task.impactsAdherence = impactsAdherence
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:80:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
78 |
79 |             task.copyVersionedValues(from: self)
80 |             task.instructions = instructions
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
81 |             task.impactsAdherence = impactsAdherence
82 |         }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:81:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
79 |             task.copyVersionedValues(from: self)
80 |             task.instructions = instructions
81 |             task.impactsAdherence = impactsAdherence
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
82 |         }
83 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+HealthKit.swift:71:17: warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 69 |                     .filtered(dateInterval: query.dateInterval, excludeTasksWithNoEvents: query.excludesTasksWithNoEvents)
 70 |
 71 |                 result = .success(tasks)
    |                 `- warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 72 |             } catch {
 73 |                 result = .failure(error)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+HealthKit.swift:73:17: warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 71 |                 result = .success(tasks)
 72 |             } catch {
 73 |                 result = .failure(error)
    |                 `- warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 74 |             }
 75 |         }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:54:37: warning: capture of 'predicate' with non-Sendable type 'NSPredicate' in a '@Sendable' closure [#SendableClosureCaptures]
 52 |                 let request = NSFetchRequest<OCKCDVersionedObject>(
 53 |                     entityName: T.entity().name!)
 54 |                 request.predicate = predicate
    |                                     `- warning: capture of 'predicate' with non-Sendable type 'NSPredicate' in a '@Sendable' closure [#SendableClosureCaptures]
 55 |                 request.sortDescriptors = sortDescriptors
 56 |                 request.fetchLimit = limit ?? 0
/Applications/Xcode-26.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPredicate.h:18:12: note: class 'NSPredicate' does not conform to the 'Sendable' protocol
16 |
17 | API_AVAILABLE(macos(10.4), ios(3.0), watchos(2.0), tvos(9.0))
18 | @interface NSPredicate : NSObject <NSSecureCoding, NSCopying> {
   |            `- note: class 'NSPredicate' does not conform to the 'Sendable' protocol
19 |     struct _predicateFlags {
20 |         unsigned int _evaluationBlocked:1;
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:55:43: warning: capture of 'sortDescriptors' with non-Sendable type '[NSSortDescriptor]' in a '@Sendable' closure [#SendableClosureCaptures]
 53 |                     entityName: T.entity().name!)
 54 |                 request.predicate = predicate
 55 |                 request.sortDescriptors = sortDescriptors
    |                                           `- warning: capture of 'sortDescriptors' with non-Sendable type '[NSSortDescriptor]' in a '@Sendable' closure [#SendableClosureCaptures]
 56 |                 request.fetchLimit = limit ?? 0
 57 |                 request.fetchOffset = offset
Swift.Array:1:23: note: generic struct 'Array' does not conform to the 'Sendable' protocol
1 | @frozen public struct Array<Element> : _DestructorSafeContainer {
  |                       `- note: generic struct 'Array' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:82:21: warning: capture of 'preInsertValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
 80 |         context.perform {
 81 |             do {
 82 |                 try preInsertValidate()
    |                     |- warning: capture of 'preInsertValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 83 |                 var result = TransactionResult<T>()
 84 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:94:21: warning: capture of 'preUpdateValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
 92 |
 93 |                 // Perform updates
 94 |                 try preUpdateValidate()
    |                     |- warning: capture of 'preUpdateValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 95 |
 96 |                 if !updates.isEmpty {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:113:21: warning: capture of 'preSaveValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
111 |                 }
112 |
113 |                 try preSaveValidate()
    |                     |- warning: capture of 'preSaveValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
114 |                 try self.context.save()
115 |                 completion(.success(result))
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:180:36: warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
178 |
179 |         let existing = try context.performAndWait {
180 |             try context.count(for: request)
    |                                    `- warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
181 |         }
182 |
/Applications/Xcode-26.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchRequest.h:47:12: note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 45 |
 46 | API_AVAILABLE(macosx(10.4),ios(3.0))
 47 | @interface NSFetchRequest<__covariant ResultType:id<NSFetchRequestResult>> : NSPersistentStoreRequest <NSCoding, NSCopying> {
    |            `- note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 48 | }
 49 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:31:1: warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'CoreData' as warnings
 29 |  */
 30 |
 31 | import CoreData
    | `- warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'CoreData' as warnings
 32 | import Foundation
 33 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:206:36: warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
204 |
205 |         let deletes = try context.performAndWait {
206 |             try context.count(for: request)
    |                                    `- warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
207 |         }
208 |
/Applications/Xcode-26.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchRequest.h:47:12: note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 45 |
 46 | API_AVAILABLE(macosx(10.4),ios(3.0))
 47 | @interface NSFetchRequest<__covariant ResultType:id<NSFetchRequestResult>> : NSPersistentStoreRequest <NSCoding, NSCopying> {
    |            `- note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 48 | }
 49 |
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDScheduleElement.swift:74:24: warning: capture of 'self' with non-Sendable type 'OCKCDScheduleElement' in a '@Sendable' closure [#SendableClosureCaptures]
 33 |
 34 | @objc(OCKCDScheduleElement)
 35 | class OCKCDScheduleElement: NSManagedObject {
    |       `- note: class 'OCKCDScheduleElement' does not conform to the 'Sendable' protocol
 36 |     @NSManaged var text: String?
 37 |     @NSManaged var task: OCKCDTask?
    :
 72 |         self.managedObjectContext!.performAndWait {
 73 |             scheduleElement = OCKScheduleElement(
 74 |                 start: startDate,
    |                        `- warning: capture of 'self' with non-Sendable type 'OCKCDScheduleElement' in a '@Sendable' closure [#SendableClosureCaptures]
 75 |                 end: endDate,
 76 |                 interval: interval,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDScheduleElement.swift:73:13: warning: mutation of captured var 'scheduleElement' in concurrently-executing code [#SendableClosureCaptures]
 71 |
 72 |         self.managedObjectContext!.performAndWait {
 73 |             scheduleElement = OCKScheduleElement(
    |             `- warning: mutation of captured var 'scheduleElement' in concurrently-executing code [#SendableClosureCaptures]
 74 |                 start: startDate,
 75 |                 end: endDate,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:73:21: warning: capture of 'self' with non-Sendable type 'OCKCDTask' in a '@Sendable' closure [#SendableClosureCaptures]
43 |
44 | @objc(OCKCDTask)
45 | class OCKCDTask: OCKCDTaskBase {
   |       `- note: class 'OCKCDTask' does not conform to the 'Sendable' protocol
46 |
47 |     convenience init(task: OCKTask, context: NSManagedObjectContext) {
   :
71 |         self.managedObjectContext!.performAndWait {
72 |             task = OCKTask(
73 |                 id: id,
   |                     `- warning: capture of 'self' with non-Sendable type 'OCKCDTask' in a '@Sendable' closure [#SendableClosureCaptures]
74 |                 title: title,
75 |                 carePlanUUID: carePlan?.uuid,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:72:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
70 |
71 |         self.managedObjectContext!.performAndWait {
72 |             task = OCKTask(
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
73 |                 id: id,
74 |                 title: title,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:79:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
77 |             )
78 |
79 |             task.copyVersionedValues(from: self)
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
80 |             task.instructions = instructions
81 |             task.impactsAdherence = impactsAdherence
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:80:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
78 |
79 |             task.copyVersionedValues(from: self)
80 |             task.instructions = instructions
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
81 |             task.impactsAdherence = impactsAdherence
82 |         }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:81:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
79 |             task.copyVersionedValues(from: self)
80 |             task.instructions = instructions
81 |             task.impactsAdherence = impactsAdherence
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
82 |         }
83 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+HealthKit.swift:71:17: warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 69 |                     .filtered(dateInterval: query.dateInterval, excludeTasksWithNoEvents: query.excludesTasksWithNoEvents)
 70 |
 71 |                 result = .success(tasks)
    |                 `- warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 72 |             } catch {
 73 |                 result = .failure(error)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+HealthKit.swift:73:17: warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 71 |                 result = .success(tasks)
 72 |             } catch {
 73 |                 result = .failure(error)
    |                 `- warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 74 |             }
 75 |         }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:54:37: warning: capture of 'predicate' with non-Sendable type 'NSPredicate' in a '@Sendable' closure [#SendableClosureCaptures]
 52 |                 let request = NSFetchRequest<OCKCDVersionedObject>(
 53 |                     entityName: T.entity().name!)
 54 |                 request.predicate = predicate
    |                                     `- warning: capture of 'predicate' with non-Sendable type 'NSPredicate' in a '@Sendable' closure [#SendableClosureCaptures]
 55 |                 request.sortDescriptors = sortDescriptors
 56 |                 request.fetchLimit = limit ?? 0
/Applications/Xcode-26.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPredicate.h:18:12: note: class 'NSPredicate' does not conform to the 'Sendable' protocol
16 |
17 | API_AVAILABLE(macos(10.4), ios(3.0), watchos(2.0), tvos(9.0))
18 | @interface NSPredicate : NSObject <NSSecureCoding, NSCopying> {
   |            `- note: class 'NSPredicate' does not conform to the 'Sendable' protocol
19 |     struct _predicateFlags {
20 |         unsigned int _evaluationBlocked:1;
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:55:43: warning: capture of 'sortDescriptors' with non-Sendable type '[NSSortDescriptor]' in a '@Sendable' closure [#SendableClosureCaptures]
 53 |                     entityName: T.entity().name!)
 54 |                 request.predicate = predicate
 55 |                 request.sortDescriptors = sortDescriptors
    |                                           `- warning: capture of 'sortDescriptors' with non-Sendable type '[NSSortDescriptor]' in a '@Sendable' closure [#SendableClosureCaptures]
 56 |                 request.fetchLimit = limit ?? 0
 57 |                 request.fetchOffset = offset
Swift.Array:1:23: note: generic struct 'Array' does not conform to the 'Sendable' protocol
1 | @frozen public struct Array<Element> : _DestructorSafeContainer {
  |                       `- note: generic struct 'Array' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:82:21: warning: capture of 'preInsertValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
 80 |         context.perform {
 81 |             do {
 82 |                 try preInsertValidate()
    |                     |- warning: capture of 'preInsertValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 83 |                 var result = TransactionResult<T>()
 84 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:94:21: warning: capture of 'preUpdateValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
 92 |
 93 |                 // Perform updates
 94 |                 try preUpdateValidate()
    |                     |- warning: capture of 'preUpdateValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 95 |
 96 |                 if !updates.isEmpty {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:113:21: warning: capture of 'preSaveValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
111 |                 }
112 |
113 |                 try preSaveValidate()
    |                     |- warning: capture of 'preSaveValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
114 |                 try self.context.save()
115 |                 completion(.success(result))
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:180:36: warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
178 |
179 |         let existing = try context.performAndWait {
180 |             try context.count(for: request)
    |                                    `- warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
181 |         }
182 |
/Applications/Xcode-26.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchRequest.h:47:12: note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 45 |
 46 | API_AVAILABLE(macosx(10.4),ios(3.0))
 47 | @interface NSFetchRequest<__covariant ResultType:id<NSFetchRequestResult>> : NSPersistentStoreRequest <NSCoding, NSCopying> {
    |            `- note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 48 | }
 49 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:31:1: warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'CoreData' as warnings
 29 |  */
 30 |
 31 | import CoreData
    | `- warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'CoreData' as warnings
 32 | import Foundation
 33 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:206:36: warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
204 |
205 |         let deletes = try context.performAndWait {
206 |             try context.count(for: request)
    |                                    `- warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
207 |         }
208 |
/Applications/Xcode-26.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchRequest.h:47:12: note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 45 |
 46 | API_AVAILABLE(macosx(10.4),ios(3.0))
 47 | @interface NSFetchRequest<__covariant ResultType:id<NSFetchRequestResult>> : NSPersistentStoreRequest <NSCoding, NSCopying> {
    |            `- note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 48 | }
 49 |
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDScheduleElement.swift:74:24: warning: capture of 'self' with non-Sendable type 'OCKCDScheduleElement' in a '@Sendable' closure [#SendableClosureCaptures]
 33 |
 34 | @objc(OCKCDScheduleElement)
 35 | class OCKCDScheduleElement: NSManagedObject {
    |       `- note: class 'OCKCDScheduleElement' does not conform to the 'Sendable' protocol
 36 |     @NSManaged var text: String?
 37 |     @NSManaged var task: OCKCDTask?
    :
 72 |         self.managedObjectContext!.performAndWait {
 73 |             scheduleElement = OCKScheduleElement(
 74 |                 start: startDate,
    |                        `- warning: capture of 'self' with non-Sendable type 'OCKCDScheduleElement' in a '@Sendable' closure [#SendableClosureCaptures]
 75 |                 end: endDate,
 76 |                 interval: interval,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDScheduleElement.swift:73:13: warning: mutation of captured var 'scheduleElement' in concurrently-executing code [#SendableClosureCaptures]
 71 |
 72 |         self.managedObjectContext!.performAndWait {
 73 |             scheduleElement = OCKScheduleElement(
    |             `- warning: mutation of captured var 'scheduleElement' in concurrently-executing code [#SendableClosureCaptures]
 74 |                 start: startDate,
 75 |                 end: endDate,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:73:21: warning: capture of 'self' with non-Sendable type 'OCKCDTask' in a '@Sendable' closure [#SendableClosureCaptures]
43 |
44 | @objc(OCKCDTask)
45 | class OCKCDTask: OCKCDTaskBase {
   |       `- note: class 'OCKCDTask' does not conform to the 'Sendable' protocol
46 |
47 |     convenience init(task: OCKTask, context: NSManagedObjectContext) {
   :
71 |         self.managedObjectContext!.performAndWait {
72 |             task = OCKTask(
73 |                 id: id,
   |                     `- warning: capture of 'self' with non-Sendable type 'OCKCDTask' in a '@Sendable' closure [#SendableClosureCaptures]
74 |                 title: title,
75 |                 carePlanUUID: carePlan?.uuid,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:72:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
70 |
71 |         self.managedObjectContext!.performAndWait {
72 |             task = OCKTask(
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
73 |                 id: id,
74 |                 title: title,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:79:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
77 |             )
78 |
79 |             task.copyVersionedValues(from: self)
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
80 |             task.instructions = instructions
81 |             task.impactsAdherence = impactsAdherence
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:80:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
78 |
79 |             task.copyVersionedValues(from: self)
80 |             task.instructions = instructions
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
81 |             task.impactsAdherence = impactsAdherence
82 |         }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:81:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
79 |             task.copyVersionedValues(from: self)
80 |             task.instructions = instructions
81 |             task.impactsAdherence = impactsAdherence
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
82 |         }
83 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+HealthKit.swift:71:17: warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 69 |                     .filtered(dateInterval: query.dateInterval, excludeTasksWithNoEvents: query.excludesTasksWithNoEvents)
 70 |
 71 |                 result = .success(tasks)
    |                 `- warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 72 |             } catch {
 73 |                 result = .failure(error)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+HealthKit.swift:73:17: warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 71 |                 result = .success(tasks)
 72 |             } catch {
 73 |                 result = .failure(error)
    |                 `- warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 74 |             }
 75 |         }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:54:37: warning: capture of 'predicate' with non-Sendable type 'NSPredicate' in a '@Sendable' closure [#SendableClosureCaptures]
 52 |                 let request = NSFetchRequest<OCKCDVersionedObject>(
 53 |                     entityName: T.entity().name!)
 54 |                 request.predicate = predicate
    |                                     `- warning: capture of 'predicate' with non-Sendable type 'NSPredicate' in a '@Sendable' closure [#SendableClosureCaptures]
 55 |                 request.sortDescriptors = sortDescriptors
 56 |                 request.fetchLimit = limit ?? 0
/Applications/Xcode-26.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPredicate.h:18:12: note: class 'NSPredicate' does not conform to the 'Sendable' protocol
16 |
17 | API_AVAILABLE(macos(10.4), ios(3.0), watchos(2.0), tvos(9.0))
18 | @interface NSPredicate : NSObject <NSSecureCoding, NSCopying> {
   |            `- note: class 'NSPredicate' does not conform to the 'Sendable' protocol
19 |     struct _predicateFlags {
20 |         unsigned int _evaluationBlocked:1;
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:55:43: warning: capture of 'sortDescriptors' with non-Sendable type '[NSSortDescriptor]' in a '@Sendable' closure [#SendableClosureCaptures]
 53 |                     entityName: T.entity().name!)
 54 |                 request.predicate = predicate
 55 |                 request.sortDescriptors = sortDescriptors
    |                                           `- warning: capture of 'sortDescriptors' with non-Sendable type '[NSSortDescriptor]' in a '@Sendable' closure [#SendableClosureCaptures]
 56 |                 request.fetchLimit = limit ?? 0
 57 |                 request.fetchOffset = offset
Swift.Array:1:23: note: generic struct 'Array' does not conform to the 'Sendable' protocol
1 | @frozen public struct Array<Element> : _DestructorSafeContainer {
  |                       `- note: generic struct 'Array' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:82:21: warning: capture of 'preInsertValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
 80 |         context.perform {
 81 |             do {
 82 |                 try preInsertValidate()
    |                     |- warning: capture of 'preInsertValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 83 |                 var result = TransactionResult<T>()
 84 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:94:21: warning: capture of 'preUpdateValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
 92 |
 93 |                 // Perform updates
 94 |                 try preUpdateValidate()
    |                     |- warning: capture of 'preUpdateValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 95 |
 96 |                 if !updates.isEmpty {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:113:21: warning: capture of 'preSaveValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
111 |                 }
112 |
113 |                 try preSaveValidate()
    |                     |- warning: capture of 'preSaveValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
114 |                 try self.context.save()
115 |                 completion(.success(result))
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:180:36: warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
178 |
179 |         let existing = try context.performAndWait {
180 |             try context.count(for: request)
    |                                    `- warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
181 |         }
182 |
/Applications/Xcode-26.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchRequest.h:47:12: note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 45 |
 46 | API_AVAILABLE(macosx(10.4),ios(3.0))
 47 | @interface NSFetchRequest<__covariant ResultType:id<NSFetchRequestResult>> : NSPersistentStoreRequest <NSCoding, NSCopying> {
    |            `- note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 48 | }
 49 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:31:1: warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'CoreData' as warnings
 29 |  */
 30 |
 31 | import CoreData
    | `- warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'CoreData' as warnings
 32 | import Foundation
 33 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:206:36: warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
204 |
205 |         let deletes = try context.performAndWait {
206 |             try context.count(for: request)
    |                                    `- warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
207 |         }
208 |
/Applications/Xcode-26.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchRequest.h:47:12: note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 45 |
 46 | API_AVAILABLE(macosx(10.4),ios(3.0))
 47 | @interface NSFetchRequest<__covariant ResultType:id<NSFetchRequestResult>> : NSPersistentStoreRequest <NSCoding, NSCopying> {
    |            `- note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 48 | }
 49 |
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDScheduleElement.swift:74:24: warning: capture of 'self' with non-Sendable type 'OCKCDScheduleElement' in a '@Sendable' closure [#SendableClosureCaptures]
 33 |
 34 | @objc(OCKCDScheduleElement)
 35 | class OCKCDScheduleElement: NSManagedObject {
    |       `- note: class 'OCKCDScheduleElement' does not conform to the 'Sendable' protocol
 36 |     @NSManaged var text: String?
 37 |     @NSManaged var task: OCKCDTask?
    :
 72 |         self.managedObjectContext!.performAndWait {
 73 |             scheduleElement = OCKScheduleElement(
 74 |                 start: startDate,
    |                        `- warning: capture of 'self' with non-Sendable type 'OCKCDScheduleElement' in a '@Sendable' closure [#SendableClosureCaptures]
 75 |                 end: endDate,
 76 |                 interval: interval,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDScheduleElement.swift:73:13: warning: mutation of captured var 'scheduleElement' in concurrently-executing code [#SendableClosureCaptures]
 71 |
 72 |         self.managedObjectContext!.performAndWait {
 73 |             scheduleElement = OCKScheduleElement(
    |             `- warning: mutation of captured var 'scheduleElement' in concurrently-executing code [#SendableClosureCaptures]
 74 |                 start: startDate,
 75 |                 end: endDate,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:73:21: warning: capture of 'self' with non-Sendable type 'OCKCDTask' in a '@Sendable' closure [#SendableClosureCaptures]
43 |
44 | @objc(OCKCDTask)
45 | class OCKCDTask: OCKCDTaskBase {
   |       `- note: class 'OCKCDTask' does not conform to the 'Sendable' protocol
46 |
47 |     convenience init(task: OCKTask, context: NSManagedObjectContext) {
   :
71 |         self.managedObjectContext!.performAndWait {
72 |             task = OCKTask(
73 |                 id: id,
   |                     `- warning: capture of 'self' with non-Sendable type 'OCKCDTask' in a '@Sendable' closure [#SendableClosureCaptures]
74 |                 title: title,
75 |                 carePlanUUID: carePlan?.uuid,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:72:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
70 |
71 |         self.managedObjectContext!.performAndWait {
72 |             task = OCKTask(
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
73 |                 id: id,
74 |                 title: title,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:79:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
77 |             )
78 |
79 |             task.copyVersionedValues(from: self)
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
80 |             task.instructions = instructions
81 |             task.impactsAdherence = impactsAdherence
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:80:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
78 |
79 |             task.copyVersionedValues(from: self)
80 |             task.instructions = instructions
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
81 |             task.impactsAdherence = impactsAdherence
82 |         }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:81:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
79 |             task.copyVersionedValues(from: self)
80 |             task.instructions = instructions
81 |             task.impactsAdherence = impactsAdherence
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
82 |         }
83 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+HealthKit.swift:71:17: warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 69 |                     .filtered(dateInterval: query.dateInterval, excludeTasksWithNoEvents: query.excludesTasksWithNoEvents)
 70 |
 71 |                 result = .success(tasks)
    |                 `- warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 72 |             } catch {
 73 |                 result = .failure(error)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+HealthKit.swift:73:17: warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 71 |                 result = .success(tasks)
 72 |             } catch {
 73 |                 result = .failure(error)
    |                 `- warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 74 |             }
 75 |         }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:54:37: warning: capture of 'predicate' with non-Sendable type 'NSPredicate' in a '@Sendable' closure [#SendableClosureCaptures]
 52 |                 let request = NSFetchRequest<OCKCDVersionedObject>(
 53 |                     entityName: T.entity().name!)
 54 |                 request.predicate = predicate
    |                                     `- warning: capture of 'predicate' with non-Sendable type 'NSPredicate' in a '@Sendable' closure [#SendableClosureCaptures]
 55 |                 request.sortDescriptors = sortDescriptors
 56 |                 request.fetchLimit = limit ?? 0
/Applications/Xcode-26.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPredicate.h:18:12: note: class 'NSPredicate' does not conform to the 'Sendable' protocol
16 |
17 | API_AVAILABLE(macos(10.4), ios(3.0), watchos(2.0), tvos(9.0))
18 | @interface NSPredicate : NSObject <NSSecureCoding, NSCopying> {
   |            `- note: class 'NSPredicate' does not conform to the 'Sendable' protocol
19 |     struct _predicateFlags {
20 |         unsigned int _evaluationBlocked:1;
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:55:43: warning: capture of 'sortDescriptors' with non-Sendable type '[NSSortDescriptor]' in a '@Sendable' closure [#SendableClosureCaptures]
 53 |                     entityName: T.entity().name!)
 54 |                 request.predicate = predicate
 55 |                 request.sortDescriptors = sortDescriptors
    |                                           `- warning: capture of 'sortDescriptors' with non-Sendable type '[NSSortDescriptor]' in a '@Sendable' closure [#SendableClosureCaptures]
 56 |                 request.fetchLimit = limit ?? 0
 57 |                 request.fetchOffset = offset
Swift.Array:1:23: note: generic struct 'Array' does not conform to the 'Sendable' protocol
1 | @frozen public struct Array<Element> : _DestructorSafeContainer {
  |                       `- note: generic struct 'Array' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:82:21: warning: capture of 'preInsertValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
 80 |         context.perform {
 81 |             do {
 82 |                 try preInsertValidate()
    |                     |- warning: capture of 'preInsertValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 83 |                 var result = TransactionResult<T>()
 84 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:94:21: warning: capture of 'preUpdateValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
 92 |
 93 |                 // Perform updates
 94 |                 try preUpdateValidate()
    |                     |- warning: capture of 'preUpdateValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 95 |
 96 |                 if !updates.isEmpty {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:113:21: warning: capture of 'preSaveValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
111 |                 }
112 |
113 |                 try preSaveValidate()
    |                     |- warning: capture of 'preSaveValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
114 |                 try self.context.save()
115 |                 completion(.success(result))
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:180:36: warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
178 |
179 |         let existing = try context.performAndWait {
180 |             try context.count(for: request)
    |                                    `- warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
181 |         }
182 |
/Applications/Xcode-26.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchRequest.h:47:12: note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 45 |
 46 | API_AVAILABLE(macosx(10.4),ios(3.0))
 47 | @interface NSFetchRequest<__covariant ResultType:id<NSFetchRequestResult>> : NSPersistentStoreRequest <NSCoding, NSCopying> {
    |            `- note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 48 | }
 49 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:31:1: warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'CoreData' as warnings
 29 |  */
 30 |
 31 | import CoreData
    | `- warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'CoreData' as warnings
 32 | import Foundation
 33 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:206:36: warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
204 |
205 |         let deletes = try context.performAndWait {
206 |             try context.count(for: request)
    |                                    `- warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
207 |         }
208 |
/Applications/Xcode-26.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchRequest.h:47:12: note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 45 |
 46 | API_AVAILABLE(macosx(10.4),ios(3.0))
 47 | @interface NSFetchRequest<__covariant ResultType:id<NSFetchRequestResult>> : NSPersistentStoreRequest <NSCoding, NSCopying> {
    |            `- note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 48 | }
 49 |
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDScheduleElement.swift:74:24: warning: capture of 'self' with non-Sendable type 'OCKCDScheduleElement' in a '@Sendable' closure [#SendableClosureCaptures]
 33 |
 34 | @objc(OCKCDScheduleElement)
 35 | class OCKCDScheduleElement: NSManagedObject {
    |       `- note: class 'OCKCDScheduleElement' does not conform to the 'Sendable' protocol
 36 |     @NSManaged var text: String?
 37 |     @NSManaged var task: OCKCDTask?
    :
 72 |         self.managedObjectContext!.performAndWait {
 73 |             scheduleElement = OCKScheduleElement(
 74 |                 start: startDate,
    |                        `- warning: capture of 'self' with non-Sendable type 'OCKCDScheduleElement' in a '@Sendable' closure [#SendableClosureCaptures]
 75 |                 end: endDate,
 76 |                 interval: interval,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDScheduleElement.swift:73:13: warning: mutation of captured var 'scheduleElement' in concurrently-executing code [#SendableClosureCaptures]
 71 |
 72 |         self.managedObjectContext!.performAndWait {
 73 |             scheduleElement = OCKScheduleElement(
    |             `- warning: mutation of captured var 'scheduleElement' in concurrently-executing code [#SendableClosureCaptures]
 74 |                 start: startDate,
 75 |                 end: endDate,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:73:21: warning: capture of 'self' with non-Sendable type 'OCKCDTask' in a '@Sendable' closure [#SendableClosureCaptures]
43 |
44 | @objc(OCKCDTask)
45 | class OCKCDTask: OCKCDTaskBase {
   |       `- note: class 'OCKCDTask' does not conform to the 'Sendable' protocol
46 |
47 |     convenience init(task: OCKTask, context: NSManagedObjectContext) {
   :
71 |         self.managedObjectContext!.performAndWait {
72 |             task = OCKTask(
73 |                 id: id,
   |                     `- warning: capture of 'self' with non-Sendable type 'OCKCDTask' in a '@Sendable' closure [#SendableClosureCaptures]
74 |                 title: title,
75 |                 carePlanUUID: carePlan?.uuid,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:72:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
70 |
71 |         self.managedObjectContext!.performAndWait {
72 |             task = OCKTask(
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
73 |                 id: id,
74 |                 title: title,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:79:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
77 |             )
78 |
79 |             task.copyVersionedValues(from: self)
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
80 |             task.instructions = instructions
81 |             task.impactsAdherence = impactsAdherence
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:80:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
78 |
79 |             task.copyVersionedValues(from: self)
80 |             task.instructions = instructions
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
81 |             task.impactsAdherence = impactsAdherence
82 |         }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:81:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
79 |             task.copyVersionedValues(from: self)
80 |             task.instructions = instructions
81 |             task.impactsAdherence = impactsAdherence
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
82 |         }
83 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+HealthKit.swift:71:17: warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 69 |                     .filtered(dateInterval: query.dateInterval, excludeTasksWithNoEvents: query.excludesTasksWithNoEvents)
 70 |
 71 |                 result = .success(tasks)
    |                 `- warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 72 |             } catch {
 73 |                 result = .failure(error)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+HealthKit.swift:73:17: warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 71 |                 result = .success(tasks)
 72 |             } catch {
 73 |                 result = .failure(error)
    |                 `- warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 74 |             }
 75 |         }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:54:37: warning: capture of 'predicate' with non-Sendable type 'NSPredicate' in a '@Sendable' closure [#SendableClosureCaptures]
 52 |                 let request = NSFetchRequest<OCKCDVersionedObject>(
 53 |                     entityName: T.entity().name!)
 54 |                 request.predicate = predicate
    |                                     `- warning: capture of 'predicate' with non-Sendable type 'NSPredicate' in a '@Sendable' closure [#SendableClosureCaptures]
 55 |                 request.sortDescriptors = sortDescriptors
 56 |                 request.fetchLimit = limit ?? 0
/Applications/Xcode-26.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPredicate.h:18:12: note: class 'NSPredicate' does not conform to the 'Sendable' protocol
16 |
17 | API_AVAILABLE(macos(10.4), ios(3.0), watchos(2.0), tvos(9.0))
18 | @interface NSPredicate : NSObject <NSSecureCoding, NSCopying> {
   |            `- note: class 'NSPredicate' does not conform to the 'Sendable' protocol
19 |     struct _predicateFlags {
20 |         unsigned int _evaluationBlocked:1;
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:55:43: warning: capture of 'sortDescriptors' with non-Sendable type '[NSSortDescriptor]' in a '@Sendable' closure [#SendableClosureCaptures]
 53 |                     entityName: T.entity().name!)
 54 |                 request.predicate = predicate
 55 |                 request.sortDescriptors = sortDescriptors
    |                                           `- warning: capture of 'sortDescriptors' with non-Sendable type '[NSSortDescriptor]' in a '@Sendable' closure [#SendableClosureCaptures]
 56 |                 request.fetchLimit = limit ?? 0
 57 |                 request.fetchOffset = offset
Swift.Array:1:23: note: generic struct 'Array' does not conform to the 'Sendable' protocol
1 | @frozen public struct Array<Element> : _DestructorSafeContainer {
  |                       `- note: generic struct 'Array' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:82:21: warning: capture of 'preInsertValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
 80 |         context.perform {
 81 |             do {
 82 |                 try preInsertValidate()
    |                     |- warning: capture of 'preInsertValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 83 |                 var result = TransactionResult<T>()
 84 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:94:21: warning: capture of 'preUpdateValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
 92 |
 93 |                 // Perform updates
 94 |                 try preUpdateValidate()
    |                     |- warning: capture of 'preUpdateValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 95 |
 96 |                 if !updates.isEmpty {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:113:21: warning: capture of 'preSaveValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
111 |                 }
112 |
113 |                 try preSaveValidate()
    |                     |- warning: capture of 'preSaveValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
114 |                 try self.context.save()
115 |                 completion(.success(result))
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:180:36: warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
178 |
179 |         let existing = try context.performAndWait {
180 |             try context.count(for: request)
    |                                    `- warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
181 |         }
182 |
/Applications/Xcode-26.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchRequest.h:47:12: note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 45 |
 46 | API_AVAILABLE(macosx(10.4),ios(3.0))
 47 | @interface NSFetchRequest<__covariant ResultType:id<NSFetchRequestResult>> : NSPersistentStoreRequest <NSCoding, NSCopying> {
    |            `- note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 48 | }
 49 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:31:1: warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'CoreData' as warnings
 29 |  */
 30 |
 31 | import CoreData
    | `- warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'CoreData' as warnings
 32 | import Foundation
 33 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:206:36: warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
204 |
205 |         let deletes = try context.performAndWait {
206 |             try context.count(for: request)
    |                                    `- warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
207 |         }
208 |
/Applications/Xcode-26.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchRequest.h:47:12: note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 45 |
 46 | API_AVAILABLE(macosx(10.4),ios(3.0))
 47 | @interface NSFetchRequest<__covariant ResultType:id<NSFetchRequestResult>> : NSPersistentStoreRequest <NSCoding, NSCopying> {
    |            `- note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 48 | }
 49 |
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDScheduleElement.swift:74:24: warning: capture of 'self' with non-Sendable type 'OCKCDScheduleElement' in a '@Sendable' closure [#SendableClosureCaptures]
 33 |
 34 | @objc(OCKCDScheduleElement)
 35 | class OCKCDScheduleElement: NSManagedObject {
    |       `- note: class 'OCKCDScheduleElement' does not conform to the 'Sendable' protocol
 36 |     @NSManaged var text: String?
 37 |     @NSManaged var task: OCKCDTask?
    :
 72 |         self.managedObjectContext!.performAndWait {
 73 |             scheduleElement = OCKScheduleElement(
 74 |                 start: startDate,
    |                        `- warning: capture of 'self' with non-Sendable type 'OCKCDScheduleElement' in a '@Sendable' closure [#SendableClosureCaptures]
 75 |                 end: endDate,
 76 |                 interval: interval,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDScheduleElement.swift:73:13: warning: mutation of captured var 'scheduleElement' in concurrently-executing code [#SendableClosureCaptures]
 71 |
 72 |         self.managedObjectContext!.performAndWait {
 73 |             scheduleElement = OCKScheduleElement(
    |             `- warning: mutation of captured var 'scheduleElement' in concurrently-executing code [#SendableClosureCaptures]
 74 |                 start: startDate,
 75 |                 end: endDate,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:73:21: warning: capture of 'self' with non-Sendable type 'OCKCDTask' in a '@Sendable' closure [#SendableClosureCaptures]
43 |
44 | @objc(OCKCDTask)
45 | class OCKCDTask: OCKCDTaskBase {
   |       `- note: class 'OCKCDTask' does not conform to the 'Sendable' protocol
46 |
47 |     convenience init(task: OCKTask, context: NSManagedObjectContext) {
   :
71 |         self.managedObjectContext!.performAndWait {
72 |             task = OCKTask(
73 |                 id: id,
   |                     `- warning: capture of 'self' with non-Sendable type 'OCKCDTask' in a '@Sendable' closure [#SendableClosureCaptures]
74 |                 title: title,
75 |                 carePlanUUID: carePlan?.uuid,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:72:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
70 |
71 |         self.managedObjectContext!.performAndWait {
72 |             task = OCKTask(
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
73 |                 id: id,
74 |                 title: title,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:79:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
77 |             )
78 |
79 |             task.copyVersionedValues(from: self)
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
80 |             task.instructions = instructions
81 |             task.impactsAdherence = impactsAdherence
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:80:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
78 |
79 |             task.copyVersionedValues(from: self)
80 |             task.instructions = instructions
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
81 |             task.impactsAdherence = impactsAdherence
82 |         }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:81:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
79 |             task.copyVersionedValues(from: self)
80 |             task.instructions = instructions
81 |             task.impactsAdherence = impactsAdherence
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
82 |         }
83 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+HealthKit.swift:71:17: warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 69 |                     .filtered(dateInterval: query.dateInterval, excludeTasksWithNoEvents: query.excludesTasksWithNoEvents)
 70 |
 71 |                 result = .success(tasks)
    |                 `- warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 72 |             } catch {
 73 |                 result = .failure(error)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+HealthKit.swift:73:17: warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 71 |                 result = .success(tasks)
 72 |             } catch {
 73 |                 result = .failure(error)
    |                 `- warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 74 |             }
 75 |         }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:54:37: warning: capture of 'predicate' with non-Sendable type 'NSPredicate' in a '@Sendable' closure [#SendableClosureCaptures]
 52 |                 let request = NSFetchRequest<OCKCDVersionedObject>(
 53 |                     entityName: T.entity().name!)
 54 |                 request.predicate = predicate
    |                                     `- warning: capture of 'predicate' with non-Sendable type 'NSPredicate' in a '@Sendable' closure [#SendableClosureCaptures]
 55 |                 request.sortDescriptors = sortDescriptors
 56 |                 request.fetchLimit = limit ?? 0
/Applications/Xcode-26.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPredicate.h:18:12: note: class 'NSPredicate' does not conform to the 'Sendable' protocol
16 |
17 | API_AVAILABLE(macos(10.4), ios(3.0), watchos(2.0), tvos(9.0))
18 | @interface NSPredicate : NSObject <NSSecureCoding, NSCopying> {
   |            `- note: class 'NSPredicate' does not conform to the 'Sendable' protocol
19 |     struct _predicateFlags {
20 |         unsigned int _evaluationBlocked:1;
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:55:43: warning: capture of 'sortDescriptors' with non-Sendable type '[NSSortDescriptor]' in a '@Sendable' closure [#SendableClosureCaptures]
 53 |                     entityName: T.entity().name!)
 54 |                 request.predicate = predicate
 55 |                 request.sortDescriptors = sortDescriptors
    |                                           `- warning: capture of 'sortDescriptors' with non-Sendable type '[NSSortDescriptor]' in a '@Sendable' closure [#SendableClosureCaptures]
 56 |                 request.fetchLimit = limit ?? 0
 57 |                 request.fetchOffset = offset
Swift.Array:1:23: note: generic struct 'Array' does not conform to the 'Sendable' protocol
1 | @frozen public struct Array<Element> : _DestructorSafeContainer {
  |                       `- note: generic struct 'Array' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:82:21: warning: capture of 'preInsertValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
 80 |         context.perform {
 81 |             do {
 82 |                 try preInsertValidate()
    |                     |- warning: capture of 'preInsertValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 83 |                 var result = TransactionResult<T>()
 84 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:94:21: warning: capture of 'preUpdateValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
 92 |
 93 |                 // Perform updates
 94 |                 try preUpdateValidate()
    |                     |- warning: capture of 'preUpdateValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 95 |
 96 |                 if !updates.isEmpty {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:113:21: warning: capture of 'preSaveValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
111 |                 }
112 |
113 |                 try preSaveValidate()
    |                     |- warning: capture of 'preSaveValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
114 |                 try self.context.save()
115 |                 completion(.success(result))
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:180:36: warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
178 |
179 |         let existing = try context.performAndWait {
180 |             try context.count(for: request)
    |                                    `- warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
181 |         }
182 |
/Applications/Xcode-26.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchRequest.h:47:12: note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 45 |
 46 | API_AVAILABLE(macosx(10.4),ios(3.0))
 47 | @interface NSFetchRequest<__covariant ResultType:id<NSFetchRequestResult>> : NSPersistentStoreRequest <NSCoding, NSCopying> {
    |            `- note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 48 | }
 49 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:31:1: warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'CoreData' as warnings
 29 |  */
 30 |
 31 | import CoreData
    | `- warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'CoreData' as warnings
 32 | import Foundation
 33 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:206:36: warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
204 |
205 |         let deletes = try context.performAndWait {
206 |             try context.count(for: request)
    |                                    `- warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
207 |         }
208 |
/Applications/Xcode-26.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchRequest.h:47:12: note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 45 |
 46 | API_AVAILABLE(macosx(10.4),ios(3.0))
 47 | @interface NSFetchRequest<__covariant ResultType:id<NSFetchRequestResult>> : NSPersistentStoreRequest <NSCoding, NSCopying> {
    |            `- note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 48 | }
 49 |
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDScheduleElement.swift:74:24: warning: capture of 'self' with non-Sendable type 'OCKCDScheduleElement' in a '@Sendable' closure [#SendableClosureCaptures]
 33 |
 34 | @objc(OCKCDScheduleElement)
 35 | class OCKCDScheduleElement: NSManagedObject {
    |       `- note: class 'OCKCDScheduleElement' does not conform to the 'Sendable' protocol
 36 |     @NSManaged var text: String?
 37 |     @NSManaged var task: OCKCDTask?
    :
 72 |         self.managedObjectContext!.performAndWait {
 73 |             scheduleElement = OCKScheduleElement(
 74 |                 start: startDate,
    |                        `- warning: capture of 'self' with non-Sendable type 'OCKCDScheduleElement' in a '@Sendable' closure [#SendableClosureCaptures]
 75 |                 end: endDate,
 76 |                 interval: interval,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDScheduleElement.swift:73:13: warning: mutation of captured var 'scheduleElement' in concurrently-executing code [#SendableClosureCaptures]
 71 |
 72 |         self.managedObjectContext!.performAndWait {
 73 |             scheduleElement = OCKScheduleElement(
    |             `- warning: mutation of captured var 'scheduleElement' in concurrently-executing code [#SendableClosureCaptures]
 74 |                 start: startDate,
 75 |                 end: endDate,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:73:21: warning: capture of 'self' with non-Sendable type 'OCKCDTask' in a '@Sendable' closure [#SendableClosureCaptures]
43 |
44 | @objc(OCKCDTask)
45 | class OCKCDTask: OCKCDTaskBase {
   |       `- note: class 'OCKCDTask' does not conform to the 'Sendable' protocol
46 |
47 |     convenience init(task: OCKTask, context: NSManagedObjectContext) {
   :
71 |         self.managedObjectContext!.performAndWait {
72 |             task = OCKTask(
73 |                 id: id,
   |                     `- warning: capture of 'self' with non-Sendable type 'OCKCDTask' in a '@Sendable' closure [#SendableClosureCaptures]
74 |                 title: title,
75 |                 carePlanUUID: carePlan?.uuid,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:72:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
70 |
71 |         self.managedObjectContext!.performAndWait {
72 |             task = OCKTask(
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
73 |                 id: id,
74 |                 title: title,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:79:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
77 |             )
78 |
79 |             task.copyVersionedValues(from: self)
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
80 |             task.instructions = instructions
81 |             task.impactsAdherence = impactsAdherence
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:80:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
78 |
79 |             task.copyVersionedValues(from: self)
80 |             task.instructions = instructions
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
81 |             task.impactsAdherence = impactsAdherence
82 |         }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:81:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
79 |             task.copyVersionedValues(from: self)
80 |             task.instructions = instructions
81 |             task.impactsAdherence = impactsAdherence
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
82 |         }
83 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+HealthKit.swift:71:17: warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 69 |                     .filtered(dateInterval: query.dateInterval, excludeTasksWithNoEvents: query.excludesTasksWithNoEvents)
 70 |
 71 |                 result = .success(tasks)
    |                 `- warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 72 |             } catch {
 73 |                 result = .failure(error)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+HealthKit.swift:73:17: warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 71 |                 result = .success(tasks)
 72 |             } catch {
 73 |                 result = .failure(error)
    |                 `- warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 74 |             }
 75 |         }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:54:37: warning: capture of 'predicate' with non-Sendable type 'NSPredicate' in a '@Sendable' closure [#SendableClosureCaptures]
 52 |                 let request = NSFetchRequest<OCKCDVersionedObject>(
 53 |                     entityName: T.entity().name!)
 54 |                 request.predicate = predicate
    |                                     `- warning: capture of 'predicate' with non-Sendable type 'NSPredicate' in a '@Sendable' closure [#SendableClosureCaptures]
 55 |                 request.sortDescriptors = sortDescriptors
 56 |                 request.fetchLimit = limit ?? 0
/Applications/Xcode-26.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPredicate.h:18:12: note: class 'NSPredicate' does not conform to the 'Sendable' protocol
16 |
17 | API_AVAILABLE(macos(10.4), ios(3.0), watchos(2.0), tvos(9.0))
18 | @interface NSPredicate : NSObject <NSSecureCoding, NSCopying> {
   |            `- note: class 'NSPredicate' does not conform to the 'Sendable' protocol
19 |     struct _predicateFlags {
20 |         unsigned int _evaluationBlocked:1;
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:55:43: warning: capture of 'sortDescriptors' with non-Sendable type '[NSSortDescriptor]' in a '@Sendable' closure [#SendableClosureCaptures]
 53 |                     entityName: T.entity().name!)
 54 |                 request.predicate = predicate
 55 |                 request.sortDescriptors = sortDescriptors
    |                                           `- warning: capture of 'sortDescriptors' with non-Sendable type '[NSSortDescriptor]' in a '@Sendable' closure [#SendableClosureCaptures]
 56 |                 request.fetchLimit = limit ?? 0
 57 |                 request.fetchOffset = offset
Swift.Array:1:23: note: generic struct 'Array' does not conform to the 'Sendable' protocol
1 | @frozen public struct Array<Element> : _DestructorSafeContainer {
  |                       `- note: generic struct 'Array' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:82:21: warning: capture of 'preInsertValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
 80 |         context.perform {
 81 |             do {
 82 |                 try preInsertValidate()
    |                     |- warning: capture of 'preInsertValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 83 |                 var result = TransactionResult<T>()
 84 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:94:21: warning: capture of 'preUpdateValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
 92 |
 93 |                 // Perform updates
 94 |                 try preUpdateValidate()
    |                     |- warning: capture of 'preUpdateValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 95 |
 96 |                 if !updates.isEmpty {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:113:21: warning: capture of 'preSaveValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
111 |                 }
112 |
113 |                 try preSaveValidate()
    |                     |- warning: capture of 'preSaveValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
114 |                 try self.context.save()
115 |                 completion(.success(result))
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:180:36: warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
178 |
179 |         let existing = try context.performAndWait {
180 |             try context.count(for: request)
    |                                    `- warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
181 |         }
182 |
/Applications/Xcode-26.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchRequest.h:47:12: note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 45 |
 46 | API_AVAILABLE(macosx(10.4),ios(3.0))
 47 | @interface NSFetchRequest<__covariant ResultType:id<NSFetchRequestResult>> : NSPersistentStoreRequest <NSCoding, NSCopying> {
    |            `- note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 48 | }
 49 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:31:1: warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'CoreData' as warnings
 29 |  */
 30 |
 31 | import CoreData
    | `- warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'CoreData' as warnings
 32 | import Foundation
 33 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:206:36: warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
204 |
205 |         let deletes = try context.performAndWait {
206 |             try context.count(for: request)
    |                                    `- warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
207 |         }
208 |
/Applications/Xcode-26.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchRequest.h:47:12: note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 45 |
 46 | API_AVAILABLE(macosx(10.4),ios(3.0))
 47 | @interface NSFetchRequest<__covariant ResultType:id<NSFetchRequestResult>> : NSPersistentStoreRequest <NSCoding, NSCopying> {
    |            `- note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 48 | }
 49 |
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDScheduleElement.swift:74:24: warning: capture of 'self' with non-Sendable type 'OCKCDScheduleElement' in a '@Sendable' closure [#SendableClosureCaptures]
 33 |
 34 | @objc(OCKCDScheduleElement)
 35 | class OCKCDScheduleElement: NSManagedObject {
    |       `- note: class 'OCKCDScheduleElement' does not conform to the 'Sendable' protocol
 36 |     @NSManaged var text: String?
 37 |     @NSManaged var task: OCKCDTask?
    :
 72 |         self.managedObjectContext!.performAndWait {
 73 |             scheduleElement = OCKScheduleElement(
 74 |                 start: startDate,
    |                        `- warning: capture of 'self' with non-Sendable type 'OCKCDScheduleElement' in a '@Sendable' closure [#SendableClosureCaptures]
 75 |                 end: endDate,
 76 |                 interval: interval,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDScheduleElement.swift:73:13: warning: mutation of captured var 'scheduleElement' in concurrently-executing code [#SendableClosureCaptures]
 71 |
 72 |         self.managedObjectContext!.performAndWait {
 73 |             scheduleElement = OCKScheduleElement(
    |             `- warning: mutation of captured var 'scheduleElement' in concurrently-executing code [#SendableClosureCaptures]
 74 |                 start: startDate,
 75 |                 end: endDate,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:73:21: warning: capture of 'self' with non-Sendable type 'OCKCDTask' in a '@Sendable' closure [#SendableClosureCaptures]
43 |
44 | @objc(OCKCDTask)
45 | class OCKCDTask: OCKCDTaskBase {
   |       `- note: class 'OCKCDTask' does not conform to the 'Sendable' protocol
46 |
47 |     convenience init(task: OCKTask, context: NSManagedObjectContext) {
   :
71 |         self.managedObjectContext!.performAndWait {
72 |             task = OCKTask(
73 |                 id: id,
   |                     `- warning: capture of 'self' with non-Sendable type 'OCKCDTask' in a '@Sendable' closure [#SendableClosureCaptures]
74 |                 title: title,
75 |                 carePlanUUID: carePlan?.uuid,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:72:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
70 |
71 |         self.managedObjectContext!.performAndWait {
72 |             task = OCKTask(
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
73 |                 id: id,
74 |                 title: title,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:79:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
77 |             )
78 |
79 |             task.copyVersionedValues(from: self)
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
80 |             task.instructions = instructions
81 |             task.impactsAdherence = impactsAdherence
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:80:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
78 |
79 |             task.copyVersionedValues(from: self)
80 |             task.instructions = instructions
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
81 |             task.impactsAdherence = impactsAdherence
82 |         }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:81:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
79 |             task.copyVersionedValues(from: self)
80 |             task.instructions = instructions
81 |             task.impactsAdherence = impactsAdherence
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
82 |         }
83 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+HealthKit.swift:71:17: warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 69 |                     .filtered(dateInterval: query.dateInterval, excludeTasksWithNoEvents: query.excludesTasksWithNoEvents)
 70 |
 71 |                 result = .success(tasks)
    |                 `- warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 72 |             } catch {
 73 |                 result = .failure(error)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+HealthKit.swift:73:17: warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 71 |                 result = .success(tasks)
 72 |             } catch {
 73 |                 result = .failure(error)
    |                 `- warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 74 |             }
 75 |         }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:54:37: warning: capture of 'predicate' with non-Sendable type 'NSPredicate' in a '@Sendable' closure [#SendableClosureCaptures]
 52 |                 let request = NSFetchRequest<OCKCDVersionedObject>(
 53 |                     entityName: T.entity().name!)
 54 |                 request.predicate = predicate
    |                                     `- warning: capture of 'predicate' with non-Sendable type 'NSPredicate' in a '@Sendable' closure [#SendableClosureCaptures]
 55 |                 request.sortDescriptors = sortDescriptors
 56 |                 request.fetchLimit = limit ?? 0
/Applications/Xcode-26.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPredicate.h:18:12: note: class 'NSPredicate' does not conform to the 'Sendable' protocol
16 |
17 | API_AVAILABLE(macos(10.4), ios(3.0), watchos(2.0), tvos(9.0))
18 | @interface NSPredicate : NSObject <NSSecureCoding, NSCopying> {
   |            `- note: class 'NSPredicate' does not conform to the 'Sendable' protocol
19 |     struct _predicateFlags {
20 |         unsigned int _evaluationBlocked:1;
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:55:43: warning: capture of 'sortDescriptors' with non-Sendable type '[NSSortDescriptor]' in a '@Sendable' closure [#SendableClosureCaptures]
 53 |                     entityName: T.entity().name!)
 54 |                 request.predicate = predicate
 55 |                 request.sortDescriptors = sortDescriptors
    |                                           `- warning: capture of 'sortDescriptors' with non-Sendable type '[NSSortDescriptor]' in a '@Sendable' closure [#SendableClosureCaptures]
 56 |                 request.fetchLimit = limit ?? 0
 57 |                 request.fetchOffset = offset
Swift.Array:1:23: note: generic struct 'Array' does not conform to the 'Sendable' protocol
1 | @frozen public struct Array<Element> : _DestructorSafeContainer {
  |                       `- note: generic struct 'Array' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:82:21: warning: capture of 'preInsertValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
 80 |         context.perform {
 81 |             do {
 82 |                 try preInsertValidate()
    |                     |- warning: capture of 'preInsertValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 83 |                 var result = TransactionResult<T>()
 84 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:94:21: warning: capture of 'preUpdateValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
 92 |
 93 |                 // Perform updates
 94 |                 try preUpdateValidate()
    |                     |- warning: capture of 'preUpdateValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 95 |
 96 |                 if !updates.isEmpty {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:113:21: warning: capture of 'preSaveValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
111 |                 }
112 |
113 |                 try preSaveValidate()
    |                     |- warning: capture of 'preSaveValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
114 |                 try self.context.save()
115 |                 completion(.success(result))
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:180:36: warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
178 |
179 |         let existing = try context.performAndWait {
180 |             try context.count(for: request)
    |                                    `- warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
181 |         }
182 |
/Applications/Xcode-26.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchRequest.h:47:12: note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 45 |
 46 | API_AVAILABLE(macosx(10.4),ios(3.0))
 47 | @interface NSFetchRequest<__covariant ResultType:id<NSFetchRequestResult>> : NSPersistentStoreRequest <NSCoding, NSCopying> {
    |            `- note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 48 | }
 49 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:31:1: warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'CoreData' as warnings
 29 |  */
 30 |
 31 | import CoreData
    | `- warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'CoreData' as warnings
 32 | import Foundation
 33 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:206:36: warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
204 |
205 |         let deletes = try context.performAndWait {
206 |             try context.count(for: request)
    |                                    `- warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
207 |         }
208 |
/Applications/Xcode-26.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchRequest.h:47:12: note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 45 |
 46 | API_AVAILABLE(macosx(10.4),ios(3.0))
 47 | @interface NSFetchRequest<__covariant ResultType:id<NSFetchRequestResult>> : NSPersistentStoreRequest <NSCoding, NSCopying> {
    |            `- note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 48 | }
 49 |
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
[637/1069] Compiling ModelsR4 CodeSystemExpressionLanguage.swift
[638/1069] Compiling ModelsR4 CodeSystemExtensionContextType.swift
[639/1069] Compiling ModelsR4 CodeSystemFHIRDefinedConceptProperties.swift
[640/1069] Compiling ModelsR4 CodeSystemFHIRDeviceStatus.swift
[641/1069] Compiling ModelsR4 CodeSystemFHIRDeviceStatusReason.swift
[642/1069] Compiling ModelsR4 CodeSystemFHIRRestfulInteractions.swift
[643/1069] Compiling ModelsR4 CodeSystemFHIRSubstanceStatus.swift
[644/1069] Compiling ModelsR4 CodeSystemFailureAction.swift
[645/1069] Compiling ModelsR4 CodeSystemFamilyHistoryAbsentReason.swift
[646/1069] Compiling ModelsR4 CodeSystemFamilyHistoryStatus.swift
[647/1069] Compiling ModelsR4 CodeSystemFeedingDeviceCodes.swift
[648/1069] Compiling ModelsR4 CodeSystemFilterOperator.swift
[649/1069] Compiling ModelsR4 CodeSystemFinancialResourceStatusCodes.swift
[650/1069] Compiling ModelsR4 CodeSystemFinancialTaskCodes.swift
[651/1069] Compiling ModelsR4 CodeSystemFinancialTaskInputTypeCodes.swift
[652/1069] Compiling ModelsR4 CodeSystemFlagCategory.swift
[653/1069] Compiling ModelsR4 CodeSystemFlagPriorityCodes.swift
[654/1069] Compiling ModelsR4 CodeSystemFlagStatus.swift
[655/1069] Compiling ModelsR4 CodeSystemGenderIdentity.swift
[656/1069] Compiling ModelsR4 CodeSystemGenderStatus.swift
[657/1069] Compiling ModelsR4 CodeSystemGoalAcceptanceStatus.swift
[658/1069] Compiling ModelsR4 CodeSystemGoalAchievementStatus.swift
[659/1069] Compiling ModelsR4 CodeSystemGoalCategory.swift
[660/1069] Compiling ModelsR4 CodeSystemGoalLifecycleStatus.swift
[661/1093] Compiling ModelsR4 CodeSystemGoalPriority.swift
[662/1093] Compiling ModelsR4 CodeSystemGoalRelationshipType.swift
[663/1093] Compiling ModelsR4 CodeSystemGoalStatusReason.swift
[664/1093] Compiling ModelsR4 CodeSystemGraphCompartmentRule.swift
[665/1093] Compiling ModelsR4 CodeSystemGraphCompartmentUse.swift
[666/1093] Compiling ModelsR4 CodeSystemGroupMeasure.swift
[667/1093] Compiling ModelsR4 CodeSystemGroupType.swift
[668/1093] Compiling ModelsR4 CodeSystemGuidanceResponseStatus.swift
[669/1093] Compiling ModelsR4 CodeSystemGuidePageGeneration.swift
[670/1093] Compiling ModelsR4 CodeSystemGuideParameterCode.swift
[671/1093] Compiling ModelsR4 CodeSystemHL7Workgroup.swift
[672/1093] Compiling ModelsR4 CodeSystemHTTPVerb.swift
[673/1093] Compiling ModelsR4 CodeSystemHandlingConditionSet.swift
[674/1093] Compiling ModelsR4 CodeSystemHumanNameAssemblyOrder.swift
[675/1093] Compiling ModelsR4 CodeSystemISO210892017HealthRecordLifecycleEvents.swift
[676/1093] Compiling ModelsR4 CodeSystemIdentifierUse.swift
[677/1093] Compiling ModelsR4 CodeSystemIdentityAssuranceLevel.swift
[678/1093] Compiling ModelsR4 CodeSystemImagingStudyStatus.swift
[679/1093] Compiling ModelsR4 CodeSystemImmunizationEvaluationDoseStatusCodes.swift
[680/1093] Compiling ModelsR4 CodeSystemImmunizationEvaluationDoseStatusReasonCodes.swift
[681/1093] Compiling ModelsR4 CodeSystemImmunizationFundingSource.swift
[682/1093] Compiling ModelsR4 CodeSystemImmunizationOriginCodes.swift
[683/1093] Compiling ModelsR4 CodeSystemImmunizationProgramEligibility.swift
[684/1093] Compiling ModelsR4 CodeSystemImmunizationRecommendationStatusCodes.swift
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
[694/1117] Emitting module ModelsDSTU2
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
[729/1117] Compiling ModelsR4 CodeSystemImmunizationSubpotentReason.swift
[730/1117] Compiling ModelsR4 CodeSystemImplantStatus.swift
[731/1117] Compiling ModelsR4 CodeSystemIndicator.swift
[732/1117] Compiling ModelsR4 CodeSystemInterventionCodes.swift
[733/1117] Compiling ModelsR4 CodeSystemInvoicePriceComponentType.swift
[734/1117] Compiling ModelsR4 CodeSystemInvoiceStatus.swift
[735/1117] Compiling ModelsR4 CodeSystemIssueSeverity.swift
[736/1117] Compiling ModelsR4 CodeSystemIssueType.swift
[737/1117] Compiling ModelsR4 CodeSystemKnowledgeResourceType.swift
[738/1117] Compiling ModelsR4 CodeSystemLanguagePreferenceType.swift
[739/1117] Compiling ModelsR4 CodeSystemLibraryType.swift
[740/1117] Compiling ModelsR4 CodeSystemLinkType.swift
[741/1117] Compiling ModelsR4 CodeSystemLinkageType.swift
[742/1117] Compiling ModelsR4 CodeSystemListEmptyReasons.swift
[743/1117] Compiling ModelsR4 CodeSystemListMode.swift
[744/1117] Compiling ModelsR4 CodeSystemListOrderCodes.swift
[745/1117] Compiling ModelsR4 CodeSystemListStatus.swift
[746/1117] Compiling ModelsR4 CodeSystemLocationMode.swift
[747/1117] Compiling ModelsR4 CodeSystemLocationStatus.swift
[748/1117] Compiling ModelsR4 CodeSystemLocationType.swift
[749/1117] Compiling ModelsR4 CodeSystemMatchGrade.swift
[750/1117] Compiling ModelsR4 CodeSystemMaxOccurs.swift
[751/1117] Compiling ModelsR4 CodeSystemMeasureDataUsage.swift
[752/1117] Compiling ModelsR4 CodeSystemMeasureImprovementNotation.swift
[753/1141] Compiling ModelsR4 CodeSystemMeasurePopulationType.swift
[754/1141] Compiling ModelsR4 CodeSystemMeasureReportStatus.swift
[755/1141] Compiling ModelsR4 CodeSystemMeasureReportType.swift
[756/1141] Compiling ModelsR4 CodeSystemMeasureScoring.swift
[757/1141] Compiling ModelsR4 CodeSystemMeasureType.swift
[758/1141] Compiling ModelsR4 CodeSystemMediaModality.swift
[759/1141] Compiling ModelsR4 CodeSystemMediaType.swift
[760/1141] Compiling ModelsR4 CodeSystemMedicationAdministrationCategoryCodes.swift
[761/1141] Compiling ModelsR4 CodeSystemMedicationAdministrationPerformerFunctionCodes.swift
[762/1141] Compiling ModelsR4 CodeSystemMedicationAdministrationStatusCodes.swift
[763/1141] Compiling ModelsR4 CodeSystemMedicationDispenseCategoryCodes.swift
[764/1141] Compiling ModelsR4 CodeSystemMedicationDispensePerformerFunctionCodes.swift
[765/1141] Compiling ModelsR4 CodeSystemMedicationDispenseStatusCodes.swift
[766/1141] Compiling ModelsR4 CodeSystemMedicationDispenseStatusReasonCodes.swift
[767/1141] Compiling ModelsR4 CodeSystemMedicationKnowledgeCharacteristicCodes.swift
[768/1141] Compiling ModelsR4 CodeSystemMedicationKnowledgePackageTypeCodes.swift
[769/1141] Compiling ModelsR4 CodeSystemMedicationKnowledgeStatusCodes.swift
[770/1141] Compiling ModelsR4 CodeSystemMedicationRequestCategoryCodes.swift
[771/1141] Compiling ModelsR4 CodeSystemMedicationRequestCourseOfTherapyCodes.swift
[772/1141] Compiling ModelsR4 CodeSystemMedicationRequestIntent.swift
[773/1141] Compiling ModelsR4 CodeSystemMedicationRequestStatusReasonCodes.swift
[774/1141] Compiling ModelsR4 CodeSystemMedicationStatementCategoryCodes.swift
[775/1141] Compiling ModelsR4 CodeSystemMedicationStatementStatusCodes.swift
[776/1141] Compiling ModelsR4 CodeSystemMedicationStatusCodes.swift
[777/1165] Compiling ModelsR4 CodeSystemOrientationType.swift
[778/1165] Compiling ModelsR4 CodeSystemParticipantRequired.swift
[779/1165] Compiling ModelsR4 CodeSystemParticipantType.swift
[780/1165] Compiling ModelsR4 CodeSystemParticipationStatus.swift
[781/1165] Compiling ModelsR4 CodeSystemPayeeResourceType.swift
[782/1165] Compiling ModelsR4 CodeSystemPaymentAdjustmentReasonCodes.swift
[783/1165] Compiling ModelsR4 CodeSystemPaymentStatusCodes.swift
[784/1165] Compiling ModelsR4 CodeSystemPaymentTypeCodes.swift
[785/1165] Compiling ModelsR4 CodeSystemPerformerRoleCodes.swift
[786/1165] Compiling ModelsR4 CodeSystemPlanDefinitionType.swift
[787/1165] Compiling ModelsR4 CodeSystemPractitionerRoleCodes.swift
[788/1165] Compiling ModelsR4 CodeSystemPractitionerSpecialty.swift
[789/1165] Compiling ModelsR4 CodeSystemPrecisionEstimateType.swift
[790/1165] Compiling ModelsR4 CodeSystemPrimarySourceType.swift
[791/1165] Compiling ModelsR4 CodeSystemProcedureDeviceActionCodes.swift
[792/1165] Compiling ModelsR4 CodeSystemProcedureProgressStatusCodes.swift
[793/1165] Compiling ModelsR4 CodeSystemProcessPriorityCodes.swift
[794/1165] Compiling ModelsR4 CodeSystemPropertyRepresentation.swift
[795/1165] Compiling ModelsR4 CodeSystemPropertyType.swift
[796/1165] Compiling ModelsR4 CodeSystemProvenanceEntityRole.swift
[797/1165] Compiling ModelsR4 CodeSystemProvenanceParticipantRole.swift
[798/1165] Compiling ModelsR4 CodeSystemProvenanceParticipantType.swift
[799/1165] Compiling ModelsR4 CodeSystemPublicationStatus.swift
[800/1165] Compiling ModelsR4 CodeSystemPushTypeAvailable.swift
[801/1189] Compiling ModelsR4 CodeSystemMedicationrequestStatus.swift
[802/1189] Compiling ModelsR4 CodeSystemMessageSignificanceCategory.swift
[803/1189] Compiling ModelsR4 CodeSystemMessageTransport.swift
[804/1189] Compiling ModelsR4 CodeSystemMessageheaderResponseRequest.swift
[805/1189] Compiling ModelsR4 CodeSystemMissingToothReasonCodes.swift
[806/1189] Compiling ModelsR4 CodeSystemModifierTypeCodes.swift
[807/1189] Compiling ModelsR4 CodeSystemNHINPurposeOfUse.swift
[808/1189] Compiling ModelsR4 CodeSystemNameUse.swift
[809/1189] Compiling ModelsR4 CodeSystemNamingSystemIdentifierType.swift
[810/1189] Compiling ModelsR4 CodeSystemNamingSystemType.swift
[811/1189] Compiling ModelsR4 CodeSystemNarrativeStatus.swift
[812/1189] Compiling ModelsR4 CodeSystemNeed.swift
[813/1189] Compiling ModelsR4 CodeSystemNetworkTypeCodes.swift
[814/1189] Compiling ModelsR4 CodeSystemNoteType.swift
[815/1189] Compiling ModelsR4 CodeSystemObservationCategoryCodes.swift
[816/1189] Compiling ModelsR4 CodeSystemObservationDataType.swift
[817/1189] Compiling ModelsR4 CodeSystemObservationRangeCategory.swift
[818/1189] Compiling ModelsR4 CodeSystemObservationReferenceRangeMeaningCodes.swift
[819/1189] Compiling ModelsR4 CodeSystemObservationStatus.swift
[820/1189] Compiling ModelsR4 CodeSystemOperationKind.swift
[821/1189] Compiling ModelsR4 CodeSystemOperationOutcomeCodes.swift
[822/1189] Compiling ModelsR4 CodeSystemOperationParameterUse.swift
[823/1189] Compiling ModelsR4 CodeSystemOrganizationAffiliationRole.swift
[824/1189] Compiling ModelsR4 CodeSystemOrganizationType.swift
[897/1213] Compiling ModelsR4 CodeSystemQualityOfEvidenceRating.swift
[898/1213] Compiling ModelsR4 CodeSystemQualityType.swift
[899/1213] Compiling ModelsR4 CodeSystemQuantityComparator.swift
[900/1213] Compiling ModelsR4 CodeSystemQuestionnaireItemOperator.swift
[901/1213] Compiling ModelsR4 CodeSystemQuestionnaireItemType.swift
[902/1213] Compiling ModelsR4 CodeSystemQuestionnaireItemUIControlCodes.swift
[903/1213] Compiling ModelsR4 CodeSystemQuestionnaireItemUsageMode.swift
[904/1213] Compiling ModelsR4 CodeSystemQuestionnaireResponseStatus.swift
[905/1213] Compiling ModelsR4 CodeSystemQuestionnaireTextCategories.swift
[906/1213] Compiling ModelsR4 CodeSystemReasonMedicationGivenCodes.swift
[907/1213] Compiling ModelsR4 CodeSystemReferenceHandlingPolicy.swift
[908/1213] Compiling ModelsR4 CodeSystemReferenceVersionRules.swift
[909/1213] Compiling ModelsR4 CodeSystemReferralMethod.swift
[910/1213] Compiling ModelsR4 CodeSystemRejectionCriterion.swift
[911/1213] Compiling ModelsR4 CodeSystemRelatedArtifactType.swift
[912/1213] Compiling ModelsR4 CodeSystemRepositoryType.swift
[913/1213] Compiling ModelsR4 CodeSystemRequestIntent.swift
[914/1213] Compiling ModelsR4 CodeSystemRequestPriority.swift
[915/1213] Compiling ModelsR4 CodeSystemRequestResourceType.swift
[916/1213] Compiling ModelsR4 CodeSystemRequestStatus.swift
[917/1213] Compiling ModelsR4 CodeSystemResearchElementType.swift
[918/1213] Compiling ModelsR4 CodeSystemResearchStudyObjectiveType.swift
[919/1213] Compiling ModelsR4 CodeSystemResearchStudyPhase.swift
[920/1213] Compiling ModelsR4 CodeSystemResearchStudyPrimaryPurposeType.swift
[921/1237] Compiling ModelsR4 CodeSystemResearchStudyReasonStopped.swift
[922/1237] Compiling ModelsR4 CodeSystemResearchStudyStatus.swift
[923/1237] Compiling ModelsR4 CodeSystemResearchSubjectStatus.swift
[924/1237] Compiling ModelsR4 CodeSystemResourceSecurityCategory.swift
[925/1237] Compiling ModelsR4 CodeSystemResourceType.swift
[926/1237] Compiling ModelsR4 CodeSystemResourceValidationMode.swift
[927/1237] Compiling ModelsR4 CodeSystemResourceVersionPolicy.swift
[928/1237] Compiling ModelsR4 CodeSystemResponseType.swift
[929/1237] Compiling ModelsR4 CodeSystemRestfulCapabilityMode.swift
[930/1237] Compiling ModelsR4 CodeSystemRestfulSecurityService.swift
[931/1237] Compiling ModelsR4 CodeSystemRiskEstimateType.swift
[932/1237] Compiling ModelsR4 CodeSystemRiskProbability.swift
[933/1237] Compiling ModelsR4 CodeSystemSNOMEDCTReasonMedicationNotGivenCodes.swift
[934/1237] Compiling ModelsR4 CodeSystemSearchComparator.swift
[935/1237] Compiling ModelsR4 CodeSystemSearchEntryMode.swift
[936/1237] Compiling ModelsR4 CodeSystemSearchModifierCode.swift
[937/1237] Compiling ModelsR4 CodeSystemSearchParamType.swift
[938/1237] Compiling ModelsR4 CodeSystemSequenceStatus.swift
[939/1237] Compiling ModelsR4 CodeSystemSequenceType.swift
[940/1237] Compiling ModelsR4 CodeSystemServiceProvisionConditions.swift
[941/1237] Compiling ModelsR4 CodeSystemSlicingRules.swift
[942/1237] Compiling ModelsR4 CodeSystemSlotStatus.swift
[943/1237] Compiling ModelsR4 CodeSystemSmartCapabilities.swift
[944/1237] Compiling ModelsR4 CodeSystemSortDirection.swift
[1043/1261] Emitting module ModelsR4
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
[1187/1453] Compiling ModelsR4 CodeSystemSpecialArrangements.swift
[1188/1453] Compiling ModelsR4 CodeSystemSpecialValues.swift
[1189/1453] Compiling ModelsR4 CodeSystemSpecimenContainedPreference.swift
[1190/1453] Compiling ModelsR4 CodeSystemSpecimenStatus.swift
[1191/1453] Compiling ModelsR4 CodeSystemStandardsStatus.swift
[1192/1453] Compiling ModelsR4 CodeSystemStatus.swift
[1193/1453] Compiling ModelsR4 CodeSystemStrandType.swift
[1194/1453] Compiling ModelsR4 CodeSystemStrengthOfRecommendationRating.swift
[1195/1453] Compiling ModelsR4 CodeSystemStructureDefinitionKind.swift
[1196/1453] Compiling ModelsR4 CodeSystemStructureMapContextType.swift
[1197/1453] Compiling ModelsR4 CodeSystemStructureMapGroupTypeMode.swift
[1198/1453] Compiling ModelsR4 CodeSystemStructureMapInputMode.swift
[1199/1453] Compiling ModelsR4 CodeSystemStructureMapModelMode.swift
[1200/1453] Compiling ModelsR4 CodeSystemStructureMapSourceListMode.swift
[1201/1453] Compiling ModelsR4 CodeSystemStructureMapTargetListMode.swift
[1202/1453] Compiling ModelsR4 CodeSystemStructureMapTransform.swift
[1203/1453] Compiling ModelsR4 CodeSystemStudyType.swift
[1204/1453] Compiling ModelsR4 CodeSystemSubscriberRelationshipCodes.swift
[1205/1453] Compiling ModelsR4 CodeSystemSubscriptionChannelType.swift
[1206/1453] Compiling ModelsR4 CodeSystemSubscriptionStatus.swift
[1207/1453] Compiling ModelsR4 CodeSystemSubscriptionTag.swift
[1208/1453] Compiling ModelsR4 CodeSystemSubstanceCategoryCodes.swift
[1209/1453] Compiling ModelsR4 CodeSystemSupplyDeliveryStatus.swift
[1210/1453] Compiling ModelsR4 CodeSystemSupplyItemType.swift
[1211/1453] Compiling ModelsR4 CodeSystemSupplyRequestReason.swift
[1212/1453] Compiling ModelsR4 CodeSystemSupplyRequestStatus.swift
[1213/1453] Compiling ModelsR4 CodeSystemSupplyType.swift
[1214/1453] Compiling ModelsR4 CodeSystemSurfaceCodes.swift
[1215/1453] Compiling ModelsR4 CodeSystemSynthesisType.swift
[1216/1453] Compiling ModelsR4 CodeSystemTaskCode.swift
[1217/1453] Compiling ModelsR4 CodeSystemTaskIntent.swift
[1218/1453] Compiling ModelsR4 CodeSystemTaskStatus.swift
[1219/1453] Compiling ModelsR4 CodeSystemTemplateStatusCodeLifeCycle.swift
[1220/1453] Compiling ModelsR4 CodeSystemTestReportActionResult.swift
[1221/1453] Compiling ModelsR4 CodeSystemTestReportParticipantType.swift
[1222/1453] Compiling ModelsR4 CodeSystemTestReportResult.swift
[1223/1453] Compiling ModelsR4 CodeSystemTestReportStatus.swift
[1224/1453] Compiling ModelsR4 CodeSystemTestScriptOperationCode.swift
[1225/1453] Compiling ModelsR4 CodeSystemTestScriptProfileDestinationType.swift
[1226/1453] Compiling ModelsR4 CodeSystemTestScriptProfileOriginType.swift
[1227/1453] Compiling ModelsR4 CodeSystemTestScriptRequestMethodCode.swift
[1228/1453] Compiling ModelsR4 CodeSystemTransactionMode.swift
[1229/1453] Compiling ModelsR4 CodeSystemTriggerType.swift
[1230/1453] Compiling ModelsR4 CodeSystemTypeDerivationRule.swift
[1231/1453] Compiling ModelsR4 CodeSystemUDICodes.swift
[1232/1453] Compiling ModelsR4 CodeSystemUDIEntryType.swift
[1233/1453] Compiling ModelsR4 CodeSystemUnitTypeCodes.swift
[1234/1453] Compiling ModelsR4 CodeSystemUnknownContentCode.swift
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
[1244/1453] Compiling ModelsR4 CodeSystemUsageContextType.swift
[1245/1453] Compiling ModelsR4 CodeSystemUse.swift
[1246/1453] Compiling ModelsR4 CodeSystemValidationProcess.swift
[1247/1453] Compiling ModelsR4 CodeSystemValidationStatus.swift
[1248/1453] Compiling ModelsR4 CodeSystemValidationType.swift
[1249/1453] Compiling ModelsR4 CodeSystemVerificationresultCommunicationMethod.swift
[1250/1453] Compiling ModelsR4 CodeSystemVisionBase.swift
[1251/1453] Compiling ModelsR4 CodeSystemVisionEyes.swift
[1252/1453] Compiling ModelsR4 CodeSystemXPathUsageType.swift
[1253/1453] Compiling ModelsR4 CodeableConcept.swift
[1254/1453] Compiling ModelsR4 Coding.swift
[1255/1453] Compiling ModelsR4 Communication.swift
[1256/1453] Compiling ModelsR4 CommunicationRequest.swift
[1257/1453] Compiling ModelsR4 CompartmentDefinition.swift
[1258/1453] Compiling ModelsR4 Composition.swift
[1259/1453] Compiling ModelsR4 ConceptMap.swift
[1260/1453] Compiling ModelsR4 Condition.swift
[1261/1453] Compiling ModelsR4 Consent.swift
[1262/1453] Compiling ModelsR4 ContactDetail.swift
[1263/1453] Compiling ModelsR4 ContactPoint.swift
[1264/1453] Compiling ModelsR4 Contract.swift
[1265/1453] Compiling ModelsR4 Contributor.swift
[1266/1453] Compiling ModelsR4 Count.swift
[1267/1453] Compiling ModelsR4 Coverage.swift
[1268/1453] Compiling ModelsR4 Endpoint.swift
[1269/1453] Compiling ModelsR4 EnrollmentRequest.swift
[1270/1453] Compiling ModelsR4 EnrollmentResponse.swift
[1271/1453] Compiling ModelsR4 EpisodeOfCare.swift
[1272/1453] Compiling ModelsR4 EventDefinition.swift
[1273/1453] Compiling ModelsR4 Evidence.swift
[1274/1453] Compiling ModelsR4 EvidenceVariable.swift
[1275/1453] Compiling ModelsR4 ExampleScenario.swift
[1276/1453] Compiling ModelsR4 ExplanationOfBenefit.swift
[1277/1453] Compiling ModelsR4 Expression.swift
[1278/1453] Compiling ModelsR4 Extension.swift
[1279/1453] Compiling ModelsR4 FHIRAbstractResource.swift
[1280/1453] Compiling ModelsR4 FHIRBool.swift
[1281/1453] Compiling ModelsR4 FHIRDate+NSDate.swift
[1282/1453] Compiling ModelsR4 FHIRDate.swift
[1283/1453] Compiling ModelsR4 FHIRDecimal.swift
[1284/1453] Compiling ModelsR4 FHIRInteger.swift
[1285/1453] Compiling ModelsR4 FHIRPositiveInteger.swift
[1286/1453] Compiling ModelsR4 FHIRPrimitive.swift
[1287/1453] Compiling ModelsR4 FHIRString.swift
[1288/1453] Compiling ModelsR4 FHIRTime+NSDate.swift
[1289/1453] Compiling ModelsR4 FHIRTime.swift
[1290/1453] Compiling ModelsR4 FHIRURI.swift
[1291/1453] Compiling ModelsR4 FHIRUnsignedInteger.swift
[1292/1453] Compiling ModelsR4 FamilyMemberHistory.swift
[1293/1453] Compiling ModelsR4 Flag.swift
[1294/1453] Compiling ModelsR4 Goal.swift
[1295/1453] Compiling ModelsR4 GraphDefinition.swift
[1296/1453] Compiling ModelsR4 Group.swift
[1297/1453] Compiling ModelsR4 GuidanceResponse.swift
[1298/1453] Compiling ModelsR4 HealthcareService.swift
[1299/1453] Compiling ModelsR4 HumanName.swift
[1300/1453] Compiling ModelsR4 Identifier.swift
[1301/1453] Compiling ModelsR4 ImagingStudy.swift
[1302/1453] Compiling ModelsR4 Immunization.swift
[1303/1453] Compiling ModelsR4 ImmunizationEvaluation.swift
[1304/1453] Compiling ModelsR4 ImmunizationRecommendation.swift
[1305/1453] Compiling ModelsR4 ImplementationGuide.swift
[1306/1453] Compiling ModelsR4 Instant+NSDate.swift
[1307/1453] Compiling ModelsR4 Instant.swift
[1308/1453] Compiling ModelsR4 InstantDate.swift
[1309/1453] Compiling ModelsR4 InsurancePlan.swift
[1310/1453] Compiling ModelsR4 Invoice.swift
[1311/1453] Compiling ModelsR4 Library.swift
[1312/1453] Compiling ModelsR4 Linkage.swift
[1313/1453] Compiling ModelsR4 List.swift
[1314/1453] Compiling ModelsR4 Location.swift
[1315/1453] Compiling ModelsR4 MarketingStatus.swift
[1316/1453] Compiling ModelsR4 NamingSystem.swift
[1317/1453] Compiling ModelsR4 Narrative.swift
[1318/1453] Compiling ModelsR4 NutritionOrder.swift
[1319/1453] Compiling ModelsR4 Observation.swift
[1320/1453] Compiling ModelsR4 ObservationDefinition.swift
[1321/1453] Compiling ModelsR4 OperationDefinition.swift
[1322/1453] Compiling ModelsR4 OperationOutcome.swift
[1323/1453] Compiling ModelsR4 Organization.swift
[1324/1453] Compiling ModelsR4 OrganizationAffiliation.swift
[1325/1453] Compiling ModelsR4 ParameterDefinition.swift
[1326/1453] Compiling ModelsR4 Parameters.swift
[1327/1453] Compiling ModelsR4 Patient.swift
[1328/1453] Compiling ModelsR4 PaymentNotice.swift
[1329/1453] Compiling ModelsR4 PaymentReconciliation.swift
[1330/1453] Compiling ModelsR4 Period.swift
[1331/1453] Compiling ModelsR4 Person.swift
[1332/1453] Compiling ModelsR4 PlanDefinition.swift
[1333/1453] Compiling ModelsR4 Population.swift
[1334/1453] Compiling ModelsR4 Practitioner.swift
[1335/1453] Compiling ModelsR4 PractitionerRole.swift
[1336/1453] Compiling ModelsR4 Procedure.swift
[1337/1453] Compiling ModelsR4 ProdCharacteristic.swift
[1338/1453] Compiling ModelsR4 ProductShelfLife.swift
[1339/1453] Compiling ModelsR4 Provenance.swift
[1340/1453] Compiling ModelsR4 Measure.swift
[1341/1453] Compiling ModelsR4 MeasureReport.swift
[1342/1453] Compiling ModelsR4 Media.swift
[1343/1453] Compiling ModelsR4 Medication.swift
[1344/1453] Compiling ModelsR4 MedicationAdministration.swift
[1345/1453] Compiling ModelsR4 MedicationDispense.swift
[1346/1453] Compiling ModelsR4 MedicationKnowledge.swift
[1347/1453] Compiling ModelsR4 MedicationRequest.swift
[1348/1453] Compiling ModelsR4 MedicationStatement.swift
[1349/1453] Compiling ModelsR4 MedicinalProduct.swift
[1350/1453] Compiling ModelsR4 MedicinalProductAuthorization.swift
[1351/1453] Compiling ModelsR4 MedicinalProductContraindication.swift
[1352/1453] Compiling ModelsR4 MedicinalProductIndication.swift
[1353/1453] Compiling ModelsR4 MedicinalProductIngredient.swift
[1354/1453] Compiling ModelsR4 MedicinalProductInteraction.swift
[1355/1453] Compiling ModelsR4 MedicinalProductManufactured.swift
[1356/1453] Compiling ModelsR4 MedicinalProductPackaged.swift
[1357/1453] Compiling ModelsR4 MedicinalProductPharmaceutical.swift
[1358/1453] Compiling ModelsR4 MedicinalProductUndesirableEffect.swift
[1359/1453] Compiling ModelsR4 MessageDefinition.swift
[1360/1453] Compiling ModelsR4 MessageHeader.swift
[1361/1453] Compiling ModelsR4 Meta.swift
[1362/1453] Compiling ModelsR4 MolecularSequence.swift
[1363/1453] Compiling ModelsR4 Money.swift
[1364/1453] Compiling ModelsR4 CoverageEligibilityRequest.swift
[1365/1453] Compiling ModelsR4 CoverageEligibilityResponse.swift
[1366/1453] Compiling ModelsR4 DataRequirement.swift
[1367/1453] Compiling ModelsR4 DateTime+NSDate.swift
[1368/1453] Compiling ModelsR4 DateTime.swift
[1369/1453] Compiling ModelsR4 DetectedIssue.swift
[1370/1453] Compiling ModelsR4 Device.swift
[1371/1453] Compiling ModelsR4 DeviceDefinition.swift
[1372/1453] Compiling ModelsR4 DeviceMetric.swift
[1373/1453] Compiling ModelsR4 DeviceRequest.swift
[1374/1453] Compiling ModelsR4 DeviceUseStatement.swift
[1375/1453] Compiling ModelsR4 DiagnosticReport.swift
[1376/1453] Compiling ModelsR4 Distance.swift
[1377/1453] Compiling ModelsR4 DocumentManifest.swift
[1378/1453] Compiling ModelsR4 DocumentReference.swift
[1379/1453] Compiling ModelsR4 DomainResource+Extensions.swift
[1380/1453] Compiling ModelsR4 DomainResource.swift
[1381/1453] Compiling ModelsR4 Dosage.swift
[1382/1453] Compiling ModelsR4 Duration.swift
[1383/1453] Compiling ModelsR4 EffectEvidenceSynthesis.swift
[1384/1453] Compiling ModelsR4 Element+Extensions.swift
[1385/1453] Compiling ModelsR4 Element.swift
[1386/1453] Compiling ModelsR4 ElementDefinition.swift
[1387/1453] Compiling ModelsR4 Encounter.swift
[1388/1453] Compiling ModelsR4 Quantity.swift
[1389/1453] Compiling ModelsR4 Questionnaire.swift
[1390/1453] Compiling ModelsR4 QuestionnaireResponse.swift
[1391/1453] Compiling ModelsR4 Range.swift
[1392/1453] Compiling ModelsR4 Ratio.swift
[1393/1453] Compiling ModelsR4 Reference.swift
[1394/1453] Compiling ModelsR4 RelatedArtifact.swift
[1395/1453] Compiling ModelsR4 RelatedPerson.swift
[1396/1453] Compiling ModelsR4 RequestGroup.swift
[1397/1453] Compiling ModelsR4 ResearchDefinition.swift
[1398/1453] Compiling ModelsR4 ResearchElementDefinition.swift
[1399/1453] Compiling ModelsR4 ResearchStudy.swift
[1400/1453] Compiling ModelsR4 ResearchSubject.swift
[1401/1453] Compiling ModelsR4 Resource.swift
[1402/1453] Compiling ModelsR4 ResourceProxy.swift
[1403/1453] Compiling ModelsR4 RiskAssessment.swift
[1404/1453] Compiling ModelsR4 RiskEvidenceSynthesis.swift
[1405/1453] Compiling ModelsR4 SampledData.swift
[1406/1453] Compiling ModelsR4 Schedule.swift
[1407/1453] Compiling ModelsR4 SearchParameter.swift
[1408/1453] Compiling ModelsR4 ServiceRequest.swift
[1409/1453] Compiling ModelsR4 Signature.swift
[1410/1453] Compiling ModelsR4 Slot.swift
[1411/1453] Compiling ModelsR4 Specimen.swift
[1412/1453] Compiling ModelsR4 SpecimenDefinition.swift
[1413/1453] Compiling ModelsR4 StructureDefinition.swift
[1414/1453] Compiling ModelsR4 StructureMap.swift
[1415/1453] Compiling ModelsR4 Subscription.swift
[1416/1453] Compiling ModelsR4 Substance.swift
[1417/1453] Compiling ModelsR4 SubstanceAmount.swift
[1418/1453] Compiling ModelsR4 SubstanceNucleicAcid.swift
[1419/1453] Compiling ModelsR4 SubstancePolymer.swift
[1420/1453] Compiling ModelsR4 SubstanceProtein.swift
[1421/1453] Compiling ModelsR4 SubstanceReferenceInformation.swift
[1422/1453] Compiling ModelsR4 SubstanceSourceMaterial.swift
[1423/1453] Compiling ModelsR4 SubstanceSpecification.swift
[1424/1453] Compiling ModelsR4 SupplyDelivery.swift
[1425/1453] Compiling ModelsR4 SupplyRequest.swift
[1426/1453] Compiling ModelsR4 Task.swift
[1427/1453] Compiling ModelsR4 TerminologyCapabilities.swift
[1428/1453] Compiling ModelsR4 TestReport.swift
[1429/1453] Compiling ModelsR4 TestScript.swift
[1430/1453] Compiling ModelsR4 Timing.swift
[1431/1453] Compiling ModelsR4 TriggerDefinition.swift
[1432/1453] Compiling ModelsR4 UsageContext.swift
[1433/1453] Compiling ModelsR4 ValueSet.swift
[1434/1453] Compiling ModelsR4 VerificationResult.swift
[1435/1453] Compiling ModelsR4 VisionPrescription.swift
[1436/1468] Compiling CareKitFHIR OCKDSTU2MedicationOrderCoder.swift
[1437/1468] Compiling CareKitFHIR OCKR4PatientCoder.swift
[1438/1468] Compiling CareKitFHIR OCKDSTU2ScheduleCoder.swift
[1439/1469] Compiling CareKitFHIR OCKDSTU2CarePlanActivityCoder.swift
[1440/1469] Compiling CareKitFHIR OCKFHIRRelease.swift
[1441/1469] Compiling CareKitFHIR OCKFHIRResource.swift
[1442/1469] Compiling CareKitFHIR OCKFHIRResourceCoder.swift
[1443/1469] Compiling CareKitFHIR OCKFHIRResourceData.swift
[1444/1469] Compiling CareKitFHIR OCKDSTU2PatientCoder.swift
[1445/1469] Compiling CareKitFHIR OCKPatientConverterTraits.swift
[1446/1469] Compiling CareKitFHIR OCKFHIRCodingError.swift
[1447/1469] Compiling CareKitFHIR OCKFHIRContentType.swift
[1448/1469] Emitting module CareKitFHIR
[1449/1469] Compiling CareKitFHIR FHIRModels+Extensions.swift
[1450/1469] Compiling CareKitFHIR OCK+FHIRExtensions.swift
[1451/1469] Compiling CareKitFHIR OCKTaskConverterTraits.swift
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
BUILD FAILURE 6.3 macosSpm