Build Information
Failed to build CareKit, reference main (348a5e), with Swift 6.3 for macOS (SPM) on 19 Apr 2026 18:21:45 UTC.
Build Command
env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64Build Log
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>
[519/1108] Compiling ModelsR4 Bundle.swift
/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>
[520/1108] Compiling ModelsR4 Canonical.swift
/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>
[521/1108] Compiling ModelsR4 CapabilityStatement.swift
/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>
[522/1108] Compiling ModelsR4 CarePlan.swift
/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>
[523/1108] Compiling ModelsR4 CareTeam.swift
/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>
[524/1108] Compiling ModelsR4 CatalogEntry.swift
/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>
[525/1108] Compiling ModelsR4 ChargeItem.swift
/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>
[526/1108] Compiling ModelsR4 ChargeItemDefinition.swift
/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>
[527/1108] Compiling ModelsR4 CodeSystemConstraintSeverity.swift
/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>
[528/1108] Compiling ModelsR4 CodeSystemContactEntityType.swift
/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>
[529/1108] Compiling ModelsR4 CodeSystemContactPointSystem.swift
[530/1108] Compiling ModelsR4 CodeSystemContactPointUse.swift
[531/1108] Compiling ModelsR4 CodeSystemContainerCap.swift
[532/1108] Compiling ModelsR4 CodeSystemContractActionCodes.swift
[533/1108] Compiling ModelsR4 CodeSystemContractActorRoleCodes.swift
[534/1108] Compiling ModelsR4 CodeSystemContractContentDerivationCodes.swift
[535/1108] Compiling ModelsR4 CodeSystemContractDataMeaning.swift
[536/1108] Compiling ModelsR4 CodeSystemContractResourceActionStatusCodes.swift
[537/1108] Compiling ModelsR4 CodeSystemContractResourceAssetAvailiabilityCodes.swift
[538/1108] Compiling ModelsR4 CodeSystemContractResourceAssetContextCodes.swift
[539/1108] Compiling ModelsR4 CodeSystemContractResourceAssetScopeCodes.swift
[540/1108] Compiling ModelsR4 CodeSystemContractResourceAssetSubTypeCodes.swift
[541/1108] Compiling ModelsR4 CodeSystemContractResourceAssetTypeCodes.swift
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Streaming/CoreDataQueryMonitor.swift:47:13: warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
45 |
46 | private nonisolated(unsafe) let request: NSFetchRequest<Element>
47 | private nonisolated(unsafe) let context: NSManagedObjectContext
| `- warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
48 |
49 | var resultHandler: @Sendable (Result<[OCKVersionedObjectCompatible], Error>) -> Void {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Structs/OCKHealthKitLinkage.swift:34:1: warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
32 | import HealthKit
33 |
34 | extension HKQuantityTypeIdentifier: Codable {}
| |- warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
35 |
36 | /// Describes how a task outcome values should be retrieved from HealthKit.
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Streaming/CoreDataQueryMonitor.swift:47:13: warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
45 |
46 | private nonisolated(unsafe) let request: NSFetchRequest<Element>
47 | private nonisolated(unsafe) let context: NSManagedObjectContext
| `- warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
48 |
49 | var resultHandler: @Sendable (Result<[OCKVersionedObjectCompatible], Error>) -> Void {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Structs/OCKHealthKitLinkage.swift:34:1: warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
32 | import HealthKit
33 |
34 | extension HKQuantityTypeIdentifier: Codable {}
| |- warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
35 |
36 | /// Describes how a task outcome values should be retrieved from HealthKit.
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Streaming/CoreDataQueryMonitor.swift:47:13: warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
45 |
46 | private nonisolated(unsafe) let request: NSFetchRequest<Element>
47 | private nonisolated(unsafe) let context: NSManagedObjectContext
| `- warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
48 |
49 | var resultHandler: @Sendable (Result<[OCKVersionedObjectCompatible], Error>) -> Void {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Structs/OCKHealthKitLinkage.swift:34:1: warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
32 | import HealthKit
33 |
34 | extension HKQuantityTypeIdentifier: Codable {}
| |- warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
35 |
36 | /// Describes how a task outcome values should be retrieved from HealthKit.
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Streaming/CoreDataQueryMonitor.swift:47:13: warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
45 |
46 | private nonisolated(unsafe) let request: NSFetchRequest<Element>
47 | private nonisolated(unsafe) let context: NSManagedObjectContext
| `- warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
48 |
49 | var resultHandler: @Sendable (Result<[OCKVersionedObjectCompatible], Error>) -> Void {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Structs/OCKHealthKitLinkage.swift:34:1: warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
32 | import HealthKit
33 |
34 | extension HKQuantityTypeIdentifier: Codable {}
| |- warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
35 |
36 | /// Describes how a task outcome values should be retrieved from HealthKit.
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Streaming/CoreDataQueryMonitor.swift:47:13: warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
45 |
46 | private nonisolated(unsafe) let request: NSFetchRequest<Element>
47 | private nonisolated(unsafe) let context: NSManagedObjectContext
| `- warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
48 |
49 | var resultHandler: @Sendable (Result<[OCKVersionedObjectCompatible], Error>) -> Void {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Structs/OCKHealthKitLinkage.swift:34:1: warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
32 | import HealthKit
33 |
34 | extension HKQuantityTypeIdentifier: Codable {}
| |- warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
35 |
36 | /// Describes how a task outcome values should be retrieved from HealthKit.
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Streaming/CoreDataQueryMonitor.swift:47:13: warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
45 |
46 | private nonisolated(unsafe) let request: NSFetchRequest<Element>
47 | private nonisolated(unsafe) let context: NSManagedObjectContext
| `- warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
48 |
49 | var resultHandler: @Sendable (Result<[OCKVersionedObjectCompatible], Error>) -> Void {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Structs/OCKHealthKitLinkage.swift:34:1: warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
32 | import HealthKit
33 |
34 | extension HKQuantityTypeIdentifier: Codable {}
| |- warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
35 |
36 | /// Describes how a task outcome values should be retrieved from HealthKit.
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Streaming/CoreDataQueryMonitor.swift:47:13: warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
45 |
46 | private nonisolated(unsafe) let request: NSFetchRequest<Element>
47 | private nonisolated(unsafe) let context: NSManagedObjectContext
| `- warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
48 |
49 | var resultHandler: @Sendable (Result<[OCKVersionedObjectCompatible], Error>) -> Void {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Structs/OCKHealthKitLinkage.swift:34:1: warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
32 | import HealthKit
33 |
34 | extension HKQuantityTypeIdentifier: Codable {}
| |- warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
35 |
36 | /// Describes how a task outcome values should be retrieved from HealthKit.
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Streaming/CoreDataQueryMonitor.swift:47:13: warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
45 |
46 | private nonisolated(unsafe) let request: NSFetchRequest<Element>
47 | private nonisolated(unsafe) let context: NSManagedObjectContext
| `- warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
48 |
49 | var resultHandler: @Sendable (Result<[OCKVersionedObjectCompatible], Error>) -> Void {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Structs/OCKHealthKitLinkage.swift:34:1: warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
32 | import HealthKit
33 |
34 | extension HKQuantityTypeIdentifier: Codable {}
| |- warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
35 |
36 | /// Describes how a task outcome values should be retrieved from HealthKit.
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Streaming/CoreDataQueryMonitor.swift:47:13: warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
45 |
46 | private nonisolated(unsafe) let request: NSFetchRequest<Element>
47 | private nonisolated(unsafe) let context: NSManagedObjectContext
| `- warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
48 |
49 | var resultHandler: @Sendable (Result<[OCKVersionedObjectCompatible], Error>) -> Void {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Structs/OCKHealthKitLinkage.swift:34:1: warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
32 | import HealthKit
33 |
34 | extension HKQuantityTypeIdentifier: Codable {}
| |- warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
35 |
36 | /// Describes how a task outcome values should be retrieved from HealthKit.
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Streaming/CoreDataQueryMonitor.swift:47:13: warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
45 |
46 | private nonisolated(unsafe) let request: NSFetchRequest<Element>
47 | private nonisolated(unsafe) let context: NSManagedObjectContext
| `- warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
48 |
49 | var resultHandler: @Sendable (Result<[OCKVersionedObjectCompatible], Error>) -> Void {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Structs/OCKHealthKitLinkage.swift:34:1: warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
32 | import HealthKit
33 |
34 | extension HKQuantityTypeIdentifier: Codable {}
| |- warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
35 |
36 | /// Describes how a task outcome values should be retrieved from HealthKit.
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Streaming/CoreDataQueryMonitor.swift:47:13: warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
45 |
46 | private nonisolated(unsafe) let request: NSFetchRequest<Element>
47 | private nonisolated(unsafe) let context: NSManagedObjectContext
| `- warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
48 |
49 | var resultHandler: @Sendable (Result<[OCKVersionedObjectCompatible], Error>) -> Void {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Structs/OCKHealthKitLinkage.swift:34:1: warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
32 | import HealthKit
33 |
34 | extension HKQuantityTypeIdentifier: Codable {}
| |- warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
35 |
36 | /// Describes how a task outcome values should be retrieved from HealthKit.
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Streaming/CoreDataQueryMonitor.swift:47:13: warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
45 |
46 | private nonisolated(unsafe) let request: NSFetchRequest<Element>
47 | private nonisolated(unsafe) let context: NSManagedObjectContext
| `- warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
48 |
49 | var resultHandler: @Sendable (Result<[OCKVersionedObjectCompatible], Error>) -> Void {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Structs/OCKHealthKitLinkage.swift:34:1: warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
32 | import HealthKit
33 |
34 | extension HKQuantityTypeIdentifier: Codable {}
| |- warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
35 |
36 | /// Describes how a task outcome values should be retrieved from HealthKit.
[554/1108] Compiling ModelsR4 Account.swift
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Streaming/CoreDataQueryMonitor.swift:47:13: warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
45 |
46 | private nonisolated(unsafe) let request: NSFetchRequest<Element>
47 | private nonisolated(unsafe) let context: NSManagedObjectContext
| `- warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
48 |
49 | var resultHandler: @Sendable (Result<[OCKVersionedObjectCompatible], Error>) -> Void {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Structs/OCKHealthKitLinkage.swift:34:1: warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
32 | import HealthKit
33 |
34 | extension HKQuantityTypeIdentifier: Codable {}
| |- warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
35 |
36 | /// Describes how a task outcome values should be retrieved from HealthKit.
[555/1108] Compiling ModelsR4 ActivityDefinition.swift
[556/1108] Compiling ModelsR4 Address.swift
[557/1108] Compiling ModelsR4 AdverseEvent.swift
[558/1108] Compiling ModelsR4 Age.swift
[559/1108] Compiling ModelsR4 AllergyIntolerance.swift
[560/1108] Compiling ModelsR4 Annotation.swift
[561/1108] Compiling ModelsR4 Appointment.swift
[562/1108] Compiling ModelsR4 AppointmentResponse.swift
[563/1108] Compiling ModelsR4 Attachment.swift
[564/1108] Compiling ModelsR4 AuditEvent.swift
[565/1108] Compiling ModelsR4 BackboneElement.swift
[566/1108] Compiling ModelsR4 Base64Binary.swift
[567/1108] Compiling ModelsR4 Basic.swift
[574/1108] Compiling ModelsR4 CodeSystemEpisodeOfCareType.swift
[575/1108] Compiling ModelsR4 CodeSystemEventCapabilityMode.swift
[576/1108] Compiling ModelsR4 CodeSystemEventResourceType.swift
[577/1108] Compiling ModelsR4 CodeSystemEventStatus.swift
[578/1108] Compiling ModelsR4 CodeSystemEventTiming.swift
[579/1108] Compiling ModelsR4 CodeSystemEvidenceVariableType.swift
[580/1108] Compiling ModelsR4 CodeSystemEvidenceVariantState.swift
[590/1108] Compiling ModelsR4 CodeSystemCoverageClassCodes.swift
[591/1108] Compiling ModelsR4 CodeSystemCoverageCopayTypeCodes.swift
[592/1108] Compiling ModelsR4 CodeSystemCoverageEligibilityResponseAuthSupportCodes.swift
[593/1108] Compiling ModelsR4 CodeSystemCoverageSelfPayCodes.swift
[594/1108] Compiling ModelsR4 CodeSystemDataAbsentReason.swift
[595/1108] Compiling ModelsR4 CodeSystemDataType.swift
[596/1108] Compiling ModelsR4 CodeSystemDaysOfWeek.swift
[597/1108] Compiling ModelsR4 CodeSystemDefinitionResourceType.swift
[598/1108] Compiling ModelsR4 CodeSystemDefinitionStatus.swift
[599/1108] Compiling ModelsR4 CodeSystemDefinitionTopic.swift
[600/1108] Compiling ModelsR4 CodeSystemDefinitionUseCodes.swift
[601/1108] Compiling ModelsR4 CodeSystemDetectedIssueSeverity.swift
[602/1108] Compiling ModelsR4 CodeSystemDeviceDefinitionParameterGroup.swift
[603/1108] Compiling ModelsR4 CodeSystemDeviceMetricCalibrationState.swift
[604/1108] Compiling ModelsR4 CodeSystemDeviceMetricCalibrationType.swift
[605/1108] Compiling ModelsR4 CodeSystemDeviceMetricCategory.swift
[631/1108] Emitting module ModelsDSTU2
[632/1108] Compiling ModelsR4 CodeSystemMeasurePopulationType.swift
[633/1108] Compiling ModelsR4 CodeSystemMeasureReportStatus.swift
[634/1108] Compiling ModelsR4 CodeSystemMeasureReportType.swift
[635/1108] Compiling ModelsR4 CodeSystemMeasureScoring.swift
[636/1108] Compiling ModelsR4 CodeSystemMeasureType.swift
[637/1108] Compiling ModelsR4 CodeSystemMediaModality.swift
[638/1108] Compiling ModelsR4 CodeSystemMediaType.swift
[639/1108] Compiling ModelsR4 CodeSystemMedicationAdministrationCategoryCodes.swift
[640/1108] Compiling ModelsR4 CodeSystemMedicationAdministrationPerformerFunctionCodes.swift
[641/1108] Compiling ModelsR4 CodeSystemMedicationAdministrationStatusCodes.swift
[642/1108] Compiling ModelsR4 CodeSystemMedicationDispenseCategoryCodes.swift
[643/1108] Compiling ModelsR4 CodeSystemMedicationDispensePerformerFunctionCodes.swift
[644/1108] Compiling ModelsR4 CodeSystemMedicationDispenseStatusCodes.swift
[645/1108] Compiling ModelsR4 CodeSystemMedicationDispenseStatusReasonCodes.swift
[646/1108] Compiling ModelsR4 CodeSystemMedicationKnowledgeCharacteristicCodes.swift
[647/1108] Compiling ModelsR4 CodeSystemMedicationKnowledgePackageTypeCodes.swift
[648/1108] Compiling ModelsR4 CodeSystemMedicationKnowledgeStatusCodes.swift
[649/1108] Compiling ModelsR4 CodeSystemMedicationRequestCategoryCodes.swift
[650/1108] Compiling ModelsR4 CodeSystemMedicationRequestCourseOfTherapyCodes.swift
[651/1108] Compiling ModelsR4 CodeSystemMedicationRequestIntent.swift
[652/1108] Compiling ModelsR4 CodeSystemMedicationRequestStatusReasonCodes.swift
[653/1108] Compiling ModelsR4 CodeSystemMedicationStatementCategoryCodes.swift
[654/1108] Compiling ModelsR4 CodeSystemMedicationStatementStatusCodes.swift
[655/1108] Compiling ModelsR4 CodeSystemMedicationStatusCodes.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[656/1132] Emitting module CareKitUI
/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 {
/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 {
[685/1141] Compiling ModelsR4 CodeSystemMedicationrequestStatus.swift
[686/1141] Compiling ModelsR4 CodeSystemMessageSignificanceCategory.swift
[687/1141] Compiling ModelsR4 CodeSystemMessageTransport.swift
[688/1141] Compiling ModelsR4 CodeSystemMessageheaderResponseRequest.swift
[689/1141] Compiling ModelsR4 CodeSystemMissingToothReasonCodes.swift
[690/1141] Compiling ModelsR4 CodeSystemModifierTypeCodes.swift
[691/1141] Compiling ModelsR4 CodeSystemNHINPurposeOfUse.swift
[692/1141] Compiling ModelsR4 CodeSystemNameUse.swift
[693/1141] Compiling ModelsR4 CodeSystemNamingSystemIdentifierType.swift
[694/1141] Compiling ModelsR4 CodeSystemNamingSystemType.swift
[695/1141] Compiling ModelsR4 CodeSystemNarrativeStatus.swift
[696/1141] Compiling ModelsR4 CodeSystemNeed.swift
[697/1141] Compiling ModelsR4 CodeSystemNetworkTypeCodes.swift
[698/1141] Compiling ModelsR4 CodeSystemNoteType.swift
[699/1141] Compiling ModelsR4 CodeSystemObservationCategoryCodes.swift
[700/1141] Compiling ModelsR4 CodeSystemObservationDataType.swift
[701/1141] Compiling ModelsR4 CodeSystemObservationRangeCategory.swift
[702/1141] Compiling ModelsR4 CodeSystemObservationReferenceRangeMeaningCodes.swift
[703/1141] Compiling ModelsR4 CodeSystemObservationStatus.swift
[704/1141] Compiling ModelsR4 CodeSystemOperationKind.swift
[705/1141] Compiling ModelsR4 CodeSystemOperationOutcomeCodes.swift
[706/1141] Compiling ModelsR4 CodeSystemOperationParameterUse.swift
[707/1141] Compiling ModelsR4 CodeSystemOrganizationAffiliationRole.swift
[708/1141] Compiling ModelsR4 CodeSystemOrganizationType.swift
[709/1165] Compiling ModelsR4 CodeSystemOrientationType.swift
[710/1165] Compiling ModelsR4 CodeSystemParticipantRequired.swift
[711/1165] Compiling ModelsR4 CodeSystemParticipantType.swift
[712/1165] Compiling ModelsR4 CodeSystemParticipationStatus.swift
[713/1165] Compiling ModelsR4 CodeSystemPayeeResourceType.swift
[714/1165] Compiling ModelsR4 CodeSystemPaymentAdjustmentReasonCodes.swift
[715/1165] Compiling ModelsR4 CodeSystemPaymentStatusCodes.swift
[716/1165] Compiling ModelsR4 CodeSystemPaymentTypeCodes.swift
[717/1165] Compiling ModelsR4 CodeSystemPerformerRoleCodes.swift
[718/1165] Compiling ModelsR4 CodeSystemPlanDefinitionType.swift
[719/1165] Compiling ModelsR4 CodeSystemPractitionerRoleCodes.swift
[720/1165] Compiling ModelsR4 CodeSystemPractitionerSpecialty.swift
[721/1165] Compiling ModelsR4 CodeSystemPrecisionEstimateType.swift
[722/1165] Compiling ModelsR4 CodeSystemPrimarySourceType.swift
[723/1165] Compiling ModelsR4 CodeSystemProcedureDeviceActionCodes.swift
[724/1165] Compiling ModelsR4 CodeSystemProcedureProgressStatusCodes.swift
[725/1165] Compiling ModelsR4 CodeSystemProcessPriorityCodes.swift
[726/1165] Compiling ModelsR4 CodeSystemPropertyRepresentation.swift
[727/1165] Compiling ModelsR4 CodeSystemPropertyType.swift
[728/1165] Compiling ModelsR4 CodeSystemProvenanceEntityRole.swift
[729/1165] Compiling ModelsR4 CodeSystemProvenanceParticipantRole.swift
[730/1165] Compiling ModelsR4 CodeSystemProvenanceParticipantType.swift
[731/1165] Compiling ModelsR4 CodeSystemPublicationStatus.swift
[732/1165] Compiling ModelsR4 CodeSystemPushTypeAvailable.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 {
/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 {
[809/1189] Compiling ModelsR4 CodeSystemQualityOfEvidenceRating.swift
[810/1189] Compiling ModelsR4 CodeSystemQualityType.swift
[811/1189] Compiling ModelsR4 CodeSystemQuantityComparator.swift
[812/1189] Compiling ModelsR4 CodeSystemQuestionnaireItemOperator.swift
[813/1189] Compiling ModelsR4 CodeSystemQuestionnaireItemType.swift
[814/1189] Compiling ModelsR4 CodeSystemQuestionnaireItemUIControlCodes.swift
[815/1189] Compiling ModelsR4 CodeSystemQuestionnaireItemUsageMode.swift
[816/1189] Compiling ModelsR4 CodeSystemQuestionnaireResponseStatus.swift
[817/1189] Compiling ModelsR4 CodeSystemQuestionnaireTextCategories.swift
[818/1189] Compiling ModelsR4 CodeSystemReasonMedicationGivenCodes.swift
[819/1189] Compiling ModelsR4 CodeSystemReferenceHandlingPolicy.swift
[820/1189] Compiling ModelsR4 CodeSystemReferenceVersionRules.swift
[821/1189] Compiling ModelsR4 CodeSystemReferralMethod.swift
[822/1189] Compiling ModelsR4 CodeSystemRejectionCriterion.swift
[823/1189] Compiling ModelsR4 CodeSystemRelatedArtifactType.swift
[824/1189] Compiling ModelsR4 CodeSystemRepositoryType.swift
[825/1189] Compiling ModelsR4 CodeSystemRequestIntent.swift
[826/1189] Compiling ModelsR4 CodeSystemRequestPriority.swift
[827/1189] Compiling ModelsR4 CodeSystemRequestResourceType.swift
[828/1189] Compiling ModelsR4 CodeSystemRequestStatus.swift
[829/1189] Compiling ModelsR4 CodeSystemResearchElementType.swift
[830/1189] Compiling ModelsR4 CodeSystemResearchStudyObjectiveType.swift
[831/1189] Compiling ModelsR4 CodeSystemResearchStudyPhase.swift
[832/1189] Compiling ModelsR4 CodeSystemResearchStudyPrimaryPurposeType.swift
[857/1213] Compiling ModelsR4 CodeSystemResearchStudyReasonStopped.swift
[858/1213] Compiling ModelsR4 CodeSystemResearchStudyStatus.swift
[859/1213] Compiling ModelsR4 CodeSystemResearchSubjectStatus.swift
[860/1213] Compiling ModelsR4 CodeSystemResourceSecurityCategory.swift
[861/1213] Compiling ModelsR4 CodeSystemResourceType.swift
[862/1213] Compiling ModelsR4 CodeSystemResourceValidationMode.swift
[863/1213] Compiling ModelsR4 CodeSystemResourceVersionPolicy.swift
[864/1213] Compiling ModelsR4 CodeSystemResponseType.swift
[865/1213] Compiling ModelsR4 CodeSystemRestfulCapabilityMode.swift
[866/1213] Compiling ModelsR4 CodeSystemRestfulSecurityService.swift
[867/1213] Compiling ModelsR4 CodeSystemRiskEstimateType.swift
[868/1213] Compiling ModelsR4 CodeSystemRiskProbability.swift
[869/1213] Compiling ModelsR4 CodeSystemSNOMEDCTReasonMedicationNotGivenCodes.swift
[870/1213] Compiling ModelsR4 CodeSystemSearchComparator.swift
[871/1213] Compiling ModelsR4 CodeSystemSearchEntryMode.swift
[872/1213] Compiling ModelsR4 CodeSystemSearchModifierCode.swift
[873/1213] Compiling ModelsR4 CodeSystemSearchParamType.swift
[874/1213] Compiling ModelsR4 CodeSystemSequenceStatus.swift
[875/1213] Compiling ModelsR4 CodeSystemSequenceType.swift
[876/1213] Compiling ModelsR4 CodeSystemServiceProvisionConditions.swift
[877/1213] Compiling ModelsR4 CodeSystemSlicingRules.swift
[878/1213] Compiling ModelsR4 CodeSystemSlotStatus.swift
[879/1213] Compiling ModelsR4 CodeSystemSmartCapabilities.swift
[880/1213] Compiling ModelsR4 CodeSystemSortDirection.swift
[929/1237] Compiling ModelsR4 CodeSystemSpecialArrangements.swift
[930/1237] Compiling ModelsR4 CodeSystemSpecialValues.swift
[931/1237] Compiling ModelsR4 CodeSystemSpecimenContainedPreference.swift
[932/1237] Compiling ModelsR4 CodeSystemSpecimenStatus.swift
[933/1237] Compiling ModelsR4 CodeSystemStandardsStatus.swift
[934/1237] Compiling ModelsR4 CodeSystemStatus.swift
[935/1237] Compiling ModelsR4 CodeSystemStrandType.swift
[936/1237] Compiling ModelsR4 CodeSystemStrengthOfRecommendationRating.swift
[937/1237] Compiling ModelsR4 CodeSystemStructureDefinitionKind.swift
[938/1237] Compiling ModelsR4 CodeSystemStructureMapContextType.swift
[939/1237] Compiling ModelsR4 CodeSystemStructureMapGroupTypeMode.swift
[940/1237] Compiling ModelsR4 CodeSystemStructureMapInputMode.swift
[941/1237] Compiling ModelsR4 CodeSystemStructureMapModelMode.swift
[942/1237] Compiling ModelsR4 CodeSystemStructureMapSourceListMode.swift
[943/1237] Compiling ModelsR4 CodeSystemStructureMapTargetListMode.swift
[944/1237] Compiling ModelsR4 CodeSystemStructureMapTransform.swift
[945/1237] Compiling ModelsR4 CodeSystemStudyType.swift
[946/1237] Compiling ModelsR4 CodeSystemSubscriberRelationshipCodes.swift
[947/1237] Compiling ModelsR4 CodeSystemSubscriptionChannelType.swift
[948/1237] Compiling ModelsR4 CodeSystemSubscriptionStatus.swift
[949/1237] Compiling ModelsR4 CodeSystemSubscriptionTag.swift
[950/1237] Compiling ModelsR4 CodeSystemSubstanceCategoryCodes.swift
[951/1237] Compiling ModelsR4 CodeSystemSupplyDeliveryStatus.swift
[952/1237] Compiling ModelsR4 CodeSystemSupplyItemType.swift
[1152/1285] Emitting module ModelsR4
[1160/1285] Compiling CareKitUI OCKInstructionsTaskView.swift
[1161/1285] Compiling CareKitUI OCKLogTaskView.swift
[1162/1285] Compiling CareKitUI OCKSimpleTaskView.swift
[1163/1285] Compiling CareKitUI OCKTaskDisplayable.swift
[1164/1285] Compiling CareKitUI OCKHeaderView.swift
[1165/1285] Compiling CareKitUI OCKSeparatorView.swift
[1166/1285] Compiling CareKitUI OCKStackView.swift
[1167/1285] Compiling CareKitUI OCKView.swift
[1168/1285] Compiling CareKitUI resource_bundle_accessor.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 {
[1187/1453] Compiling ModelsR4 CodeSystemSupplyRequestReason.swift
[1188/1453] Compiling ModelsR4 CodeSystemSupplyRequestStatus.swift
[1189/1453] Compiling ModelsR4 CodeSystemSupplyType.swift
[1190/1453] Compiling ModelsR4 CodeSystemSurfaceCodes.swift
[1191/1453] Compiling ModelsR4 CodeSystemSynthesisType.swift
[1192/1453] Compiling ModelsR4 CodeSystemTaskCode.swift
[1193/1453] Compiling ModelsR4 CodeSystemTaskIntent.swift
[1194/1453] Compiling ModelsR4 CodeSystemTaskStatus.swift
[1195/1453] Compiling ModelsR4 CodeSystemTemplateStatusCodeLifeCycle.swift
[1196/1453] Compiling ModelsR4 CodeSystemTestReportActionResult.swift
[1197/1453] Compiling ModelsR4 CodeSystemTestReportParticipantType.swift
[1198/1453] Compiling ModelsR4 CodeSystemTestReportResult.swift
[1199/1453] Compiling ModelsR4 CodeSystemTestReportStatus.swift
[1200/1453] Compiling ModelsR4 CodeSystemTestScriptOperationCode.swift
[1201/1453] Compiling ModelsR4 CodeSystemTestScriptProfileDestinationType.swift
[1202/1453] Compiling ModelsR4 CodeSystemTestScriptProfileOriginType.swift
[1203/1453] Compiling ModelsR4 CodeSystemTestScriptRequestMethodCode.swift
[1204/1453] Compiling ModelsR4 CodeSystemTransactionMode.swift
[1205/1453] Compiling ModelsR4 CodeSystemTriggerType.swift
[1206/1453] Compiling ModelsR4 CodeSystemTypeDerivationRule.swift
[1207/1453] Compiling ModelsR4 CodeSystemUDICodes.swift
[1208/1453] Compiling ModelsR4 CodeSystemUDIEntryType.swift
[1209/1453] Compiling ModelsR4 CodeSystemUnitTypeCodes.swift
[1210/1453] Compiling ModelsR4 CodeSystemUnknownContentCode.swift
[1235/1453] Compiling ModelsR4 CodeSystemUsageContextType.swift
[1236/1453] Compiling ModelsR4 CodeSystemUse.swift
[1237/1453] Compiling ModelsR4 CodeSystemValidationProcess.swift
[1238/1453] Compiling ModelsR4 CodeSystemValidationStatus.swift
[1239/1453] Compiling ModelsR4 CodeSystemValidationType.swift
[1240/1453] Compiling ModelsR4 CodeSystemVerificationresultCommunicationMethod.swift
[1241/1453] Compiling ModelsR4 CodeSystemVisionBase.swift
[1242/1453] Compiling ModelsR4 CodeSystemVisionEyes.swift
[1243/1453] Compiling ModelsR4 CodeSystemXPathUsageType.swift
[1244/1453] Compiling ModelsR4 CodeableConcept.swift
[1245/1453] Compiling ModelsR4 Coding.swift
[1246/1453] Compiling ModelsR4 Communication.swift
[1247/1453] Compiling ModelsR4 CommunicationRequest.swift
[1248/1453] Compiling ModelsR4 CompartmentDefinition.swift
[1249/1453] Compiling ModelsR4 Composition.swift
[1250/1453] Compiling ModelsR4 ConceptMap.swift
[1251/1453] Compiling ModelsR4 Condition.swift
[1252/1453] Compiling ModelsR4 Consent.swift
[1253/1453] Compiling ModelsR4 ContactDetail.swift
[1254/1453] Compiling ModelsR4 ContactPoint.swift
[1255/1453] Compiling ModelsR4 Contract.swift
[1256/1453] Compiling ModelsR4 Contributor.swift
[1257/1453] Compiling ModelsR4 Count.swift
[1258/1453] Compiling ModelsR4 Coverage.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 {
[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 SpecimenDefinition.swift
[1389/1453] Compiling ModelsR4 StructureDefinition.swift
[1390/1453] Compiling ModelsR4 StructureMap.swift
[1391/1453] Compiling ModelsR4 Subscription.swift
[1392/1453] Compiling ModelsR4 Substance.swift
[1393/1453] Compiling ModelsR4 SubstanceAmount.swift
[1394/1453] Compiling ModelsR4 SubstanceNucleicAcid.swift
[1395/1453] Compiling ModelsR4 SubstancePolymer.swift
[1396/1453] Compiling ModelsR4 SubstanceProtein.swift
[1397/1453] Compiling ModelsR4 SubstanceReferenceInformation.swift
[1398/1453] Compiling ModelsR4 SubstanceSourceMaterial.swift
[1399/1453] Compiling ModelsR4 SubstanceSpecification.swift
[1400/1453] Compiling ModelsR4 SupplyDelivery.swift
[1401/1453] Compiling ModelsR4 SupplyRequest.swift
[1402/1453] Compiling ModelsR4 Task.swift
[1403/1453] Compiling ModelsR4 TerminologyCapabilities.swift
[1404/1453] Compiling ModelsR4 TestReport.swift
[1405/1453] Compiling ModelsR4 TestScript.swift
[1406/1453] Compiling ModelsR4 Timing.swift
[1407/1453] Compiling ModelsR4 TriggerDefinition.swift
[1408/1453] Compiling ModelsR4 UsageContext.swift
[1409/1453] Compiling ModelsR4 ValueSet.swift
[1410/1453] Compiling ModelsR4 VerificationResult.swift
[1411/1453] Compiling ModelsR4 VisionPrescription.swift
[1412/1453] Compiling ModelsR4 Quantity.swift
[1413/1453] Compiling ModelsR4 Questionnaire.swift
[1414/1453] Compiling ModelsR4 QuestionnaireResponse.swift
[1415/1453] Compiling ModelsR4 Range.swift
[1416/1453] Compiling ModelsR4 Ratio.swift
[1417/1453] Compiling ModelsR4 Reference.swift
[1418/1453] Compiling ModelsR4 RelatedArtifact.swift
[1419/1453] Compiling ModelsR4 RelatedPerson.swift
[1420/1453] Compiling ModelsR4 RequestGroup.swift
[1421/1453] Compiling ModelsR4 ResearchDefinition.swift
[1422/1453] Compiling ModelsR4 ResearchElementDefinition.swift
[1423/1453] Compiling ModelsR4 ResearchStudy.swift
[1424/1453] Compiling ModelsR4 ResearchSubject.swift
[1425/1453] Compiling ModelsR4 Resource.swift
[1426/1453] Compiling ModelsR4 ResourceProxy.swift
[1427/1453] Compiling ModelsR4 RiskAssessment.swift
[1428/1453] Compiling ModelsR4 RiskEvidenceSynthesis.swift
[1429/1453] Compiling ModelsR4 SampledData.swift
[1430/1453] Compiling ModelsR4 Schedule.swift
[1431/1453] Compiling ModelsR4 SearchParameter.swift
[1432/1453] Compiling ModelsR4 ServiceRequest.swift
[1433/1453] Compiling ModelsR4 Signature.swift
[1434/1453] Compiling ModelsR4 Slot.swift
[1435/1453] Compiling ModelsR4 Specimen.swift
[1436/1468] Compiling CareKitFHIR OCKDSTU2ScheduleCoder.swift
[1437/1468] Compiling CareKitFHIR OCKDSTU2MedicationOrderCoder.swift
[1438/1468] Compiling CareKitFHIR OCKDSTU2CarePlanActivityCoder.swift
[1439/1468] Compiling CareKitFHIR OCKR4PatientCoder.swift
[1440/1469] Compiling CareKitFHIR OCKFHIRResourceCoder.swift
[1441/1469] Compiling CareKitFHIR OCKFHIRResourceData.swift
[1442/1469] Compiling CareKitFHIR OCKDSTU2PatientCoder.swift
[1443/1469] Compiling CareKitFHIR OCKPatientConverterTraits.swift
[1444/1469] Compiling CareKitFHIR OCKFHIRRelease.swift
[1445/1469] Compiling CareKitFHIR OCKFHIRResource.swift
[1446/1469] Compiling CareKitFHIR OCKFHIRCodingError.swift
[1447/1469] Compiling CareKitFHIR OCKFHIRContentType.swift
[1448/1469] Compiling CareKitFHIR FHIRModels+Extensions.swift
[1449/1469] Compiling CareKitFHIR OCK+FHIRExtensions.swift
[1450/1469] Emitting module CareKitFHIR
[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