Build Information
Successful build of CoreStore, reference 9.3.0 (5a0d27
), with Swift 6.1 for tvOS using Xcode 16.3 on 29 Apr 2025 19:17:49 UTC.
Swift 6 data race errors: 29
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme CoreStore -destination generic/platform=tvOS OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures
Build Log
@interface NSManagedObjectModel : NSObject <NSCoding, NSCopying, NSFastEnumeration> {
^
/Users/admin/builder/spi-builder-workspace/Sources/DataStack+Migration.swift:455:51: warning: capture of 'destinationModel' with non-sendable type 'NSManagedObjectModel' in an isolated closure; this is an error in the Swift 6 language mode
destinationModel: destinationModel,
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSManagedObjectModel.h:23:12: note: class 'NSManagedObjectModel' does not conform to the 'Sendable' protocol
@interface NSManagedObjectModel : NSObject <NSCoding, NSCopying, NSFastEnumeration> {
^
/Users/admin/builder/spi-builder-workspace/Sources/DataStack+Migration.swift:456:47: warning: capture of 'mappingModel' with non-sendable type 'NSMappingModel' in an isolated closure; this is an error in the Swift 6 language mode
mappingModel: mappingModel,
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSMappingModel.h:19:12: note: class 'NSMappingModel' does not conform to the 'Sendable' protocol
@interface NSMappingModel: NSObject {
^
/Users/admin/builder/spi-builder-workspace/Sources/DataStack+Migration.swift:457:48: warning: capture of 'migrationType' with non-sendable type 'MigrationType' in an isolated closure; this is an error in the Swift 6 language mode
migrationType: migrationType,
^
/Users/admin/builder/spi-builder-workspace/Sources/MigrationType.swift:34:13: note: consider making enum 'MigrationType' conform to the 'Sendable' protocol
public enum MigrationType: Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DataStack+Migration.swift:468:29: warning: capture of 'migrationResult' with non-sendable type 'MigrationResult?' (aka 'Optional<Result<Array<MigrationType>, CoreStoreError>>') in an isolated closure; this is an error in the Swift 6 language mode
migrationResult = .failure(migrationError)
^
/Users/admin/builder/spi-builder-workspace/Sources/MigrationType.swift:34:13: note: consider making enum 'MigrationType' conform to the 'Sendable' protocol
public enum MigrationType: Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DataStack+Migration.swift:468:29: warning: mutation of captured var 'migrationResult' in concurrently-executing code; this is an error in the Swift 6 language mode
migrationResult = .failure(migrationError)
^
/Users/admin/builder/spi-builder-workspace/Sources/DataStack+Migration.swift:469:29: warning: mutation of captured var 'cancelled' in concurrently-executing code; this is an error in the Swift 6 language mode
cancelled = true
^
/Users/admin/builder/spi-builder-workspace/Sources/DataStack+Migration.swift:491:17: warning: capture of 'completion' with non-sendable type '(MigrationResult) -> Void' (aka '(Result<Array<MigrationType>, CoreStoreError>) -> ()') in a '@Sendable' closure
completion(migrationResult ?? .success(migrationTypes))
^
/Users/admin/builder/spi-builder-workspace/Sources/DataStack+Migration.swift:491:17: note: a function type must be marked '@Sendable' to conform to 'Sendable'
completion(migrationResult ?? .success(migrationTypes))
^
/Users/admin/builder/spi-builder-workspace/Sources/DataStack+Migration.swift:491:28: warning: capture of 'migrationResult' with non-sendable type 'MigrationResult?' (aka 'Optional<Result<Array<MigrationType>, CoreStoreError>>') in a '@Sendable' closure
completion(migrationResult ?? .success(migrationTypes))
^
/Users/admin/builder/spi-builder-workspace/Sources/MigrationType.swift:34:13: note: consider making enum 'MigrationType' conform to the 'Sendable' protocol
public enum MigrationType: Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DataStack+Migration.swift:491:56: warning: capture of 'migrationTypes' with non-sendable type '[MigrationType]' in a '@Sendable' closure
completion(migrationResult ?? .success(migrationTypes))
^
/Users/admin/builder/spi-builder-workspace/Sources/MigrationType.swift:34:13: note: consider making enum 'MigrationType' conform to the 'Sendable' protocol
public enum MigrationType: Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DataStack+Migration.swift:611:34: warning: converting non-sendable function value to '@Sendable @convention(block) () -> Void' may introduce data races
execute: recursiveCheck
^
/Users/admin/builder/spi-builder-workspace/Sources/DataStack+Migration.swift:614:43: warning: converting non-sendable function value to '@Sendable @convention(block) () -> Void' may introduce data races
timerQueue.async(execute: recursiveCheck)
^
/Users/admin/builder/spi-builder-workspace/Sources/DataStack+Migration.swift:61:21: warning: sending 'completion' risks causing data races; this is an error in the Swift 6 language mode
completion(.success(storage))
~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/DataStack+Migration.swift:61:21: note: task-isolated 'completion' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
completion(.success(storage))
^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/DataStack+Migration.swift:61:41: warning: sending 'storage' risks causing data races; this is an error in the Swift 6 language mode
completion(.success(storage))
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/DataStack+Migration.swift:61:41: note: task-isolated 'storage' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
completion(.success(storage))
^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/DataStack+Migration.swift:76:21: warning: sending 'completion' risks causing data races; this is an error in the Swift 6 language mode
completion(.success(storage))
~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/DataStack+Migration.swift:76:21: note: task-isolated 'completion' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
completion(.success(storage))
^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/DataStack+Migration.swift:76:41: warning: sending 'storage' risks causing data races; this is an error in the Swift 6 language mode
completion(.success(storage))
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/DataStack+Migration.swift:76:41: note: task-isolated 'storage' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
completion(.success(storage))
^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/DataStack+Migration.swift:88:21: warning: sending 'completion' risks causing data races; this is an error in the Swift 6 language mode
completion(.failure(storeError))
~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/DataStack+Migration.swift:88:21: note: task-isolated 'completion' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
completion(.failure(storeError))
^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/DataStack+Migration.swift:406:17: warning: sending 'completion' risks causing data races; this is an error in the Swift 6 language mode
completion(.success([]))
~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/DataStack+Migration.swift:406:17: note: task-isolated 'completion' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
completion(.success([]))
^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/DataStack+Migration.swift:420:17: warning: sending 'completion' risks causing data races; this is an error in the Swift 6 language mode
completion(.failure(error))
~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/DataStack+Migration.swift:420:17: note: task-isolated 'completion' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
completion(.failure(error))
^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/DataStack+Migration.swift:396:17: warning: sending 'completion' risks causing data races; this is an error in the Swift 6 language mode
completion(.failure(error))
~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/DataStack+Migration.swift:396:17: note: task-isolated 'completion' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
completion(.failure(error))
^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/DataStack+Migration.swift:128:21: warning: sending 'completion' risks causing data races; this is an error in the Swift 6 language mode
completion(.success(storage))
~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/DataStack+Migration.swift:128:21: note: task-isolated 'completion' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
completion(.success(storage))
^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/DataStack+Migration.swift:128:41: warning: sending 'storage' risks causing data races; this is an error in the Swift 6 language mode
completion(.success(storage))
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/DataStack+Migration.swift:128:41: note: task-isolated 'storage' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
completion(.success(storage))
^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/DataStack+Migration.swift:140:25: warning: sending 'completion' risks causing data races; this is an error in the Swift 6 language mode
completion(.success(existingStorage))
~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/DataStack+Migration.swift:140:25: note: task-isolated 'completion' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
completion(.success(existingStorage))
^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/DataStack+Migration.swift:140:45: warning: sending 'existingStorage' risks causing data races; this is an error in the Swift 6 language mode
completion(.success(existingStorage))
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/DataStack+Migration.swift:140:45: note: task-isolated 'existingStorage' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
completion(.success(existingStorage))
^~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/DataStack+Migration.swift:152:21: warning: sending 'completion' risks causing data races; this is an error in the Swift 6 language mode
completion(.failure(error))
~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/DataStack+Migration.swift:152:21: note: task-isolated 'completion' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
completion(.failure(error))
^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/DataStack+Migration.swift:229:29: warning: sending 'completion' risks causing data races; this is an error in the Swift 6 language mode
completion(.success(storage))
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/DataStack+Migration.swift:229:29: note: task-isolated 'completion' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
completion(.success(storage))
^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/DataStack+Migration.swift:229:49: warning: sending 'storage' risks causing data races; this is an error in the Swift 6 language mode
completion(.success(storage))
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/DataStack+Migration.swift:229:49: note: task-isolated 'storage' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
completion(.success(storage))
^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/DataStack+Migration.swift:250:21: warning: sending 'completion' risks causing data races; this is an error in the Swift 6 language mode
completion(.failure(storeError))
~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/DataStack+Migration.swift:250:21: note: task-isolated 'completion' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
completion(.failure(storeError))
^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/DataStack+Migration.swift:236:29: warning: sending 'completion' risks causing data races; this is an error in the Swift 6 language mode
completion(.failure(CoreStoreError(error)))
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/DataStack+Migration.swift:236:29: note: task-isolated 'completion' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
completion(.failure(CoreStoreError(error)))
^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/DataStack+Migration.swift:190:41: warning: sending 'completion' risks causing data races; this is an error in the Swift 6 language mode
completion(.success(storage))
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/DataStack+Migration.swift:190:41: note: task-isolated 'completion' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
completion(.success(storage))
^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/DataStack+Migration.swift:190:61: warning: sending 'storage' risks causing data races; this is an error in the Swift 6 language mode
completion(.success(storage))
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/DataStack+Migration.swift:190:61: note: task-isolated 'storage' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
completion(.success(storage))
^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/DataStack+Migration.swift:210:33: warning: sending 'completion' risks causing data races; this is an error in the Swift 6 language mode
completion(.success(storage))
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/DataStack+Migration.swift:210:33: note: task-isolated 'completion' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
completion(.success(storage))
^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/DataStack+Migration.swift:210:53: warning: sending 'storage' risks causing data races; this is an error in the Swift 6 language mode
completion(.success(storage))
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/DataStack+Migration.swift:210:53: note: task-isolated 'storage' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
completion(.success(storage))
^~~~~~~
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DataStack+Observing.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DataStack+Querying.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DataStack+Reactive.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DataStack+Transaction.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/DataStack+Transaction.swift:88:44: warning: sending 'failure' risks causing data races; this is an error in the Swift 6 language mode
DispatchQueue.main.async { failure(error) }
~~^~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/DataStack+Transaction.swift:88:44: note: task-isolated 'failure' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
DispatchQueue.main.async { failure(error) }
^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/DataStack+Transaction.swift:93:44: warning: sending 'failure' risks causing data races; this is an error in the Swift 6 language mode
DispatchQueue.main.async { failure(.userError(error: error)) }
~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/DataStack+Transaction.swift:93:44: note: task-isolated 'failure' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
DispatchQueue.main.async { failure(.userError(error: error)) }
^~~~~~~
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DataStack.AddStoragePublisher.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DataStack.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/DataStack.swift:462:25: warning: static property 'defaultConfigurationName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
internal static var defaultConfigurationName = "PF_DEFAULT_CONFIGURATION_NAME"
^
/Users/admin/builder/spi-builder-workspace/Sources/DataStack.swift:462:25: note: convert 'defaultConfigurationName' to a 'let' constant to make 'Sendable' shared state immutable
internal static var defaultConfigurationName = "PF_DEFAULT_CONFIGURATION_NAME"
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/DataStack.swift:462:25: note: add '@MainActor' to make static property 'defaultConfigurationName' part of global actor 'MainActor'
internal static var defaultConfigurationName = "PF_DEFAULT_CONFIGURATION_NAME"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DataStack.swift:462:25: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
internal static var defaultConfigurationName = "PF_DEFAULT_CONFIGURATION_NAME"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DataStack.swift:414:47: warning: passing non-sendable parameter 'completion' to function expecting a @Sendable closure
DispatchQueue.main.async(execute: completion)
^
/Users/admin/builder/spi-builder-workspace/Sources/DataStack.swift:401:9: note: parameter 'completion' is implicitly non-sendable
completion: @escaping () -> Void = {}
^
@Sendable
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DefaultLogger.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DiffableDataSource.BaseAdapter.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DiffableDataSource.CollectionViewAdapter-AppKit.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DiffableDataSource.CollectionViewAdapter-UIKit.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/DiffableDataSource.CollectionViewAdapter-UIKit.swift:188:31: warning: main actor-isolated property 'window' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
return self.base?.window == nil
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:223:55: note: property declared here
@property(nullable, nonatomic,readonly) UIWindow *window;
^
/Users/admin/builder/spi-builder-workspace/Sources/DiffableDataSource.CollectionViewAdapter-UIKit.swift:193:24: warning: call to main actor-isolated instance method 'deleteSections' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
self.base?.deleteSections(indices)
^
UIKit.UICollectionView.deleteSections:2:22: note: calls to instance method 'deleteSections' from outside of its actor context are implicitly asynchronous
@MainActor open func deleteSections(_ sections: IndexSet)}
^
/Users/admin/builder/spi-builder-workspace/Sources/DiffableDataSource.CollectionViewAdapter-UIKit.swift:191:21: note: add '@MainActor' to make instance method 'deleteSections(at:animated:)' part of global actor 'MainActor'
public func deleteSections(at indices: IndexSet, animated: Bool) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DiffableDataSource.CollectionViewAdapter-UIKit.swift:198:24: warning: call to main actor-isolated instance method 'insertSections' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
self.base?.insertSections(indices)
^
UIKit.UICollectionView.insertSections:2:22: note: calls to instance method 'insertSections' from outside of its actor context are implicitly asynchronous
@MainActor open func insertSections(_ sections: IndexSet)}
^
/Users/admin/builder/spi-builder-workspace/Sources/DiffableDataSource.CollectionViewAdapter-UIKit.swift:196:21: note: add '@MainActor' to make instance method 'insertSections(at:animated:)' part of global actor 'MainActor'
public func insertSections(at indices: IndexSet, animated: Bool) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DiffableDataSource.CollectionViewAdapter-UIKit.swift:203:24: warning: call to main actor-isolated instance method 'reloadSections' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
self.base?.reloadSections(indices)
^
UIKit.UICollectionView.reloadSections:2:22: note: calls to instance method 'reloadSections' from outside of its actor context are implicitly asynchronous
@MainActor open func reloadSections(_ sections: IndexSet)}
^
/Users/admin/builder/spi-builder-workspace/Sources/DiffableDataSource.CollectionViewAdapter-UIKit.swift:201:21: note: add '@MainActor' to make instance method 'reloadSections(at:animated:)' part of global actor 'MainActor'
public func reloadSections(at indices: IndexSet, animated: Bool) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DiffableDataSource.CollectionViewAdapter-UIKit.swift:208:24: warning: call to main actor-isolated instance method 'moveSection(_:toSection:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
self.base?.moveSection(index, toSection: newIndex)
^
UIKit.UICollectionView.moveSection:2:22: note: calls to instance method 'moveSection(_:toSection:)' from outside of its actor context are implicitly asynchronous
@MainActor open func moveSection(_ section: Int, toSection newSection: Int)}
^
/Users/admin/builder/spi-builder-workspace/Sources/DiffableDataSource.CollectionViewAdapter-UIKit.swift:206:21: note: add '@MainActor' to make instance method 'moveSection(at:to:animated:)' part of global actor 'MainActor'
public func moveSection(at index: IndexSet.Element, to newIndex: IndexSet.Element, animated: Bool) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DiffableDataSource.CollectionViewAdapter-UIKit.swift:213:24: warning: call to main actor-isolated instance method 'deleteItems(at:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
self.base?.deleteItems(at: indexPaths)
^
UIKit.UICollectionView.deleteItems:2:22: note: calls to instance method 'deleteItems(at:)' from outside of its actor context are implicitly asynchronous
@MainActor open func deleteItems(at indexPaths: [IndexPath])}
^
/Users/admin/builder/spi-builder-workspace/Sources/DiffableDataSource.CollectionViewAdapter-UIKit.swift:211:21: note: add '@MainActor' to make instance method 'deleteItems(at:animated:)' part of global actor 'MainActor'
public func deleteItems(at indexPaths: [IndexPath], animated: Bool) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DiffableDataSource.CollectionViewAdapter-UIKit.swift:218:24: warning: call to main actor-isolated instance method 'insertItems(at:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
self.base?.insertItems(at: indexPaths)
^
UIKit.UICollectionView.insertItems:2:22: note: calls to instance method 'insertItems(at:)' from outside of its actor context are implicitly asynchronous
@MainActor open func insertItems(at indexPaths: [IndexPath])}
^
/Users/admin/builder/spi-builder-workspace/Sources/DiffableDataSource.CollectionViewAdapter-UIKit.swift:216:21: note: add '@MainActor' to make instance method 'insertItems(at:animated:)' part of global actor 'MainActor'
public func insertItems(at indexPaths: [IndexPath], animated: Bool) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DiffableDataSource.CollectionViewAdapter-UIKit.swift:223:24: warning: call to main actor-isolated instance method 'reloadItems(at:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
self.base?.reloadItems(at: indexPaths)
^
UIKit.UICollectionView.reloadItems:2:22: note: calls to instance method 'reloadItems(at:)' from outside of its actor context are implicitly asynchronous
@MainActor open func reloadItems(at indexPaths: [IndexPath])}
^
/Users/admin/builder/spi-builder-workspace/Sources/DiffableDataSource.CollectionViewAdapter-UIKit.swift:221:21: note: add '@MainActor' to make instance method 'reloadItems(at:animated:)' part of global actor 'MainActor'
public func reloadItems(at indexPaths: [IndexPath], animated: Bool) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DiffableDataSource.CollectionViewAdapter-UIKit.swift:228:24: warning: call to main actor-isolated instance method 'moveItem(at:to:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
self.base?.moveItem(at: indexPath, to: newIndexPath)
^
UIKit.UICollectionView.moveItem:2:22: note: calls to instance method 'moveItem(at:to:)' from outside of its actor context are implicitly asynchronous
@MainActor open func moveItem(at indexPath: IndexPath, to newIndexPath: IndexPath)}
^
/Users/admin/builder/spi-builder-workspace/Sources/DiffableDataSource.CollectionViewAdapter-UIKit.swift:226:21: note: add '@MainActor' to make instance method 'moveItem(at:to:animated:)' part of global actor 'MainActor'
public func moveItem(at indexPath: IndexPath, to newIndexPath: IndexPath, animated: Bool) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DiffableDataSource.CollectionViewAdapter-UIKit.swift:233:24: warning: call to main actor-isolated instance method 'performBatchUpdates(_:completion:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
self.base?.performBatchUpdates(updates, completion: { _ in completion() })
^
UIKit.UICollectionView.performBatchUpdates:2:22: note: calls to instance method 'performBatchUpdates(_:completion:)' from outside of its actor context are implicitly asynchronous
@MainActor open func performBatchUpdates(_ updates: (() -> Void)?, completion: ((Bool) -> Void)? = nil)}
^
/Users/admin/builder/spi-builder-workspace/Sources/DiffableDataSource.CollectionViewAdapter-UIKit.swift:231:21: note: add '@MainActor' to make instance method 'performBatchUpdates(updates:animated:completion:)' part of global actor 'MainActor'
public func performBatchUpdates(updates: () -> Void, animated: Bool, completion: @escaping () -> Void) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DiffableDataSource.CollectionViewAdapter-UIKit.swift:238:24: warning: call to main actor-isolated instance method 'reloadData()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
self.base?.reloadData()
^
UIKit.UICollectionView.reloadData:2:22: note: calls to instance method 'reloadData()' from outside of its actor context are implicitly asynchronous
@MainActor open func reloadData()}
^
/Users/admin/builder/spi-builder-workspace/Sources/DiffableDataSource.CollectionViewAdapter-UIKit.swift:236:21: note: add '@MainActor' to make instance method 'reloadData()' part of global actor 'MainActor'
public func reloadData() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DiffableDataSource.CollectionViewAdapter-UIKit.swift:233:24: warning: sending value of non-Sendable type '() -> Void' risks causing data races; this is an error in the Swift 6 language mode
self.base?.performBatchUpdates(updates, completion: { _ in completion() })
~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/DiffableDataSource.CollectionViewAdapter-UIKit.swift:233:24: note: sending task-isolated value of non-Sendable type '() -> Void' to main actor-isolated instance method 'performBatchUpdates(_:completion:)' risks causing races in between task-isolated and main actor-isolated uses
self.base?.performBatchUpdates(updates, completion: { _ in completion() })
^
/Users/admin/builder/spi-builder-workspace/Sources/DiffableDataSource.CollectionViewAdapter-UIKit.swift:233:24: warning: sending value of non-Sendable type '(Bool) -> Void' risks causing data races; this is an error in the Swift 6 language mode
self.base?.performBatchUpdates(updates, completion: { _ in completion() })
~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/DiffableDataSource.CollectionViewAdapter-UIKit.swift:233:24: note: sending task-isolated value of non-Sendable type '(Bool) -> Void' to main actor-isolated instance method 'performBatchUpdates(_:completion:)' risks causing races in between task-isolated and main actor-isolated uses
self.base?.performBatchUpdates(updates, completion: { _ in completion() })
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DiffableDataSource.TableViewAdapter-UIKit.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/DiffableDataSource.TableViewAdapter-UIKit.swift:243:31: warning: main actor-isolated property 'window' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
return self.base?.window == nil
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:223:55: note: property declared here
@property(nullable, nonatomic,readonly) UIWindow *window;
^
/Users/admin/builder/spi-builder-workspace/Sources/DiffableDataSource.TableViewAdapter-UIKit.swift:248:24: warning: call to main actor-isolated instance method 'deleteSections(_:with:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
self.base?.deleteSections(indices, with: .automatic)
^
UIKit.UITableView.deleteSections:2:22: note: calls to instance method 'deleteSections(_:with:)' from outside of its actor context are implicitly asynchronous
@MainActor open func deleteSections(_ sections: IndexSet, with animation: UITableView.RowAnimation)}
^
/Users/admin/builder/spi-builder-workspace/Sources/DiffableDataSource.TableViewAdapter-UIKit.swift:246:21: note: add '@MainActor' to make instance method 'deleteSections(at:animated:)' part of global actor 'MainActor'
public func deleteSections(at indices: IndexSet, animated: Bool) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DiffableDataSource.TableViewAdapter-UIKit.swift:253:24: warning: call to main actor-isolated instance method 'insertSections(_:with:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
self.base?.insertSections(indices, with: .automatic)
^
UIKit.UITableView.insertSections:2:22: note: calls to instance method 'insertSections(_:with:)' from outside of its actor context are implicitly asynchronous
@MainActor open func insertSections(_ sections: IndexSet, with animation: UITableView.RowAnimation)}
^
/Users/admin/builder/spi-builder-workspace/Sources/DiffableDataSource.TableViewAdapter-UIKit.swift:251:21: note: add '@MainActor' to make instance method 'insertSections(at:animated:)' part of global actor 'MainActor'
public func insertSections(at indices: IndexSet, animated: Bool) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DiffableDataSource.TableViewAdapter-UIKit.swift:258:24: warning: call to main actor-isolated instance method 'reloadSections(_:with:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
self.base?.reloadSections(indices, with: .automatic)
^
UIKit.UITableView.reloadSections:3:24: note: calls to instance method 'reloadSections(_:with:)' from outside of its actor context are implicitly asynchronous
@MainActor open func reloadSections(_ sections: IndexSet, with animation: UITableView.RowAnimation)}
^
/Users/admin/builder/spi-builder-workspace/Sources/DiffableDataSource.TableViewAdapter-UIKit.swift:256:21: note: add '@MainActor' to make instance method 'reloadSections(at:animated:)' part of global actor 'MainActor'
public func reloadSections(at indices: IndexSet, animated: Bool) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DiffableDataSource.TableViewAdapter-UIKit.swift:263:24: warning: call to main actor-isolated instance method 'moveSection(_:toSection:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
self.base?.moveSection(index, toSection: newIndex)
^
UIKit.UITableView.moveSection:3:24: note: calls to instance method 'moveSection(_:toSection:)' from outside of its actor context are implicitly asynchronous
@MainActor open func moveSection(_ section: Int, toSection newSection: Int)}
^
/Users/admin/builder/spi-builder-workspace/Sources/DiffableDataSource.TableViewAdapter-UIKit.swift:261:21: note: add '@MainActor' to make instance method 'moveSection(at:to:animated:)' part of global actor 'MainActor'
public func moveSection(at index: IndexSet.Element, to newIndex: IndexSet.Element, animated: Bool) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DiffableDataSource.TableViewAdapter-UIKit.swift:268:24: warning: call to main actor-isolated instance method 'deleteRows(at:with:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
self.base?.deleteRows(at: indexPaths, with: .automatic)
^
UIKit.UITableView.deleteRows:2:22: note: calls to instance method 'deleteRows(at:with:)' from outside of its actor context are implicitly asynchronous
@MainActor open func deleteRows(at indexPaths: [IndexPath], with animation: UITableView.RowAnimation)}
^
/Users/admin/builder/spi-builder-workspace/Sources/DiffableDataSource.TableViewAdapter-UIKit.swift:266:21: note: add '@MainActor' to make instance method 'deleteItems(at:animated:)' part of global actor 'MainActor'
public func deleteItems(at indexPaths: [IndexPath], animated: Bool) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DiffableDataSource.TableViewAdapter-UIKit.swift:273:24: warning: call to main actor-isolated instance method 'insertRows(at:with:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
self.base?.insertRows(at: indexPaths, with: .automatic)
^
UIKit.UITableView.insertRows:2:22: note: calls to instance method 'insertRows(at:with:)' from outside of its actor context are implicitly asynchronous
@MainActor open func insertRows(at indexPaths: [IndexPath], with animation: UITableView.RowAnimation)}
^
/Users/admin/builder/spi-builder-workspace/Sources/DiffableDataSource.TableViewAdapter-UIKit.swift:271:21: note: add '@MainActor' to make instance method 'insertItems(at:animated:)' part of global actor 'MainActor'
public func insertItems(at indexPaths: [IndexPath], animated: Bool) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DiffableDataSource.TableViewAdapter-UIKit.swift:278:24: warning: call to main actor-isolated instance method 'reloadRows(at:with:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
self.base?.reloadRows(at: indexPaths, with: .automatic)
^
UIKit.UITableView.reloadRows:3:24: note: calls to instance method 'reloadRows(at:with:)' from outside of its actor context are implicitly asynchronous
@MainActor open func reloadRows(at indexPaths: [IndexPath], with animation: UITableView.RowAnimation)}
^
/Users/admin/builder/spi-builder-workspace/Sources/DiffableDataSource.TableViewAdapter-UIKit.swift:276:21: note: add '@MainActor' to make instance method 'reloadItems(at:animated:)' part of global actor 'MainActor'
public func reloadItems(at indexPaths: [IndexPath], animated: Bool) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DiffableDataSource.TableViewAdapter-UIKit.swift:283:24: warning: call to main actor-isolated instance method 'moveRow(at:to:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
self.base?.moveRow(at: indexPath, to: newIndexPath)
^
UIKit.UITableView.moveRow:3:24: note: calls to instance method 'moveRow(at:to:)' from outside of its actor context are implicitly asynchronous
@MainActor open func moveRow(at indexPath: IndexPath, to newIndexPath: IndexPath)}
^
/Users/admin/builder/spi-builder-workspace/Sources/DiffableDataSource.TableViewAdapter-UIKit.swift:281:21: note: add '@MainActor' to make instance method 'moveItem(at:to:animated:)' part of global actor 'MainActor'
public func moveItem(at indexPath: IndexPath, to newIndexPath: IndexPath, animated: Bool) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DiffableDataSource.TableViewAdapter-UIKit.swift:292:18: warning: call to main actor-isolated instance method 'performBatchUpdates(_:completion:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
base.performBatchUpdates(updates, completion: { _ in completion() })
^
UIKit.UITableView.performBatchUpdates:3:24: note: calls to instance method 'performBatchUpdates(_:completion:)' from outside of its actor context are implicitly asynchronous
@MainActor open func performBatchUpdates(_ updates: (() -> Void)?, completion: ((Bool) -> Void)? = nil)}
^
/Users/admin/builder/spi-builder-workspace/Sources/DiffableDataSource.TableViewAdapter-UIKit.swift:286:21: note: add '@MainActor' to make instance method 'performBatchUpdates(updates:animated:completion:)' part of global actor 'MainActor'
public func performBatchUpdates(updates: () -> Void, animated: Bool, completion: @escaping () -> Void) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DiffableDataSource.TableViewAdapter-UIKit.swift:297:24: warning: call to main actor-isolated instance method 'reloadData()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
self.base?.reloadData()
^
UIKit.UITableView.reloadData:2:22: note: calls to instance method 'reloadData()' from outside of its actor context are implicitly asynchronous
@MainActor open func reloadData()}
^
/Users/admin/builder/spi-builder-workspace/Sources/DiffableDataSource.TableViewAdapter-UIKit.swift:295:21: note: add '@MainActor' to make instance method 'reloadData()' part of global actor 'MainActor'
public func reloadData() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DiffableDataSource.TableViewAdapter-UIKit.swift:292:18: warning: sending value of non-Sendable type '() -> Void' risks causing data races; this is an error in the Swift 6 language mode
base.performBatchUpdates(updates, completion: { _ in completion() })
~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/DiffableDataSource.TableViewAdapter-UIKit.swift:292:18: note: sending task-isolated value of non-Sendable type '() -> Void' to main actor-isolated instance method 'performBatchUpdates(_:completion:)' risks causing races in between task-isolated and main actor-isolated uses
base.performBatchUpdates(updates, completion: { _ in completion() })
^
/Users/admin/builder/spi-builder-workspace/Sources/DiffableDataSource.TableViewAdapter-UIKit.swift:292:18: warning: sending value of non-Sendable type '(Bool) -> Void' risks causing data races; this is an error in the Swift 6 language mode
base.performBatchUpdates(updates, completion: { _ in completion() })
~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/DiffableDataSource.TableViewAdapter-UIKit.swift:292:18: note: sending task-isolated value of non-Sendable type '(Bool) -> Void' to main actor-isolated instance method 'performBatchUpdates(_:completion:)' risks causing races in between task-isolated and main actor-isolated uses
base.performBatchUpdates(updates, completion: { _ in completion() })
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DiffableDataSource.Target.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DiffableDataSource.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ Into.swift,\ KeyPath+KeyPaths.swift,\ KeyPath+Querying.swift,\ KeyPathGenericBindings.swift,\ KeyPathStringConvertible.swift,\ ListMonitor.swift,\ ListObserver.swift,\ ListPublisher+Reactive.swift,\ ListPublisher.SnapshotPublisher.swift,\ ListPublisher.swift,\ ListReader.swift,\ ListSnapshot.SectionInfo.swift,\ ListSnapshot.swift,\ ListState.swift,\ MigrationChain.swift,\ MigrationProgress.swift,\ MigrationResult.swift /Users/admin/builder/spi-builder-workspace/Sources/Into.swift /Users/admin/builder/spi-builder-workspace/Sources/KeyPath+KeyPaths.swift /Users/admin/builder/spi-builder-workspace/Sources/KeyPath+Querying.swift /Users/admin/builder/spi-builder-workspace/Sources/KeyPathGenericBindings.swift /Users/admin/builder/spi-builder-workspace/Sources/KeyPathStringConvertible.swift /Users/admin/builder/spi-builder-workspace/Sources/ListMonitor.swift /Users/admin/builder/spi-builder-workspace/Sources/ListObserver.swift /Users/admin/builder/spi-builder-workspace/Sources/ListPublisher+Reactive.swift /Users/admin/builder/spi-builder-workspace/Sources/ListPublisher.SnapshotPublisher.swift /Users/admin/builder/spi-builder-workspace/Sources/ListPublisher.swift /Users/admin/builder/spi-builder-workspace/Sources/ListReader.swift /Users/admin/builder/spi-builder-workspace/Sources/ListSnapshot.SectionInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/ListSnapshot.swift /Users/admin/builder/spi-builder-workspace/Sources/ListState.swift /Users/admin/builder/spi-builder-workspace/Sources/MigrationChain.swift /Users/admin/builder/spi-builder-workspace/Sources/MigrationProgress.swift /Users/admin/builder/spi-builder-workspace/Sources/MigrationResult.swift (in target 'CoreStore' from project 'CoreStore')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Into.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/KeyPath+KeyPaths.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/KeyPath+Querying.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/KeyPathGenericBindings.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/KeyPathStringConvertible.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ListMonitor.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/ListMonitor.swift:1167:34: warning: capture of 'self' with non-sendable type 'ListMonitor<O>?' in a '@Sendable' closure
guard let self = self else {
^
/Users/admin/builder/spi-builder-workspace/Sources/ListMonitor.swift:69:20: note: generic class 'ListMonitor' does not conform to the 'Sendable' protocol
public final class ListMonitor<O: DynamicObject>: Hashable {
^
/Users/admin/builder/spi-builder-workspace/Sources/ListMonitor.swift:1173:25: warning: capture of 'newFetchedResultsController' with non-sendable type 'Internals.CoreStoreFetchedResultsController' in a '@Sendable' closure
try newFetchedResultsController.performFetchFromSpecifiedStores()
^
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchedResultsController.swift:36:26: note: class 'CoreStoreFetchedResultsController' does not conform to the 'Sendable' protocol
internal final class CoreStoreFetchedResultsController: NSFetchedResultsController<NSManagedObject> {
^
/Users/admin/builder/spi-builder-workspace/Sources/ListMonitor.swift:1184:17: warning: capture of 'newFetchedResultsControllerDelegate' with non-sendable type 'Internals.FetchedResultsControllerDelegate' in a '@Sendable' closure
newFetchedResultsControllerDelegate.taskGroup.notify(queue: .main) { [weak self] () -> Void in
^
/Users/admin/builder/spi-builder-workspace/Sources/Internals.FetchedResultsControllerDelegate.swift:67:26: note: class 'FetchedResultsControllerDelegate' does not conform to the 'Sendable' protocol
internal final class FetchedResultsControllerDelegate: NSObject, NSFetchedResultsControllerDelegate {
^
/Users/admin/builder/spi-builder-workspace/Sources/ListMonitor.swift:1198:43: warning: capture of 'sourceIdentifier' with non-sendable type 'Any?' in a '@Sendable' closure
sourceIdentifier: sourceIdentifier
^
/Users/admin/builder/spi-builder-workspace/Sources/ListMonitor.swift:1191:95: warning: capture of 'newFetchedResultsController' with non-sendable type 'Internals.CoreStoreFetchedResultsController' in an isolated closure; this is an error in the Swift 6 language mode
(self.fetchedResultsController, self.fetchedResultsControllerDelegate) = (newFetchedResultsController, newFetchedResultsControllerDelegate)
^
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchedResultsController.swift:36:26: note: class 'CoreStoreFetchedResultsController' does not conform to the 'Sendable' protocol
internal final class CoreStoreFetchedResultsController: NSFetchedResultsController<NSManagedObject> {
^
/Users/admin/builder/spi-builder-workspace/Sources/ListMonitor.swift:1191:124: warning: capture of 'newFetchedResultsControllerDelegate' with non-sendable type 'Internals.FetchedResultsControllerDelegate' in an isolated closure; this is an error in the Swift 6 language mode
(self.fetchedResultsController, self.fetchedResultsControllerDelegate) = (newFetchedResultsController, newFetchedResultsControllerDelegate)
^
/Users/admin/builder/spi-builder-workspace/Sources/Internals.FetchedResultsControllerDelegate.swift:67:26: note: class 'FetchedResultsControllerDelegate' does not conform to the 'Sendable' protocol
internal final class FetchedResultsControllerDelegate: NSObject, NSFetchedResultsControllerDelegate {
^
/Users/admin/builder/spi-builder-workspace/Sources/ListMonitor.swift:1198:43: warning: capture of 'sourceIdentifier' with non-sendable type 'Any?' in an isolated closure; this is an error in the Swift 6 language mode
sourceIdentifier: sourceIdentifier
^
/Users/admin/builder/spi-builder-workspace/Sources/ListMonitor.swift:1389:22: warning: capture of 'self' with non-sendable type 'ListMonitor<O>' in a '@Sendable' closure
try! self.fetchedResultsController.performFetchFromSpecifiedStores()
^
/Users/admin/builder/spi-builder-workspace/Sources/ListMonitor.swift:69:20: note: generic class 'ListMonitor' does not conform to the 'Sendable' protocol
public final class ListMonitor<O: DynamicObject>: Hashable {
^
/Users/admin/builder/spi-builder-workspace/Sources/ListMonitor.swift:1392:21: warning: capture of 'createAsynchronously' with non-sendable type '(ListMonitor<O>) -> Void' in a '@Sendable' closure
createAsynchronously(self)
^
/Users/admin/builder/spi-builder-workspace/Sources/ListMonitor.swift:1392:21: note: a function type must be marked '@Sendable' to conform to 'Sendable'
createAsynchronously(self)
^
/Users/admin/builder/spi-builder-workspace/Sources/ListMonitor.swift:1392:21: warning: capture of 'createAsynchronously' with non-sendable type '(ListMonitor<O>) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
createAsynchronously(self)
^
/Users/admin/builder/spi-builder-workspace/Sources/ListMonitor.swift:1392:21: note: a function type must be marked '@Sendable' to conform to 'Sendable'
createAsynchronously(self)
^
/Users/admin/builder/spi-builder-workspace/Sources/ListMonitor.swift:1392:42: warning: capture of 'self' with non-sendable type 'ListMonitor<O>' in an isolated closure; this is an error in the Swift 6 language mode
createAsynchronously(self)
^
/Users/admin/builder/spi-builder-workspace/Sources/ListMonitor.swift:69:20: note: generic class 'ListMonitor' does not conform to the 'Sendable' protocol
public final class ListMonitor<O: DynamicObject>: Hashable {
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ListObserver.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ListPublisher+Reactive.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ListPublisher.SnapshotPublisher.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/ListPublisher.SnapshotPublisher.swift:149:25: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
self.publisher.removeObserver(self)
~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ListPublisher.SnapshotPublisher.swift:149:25: note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
self.publisher.removeObserver(self)
^~~~
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ListPublisher.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ListReader.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ListSnapshot.SectionInfo.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ListSnapshot.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ListState.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/ListState.swift:340:6: warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
@ObservedObject
^
SwiftUICore.ObservedObject.init:2:35: note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
@MainActor @preconcurrency public init(wrappedValue: ObjectType)}
^
/Users/admin/builder/spi-builder-workspace/Sources/ListState.swift:72:14: warning: main actor-isolated property 'observer' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
self.observer = .init(listPublisher: listPublisher)
^
/Users/admin/builder/spi-builder-workspace/Sources/ListState.swift:341:17: note: mutation of this property is only permitted within the actor
private var observer: Observer
^
/Users/admin/builder/spi-builder-workspace/Sources/ListState.swift:321:21: warning: main actor-isolated property 'observer' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
return self.observer.items
^
/Users/admin/builder/spi-builder-workspace/Sources/ListState.swift:341:17: note: property declared here
private var observer: Observer
^
/Users/admin/builder/spi-builder-workspace/Sources/ListState.swift:326:21: warning: main actor-isolated property 'observer' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
return self.observer.listPublisher
^
/Users/admin/builder/spi-builder-workspace/Sources/ListState.swift:341:17: note: property declared here
private var observer: Observer
^
/Users/admin/builder/spi-builder-workspace/Sources/ListState.swift:340:6: warning: sending '$input_value' risks causing data races; this is an error in the Swift 6 language mode
@ObservedObject
^~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ListState.swift:340:6: note: sending task-isolated '$input_value' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
@ObservedObject
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MigrationChain.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MigrationProgress.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MigrationResult.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ FieldCoders.DefaultNSSecureCoding.swift,\ FieldCoders.Json.swift,\ FieldCoders.NSCoding.swift,\ FieldCoders.Plist.swift,\ FieldCoders.swift,\ FieldOptionalType.swift,\ FieldProtocol.swift,\ FieldRelationshipProtocol.swift,\ FieldStorableType.swift,\ ForEach+SwiftUI.swift,\ From+Querying.swift,\ From.swift,\ GroupBy.swift,\ ImportableAttributeType.swift,\ ImportableObject.swift,\ ImportableUniqueObject.swift,\ InMemoryStore.swift,\ InferredSchemaMappingProvider.swift /Users/admin/builder/spi-builder-workspace/Sources/FieldCoders.DefaultNSSecureCoding.swift /Users/admin/builder/spi-builder-workspace/Sources/FieldCoders.Json.swift /Users/admin/builder/spi-builder-workspace/Sources/FieldCoders.NSCoding.swift /Users/admin/builder/spi-builder-workspace/Sources/FieldCoders.Plist.swift /Users/admin/builder/spi-builder-workspace/Sources/FieldCoders.swift /Users/admin/builder/spi-builder-workspace/Sources/FieldOptionalType.swift /Users/admin/builder/spi-builder-workspace/Sources/FieldProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/FieldRelationshipProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/FieldStorableType.swift /Users/admin/builder/spi-builder-workspace/Sources/ForEach+SwiftUI.swift /Users/admin/builder/spi-builder-workspace/Sources/From+Querying.swift /Users/admin/builder/spi-builder-workspace/Sources/From.swift /Users/admin/builder/spi-builder-workspace/Sources/GroupBy.swift /Users/admin/builder/spi-builder-workspace/Sources/ImportableAttributeType.swift /Users/admin/builder/spi-builder-workspace/Sources/ImportableObject.swift /Users/admin/builder/spi-builder-workspace/Sources/ImportableUniqueObject.swift /Users/admin/builder/spi-builder-workspace/Sources/InMemoryStore.swift /Users/admin/builder/spi-builder-workspace/Sources/InferredSchemaMappingProvider.swift (in target 'CoreStore' from project 'CoreStore')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FieldCoders.DefaultNSSecureCoding.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FieldCoders.Json.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FieldCoders.NSCoding.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FieldCoders.Plist.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FieldCoders.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FieldOptionalType.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FieldProtocol.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FieldRelationshipProtocol.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FieldStorableType.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ForEach+SwiftUI.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/From+Querying.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/From.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/GroupBy.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ImportableAttributeType.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ImportableObject.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ImportableUniqueObject.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/InMemoryStore.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/InferredSchemaMappingProvider.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ QueryableSource.swift,\ Relationship.ToManyOrdered.swift,\ Relationship.ToManyUnordered.swift,\ Relationship.ToOne.swift,\ Relationship.swift,\ RelationshipProtocol.swift,\ SQLiteStore.swift,\ SchemaHistory.swift,\ SchemaMappingProvider.swift,\ SectionBy.swift,\ SectionMonitorBuilder.swift,\ Select.swift,\ SetupResult.swift,\ StorageInterface.swift,\ String+KeyPaths.swift,\ SynchronousDataTransaction.swift,\ Transformable.Optional.swift /Users/admin/builder/spi-builder-workspace/Sources/QueryableSource.swift /Users/admin/builder/spi-builder-workspace/Sources/Relationship.ToManyOrdered.swift /Users/admin/builder/spi-builder-workspace/Sources/Relationship.ToManyUnordered.swift /Users/admin/builder/spi-builder-workspace/Sources/Relationship.ToOne.swift /Users/admin/builder/spi-builder-workspace/Sources/Relationship.swift /Users/admin/builder/spi-builder-workspace/Sources/RelationshipProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/SQLiteStore.swift /Users/admin/builder/spi-builder-workspace/Sources/SchemaHistory.swift /Users/admin/builder/spi-builder-workspace/Sources/SchemaMappingProvider.swift /Users/admin/builder/spi-builder-workspace/Sources/SectionBy.swift /Users/admin/builder/spi-builder-workspace/Sources/SectionMonitorBuilder.swift /Users/admin/builder/spi-builder-workspace/Sources/Select.swift /Users/admin/builder/spi-builder-workspace/Sources/SetupResult.swift /Users/admin/builder/spi-builder-workspace/Sources/StorageInterface.swift /Users/admin/builder/spi-builder-workspace/Sources/String+KeyPaths.swift /Users/admin/builder/spi-builder-workspace/Sources/SynchronousDataTransaction.swift /Users/admin/builder/spi-builder-workspace/Sources/Transformable.Optional.swift (in target 'CoreStore' from project 'CoreStore')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/QueryableSource.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Relationship.ToManyOrdered.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Relationship.ToManyUnordered.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Relationship.ToOne.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Relationship.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RelationshipProtocol.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SQLiteStore.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SchemaHistory.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SchemaMappingProvider.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SectionBy.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SectionMonitorBuilder.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Select.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SetupResult.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StorageInterface.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/StorageInterface.swift:76:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'LocalStorageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let none: LocalStorageOptions = []
^
/Users/admin/builder/spi-builder-workspace/Sources/StorageInterface.swift:71:15: note: consider making struct 'LocalStorageOptions' conform to the 'Sendable' protocol
public struct LocalStorageOptions: OptionSet, ExpressibleByNilLiteral {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/StorageInterface.swift:76:23: note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
public static let none: LocalStorageOptions = []
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/StorageInterface.swift:76:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let none: LocalStorageOptions = []
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/StorageInterface.swift:81:23: warning: static property 'recreateStoreOnModelMismatch' is not concurrency-safe because non-'Sendable' type 'LocalStorageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let recreateStoreOnModelMismatch: LocalStorageOptions = .init(rawValue: 1 << 0)
^
/Users/admin/builder/spi-builder-workspace/Sources/StorageInterface.swift:71:15: note: consider making struct 'LocalStorageOptions' conform to the 'Sendable' protocol
public struct LocalStorageOptions: OptionSet, ExpressibleByNilLiteral {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/StorageInterface.swift:81:23: note: add '@MainActor' to make static property 'recreateStoreOnModelMismatch' part of global actor 'MainActor'
public static let recreateStoreOnModelMismatch: LocalStorageOptions = .init(rawValue: 1 << 0)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/StorageInterface.swift:81:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let recreateStoreOnModelMismatch: LocalStorageOptions = .init(rawValue: 1 << 0)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/StorageInterface.swift:86:23: warning: static property 'preventProgressiveMigration' is not concurrency-safe because non-'Sendable' type 'LocalStorageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let preventProgressiveMigration: LocalStorageOptions = .init(rawValue: 1 << 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/StorageInterface.swift:71:15: note: consider making struct 'LocalStorageOptions' conform to the 'Sendable' protocol
public struct LocalStorageOptions: OptionSet, ExpressibleByNilLiteral {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/StorageInterface.swift:86:23: note: add '@MainActor' to make static property 'preventProgressiveMigration' part of global actor 'MainActor'
public static let preventProgressiveMigration: LocalStorageOptions = .init(rawValue: 1 << 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/StorageInterface.swift:86:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let preventProgressiveMigration: LocalStorageOptions = .init(rawValue: 1 << 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/StorageInterface.swift:91:23: warning: static property 'allowSynchronousLightweightMigration' is not concurrency-safe because non-'Sendable' type 'LocalStorageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let allowSynchronousLightweightMigration: LocalStorageOptions = .init(rawValue: 1 << 2)
^
/Users/admin/builder/spi-builder-workspace/Sources/StorageInterface.swift:71:15: note: consider making struct 'LocalStorageOptions' conform to the 'Sendable' protocol
public struct LocalStorageOptions: OptionSet, ExpressibleByNilLiteral {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/StorageInterface.swift:91:23: note: add '@MainActor' to make static property 'allowSynchronousLightweightMigration' part of global actor 'MainActor'
public static let allowSynchronousLightweightMigration: LocalStorageOptions = .init(rawValue: 1 << 2)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/StorageInterface.swift:91:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let allowSynchronousLightweightMigration: LocalStorageOptions = .init(rawValue: 1 << 2)
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/String+KeyPaths.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SynchronousDataTransaction.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Transformable.Optional.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ ObjectMonitor.swift,\ ObjectObserver.swift,\ ObjectProxy.swift,\ ObjectPublisher+Reactive.swift,\ ObjectPublisher.SnapshotPublisher.swift,\ ObjectPublisher.swift,\ ObjectReader.swift,\ ObjectRepresentation.swift,\ ObjectSnapshot.swift,\ ObjectState.swift,\ Operators.swift,\ OrderBy.swift,\ PartialObject.swift,\ Progress+Convenience.swift,\ PropertyProtocol.swift,\ QueryChainBuilder.swift,\ QueryableAttributeType.swift /Users/admin/builder/spi-builder-workspace/Sources/ObjectMonitor.swift /Users/admin/builder/spi-builder-workspace/Sources/ObjectObserver.swift /Users/admin/builder/spi-builder-workspace/Sources/ObjectProxy.swift /Users/admin/builder/spi-builder-workspace/Sources/ObjectPublisher+Reactive.swift /Users/admin/builder/spi-builder-workspace/Sources/ObjectPublisher.SnapshotPublisher.swift /Users/admin/builder/spi-builder-workspace/Sources/ObjectPublisher.swift /Users/admin/builder/spi-builder-workspace/Sources/ObjectReader.swift /Users/admin/builder/spi-builder-workspace/Sources/ObjectRepresentation.swift /Users/admin/builder/spi-builder-workspace/Sources/ObjectSnapshot.swift /Users/admin/builder/spi-builder-workspace/Sources/ObjectState.swift /Users/admin/builder/spi-builder-workspace/Sources/Operators.swift /Users/admin/builder/spi-builder-workspace/Sources/OrderBy.swift /Users/admin/builder/spi-builder-workspace/Sources/PartialObject.swift /Users/admin/builder/spi-builder-workspace/Sources/Progress+Convenience.swift /Users/admin/builder/spi-builder-workspace/Sources/PropertyProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/QueryChainBuilder.swift /Users/admin/builder/spi-builder-workspace/Sources/QueryableAttributeType.swift (in target 'CoreStore' from project 'CoreStore')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ObjectMonitor.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ObjectObserver.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ObjectProxy.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ObjectPublisher+Reactive.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ObjectPublisher.SnapshotPublisher.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/ObjectPublisher.SnapshotPublisher.swift:149:25: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
self.publisher.removeObserver(self)
~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ObjectPublisher.SnapshotPublisher.swift:149:25: note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
self.publisher.removeObserver(self)
^~~~
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ObjectPublisher.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ObjectReader.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ObjectRepresentation.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ObjectSnapshot.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ObjectState.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/ObjectState.swift:94:6: warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
@ObservedObject
^
SwiftUICore.ObservedObject.init:2:35: note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
@MainActor @preconcurrency public init(wrappedValue: ObjectType)}
^
/Users/admin/builder/spi-builder-workspace/Sources/ObjectState.swift:67:14: warning: main actor-isolated property 'observer' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
self.observer = .init(objectPublisher: objectPublisher)
^
/Users/admin/builder/spi-builder-workspace/Sources/ObjectState.swift:95:17: note: mutation of this property is only permitted within the actor
private var observer: Observer
^
/Users/admin/builder/spi-builder-workspace/Sources/ObjectState.swift:75:21: warning: main actor-isolated property 'observer' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
return self.observer.item
^
/Users/admin/builder/spi-builder-workspace/Sources/ObjectState.swift:95:17: note: property declared here
private var observer: Observer
^
/Users/admin/builder/spi-builder-workspace/Sources/ObjectState.swift:80:21: warning: main actor-isolated property 'observer' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
return self.observer.objectPublisher
^
/Users/admin/builder/spi-builder-workspace/Sources/ObjectState.swift:95:17: note: property declared here
private var observer: Observer
^
/Users/admin/builder/spi-builder-workspace/Sources/ObjectState.swift:94:6: warning: sending '$input_value' risks causing data races; this is an error in the Swift 6 language mode
@ObservedObject
^~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ObjectState.swift:94:6: note: sending task-isolated '$input_value' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
@ObservedObject
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Operators.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/OrderBy.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PartialObject.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Progress+Convenience.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Progress+Convenience.swift:49:20: warning: static property 'progressObserver' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var progressObserver: Void?
^
/Users/admin/builder/spi-builder-workspace/Sources/Progress+Convenience.swift:49:20: note: convert 'progressObserver' to a 'let' constant to make 'Sendable' shared state immutable
static var progressObserver: Void?
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/Progress+Convenience.swift:49:20: note: add '@MainActor' to make static property 'progressObserver' part of global actor 'MainActor'
static var progressObserver: Void?
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Progress+Convenience.swift:49:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var progressObserver: Void?
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Progress+Convenience.swift:135:13: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
self?.progressHandler?(progress)
~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Progress+Convenience.swift:135:13: note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
self?.progressHandler?(progress)
^~~~
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PropertyProtocol.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/QueryChainBuilder.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/QueryableAttributeType.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ AsynchronousDataTransaction.swift,\ AttributeProtocol.swift,\ BaseDataTransaction+Importing.swift,\ BaseDataTransaction+Querying.swift,\ BaseDataTransaction.swift,\ CoreDataNativeType.swift,\ CoreStore+CustomDebugStringConvertible.swift,\ CoreStore+Logging.swift,\ CoreStoreDefaults.swift,\ CoreStoreError.swift,\ CoreStoreLogger.swift,\ CoreStoreManagedObject.swift,\ CoreStoreObject+Convenience.swift,\ CoreStoreObject+DataSources.swift,\ CoreStoreObject+Observing.swift,\ CoreStoreObject+Querying.swift,\ CoreStoreObject.swift,\ CoreStoreSchema.swift /Users/admin/builder/spi-builder-workspace/Sources/AsynchronousDataTransaction.swift /Users/admin/builder/spi-builder-workspace/Sources/AttributeProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/BaseDataTransaction+Importing.swift /Users/admin/builder/spi-builder-workspace/Sources/BaseDataTransaction+Querying.swift /Users/admin/builder/spi-builder-workspace/Sources/BaseDataTransaction.swift /Users/admin/builder/spi-builder-workspace/Sources/CoreDataNativeType.swift /Users/admin/builder/spi-builder-workspace/Sources/CoreStore+CustomDebugStringConvertible.swift /Users/admin/builder/spi-builder-workspace/Sources/CoreStore+Logging.swift /Users/admin/builder/spi-builder-workspace/Sources/CoreStoreDefaults.swift /Users/admin/builder/spi-builder-workspace/Sources/CoreStoreError.swift /Users/admin/builder/spi-builder-workspace/Sources/CoreStoreLogger.swift /Users/admin/builder/spi-builder-workspace/Sources/CoreStoreManagedObject.swift /Users/admin/builder/spi-builder-workspace/Sources/CoreStoreObject+Convenience.swift /Users/admin/builder/spi-builder-workspace/Sources/CoreStoreObject+DataSources.swift /Users/admin/builder/spi-builder-workspace/Sources/CoreStoreObject+Observing.swift /Users/admin/builder/spi-builder-workspace/Sources/CoreStoreObject+Querying.swift /Users/admin/builder/spi-builder-workspace/Sources/CoreStoreObject.swift /Users/admin/builder/spi-builder-workspace/Sources/CoreStoreSchema.swift (in target 'CoreStore' from project 'CoreStore')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/AsynchronousDataTransaction.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/AttributeProtocol.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/BaseDataTransaction+Importing.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/BaseDataTransaction+Querying.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/BaseDataTransaction.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CoreDataNativeType.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CoreStore+CustomDebugStringConvertible.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CoreStore+Logging.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CoreStoreDefaults.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/CoreStoreDefaults.swift:39:23: warning: static property 'logger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var logger: CoreStoreLogger = DefaultLogger()
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreStoreDefaults.swift:39:23: note: convert 'logger' to a 'let' constant to make 'Sendable' shared state immutable
public static var logger: CoreStoreLogger = DefaultLogger()
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/CoreStoreDefaults.swift:39:23: note: add '@MainActor' to make static property 'logger' part of global actor 'MainActor'
public static var logger: CoreStoreLogger = DefaultLogger()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreStoreDefaults.swift:39:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var logger: CoreStoreLogger = DefaultLogger()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreStoreDefaults.swift:74:24: warning: static property 'defaultStackInstance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
private static var defaultStackInstance: DataStack?
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreStoreDefaults.swift:74:24: note: convert 'defaultStackInstance' to a 'let' constant to make 'Sendable' shared state immutable
private static var defaultStackInstance: DataStack?
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/CoreStoreDefaults.swift:74:24: note: add '@MainActor' to make static property 'defaultStackInstance' part of global actor 'MainActor'
private static var defaultStackInstance: DataStack?
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreStoreDefaults.swift:74:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private static var defaultStackInstance: DataStack?
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreStoreDefaults.swift:64:45: warning: capture of 'newValue' with non-sendable type 'DataStack' in a '@Sendable' closure
self.defaultStackInstance = newValue
^
/Users/admin/builder/spi-builder-workspace/Sources/DataStack.swift:35:20: note: class 'DataStack' does not conform to the 'Sendable' protocol
public final class DataStack: Equatable {
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CoreStoreError.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/CoreStoreError.swift:50:10: warning: associated value 'mappingModelNotFound(localStoreURL:targetModel:targetModelVersion:)' of 'Sendable'-conforming enum 'CoreStoreError' has non-sendable type 'NSManagedObjectModel'; this is an error in the Swift 6 language mode
case mappingModelNotFound(localStoreURL: URL, targetModel: NSManagedObjectModel, targetModelVersion: String)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSManagedObjectModel.h:23:12: note: class 'NSManagedObjectModel' does not conform to the 'Sendable' protocol
@interface NSManagedObjectModel : NSObject <NSCoding, NSCopying, NSFastEnumeration> {
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreStoreError.swift:27:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreData'
import CoreData
^
@preconcurrency
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CoreStoreLogger.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CoreStoreManagedObject.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/CoreStoreManagedObject.swift:52:16: warning: static property 'cache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var cache: [ObjectIdentifier: [KeyPathString: Set<KeyPathString>]] = [:]
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreStoreManagedObject.swift:52:16: note: convert 'cache' to a 'let' constant to make 'Sendable' shared state immutable
static var cache: [ObjectIdentifier: [KeyPathString: Set<KeyPathString>]] = [:]
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/CoreStoreManagedObject.swift:52:16: note: add '@MainActor' to make static property 'cache' part of global actor 'MainActor'
static var cache: [ObjectIdentifier: [KeyPathString: Set<KeyPathString>]] = [:]
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreStoreManagedObject.swift:52:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var cache: [ObjectIdentifier: [KeyPathString: Set<KeyPathString>]] = [:]
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CoreStoreObject+Convenience.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CoreStoreObject+DataSources.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CoreStoreObject+Observing.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/CoreStoreObject+Observing.swift:442:16: warning: static property 'swizzler' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var swizzler: Any? = Internals.with {
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreStoreObject+Observing.swift:442:16: note: convert 'swizzler' to a 'let' constant to make 'Sendable' shared state immutable
static var swizzler: Any? = Internals.with {
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/CoreStoreObject+Observing.swift:442:16: note: add '@MainActor' to make static property 'swizzler' part of global actor 'MainActor'
static var swizzler: Any? = Internals.with {
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreStoreObject+Observing.swift:442:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var swizzler: Any? = Internals.with {
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CoreStoreObject+Querying.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CoreStoreObject.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/CoreStoreObject.swift:269:28: warning: static property 'metaCache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
fileprivate static var metaCache: [ObjectIdentifier: Any] = [:]
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreStoreObject.swift:269:28: note: convert 'metaCache' to a 'let' constant to make 'Sendable' shared state immutable
fileprivate static var metaCache: [ObjectIdentifier: Any] = [:]
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/CoreStoreObject.swift:269:28: note: add '@MainActor' to make static property 'metaCache' part of global actor 'MainActor'
fileprivate static var metaCache: [ObjectIdentifier: Any] = [:]
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreStoreObject.swift:269:28: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
fileprivate static var metaCache: [ObjectIdentifier: Any] = [:]
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreStoreObject.swift:270:28: warning: static property 'propertiesCache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
fileprivate static var propertiesCache: [ObjectIdentifier: [PropertyProtocol]] = [:]
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreStoreObject.swift:270:28: note: convert 'propertiesCache' to a 'let' constant to make 'Sendable' shared state immutable
fileprivate static var propertiesCache: [ObjectIdentifier: [PropertyProtocol]] = [:]
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/CoreStoreObject.swift:270:28: note: add '@MainActor' to make static property 'propertiesCache' part of global actor 'MainActor'
fileprivate static var propertiesCache: [ObjectIdentifier: [PropertyProtocol]] = [:]
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreStoreObject.swift:270:28: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
fileprivate static var propertiesCache: [ObjectIdentifier: [PropertyProtocol]] = [:]
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CoreStoreSchema.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ MigrationType.swift,\ Module.swift,\ NSEntityDescription+DynamicModel.swift,\ NSEntityDescription+Migration.swift,\ NSFetchedResultsController+Convenience.swift,\ NSManagedObject+Convenience.swift,\ NSManagedObject+DynamicModel.swift,\ NSManagedObject+Logging.swift,\ NSManagedObject+Transaction.swift,\ NSManagedObjectContext+CoreStore.swift,\ NSManagedObjectContext+Logging.swift,\ NSManagedObjectContext+Querying.swift,\ NSManagedObjectContext+Setup.swift,\ NSManagedObjectContext+Transaction.swift,\ NSManagedObjectModel+Migration.swift,\ NSPersistentStore+Setup.swift,\ NSPersistentStoreCoordinator+Setup.swift /Users/admin/builder/spi-builder-workspace/Sources/MigrationType.swift /Users/admin/builder/spi-builder-workspace/Sources/Module.swift /Users/admin/builder/spi-builder-workspace/Sources/NSEntityDescription+DynamicModel.swift /Users/admin/builder/spi-builder-workspace/Sources/NSEntityDescription+Migration.swift /Users/admin/builder/spi-builder-workspace/Sources/NSFetchedResultsController+Convenience.swift /Users/admin/builder/spi-builder-workspace/Sources/NSManagedObject+Convenience.swift /Users/admin/builder/spi-builder-workspace/Sources/NSManagedObject+DynamicModel.swift /Users/admin/builder/spi-builder-workspace/Sources/NSManagedObject+Logging.swift /Users/admin/builder/spi-builder-workspace/Sources/NSManagedObject+Transaction.swift /Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+CoreStore.swift /Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Logging.swift /Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift /Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Setup.swift /Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Transaction.swift /Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectModel+Migration.swift /Users/admin/builder/spi-builder-workspace/Sources/NSPersistentStore+Setup.swift /Users/admin/builder/spi-builder-workspace/Sources/NSPersistentStoreCoordinator+Setup.swift (in target 'CoreStore' from project 'CoreStore')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MigrationType.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Module.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/NSEntityDescription+DynamicModel.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/NSEntityDescription+Migration.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/NSFetchedResultsController+Convenience.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/NSManagedObject+Convenience.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/NSManagedObject+DynamicModel.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObject+DynamicModel.swift:59:20: warning: static property 'coreStoreObject' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var coreStoreObject: Void?
^
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObject+DynamicModel.swift:59:20: note: convert 'coreStoreObject' to a 'let' constant to make 'Sendable' shared state immutable
static var coreStoreObject: Void?
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObject+DynamicModel.swift:59:20: note: add '@MainActor' to make static property 'coreStoreObject' part of global actor 'MainActor'
static var coreStoreObject: Void?
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObject+DynamicModel.swift:59:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var coreStoreObject: Void?
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/NSManagedObject+Logging.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/NSManagedObject+Transaction.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+CoreStore.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+CoreStore.swift:195:20: warning: static property 'observerForWillSaveNotification' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var observerForWillSaveNotification: Void?
^
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+CoreStore.swift:195:20: note: convert 'observerForWillSaveNotification' to a 'let' constant to make 'Sendable' shared state immutable
static var observerForWillSaveNotification: Void?
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+CoreStore.swift:195:20: note: add '@MainActor' to make static property 'observerForWillSaveNotification' part of global actor 'MainActor'
static var observerForWillSaveNotification: Void?
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+CoreStore.swift:195:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var observerForWillSaveNotification: Void?
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+CoreStore.swift:196:20: warning: static property 'shouldCascadeSavesToParent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var shouldCascadeSavesToParent: Void?
^
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+CoreStore.swift:196:20: note: convert 'shouldCascadeSavesToParent' to a 'let' constant to make 'Sendable' shared state immutable
static var shouldCascadeSavesToParent: Void?
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+CoreStore.swift:196:20: note: add '@MainActor' to make static property 'shouldCascadeSavesToParent' part of global actor 'MainActor'
static var shouldCascadeSavesToParent: Void?
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+CoreStore.swift:196:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var shouldCascadeSavesToParent: Void?
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Logging.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Setup.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Setup.swift:150:20: warning: static property 'parentStack' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var parentStack: Void?
^
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Setup.swift:150:20: note: convert 'parentStack' to a 'let' constant to make 'Sendable' shared state immutable
static var parentStack: Void?
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Setup.swift:150:20: note: add '@MainActor' to make static property 'parentStack' part of global actor 'MainActor'
static var parentStack: Void?
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Setup.swift:150:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var parentStack: Void?
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Setup.swift:151:20: warning: static property 'observerForDidSaveNotification' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var observerForDidSaveNotification: Void?
^
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Setup.swift:151:20: note: convert 'observerForDidSaveNotification' to a 'let' constant to make 'Sendable' shared state immutable
static var observerForDidSaveNotification: Void?
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Setup.swift:151:20: note: add '@MainActor' to make static property 'observerForDidSaveNotification' part of global actor 'MainActor'
static var observerForDidSaveNotification: Void?
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Setup.swift:151:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var observerForDidSaveNotification: Void?
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Setup.swift:152:20: warning: static property 'observerForDidImportUbiquitousContentChangesNotification' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var observerForDidImportUbiquitousContentChangesNotification: Void?
^
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Setup.swift:152:20: note: convert 'observerForDidImportUbiquitousContentChangesNotification' to a 'let' constant to make 'Sendable' shared state immutable
static var observerForDidImportUbiquitousContentChangesNotification: Void?
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Setup.swift:152:20: note: add '@MainActor' to make static property 'observerForDidImportUbiquitousContentChangesNotification' part of global actor 'MainActor'
static var observerForDidImportUbiquitousContentChangesNotification: Void?
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Setup.swift:152:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var observerForDidImportUbiquitousContentChangesNotification: Void?
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Setup.swift:68:31: warning: reference to var 'NSMergeByPropertyObjectTrumpMergePolicy' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
context.mergePolicy = NSMergeByPropertyObjectTrumpMergePolicy
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSMergePolicy.h:25:20: note: var declared here
COREDATA_EXTERN id NSMergeByPropertyObjectTrumpMergePolicy API_AVAILABLE(macosx(10.4),ios(3.0));
^
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Setup.swift:103:31: warning: reference to var 'NSRollbackMergePolicy' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
context.mergePolicy = NSRollbackMergePolicy
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSMergePolicy.h:31:20: note: var declared here
COREDATA_EXTERN id NSRollbackMergePolicy API_AVAILABLE(macosx(10.4),ios(3.0));
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Transaction.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Transaction.swift:279:20: warning: static property 'parentTransaction' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var parentTransaction: Void?
^
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Transaction.swift:279:20: note: convert 'parentTransaction' to a 'let' constant to make 'Sendable' shared state immutable
static var parentTransaction: Void?
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Transaction.swift:279:20: note: add '@MainActor' to make static property 'parentTransaction' part of global actor 'MainActor'
static var parentTransaction: Void?
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Transaction.swift:279:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var parentTransaction: Void?
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Transaction.swift:280:20: warning: static property 'saveMetadata' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var saveMetadata: Void?
^
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Transaction.swift:280:20: note: convert 'saveMetadata' to a 'let' constant to make 'Sendable' shared state immutable
static var saveMetadata: Void?
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Transaction.swift:280:20: note: add '@MainActor' to make static property 'saveMetadata' part of global actor 'MainActor'
static var saveMetadata: Void?
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Transaction.swift:280:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var saveMetadata: Void?
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Transaction.swift:281:20: warning: static property 'isTransactionContext' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var isTransactionContext: Void?
^
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Transaction.swift:281:20: note: convert 'isTransactionContext' to a 'let' constant to make 'Sendable' shared state immutable
static var isTransactionContext: Void?
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Transaction.swift:281:20: note: add '@MainActor' to make static property 'isTransactionContext' part of global actor 'MainActor'
static var isTransactionContext: Void?
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Transaction.swift:281:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var isTransactionContext: Void?
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Transaction.swift:282:20: warning: static property 'isDataStackContext' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var isDataStackContext: Void?
^
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Transaction.swift:282:20: note: convert 'isDataStackContext' to a 'let' constant to make 'Sendable' shared state immutable
static var isDataStackContext: Void?
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Transaction.swift:282:20: note: add '@MainActor' to make static property 'isDataStackContext' part of global actor 'MainActor'
static var isDataStackContext: Void?
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Transaction.swift:282:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var isDataStackContext: Void?
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Transaction.swift:242:21: warning: sending 'completion' risks causing data races; this is an error in the Swift 6 language mode
completion(true, nil)
~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Transaction.swift:242:21: note: task-isolated 'completion' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
completion(true, nil)
^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Transaction.swift:202:21: warning: sending 'completion' risks causing data races; this is an error in the Swift 6 language mode
completion(false, nil)
~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Transaction.swift:202:21: note: task-isolated 'completion' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
completion(false, nil)
^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Transaction.swift:224:21: warning: sending 'completion' risks causing data races; this is an error in the Swift 6 language mode
completion(true, saveError)
~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Transaction.swift:224:21: note: task-isolated 'completion' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
completion(true, saveError)
^~~~~~~~~~
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectModel+Migration.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/NSPersistentStore+Setup.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/NSPersistentStore+Setup.swift:62:20: warning: static property 'storageInterface' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var storageInterface: Void?
^
/Users/admin/builder/spi-builder-workspace/Sources/NSPersistentStore+Setup.swift:62:20: note: convert 'storageInterface' to a 'let' constant to make 'Sendable' shared state immutable
static var storageInterface: Void?
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/NSPersistentStore+Setup.swift:62:20: note: add '@MainActor' to make static property 'storageInterface' part of global actor 'MainActor'
static var storageInterface: Void?
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NSPersistentStore+Setup.swift:62:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var storageInterface: Void?
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/NSPersistentStoreCoordinator+Setup.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftEmitModule normal arm64 Emitting\ module\ for\ CoreStore (in target 'CoreStore' from project 'CoreStore')
EmitSwiftModule normal arm64 (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/CoreStoreDefaults.swift:39:23: warning: static property 'logger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var logger: CoreStoreLogger = DefaultLogger()
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreStoreDefaults.swift:39:23: note: convert 'logger' to a 'let' constant to make 'Sendable' shared state immutable
public static var logger: CoreStoreLogger = DefaultLogger()
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/CoreStoreDefaults.swift:39:23: note: add '@MainActor' to make static property 'logger' part of global actor 'MainActor'
public static var logger: CoreStoreLogger = DefaultLogger()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreStoreDefaults.swift:39:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var logger: CoreStoreLogger = DefaultLogger()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreStoreDefaults.swift:74:24: warning: static property 'defaultStackInstance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
private static var defaultStackInstance: DataStack?
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreStoreDefaults.swift:74:24: note: convert 'defaultStackInstance' to a 'let' constant to make 'Sendable' shared state immutable
private static var defaultStackInstance: DataStack?
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/CoreStoreDefaults.swift:74:24: note: add '@MainActor' to make static property 'defaultStackInstance' part of global actor 'MainActor'
private static var defaultStackInstance: DataStack?
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreStoreDefaults.swift:74:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private static var defaultStackInstance: DataStack?
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreStoreError.swift:50:10: warning: associated value 'mappingModelNotFound(localStoreURL:targetModel:targetModelVersion:)' of 'Sendable'-conforming enum 'CoreStoreError' has non-sendable type 'NSManagedObjectModel'; this is an error in the Swift 6 language mode
case mappingModelNotFound(localStoreURL: URL, targetModel: NSManagedObjectModel, targetModelVersion: String)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSManagedObjectModel.h:23:12: note: class 'NSManagedObjectModel' does not conform to the 'Sendable' protocol
@interface NSManagedObjectModel : NSObject <NSCoding, NSCopying, NSFastEnumeration> {
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreStoreError.swift:27:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreData'
import CoreData
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/CoreStoreManagedObject.swift:52:16: warning: static property 'cache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var cache: [ObjectIdentifier: [KeyPathString: Set<KeyPathString>]] = [:]
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreStoreManagedObject.swift:52:16: note: convert 'cache' to a 'let' constant to make 'Sendable' shared state immutable
static var cache: [ObjectIdentifier: [KeyPathString: Set<KeyPathString>]] = [:]
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/CoreStoreManagedObject.swift:52:16: note: add '@MainActor' to make static property 'cache' part of global actor 'MainActor'
static var cache: [ObjectIdentifier: [KeyPathString: Set<KeyPathString>]] = [:]
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreStoreManagedObject.swift:52:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var cache: [ObjectIdentifier: [KeyPathString: Set<KeyPathString>]] = [:]
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreStoreObject+Observing.swift:442:16: warning: static property 'swizzler' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var swizzler: Any? = Internals.with {
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreStoreObject+Observing.swift:442:16: note: convert 'swizzler' to a 'let' constant to make 'Sendable' shared state immutable
static var swizzler: Any? = Internals.with {
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/CoreStoreObject+Observing.swift:442:16: note: add '@MainActor' to make static property 'swizzler' part of global actor 'MainActor'
static var swizzler: Any? = Internals.with {
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreStoreObject+Observing.swift:442:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var swizzler: Any? = Internals.with {
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreStoreObject.swift:269:28: warning: static property 'metaCache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
fileprivate static var metaCache: [ObjectIdentifier: Any] = [:]
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreStoreObject.swift:269:28: note: convert 'metaCache' to a 'let' constant to make 'Sendable' shared state immutable
fileprivate static var metaCache: [ObjectIdentifier: Any] = [:]
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/CoreStoreObject.swift:269:28: note: add '@MainActor' to make static property 'metaCache' part of global actor 'MainActor'
fileprivate static var metaCache: [ObjectIdentifier: Any] = [:]
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreStoreObject.swift:269:28: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
fileprivate static var metaCache: [ObjectIdentifier: Any] = [:]
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CoreStoreObject.swift:270:28: warning: static property 'propertiesCache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
fileprivate static var propertiesCache: [ObjectIdentifier: [PropertyProtocol]] = [:]
^
/Users/admin/builder/spi-builder-workspace/Sources/CoreStoreObject.swift:270:28: note: convert 'propertiesCache' to a 'let' constant to make 'Sendable' shared state immutable
fileprivate static var propertiesCache: [ObjectIdentifier: [PropertyProtocol]] = [:]
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/CoreStoreObject.swift:270:28: note: add '@MainActor' to make static property 'propertiesCache' part of global actor 'MainActor'
fileprivate static var propertiesCache: [ObjectIdentifier: [PropertyProtocol]] = [:]
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CoreStoreObject.swift:270:28: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
fileprivate static var propertiesCache: [ObjectIdentifier: [PropertyProtocol]] = [:]
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DataStack.swift:462:25: warning: static property 'defaultConfigurationName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
internal static var defaultConfigurationName = "PF_DEFAULT_CONFIGURATION_NAME"
^
/Users/admin/builder/spi-builder-workspace/Sources/DataStack.swift:462:25: note: convert 'defaultConfigurationName' to a 'let' constant to make 'Sendable' shared state immutable
internal static var defaultConfigurationName = "PF_DEFAULT_CONFIGURATION_NAME"
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/DataStack.swift:462:25: note: add '@MainActor' to make static property 'defaultConfigurationName' part of global actor 'MainActor'
internal static var defaultConfigurationName = "PF_DEFAULT_CONFIGURATION_NAME"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DataStack.swift:462:25: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
internal static var defaultConfigurationName = "PF_DEFAULT_CONFIGURATION_NAME"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Internals.AnyFieldCoder.swift:98:32: warning: static property 'cachedCoders' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
fileprivate static var cachedCoders: [NSValueTransformerName: AnyFieldCoder] = [:]
^
/Users/admin/builder/spi-builder-workspace/Sources/Internals.AnyFieldCoder.swift:98:32: note: convert 'cachedCoders' to a 'let' constant to make 'Sendable' shared state immutable
fileprivate static var cachedCoders: [NSValueTransformerName: AnyFieldCoder] = [:]
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/Internals.AnyFieldCoder.swift:98:32: note: add '@MainActor' to make static property 'cachedCoders' part of global actor 'MainActor'
fileprivate static var cachedCoders: [NSValueTransformerName: AnyFieldCoder] = [:]
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Internals.AnyFieldCoder.swift:98:32: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
fileprivate static var cachedCoders: [NSValueTransformerName: AnyFieldCoder] = [:]
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ListState.swift:340:6: warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
@ObservedObject
^
SwiftUICore.ObservedObject.init:2:35: note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
@MainActor @preconcurrency public init(wrappedValue: ObjectType)}
^
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObject+DynamicModel.swift:59:20: warning: static property 'coreStoreObject' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var coreStoreObject: Void?
^
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObject+DynamicModel.swift:59:20: note: convert 'coreStoreObject' to a 'let' constant to make 'Sendable' shared state immutable
static var coreStoreObject: Void?
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObject+DynamicModel.swift:59:20: note: add '@MainActor' to make static property 'coreStoreObject' part of global actor 'MainActor'
static var coreStoreObject: Void?
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObject+DynamicModel.swift:59:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var coreStoreObject: Void?
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+CoreStore.swift:195:20: warning: static property 'observerForWillSaveNotification' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var observerForWillSaveNotification: Void?
^
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+CoreStore.swift:195:20: note: convert 'observerForWillSaveNotification' to a 'let' constant to make 'Sendable' shared state immutable
static var observerForWillSaveNotification: Void?
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+CoreStore.swift:195:20: note: add '@MainActor' to make static property 'observerForWillSaveNotification' part of global actor 'MainActor'
static var observerForWillSaveNotification: Void?
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+CoreStore.swift:195:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var observerForWillSaveNotification: Void?
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+CoreStore.swift:196:20: warning: static property 'shouldCascadeSavesToParent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var shouldCascadeSavesToParent: Void?
^
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+CoreStore.swift:196:20: note: convert 'shouldCascadeSavesToParent' to a 'let' constant to make 'Sendable' shared state immutable
static var shouldCascadeSavesToParent: Void?
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+CoreStore.swift:196:20: note: add '@MainActor' to make static property 'shouldCascadeSavesToParent' part of global actor 'MainActor'
static var shouldCascadeSavesToParent: Void?
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+CoreStore.swift:196:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var shouldCascadeSavesToParent: Void?
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Setup.swift:150:20: warning: static property 'parentStack' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var parentStack: Void?
^
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Setup.swift:150:20: note: convert 'parentStack' to a 'let' constant to make 'Sendable' shared state immutable
static var parentStack: Void?
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Setup.swift:150:20: note: add '@MainActor' to make static property 'parentStack' part of global actor 'MainActor'
static var parentStack: Void?
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Setup.swift:150:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var parentStack: Void?
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Setup.swift:151:20: warning: static property 'observerForDidSaveNotification' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var observerForDidSaveNotification: Void?
^
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Setup.swift:151:20: note: convert 'observerForDidSaveNotification' to a 'let' constant to make 'Sendable' shared state immutable
static var observerForDidSaveNotification: Void?
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Setup.swift:151:20: note: add '@MainActor' to make static property 'observerForDidSaveNotification' part of global actor 'MainActor'
static var observerForDidSaveNotification: Void?
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Setup.swift:151:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var observerForDidSaveNotification: Void?
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Setup.swift:152:20: warning: static property 'observerForDidImportUbiquitousContentChangesNotification' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var observerForDidImportUbiquitousContentChangesNotification: Void?
^
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Setup.swift:152:20: note: convert 'observerForDidImportUbiquitousContentChangesNotification' to a 'let' constant to make 'Sendable' shared state immutable
static var observerForDidImportUbiquitousContentChangesNotification: Void?
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Setup.swift:152:20: note: add '@MainActor' to make static property 'observerForDidImportUbiquitousContentChangesNotification' part of global actor 'MainActor'
static var observerForDidImportUbiquitousContentChangesNotification: Void?
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Setup.swift:152:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var observerForDidImportUbiquitousContentChangesNotification: Void?
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Transaction.swift:279:20: warning: static property 'parentTransaction' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var parentTransaction: Void?
^
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Transaction.swift:279:20: note: convert 'parentTransaction' to a 'let' constant to make 'Sendable' shared state immutable
static var parentTransaction: Void?
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Transaction.swift:279:20: note: add '@MainActor' to make static property 'parentTransaction' part of global actor 'MainActor'
static var parentTransaction: Void?
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Transaction.swift:279:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var parentTransaction: Void?
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Transaction.swift:280:20: warning: static property 'saveMetadata' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var saveMetadata: Void?
^
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Transaction.swift:280:20: note: convert 'saveMetadata' to a 'let' constant to make 'Sendable' shared state immutable
static var saveMetadata: Void?
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Transaction.swift:280:20: note: add '@MainActor' to make static property 'saveMetadata' part of global actor 'MainActor'
static var saveMetadata: Void?
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Transaction.swift:280:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var saveMetadata: Void?
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Transaction.swift:281:20: warning: static property 'isTransactionContext' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var isTransactionContext: Void?
^
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Transaction.swift:281:20: note: convert 'isTransactionContext' to a 'let' constant to make 'Sendable' shared state immutable
static var isTransactionContext: Void?
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Transaction.swift:281:20: note: add '@MainActor' to make static property 'isTransactionContext' part of global actor 'MainActor'
static var isTransactionContext: Void?
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Transaction.swift:281:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var isTransactionContext: Void?
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Transaction.swift:282:20: warning: static property 'isDataStackContext' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var isDataStackContext: Void?
^
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Transaction.swift:282:20: note: convert 'isDataStackContext' to a 'let' constant to make 'Sendable' shared state immutable
static var isDataStackContext: Void?
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Transaction.swift:282:20: note: add '@MainActor' to make static property 'isDataStackContext' part of global actor 'MainActor'
static var isDataStackContext: Void?
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Transaction.swift:282:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var isDataStackContext: Void?
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NSPersistentStore+Setup.swift:62:20: warning: static property 'storageInterface' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var storageInterface: Void?
^
/Users/admin/builder/spi-builder-workspace/Sources/NSPersistentStore+Setup.swift:62:20: note: convert 'storageInterface' to a 'let' constant to make 'Sendable' shared state immutable
static var storageInterface: Void?
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/NSPersistentStore+Setup.swift:62:20: note: add '@MainActor' to make static property 'storageInterface' part of global actor 'MainActor'
static var storageInterface: Void?
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NSPersistentStore+Setup.swift:62:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var storageInterface: Void?
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ObjectState.swift:94:6: warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
@ObservedObject
^
SwiftUICore.ObservedObject.init:2:35: note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
@MainActor @preconcurrency public init(wrappedValue: ObjectType)}
^
/Users/admin/builder/spi-builder-workspace/Sources/Progress+Convenience.swift:49:20: warning: static property 'progressObserver' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var progressObserver: Void?
^
/Users/admin/builder/spi-builder-workspace/Sources/Progress+Convenience.swift:49:20: note: convert 'progressObserver' to a 'let' constant to make 'Sendable' shared state immutable
static var progressObserver: Void?
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/Progress+Convenience.swift:49:20: note: add '@MainActor' to make static property 'progressObserver' part of global actor 'MainActor'
static var progressObserver: Void?
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Progress+Convenience.swift:49:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var progressObserver: Void?
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/StorageInterface.swift:76:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'LocalStorageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let none: LocalStorageOptions = []
^
/Users/admin/builder/spi-builder-workspace/Sources/StorageInterface.swift:71:15: note: consider making struct 'LocalStorageOptions' conform to the 'Sendable' protocol
public struct LocalStorageOptions: OptionSet, ExpressibleByNilLiteral {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/StorageInterface.swift:76:23: note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
public static let none: LocalStorageOptions = []
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/StorageInterface.swift:76:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let none: LocalStorageOptions = []
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/StorageInterface.swift:81:23: warning: static property 'recreateStoreOnModelMismatch' is not concurrency-safe because non-'Sendable' type 'LocalStorageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let recreateStoreOnModelMismatch: LocalStorageOptions = .init(rawValue: 1 << 0)
^
/Users/admin/builder/spi-builder-workspace/Sources/StorageInterface.swift:71:15: note: consider making struct 'LocalStorageOptions' conform to the 'Sendable' protocol
public struct LocalStorageOptions: OptionSet, ExpressibleByNilLiteral {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/StorageInterface.swift:81:23: note: add '@MainActor' to make static property 'recreateStoreOnModelMismatch' part of global actor 'MainActor'
public static let recreateStoreOnModelMismatch: LocalStorageOptions = .init(rawValue: 1 << 0)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/StorageInterface.swift:81:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let recreateStoreOnModelMismatch: LocalStorageOptions = .init(rawValue: 1 << 0)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/StorageInterface.swift:86:23: warning: static property 'preventProgressiveMigration' is not concurrency-safe because non-'Sendable' type 'LocalStorageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let preventProgressiveMigration: LocalStorageOptions = .init(rawValue: 1 << 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/StorageInterface.swift:71:15: note: consider making struct 'LocalStorageOptions' conform to the 'Sendable' protocol
public struct LocalStorageOptions: OptionSet, ExpressibleByNilLiteral {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/StorageInterface.swift:86:23: note: add '@MainActor' to make static property 'preventProgressiveMigration' part of global actor 'MainActor'
public static let preventProgressiveMigration: LocalStorageOptions = .init(rawValue: 1 << 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/StorageInterface.swift:86:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let preventProgressiveMigration: LocalStorageOptions = .init(rawValue: 1 << 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/StorageInterface.swift:91:23: warning: static property 'allowSynchronousLightweightMigration' is not concurrency-safe because non-'Sendable' type 'LocalStorageOptions' may have shared mutable state; this is an error in the Swift 6 language mode
public static let allowSynchronousLightweightMigration: LocalStorageOptions = .init(rawValue: 1 << 2)
^
/Users/admin/builder/spi-builder-workspace/Sources/StorageInterface.swift:71:15: note: consider making struct 'LocalStorageOptions' conform to the 'Sendable' protocol
public struct LocalStorageOptions: OptionSet, ExpressibleByNilLiteral {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/StorageInterface.swift:91:23: note: add '@MainActor' to make static property 'allowSynchronousLightweightMigration' part of global actor 'MainActor'
public static let allowSynchronousLightweightMigration: LocalStorageOptions = .init(rawValue: 1 << 2)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/StorageInterface.swift:91:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let allowSynchronousLightweightMigration: LocalStorageOptions = .init(rawValue: 1 << 2)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ListState.swift:340:6: warning: sending '$input_value' risks causing data races; this is an error in the Swift 6 language mode
@ObservedObject
^~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ListState.swift:340:6: note: sending task-isolated '$input_value' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
@ObservedObject
^
/Users/admin/builder/spi-builder-workspace/Sources/ObjectState.swift:94:6: warning: sending '$input_value' risks causing data races; this is an error in the Swift 6 language mode
@ObservedObject
^~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ObjectState.swift:94:6: note: sending task-isolated '$input_value' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
@ObservedObject
^
SwiftCompile normal arm64 Compiling\ Transformable.Required.swift,\ Transformable.swift,\ Tweak.swift,\ TypeErasedClauses.swift,\ UnsafeDataModelSchema.swift,\ UnsafeDataTransaction+Observing.swift,\ UnsafeDataTransaction.swift,\ UserInfo.swift,\ Value.Optional.swift,\ Value.Required.swift,\ Value.swift,\ VersionLock.swift,\ Where.Expression.swift,\ Where.swift,\ WhereClauseType.swift,\ XcodeDataModelSchema.swift,\ XcodeSchemaMappingProvider.swift /Users/admin/builder/spi-builder-workspace/Sources/Transformable.Required.swift /Users/admin/builder/spi-builder-workspace/Sources/Transformable.swift /Users/admin/builder/spi-builder-workspace/Sources/Tweak.swift /Users/admin/builder/spi-builder-workspace/Sources/TypeErasedClauses.swift /Users/admin/builder/spi-builder-workspace/Sources/UnsafeDataModelSchema.swift /Users/admin/builder/spi-builder-workspace/Sources/UnsafeDataTransaction+Observing.swift /Users/admin/builder/spi-builder-workspace/Sources/UnsafeDataTransaction.swift /Users/admin/builder/spi-builder-workspace/Sources/UserInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/Value.Optional.swift /Users/admin/builder/spi-builder-workspace/Sources/Value.Required.swift /Users/admin/builder/spi-builder-workspace/Sources/Value.swift /Users/admin/builder/spi-builder-workspace/Sources/VersionLock.swift /Users/admin/builder/spi-builder-workspace/Sources/Where.Expression.swift /Users/admin/builder/spi-builder-workspace/Sources/Where.swift /Users/admin/builder/spi-builder-workspace/Sources/WhereClauseType.swift /Users/admin/builder/spi-builder-workspace/Sources/XcodeDataModelSchema.swift /Users/admin/builder/spi-builder-workspace/Sources/XcodeSchemaMappingProvider.swift (in target 'CoreStore' from project 'CoreStore')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Transformable.Required.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Transformable.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Tweak.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/TypeErasedClauses.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/UnsafeDataModelSchema.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/UnsafeDataTransaction+Observing.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/UnsafeDataTransaction.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/UserInfo.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Value.Optional.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Value.Required.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Value.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/VersionLock.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Where.Expression.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Where.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/WhereClauseType.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/XcodeDataModelSchema.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/XcodeSchemaMappingProvider.swift (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Emitting module for CoreStore (in target 'CoreStore' from project 'CoreStore')
SwiftDriverJobDiscovery normal arm64 Compiling MigrationType.swift, Module.swift, NSEntityDescription+DynamicModel.swift, NSEntityDescription+Migration.swift, NSFetchedResultsController+Convenience.swift, NSManagedObject+Convenience.swift, NSManagedObject+DynamicModel.swift, NSManagedObject+Logging.swift, NSManagedObject+Transaction.swift, NSManagedObjectContext+CoreStore.swift, NSManagedObjectContext+Logging.swift, NSManagedObjectContext+Querying.swift, NSManagedObjectContext+Setup.swift, NSManagedObjectContext+Transaction.swift, NSManagedObjectModel+Migration.swift, NSPersistentStore+Setup.swift, NSPersistentStoreCoordinator+Setup.swift (in target 'CoreStore' from project 'CoreStore')
SwiftDriver\ Compilation\ Requirements CoreStore normal arm64 com.apple.xcode.tools.swift.compiler (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name CoreStore -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreStore.build/Debug-appletvos/CoreStore.build/Objects-normal/arm64/CoreStore.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -target arm64-apple-tvos16.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreStore.build/Debug-appletvos/CoreStore.build/Objects-normal/arm64/CoreStore-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreStore.build/Debug-appletvos/CoreStore.build/Objects-normal/arm64/CoreStore.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreStore.build/Debug-appletvos/CoreStore.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreStore.build/Debug-appletvos/CoreStore.build/Objects-normal/arm64/CoreStore_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreStore.build/Debug-appletvos/CoreStore.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreStore.build/Debug-appletvos/CoreStore.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreStore.build/Debug-appletvos/CoreStore.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreStore.build/Debug-appletvos/CoreStore.build/Objects-normal/arm64/CoreStore-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/CoreStore-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreStore.build/Debug-appletvos/CoreStore.build/Objects-normal/arm64/CoreStore-Swift.h (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreStore.build/Debug-appletvos/CoreStore.build/Objects-normal/arm64/CoreStore-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/CoreStore-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/CoreStore.swiftmodule/arm64-apple-tvos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreStore.build/Debug-appletvos/CoreStore.build/Objects-normal/arm64/CoreStore.swiftmodule (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreStore.build/Debug-appletvos/CoreStore.build/Objects-normal/arm64/CoreStore.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/CoreStore.swiftmodule/arm64-apple-tvos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/CoreStore.swiftmodule/arm64-apple-tvos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreStore.build/Debug-appletvos/CoreStore.build/Objects-normal/arm64/CoreStore.swiftdoc (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreStore.build/Debug-appletvos/CoreStore.build/Objects-normal/arm64/CoreStore.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/CoreStore.swiftmodule/arm64-apple-tvos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/CoreStore.swiftmodule/arm64-apple-tvos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreStore.build/Debug-appletvos/CoreStore.build/Objects-normal/arm64/CoreStore.abi.json (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreStore.build/Debug-appletvos/CoreStore.build/Objects-normal/arm64/CoreStore.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/CoreStore.swiftmodule/arm64-apple-tvos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/CoreStore.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreStore.build/Debug-appletvos/CoreStore.build/Objects-normal/arm64/CoreStore.swiftsourceinfo (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreStore.build/Debug-appletvos/CoreStore.build/Objects-normal/arm64/CoreStore.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/CoreStore.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo
SwiftDriverJobDiscovery normal arm64 Compiling QueryableSource.swift, Relationship.ToManyOrdered.swift, Relationship.ToManyUnordered.swift, Relationship.ToOne.swift, Relationship.swift, RelationshipProtocol.swift, SQLiteStore.swift, SchemaHistory.swift, SchemaMappingProvider.swift, SectionBy.swift, SectionMonitorBuilder.swift, Select.swift, SetupResult.swift, StorageInterface.swift, String+KeyPaths.swift, SynchronousDataTransaction.swift, Transformable.Optional.swift (in target 'CoreStore' from project 'CoreStore')
SwiftDriverJobDiscovery normal arm64 Compiling AsynchronousDataTransaction.swift, AttributeProtocol.swift, BaseDataTransaction+Importing.swift, BaseDataTransaction+Querying.swift, BaseDataTransaction.swift, CoreDataNativeType.swift, CoreStore+CustomDebugStringConvertible.swift, CoreStore+Logging.swift, CoreStoreDefaults.swift, CoreStoreError.swift, CoreStoreLogger.swift, CoreStoreManagedObject.swift, CoreStoreObject+Convenience.swift, CoreStoreObject+DataSources.swift, CoreStoreObject+Observing.swift, CoreStoreObject+Querying.swift, CoreStoreObject.swift, CoreStoreSchema.swift (in target 'CoreStore' from project 'CoreStore')
SwiftDriverJobDiscovery normal arm64 Compiling Transformable.Required.swift, Transformable.swift, Tweak.swift, TypeErasedClauses.swift, UnsafeDataModelSchema.swift, UnsafeDataTransaction+Observing.swift, UnsafeDataTransaction.swift, UserInfo.swift, Value.Optional.swift, Value.Required.swift, Value.swift, VersionLock.swift, Where.Expression.swift, Where.swift, WhereClauseType.swift, XcodeDataModelSchema.swift, XcodeSchemaMappingProvider.swift (in target 'CoreStore' from project 'CoreStore')
SwiftDriverJobDiscovery normal arm64 Compiling CoreStoreStrings.swift, CustomSchemaMappingProvider.swift, DataStack+Concurrency.swift, DataStack+DataSources.swift, DataStack+Migration.swift, DataStack+Observing.swift, DataStack+Querying.swift, DataStack+Reactive.swift, DataStack+Transaction.swift, DataStack.AddStoragePublisher.swift, DataStack.swift, DefaultLogger.swift, DiffableDataSource.BaseAdapter.swift, DiffableDataSource.CollectionViewAdapter-AppKit.swift, DiffableDataSource.CollectionViewAdapter-UIKit.swift, DiffableDataSource.TableViewAdapter-UIKit.swift, DiffableDataSource.Target.swift, DiffableDataSource.swift (in target 'CoreStore' from project 'CoreStore')
SwiftDriverJobDiscovery normal arm64 Compiling Internals.AnyFieldCoder.swift, Internals.Closure.swift, Internals.CoreStoreFetchRequest.swift, Internals.CoreStoreFetchedResultsController.swift, Internals.DiffableDataSourceSnapshot.swift, Internals.DiffableDataUIDispatcher.Changeset.swift, Internals.DiffableDataUIDispatcher.DiffResult.swift, Internals.DiffableDataUIDispatcher.StagedChangeset.swift, Internals.DiffableDataUIDispatcher.swift, Internals.EntityIdentifier.swift, Internals.FetchedDiffableDataSourceSnapshotDelegate.swift, Internals.FetchedResultsControllerDelegate.swift, Internals.LazyNonmutating.swift, Internals.MigrationManager.swift, Internals.NotificationObserver.swift, Internals.SharedNotificationObserver.swift, Internals.WeakObject.swift, Internals.swift (in target 'CoreStore' from project 'CoreStore')
SwiftDriverJobDiscovery normal arm64 Compiling FieldCoders.DefaultNSSecureCoding.swift, FieldCoders.Json.swift, FieldCoders.NSCoding.swift, FieldCoders.Plist.swift, FieldCoders.swift, FieldOptionalType.swift, FieldProtocol.swift, FieldRelationshipProtocol.swift, FieldStorableType.swift, ForEach+SwiftUI.swift, From+Querying.swift, From.swift, GroupBy.swift, ImportableAttributeType.swift, ImportableObject.swift, ImportableUniqueObject.swift, InMemoryStore.swift, InferredSchemaMappingProvider.swift (in target 'CoreStore' from project 'CoreStore')
SwiftDriverJobDiscovery normal arm64 Compiling Into.swift, KeyPath+KeyPaths.swift, KeyPath+Querying.swift, KeyPathGenericBindings.swift, KeyPathStringConvertible.swift, ListMonitor.swift, ListObserver.swift, ListPublisher+Reactive.swift, ListPublisher.SnapshotPublisher.swift, ListPublisher.swift, ListReader.swift, ListSnapshot.SectionInfo.swift, ListSnapshot.swift, ListState.swift, MigrationChain.swift, MigrationProgress.swift, MigrationResult.swift (in target 'CoreStore' from project 'CoreStore')
SwiftDriverJobDiscovery normal arm64 Compiling DiffableDataSourceSnapshotProtocol.swift, Differentiable.swift, DispatchQueue+CoreStore.swift, DynamicObject.swift, DynamicSchema+Convenience.swift, DynamicSchema.swift, Entity.swift, EnvironmentValues+DataSources.swift, FIeldRelationshipType.swift, FetchChainBuilder.swift, FetchableSource.swift, Field.Coded.swift, Field.Relationship.swift, Field.Stored.swift, Field.Virtual.swift, Field.swift, FieldAttributeProtocol.swift, FieldCoderType.swift (in target 'CoreStore' from project 'CoreStore')
SwiftDriverJobDiscovery normal arm64 Compiling ObjectMonitor.swift, ObjectObserver.swift, ObjectProxy.swift, ObjectPublisher+Reactive.swift, ObjectPublisher.SnapshotPublisher.swift, ObjectPublisher.swift, ObjectReader.swift, ObjectRepresentation.swift, ObjectSnapshot.swift, ObjectState.swift, Operators.swift, OrderBy.swift, PartialObject.swift, Progress+Convenience.swift, PropertyProtocol.swift, QueryChainBuilder.swift, QueryableAttributeType.swift (in target 'CoreStore' from project 'CoreStore')
SwiftDriver\ Compilation CoreStore normal arm64 com.apple.xcode.tools.swift.compiler (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name CoreStore -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreStore.build/Debug-appletvos/CoreStore.build/Objects-normal/arm64/CoreStore.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -target arm64-apple-tvos16.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreStore.build/Debug-appletvos/CoreStore.build/Objects-normal/arm64/CoreStore-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreStore.build/Debug-appletvos/CoreStore.build/Objects-normal/arm64/CoreStore.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreStore.build/Debug-appletvos/CoreStore.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreStore.build/Debug-appletvos/CoreStore.build/Objects-normal/arm64/CoreStore_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreStore.build/Debug-appletvos/CoreStore.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreStore.build/Debug-appletvos/CoreStore.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreStore.build/Debug-appletvos/CoreStore.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreStore.build/Debug-appletvos/CoreStore.build/Objects-normal/arm64/CoreStore-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/CoreStore.o normal (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-tvos16.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreStore.build/Debug-appletvos/CoreStore.build/Objects-normal/arm64/CoreStore.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreStore.build/Debug-appletvos/CoreStore.build/Objects-normal/arm64/CoreStore_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreStore.build/Debug-appletvos/CoreStore.build/Objects-normal/arm64/CoreStore_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/appletvos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreStore.build/Debug-appletvos/CoreStore.build/Objects-normal/arm64/CoreStore.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/CoreStore.o
ExtractAppIntentsMetadata (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name CoreStore --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk --xcode-version 16E140 --platform-family tvOS --deployment-target 16.0 --bundle-identifier spi-builder-workspace.CoreStore --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/CoreStore.appintents --target-triple arm64-apple-tvos16.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/CoreStore.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreStore.build/Debug-appletvos/CoreStore.build/Objects-normal/arm64/CoreStore_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreStore.build/Debug-appletvos/CoreStore.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreStore.build/Debug-appletvos/CoreStore.build/Objects-normal/arm64/CoreStore.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreStore.build/Debug-appletvos/CoreStore.build/CoreStore.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreStore.build/Debug-appletvos/CoreStore.build/CoreStore.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreStore.build/Debug-appletvos/CoreStore.build/Objects-normal/arm64/CoreStore.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-29 12:17:48.359 appintentsmetadataprocessor[721:4261] Starting appintentsmetadataprocessor export
2025-04-29 12:17:48.402 appintentsmetadataprocessor[721:4261] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/CoreStore.o (in target 'CoreStore' from project 'CoreStore')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/CoreStore.o
** BUILD SUCCEEDED **
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "CoreStore",
"name" : "CoreStore",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "13.0"
},
{
"name" : "ios",
"version" : "16.0"
},
{
"name" : "tvos",
"version" : "16.0"
},
{
"name" : "watchos",
"version" : "9.0"
}
],
"products" : [
{
"name" : "CoreStore",
"targets" : [
"CoreStore"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"swift_languages_versions" : [
"5"
],
"targets" : [
{
"c99name" : "CoreStoreTests",
"module_type" : "SwiftTarget",
"name" : "CoreStoreTests",
"path" : "CoreStoreTests",
"resources" : [
{
"path" : "/Users/admin/builder/spi-builder-workspace/CoreStoreTests/Model.xcdatamodeld",
"rule" : {
"process" : {
}
}
}
],
"sources" : [
"BaseTestCase.swift",
"BaseTestDataTestCase.swift",
"ConvenienceTests.swift",
"DynamicModelTests.swift",
"ErrorTests.swift",
"FetchTests.swift",
"FromTests.swift",
"GroupByTests.swift",
"ImportTests.swift",
"IntoTests.swift",
"ListObserverTests.swift",
"ListPublisherTests.swift",
"MigrationChainTests.swift",
"ObjectObserverTests.swift",
"ObjectPublisherTests.swift",
"OrderByTests.swift",
"QueryTests.swift",
"SectionByTests.swift",
"SelectTests.swift",
"SetupTests.swift",
"StorageInterfaceTests.swift",
"TestEntity1.swift",
"TestEntity2.swift",
"TransactionTests.swift",
"TweakTests.swift",
"VersionLockTests.swift",
"WhereTests.swift"
],
"target_dependencies" : [
"CoreStore"
],
"type" : "test"
},
{
"c99name" : "CoreStore",
"module_type" : "SwiftTarget",
"name" : "CoreStore",
"path" : "Sources",
"product_memberships" : [
"CoreStore"
],
"sources" : [
"AsynchronousDataTransaction.swift",
"AttributeProtocol.swift",
"BaseDataTransaction+Importing.swift",
"BaseDataTransaction+Querying.swift",
"BaseDataTransaction.swift",
"CoreDataNativeType.swift",
"CoreStore+CustomDebugStringConvertible.swift",
"CoreStore+Logging.swift",
"CoreStoreDefaults.swift",
"CoreStoreError.swift",
"CoreStoreLogger.swift",
"CoreStoreManagedObject.swift",
"CoreStoreObject+Convenience.swift",
"CoreStoreObject+DataSources.swift",
"CoreStoreObject+Observing.swift",
"CoreStoreObject+Querying.swift",
"CoreStoreObject.swift",
"CoreStoreSchema.swift",
"CoreStoreStrings.swift",
"CustomSchemaMappingProvider.swift",
"DataStack+Concurrency.swift",
"DataStack+DataSources.swift",
"DataStack+Migration.swift",
"DataStack+Observing.swift",
"DataStack+Querying.swift",
"DataStack+Reactive.swift",
"DataStack+Transaction.swift",
"DataStack.AddStoragePublisher.swift",
"DataStack.swift",
"DefaultLogger.swift",
"DiffableDataSource.BaseAdapter.swift",
"DiffableDataSource.CollectionViewAdapter-AppKit.swift",
"DiffableDataSource.CollectionViewAdapter-UIKit.swift",
"DiffableDataSource.TableViewAdapter-UIKit.swift",
"DiffableDataSource.Target.swift",
"DiffableDataSource.swift",
"DiffableDataSourceSnapshotProtocol.swift",
"Differentiable.swift",
"DispatchQueue+CoreStore.swift",
"DynamicObject.swift",
"DynamicSchema+Convenience.swift",
"DynamicSchema.swift",
"Entity.swift",
"EnvironmentValues+DataSources.swift",
"FIeldRelationshipType.swift",
"FetchChainBuilder.swift",
"FetchableSource.swift",
"Field.Coded.swift",
"Field.Relationship.swift",
"Field.Stored.swift",
"Field.Virtual.swift",
"Field.swift",
"FieldAttributeProtocol.swift",
"FieldCoderType.swift",
"FieldCoders.DefaultNSSecureCoding.swift",
"FieldCoders.Json.swift",
"FieldCoders.NSCoding.swift",
"FieldCoders.Plist.swift",
"FieldCoders.swift",
"FieldOptionalType.swift",
"FieldProtocol.swift",
"FieldRelationshipProtocol.swift",
"FieldStorableType.swift",
"ForEach+SwiftUI.swift",
"From+Querying.swift",
"From.swift",
"GroupBy.swift",
"ImportableAttributeType.swift",
"ImportableObject.swift",
"ImportableUniqueObject.swift",
"InMemoryStore.swift",
"InferredSchemaMappingProvider.swift",
"Internals.AnyFieldCoder.swift",
"Internals.Closure.swift",
"Internals.CoreStoreFetchRequest.swift",
"Internals.CoreStoreFetchedResultsController.swift",
"Internals.DiffableDataSourceSnapshot.swift",
"Internals.DiffableDataUIDispatcher.Changeset.swift",
"Internals.DiffableDataUIDispatcher.DiffResult.swift",
"Internals.DiffableDataUIDispatcher.StagedChangeset.swift",
"Internals.DiffableDataUIDispatcher.swift",
"Internals.EntityIdentifier.swift",
"Internals.FetchedDiffableDataSourceSnapshotDelegate.swift",
"Internals.FetchedResultsControllerDelegate.swift",
"Internals.LazyNonmutating.swift",
"Internals.MigrationManager.swift",
"Internals.NotificationObserver.swift",
"Internals.SharedNotificationObserver.swift",
"Internals.WeakObject.swift",
"Internals.swift",
"Into.swift",
"KeyPath+KeyPaths.swift",
"KeyPath+Querying.swift",
"KeyPathGenericBindings.swift",
"KeyPathStringConvertible.swift",
"ListMonitor.swift",
"ListObserver.swift",
"ListPublisher+Reactive.swift",
"ListPublisher.SnapshotPublisher.swift",
"ListPublisher.swift",
"ListReader.swift",
"ListSnapshot.SectionInfo.swift",
"ListSnapshot.swift",
"ListState.swift",
"MigrationChain.swift",
"MigrationProgress.swift",
"MigrationResult.swift",
"MigrationType.swift",
"Module.swift",
"NSEntityDescription+DynamicModel.swift",
"NSEntityDescription+Migration.swift",
"NSFetchedResultsController+Convenience.swift",
"NSManagedObject+Convenience.swift",
"NSManagedObject+DynamicModel.swift",
"NSManagedObject+Logging.swift",
"NSManagedObject+Transaction.swift",
"NSManagedObjectContext+CoreStore.swift",
"NSManagedObjectContext+Logging.swift",
"NSManagedObjectContext+Querying.swift",
"NSManagedObjectContext+Setup.swift",
"NSManagedObjectContext+Transaction.swift",
"NSManagedObjectModel+Migration.swift",
"NSPersistentStore+Setup.swift",
"NSPersistentStoreCoordinator+Setup.swift",
"ObjectMonitor.swift",
"ObjectObserver.swift",
"ObjectProxy.swift",
"ObjectPublisher+Reactive.swift",
"ObjectPublisher.SnapshotPublisher.swift",
"ObjectPublisher.swift",
"ObjectReader.swift",
"ObjectRepresentation.swift",
"ObjectSnapshot.swift",
"ObjectState.swift",
"Operators.swift",
"OrderBy.swift",
"PartialObject.swift",
"Progress+Convenience.swift",
"PropertyProtocol.swift",
"QueryChainBuilder.swift",
"QueryableAttributeType.swift",
"QueryableSource.swift",
"Relationship.ToManyOrdered.swift",
"Relationship.ToManyUnordered.swift",
"Relationship.ToOne.swift",
"Relationship.swift",
"RelationshipProtocol.swift",
"SQLiteStore.swift",
"SchemaHistory.swift",
"SchemaMappingProvider.swift",
"SectionBy.swift",
"SectionMonitorBuilder.swift",
"Select.swift",
"SetupResult.swift",
"StorageInterface.swift",
"String+KeyPaths.swift",
"SynchronousDataTransaction.swift",
"Transformable.Optional.swift",
"Transformable.Required.swift",
"Transformable.swift",
"Tweak.swift",
"TypeErasedClauses.swift",
"UnsafeDataModelSchema.swift",
"UnsafeDataTransaction+Observing.swift",
"UnsafeDataTransaction.swift",
"UserInfo.swift",
"Value.Optional.swift",
"Value.Required.swift",
"Value.swift",
"VersionLock.swift",
"Where.Expression.swift",
"Where.swift",
"WhereClauseType.swift",
"XcodeDataModelSchema.swift",
"XcodeSchemaMappingProvider.swift"
],
"type" : "library"
}
],
"tools_version" : "5.9"
}
Done.