Build Information
Successful build of CoreStore, reference 9.3.0 (5a0d27
), with Swift 6.0 for macOS (SPM) on 2 Dec 2024 09:05:58 UTC.
Swift 6 data race errors: 29
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures
Build Log
460 | // MARK: Internal
461 |
462 | internal static var defaultConfigurationName = "PF_DEFAULT_CONFIGURATION_NAME"
| |- 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
| |- note: convert 'defaultConfigurationName' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'defaultConfigurationName' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
463 |
464 | internal let coordinator: NSPersistentStoreCoordinator
[120/178] Compiling CoreStore Select.swift
/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
69 | The `LocalStorageOptions` provides settings that tells the `DataStack` how to setup the persistent store for `LocalStorage` implementers.
70 | */
71 | public struct LocalStorageOptions: OptionSet, ExpressibleByNilLiteral {
| `- note: consider making struct 'LocalStorageOptions' conform to the 'Sendable' protocol
72 |
73 | /**
74 | Tells the `DataStack` that the store should not be migrated or recreated, and should simply fail on model mismatch
75 | */
76 | public static let none: LocalStorageOptions = []
| |- 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
| |- note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
77 |
78 | /**
/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
69 | The `LocalStorageOptions` provides settings that tells the `DataStack` how to setup the persistent store for `LocalStorage` implementers.
70 | */
71 | public struct LocalStorageOptions: OptionSet, ExpressibleByNilLiteral {
| `- note: consider making struct 'LocalStorageOptions' conform to the 'Sendable' protocol
72 |
73 | /**
:
89 | Tells the `DataStack` to allow lightweight migration for the store when added synchronously
90 | */
91 | public static let allowSynchronousLightweightMigration: LocalStorageOptions = .init(rawValue: 1 << 2)
| |- 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
| |- note: annotate 'allowSynchronousLightweightMigration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
92 |
93 |
/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
69 | The `LocalStorageOptions` provides settings that tells the `DataStack` how to setup the persistent store for `LocalStorage` implementers.
70 | */
71 | public struct LocalStorageOptions: OptionSet, ExpressibleByNilLiteral {
| `- note: consider making struct 'LocalStorageOptions' conform to the 'Sendable' protocol
72 |
73 | /**
:
79 | Tells the `DataStack` to delete and recreate the store on model mismatch, otherwise exceptions will be thrown on failure instead
80 | */
81 | public static let recreateStoreOnModelMismatch: LocalStorageOptions = .init(rawValue: 1 << 0)
| |- 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
| |- note: annotate 'recreateStoreOnModelMismatch' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
82 |
83 | /**
/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
69 | The `LocalStorageOptions` provides settings that tells the `DataStack` how to setup the persistent store for `LocalStorage` implementers.
70 | */
71 | public struct LocalStorageOptions: OptionSet, ExpressibleByNilLiteral {
| `- note: consider making struct 'LocalStorageOptions' conform to the 'Sendable' protocol
72 |
73 | /**
:
84 | Tells the `DataStack` to prevent progressive migrations for the store
85 | */
86 | public static let preventProgressiveMigration: LocalStorageOptions = .init(rawValue: 1 << 1)
| |- 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
| |- note: annotate 'preventProgressiveMigration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
87 |
88 | /**
/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
460 | // MARK: Internal
461 |
462 | internal static var defaultConfigurationName = "PF_DEFAULT_CONFIGURATION_NAME"
| |- 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
| |- note: convert 'defaultConfigurationName' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'defaultConfigurationName' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
463 |
464 | internal let coordinator: NSPersistentStoreCoordinator
[121/178] Compiling CoreStore SetupResult.swift
/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
69 | The `LocalStorageOptions` provides settings that tells the `DataStack` how to setup the persistent store for `LocalStorage` implementers.
70 | */
71 | public struct LocalStorageOptions: OptionSet, ExpressibleByNilLiteral {
| `- note: consider making struct 'LocalStorageOptions' conform to the 'Sendable' protocol
72 |
73 | /**
74 | Tells the `DataStack` that the store should not be migrated or recreated, and should simply fail on model mismatch
75 | */
76 | public static let none: LocalStorageOptions = []
| |- 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
| |- note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
77 |
78 | /**
/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
69 | The `LocalStorageOptions` provides settings that tells the `DataStack` how to setup the persistent store for `LocalStorage` implementers.
70 | */
71 | public struct LocalStorageOptions: OptionSet, ExpressibleByNilLiteral {
| `- note: consider making struct 'LocalStorageOptions' conform to the 'Sendable' protocol
72 |
73 | /**
:
89 | Tells the `DataStack` to allow lightweight migration for the store when added synchronously
90 | */
91 | public static let allowSynchronousLightweightMigration: LocalStorageOptions = .init(rawValue: 1 << 2)
| |- 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
| |- note: annotate 'allowSynchronousLightweightMigration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
92 |
93 |
/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
69 | The `LocalStorageOptions` provides settings that tells the `DataStack` how to setup the persistent store for `LocalStorage` implementers.
70 | */
71 | public struct LocalStorageOptions: OptionSet, ExpressibleByNilLiteral {
| `- note: consider making struct 'LocalStorageOptions' conform to the 'Sendable' protocol
72 |
73 | /**
:
79 | Tells the `DataStack` to delete and recreate the store on model mismatch, otherwise exceptions will be thrown on failure instead
80 | */
81 | public static let recreateStoreOnModelMismatch: LocalStorageOptions = .init(rawValue: 1 << 0)
| |- 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
| |- note: annotate 'recreateStoreOnModelMismatch' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
82 |
83 | /**
/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
69 | The `LocalStorageOptions` provides settings that tells the `DataStack` how to setup the persistent store for `LocalStorage` implementers.
70 | */
71 | public struct LocalStorageOptions: OptionSet, ExpressibleByNilLiteral {
| `- note: consider making struct 'LocalStorageOptions' conform to the 'Sendable' protocol
72 |
73 | /**
:
84 | Tells the `DataStack` to prevent progressive migrations for the store
85 | */
86 | public static let preventProgressiveMigration: LocalStorageOptions = .init(rawValue: 1 << 1)
| |- 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
| |- note: annotate 'preventProgressiveMigration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
87 |
88 | /**
/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
460 | // MARK: Internal
461 |
462 | internal static var defaultConfigurationName = "PF_DEFAULT_CONFIGURATION_NAME"
| |- 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
| |- note: convert 'defaultConfigurationName' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'defaultConfigurationName' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
463 |
464 | internal let coordinator: NSPersistentStoreCoordinator
[122/178] Compiling CoreStore StorageInterface.swift
/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
69 | The `LocalStorageOptions` provides settings that tells the `DataStack` how to setup the persistent store for `LocalStorage` implementers.
70 | */
71 | public struct LocalStorageOptions: OptionSet, ExpressibleByNilLiteral {
| `- note: consider making struct 'LocalStorageOptions' conform to the 'Sendable' protocol
72 |
73 | /**
74 | Tells the `DataStack` that the store should not be migrated or recreated, and should simply fail on model mismatch
75 | */
76 | public static let none: LocalStorageOptions = []
| |- 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
| |- note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
77 |
78 | /**
/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
69 | The `LocalStorageOptions` provides settings that tells the `DataStack` how to setup the persistent store for `LocalStorage` implementers.
70 | */
71 | public struct LocalStorageOptions: OptionSet, ExpressibleByNilLiteral {
| `- note: consider making struct 'LocalStorageOptions' conform to the 'Sendable' protocol
72 |
73 | /**
:
89 | Tells the `DataStack` to allow lightweight migration for the store when added synchronously
90 | */
91 | public static let allowSynchronousLightweightMigration: LocalStorageOptions = .init(rawValue: 1 << 2)
| |- 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
| |- note: annotate 'allowSynchronousLightweightMigration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
92 |
93 |
/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
69 | The `LocalStorageOptions` provides settings that tells the `DataStack` how to setup the persistent store for `LocalStorage` implementers.
70 | */
71 | public struct LocalStorageOptions: OptionSet, ExpressibleByNilLiteral {
| `- note: consider making struct 'LocalStorageOptions' conform to the 'Sendable' protocol
72 |
73 | /**
:
79 | Tells the `DataStack` to delete and recreate the store on model mismatch, otherwise exceptions will be thrown on failure instead
80 | */
81 | public static let recreateStoreOnModelMismatch: LocalStorageOptions = .init(rawValue: 1 << 0)
| |- 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
| |- note: annotate 'recreateStoreOnModelMismatch' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
82 |
83 | /**
/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
69 | The `LocalStorageOptions` provides settings that tells the `DataStack` how to setup the persistent store for `LocalStorage` implementers.
70 | */
71 | public struct LocalStorageOptions: OptionSet, ExpressibleByNilLiteral {
| `- note: consider making struct 'LocalStorageOptions' conform to the 'Sendable' protocol
72 |
73 | /**
:
84 | Tells the `DataStack` to prevent progressive migrations for the store
85 | */
86 | public static let preventProgressiveMigration: LocalStorageOptions = .init(rawValue: 1 << 1)
| |- 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
| |- note: annotate 'preventProgressiveMigration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
87 |
88 | /**
/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
460 | // MARK: Internal
461 |
462 | internal static var defaultConfigurationName = "PF_DEFAULT_CONFIGURATION_NAME"
| |- 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
| |- note: convert 'defaultConfigurationName' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'defaultConfigurationName' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
463 |
464 | internal let coordinator: NSPersistentStoreCoordinator
[123/178] Compiling CoreStore String+KeyPaths.swift
/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
69 | The `LocalStorageOptions` provides settings that tells the `DataStack` how to setup the persistent store for `LocalStorage` implementers.
70 | */
71 | public struct LocalStorageOptions: OptionSet, ExpressibleByNilLiteral {
| `- note: consider making struct 'LocalStorageOptions' conform to the 'Sendable' protocol
72 |
73 | /**
74 | Tells the `DataStack` that the store should not be migrated or recreated, and should simply fail on model mismatch
75 | */
76 | public static let none: LocalStorageOptions = []
| |- 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
| |- note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
77 |
78 | /**
/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
69 | The `LocalStorageOptions` provides settings that tells the `DataStack` how to setup the persistent store for `LocalStorage` implementers.
70 | */
71 | public struct LocalStorageOptions: OptionSet, ExpressibleByNilLiteral {
| `- note: consider making struct 'LocalStorageOptions' conform to the 'Sendable' protocol
72 |
73 | /**
:
89 | Tells the `DataStack` to allow lightweight migration for the store when added synchronously
90 | */
91 | public static let allowSynchronousLightweightMigration: LocalStorageOptions = .init(rawValue: 1 << 2)
| |- 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
| |- note: annotate 'allowSynchronousLightweightMigration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
92 |
93 |
/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
69 | The `LocalStorageOptions` provides settings that tells the `DataStack` how to setup the persistent store for `LocalStorage` implementers.
70 | */
71 | public struct LocalStorageOptions: OptionSet, ExpressibleByNilLiteral {
| `- note: consider making struct 'LocalStorageOptions' conform to the 'Sendable' protocol
72 |
73 | /**
:
79 | Tells the `DataStack` to delete and recreate the store on model mismatch, otherwise exceptions will be thrown on failure instead
80 | */
81 | public static let recreateStoreOnModelMismatch: LocalStorageOptions = .init(rawValue: 1 << 0)
| |- 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
| |- note: annotate 'recreateStoreOnModelMismatch' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
82 |
83 | /**
/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
69 | The `LocalStorageOptions` provides settings that tells the `DataStack` how to setup the persistent store for `LocalStorage` implementers.
70 | */
71 | public struct LocalStorageOptions: OptionSet, ExpressibleByNilLiteral {
| `- note: consider making struct 'LocalStorageOptions' conform to the 'Sendable' protocol
72 |
73 | /**
:
84 | Tells the `DataStack` to prevent progressive migrations for the store
85 | */
86 | public static let preventProgressiveMigration: LocalStorageOptions = .init(rawValue: 1 << 1)
| |- 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
| |- note: annotate 'preventProgressiveMigration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
87 |
88 | /**
/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
460 | // MARK: Internal
461 |
462 | internal static var defaultConfigurationName = "PF_DEFAULT_CONFIGURATION_NAME"
| |- 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
| |- note: convert 'defaultConfigurationName' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'defaultConfigurationName' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
463 |
464 | internal let coordinator: NSPersistentStoreCoordinator
[124/178] Compiling CoreStore SynchronousDataTransaction.swift
/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
69 | The `LocalStorageOptions` provides settings that tells the `DataStack` how to setup the persistent store for `LocalStorage` implementers.
70 | */
71 | public struct LocalStorageOptions: OptionSet, ExpressibleByNilLiteral {
| `- note: consider making struct 'LocalStorageOptions' conform to the 'Sendable' protocol
72 |
73 | /**
74 | Tells the `DataStack` that the store should not be migrated or recreated, and should simply fail on model mismatch
75 | */
76 | public static let none: LocalStorageOptions = []
| |- 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
| |- note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
77 |
78 | /**
/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
69 | The `LocalStorageOptions` provides settings that tells the `DataStack` how to setup the persistent store for `LocalStorage` implementers.
70 | */
71 | public struct LocalStorageOptions: OptionSet, ExpressibleByNilLiteral {
| `- note: consider making struct 'LocalStorageOptions' conform to the 'Sendable' protocol
72 |
73 | /**
:
89 | Tells the `DataStack` to allow lightweight migration for the store when added synchronously
90 | */
91 | public static let allowSynchronousLightweightMigration: LocalStorageOptions = .init(rawValue: 1 << 2)
| |- 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
| |- note: annotate 'allowSynchronousLightweightMigration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
92 |
93 |
/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
69 | The `LocalStorageOptions` provides settings that tells the `DataStack` how to setup the persistent store for `LocalStorage` implementers.
70 | */
71 | public struct LocalStorageOptions: OptionSet, ExpressibleByNilLiteral {
| `- note: consider making struct 'LocalStorageOptions' conform to the 'Sendable' protocol
72 |
73 | /**
:
79 | Tells the `DataStack` to delete and recreate the store on model mismatch, otherwise exceptions will be thrown on failure instead
80 | */
81 | public static let recreateStoreOnModelMismatch: LocalStorageOptions = .init(rawValue: 1 << 0)
| |- 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
| |- note: annotate 'recreateStoreOnModelMismatch' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
82 |
83 | /**
/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
69 | The `LocalStorageOptions` provides settings that tells the `DataStack` how to setup the persistent store for `LocalStorage` implementers.
70 | */
71 | public struct LocalStorageOptions: OptionSet, ExpressibleByNilLiteral {
| `- note: consider making struct 'LocalStorageOptions' conform to the 'Sendable' protocol
72 |
73 | /**
:
84 | Tells the `DataStack` to prevent progressive migrations for the store
85 | */
86 | public static let preventProgressiveMigration: LocalStorageOptions = .init(rawValue: 1 << 1)
| |- 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
| |- note: annotate 'preventProgressiveMigration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
87 |
88 | /**
/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
460 | // MARK: Internal
461 |
462 | internal static var defaultConfigurationName = "PF_DEFAULT_CONFIGURATION_NAME"
| |- 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
| |- note: convert 'defaultConfigurationName' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'defaultConfigurationName' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
463 |
464 | internal let coordinator: NSPersistentStoreCoordinator
[125/178] Compiling CoreStore Transformable.Optional.swift
/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
69 | The `LocalStorageOptions` provides settings that tells the `DataStack` how to setup the persistent store for `LocalStorage` implementers.
70 | */
71 | public struct LocalStorageOptions: OptionSet, ExpressibleByNilLiteral {
| `- note: consider making struct 'LocalStorageOptions' conform to the 'Sendable' protocol
72 |
73 | /**
74 | Tells the `DataStack` that the store should not be migrated or recreated, and should simply fail on model mismatch
75 | */
76 | public static let none: LocalStorageOptions = []
| |- 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
| |- note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
77 |
78 | /**
/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
69 | The `LocalStorageOptions` provides settings that tells the `DataStack` how to setup the persistent store for `LocalStorage` implementers.
70 | */
71 | public struct LocalStorageOptions: OptionSet, ExpressibleByNilLiteral {
| `- note: consider making struct 'LocalStorageOptions' conform to the 'Sendable' protocol
72 |
73 | /**
:
89 | Tells the `DataStack` to allow lightweight migration for the store when added synchronously
90 | */
91 | public static let allowSynchronousLightweightMigration: LocalStorageOptions = .init(rawValue: 1 << 2)
| |- 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
| |- note: annotate 'allowSynchronousLightweightMigration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
92 |
93 |
/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
69 | The `LocalStorageOptions` provides settings that tells the `DataStack` how to setup the persistent store for `LocalStorage` implementers.
70 | */
71 | public struct LocalStorageOptions: OptionSet, ExpressibleByNilLiteral {
| `- note: consider making struct 'LocalStorageOptions' conform to the 'Sendable' protocol
72 |
73 | /**
:
79 | Tells the `DataStack` to delete and recreate the store on model mismatch, otherwise exceptions will be thrown on failure instead
80 | */
81 | public static let recreateStoreOnModelMismatch: LocalStorageOptions = .init(rawValue: 1 << 0)
| |- 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
| |- note: annotate 'recreateStoreOnModelMismatch' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
82 |
83 | /**
/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
69 | The `LocalStorageOptions` provides settings that tells the `DataStack` how to setup the persistent store for `LocalStorage` implementers.
70 | */
71 | public struct LocalStorageOptions: OptionSet, ExpressibleByNilLiteral {
| `- note: consider making struct 'LocalStorageOptions' conform to the 'Sendable' protocol
72 |
73 | /**
:
84 | Tells the `DataStack` to prevent progressive migrations for the store
85 | */
86 | public static let preventProgressiveMigration: LocalStorageOptions = .init(rawValue: 1 << 1)
| |- 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
| |- note: annotate 'preventProgressiveMigration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
87 |
88 | /**
/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
460 | // MARK: Internal
461 |
462 | internal static var defaultConfigurationName = "PF_DEFAULT_CONFIGURATION_NAME"
| |- 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
| |- note: convert 'defaultConfigurationName' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'defaultConfigurationName' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
463 |
464 | internal let coordinator: NSPersistentStoreCoordinator
[126/178] Compiling CoreStore DiffableDataSourceSnapshotProtocol.swift
/Users/admin/builder/spi-builder-workspace/Sources/DispatchQueue+CoreStore.swift:113:48: warning: capture of 'closure' with non-sendable type '() -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
111 | ) {
112 |
113 | self.async { autoreleasepool(invoking: closure) }
| |- warning: capture of 'closure' with non-sendable type '() -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
114 | }
115 |
/Users/admin/builder/spi-builder-workspace/Sources/DispatchQueue+CoreStore.swift:129:65: warning: capture of 'closure' with non-sendable type '() -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
127 | ) {
128 |
129 | self.async(flags: .barrier) { autoreleasepool(invoking: closure) }
| |- warning: capture of 'closure' with non-sendable type '() -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
130 | }
131 |
[127/178] Compiling CoreStore Differentiable.swift
/Users/admin/builder/spi-builder-workspace/Sources/DispatchQueue+CoreStore.swift:113:48: warning: capture of 'closure' with non-sendable type '() -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
111 | ) {
112 |
113 | self.async { autoreleasepool(invoking: closure) }
| |- warning: capture of 'closure' with non-sendable type '() -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
114 | }
115 |
/Users/admin/builder/spi-builder-workspace/Sources/DispatchQueue+CoreStore.swift:129:65: warning: capture of 'closure' with non-sendable type '() -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
127 | ) {
128 |
129 | self.async(flags: .barrier) { autoreleasepool(invoking: closure) }
| |- warning: capture of 'closure' with non-sendable type '() -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
130 | }
131 |
[128/178] Compiling CoreStore DispatchQueue+CoreStore.swift
/Users/admin/builder/spi-builder-workspace/Sources/DispatchQueue+CoreStore.swift:113:48: warning: capture of 'closure' with non-sendable type '() -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
111 | ) {
112 |
113 | self.async { autoreleasepool(invoking: closure) }
| |- warning: capture of 'closure' with non-sendable type '() -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
114 | }
115 |
/Users/admin/builder/spi-builder-workspace/Sources/DispatchQueue+CoreStore.swift:129:65: warning: capture of 'closure' with non-sendable type '() -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
127 | ) {
128 |
129 | self.async(flags: .barrier) { autoreleasepool(invoking: closure) }
| |- warning: capture of 'closure' with non-sendable type '() -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
130 | }
131 |
[129/178] Compiling CoreStore DynamicObject.swift
/Users/admin/builder/spi-builder-workspace/Sources/DispatchQueue+CoreStore.swift:113:48: warning: capture of 'closure' with non-sendable type '() -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
111 | ) {
112 |
113 | self.async { autoreleasepool(invoking: closure) }
| |- warning: capture of 'closure' with non-sendable type '() -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
114 | }
115 |
/Users/admin/builder/spi-builder-workspace/Sources/DispatchQueue+CoreStore.swift:129:65: warning: capture of 'closure' with non-sendable type '() -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
127 | ) {
128 |
129 | self.async(flags: .barrier) { autoreleasepool(invoking: closure) }
| |- warning: capture of 'closure' with non-sendable type '() -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
130 | }
131 |
[130/178] Compiling CoreStore DynamicSchema+Convenience.swift
/Users/admin/builder/spi-builder-workspace/Sources/DispatchQueue+CoreStore.swift:113:48: warning: capture of 'closure' with non-sendable type '() -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
111 | ) {
112 |
113 | self.async { autoreleasepool(invoking: closure) }
| |- warning: capture of 'closure' with non-sendable type '() -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
114 | }
115 |
/Users/admin/builder/spi-builder-workspace/Sources/DispatchQueue+CoreStore.swift:129:65: warning: capture of 'closure' with non-sendable type '() -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
127 | ) {
128 |
129 | self.async(flags: .barrier) { autoreleasepool(invoking: closure) }
| |- warning: capture of 'closure' with non-sendable type '() -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
130 | }
131 |
[131/178] Compiling CoreStore DynamicSchema.swift
/Users/admin/builder/spi-builder-workspace/Sources/DispatchQueue+CoreStore.swift:113:48: warning: capture of 'closure' with non-sendable type '() -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
111 | ) {
112 |
113 | self.async { autoreleasepool(invoking: closure) }
| |- warning: capture of 'closure' with non-sendable type '() -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
114 | }
115 |
/Users/admin/builder/spi-builder-workspace/Sources/DispatchQueue+CoreStore.swift:129:65: warning: capture of 'closure' with non-sendable type '() -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
127 | ) {
128 |
129 | self.async(flags: .barrier) { autoreleasepool(invoking: closure) }
| |- warning: capture of 'closure' with non-sendable type '() -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
130 | }
131 |
[132/178] Compiling CoreStore Entity.swift
/Users/admin/builder/spi-builder-workspace/Sources/DispatchQueue+CoreStore.swift:113:48: warning: capture of 'closure' with non-sendable type '() -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
111 | ) {
112 |
113 | self.async { autoreleasepool(invoking: closure) }
| |- warning: capture of 'closure' with non-sendable type '() -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
114 | }
115 |
/Users/admin/builder/spi-builder-workspace/Sources/DispatchQueue+CoreStore.swift:129:65: warning: capture of 'closure' with non-sendable type '() -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
127 | ) {
128 |
129 | self.async(flags: .barrier) { autoreleasepool(invoking: closure) }
| |- warning: capture of 'closure' with non-sendable type '() -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
130 | }
131 |
[133/178] Compiling CoreStore EnvironmentValues+DataSources.swift
/Users/admin/builder/spi-builder-workspace/Sources/DispatchQueue+CoreStore.swift:113:48: warning: capture of 'closure' with non-sendable type '() -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
111 | ) {
112 |
113 | self.async { autoreleasepool(invoking: closure) }
| |- warning: capture of 'closure' with non-sendable type '() -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
114 | }
115 |
/Users/admin/builder/spi-builder-workspace/Sources/DispatchQueue+CoreStore.swift:129:65: warning: capture of 'closure' with non-sendable type '() -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
127 | ) {
128 |
129 | self.async(flags: .barrier) { autoreleasepool(invoking: closure) }
| |- warning: capture of 'closure' with non-sendable type '() -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
130 | }
131 |
[134/178] Compiling CoreStore FIeldRelationshipType.swift
/Users/admin/builder/spi-builder-workspace/Sources/DispatchQueue+CoreStore.swift:113:48: warning: capture of 'closure' with non-sendable type '() -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
111 | ) {
112 |
113 | self.async { autoreleasepool(invoking: closure) }
| |- warning: capture of 'closure' with non-sendable type '() -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
114 | }
115 |
/Users/admin/builder/spi-builder-workspace/Sources/DispatchQueue+CoreStore.swift:129:65: warning: capture of 'closure' with non-sendable type '() -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
127 | ) {
128 |
129 | self.async(flags: .barrier) { autoreleasepool(invoking: closure) }
| |- warning: capture of 'closure' with non-sendable type '() -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
130 | }
131 |
[135/178] Compiling CoreStore FetchChainBuilder.swift
/Users/admin/builder/spi-builder-workspace/Sources/DispatchQueue+CoreStore.swift:113:48: warning: capture of 'closure' with non-sendable type '() -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
111 | ) {
112 |
113 | self.async { autoreleasepool(invoking: closure) }
| |- warning: capture of 'closure' with non-sendable type '() -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
114 | }
115 |
/Users/admin/builder/spi-builder-workspace/Sources/DispatchQueue+CoreStore.swift:129:65: warning: capture of 'closure' with non-sendable type '() -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
127 | ) {
128 |
129 | self.async(flags: .barrier) { autoreleasepool(invoking: closure) }
| |- warning: capture of 'closure' with non-sendable type '() -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
130 | }
131 |
[136/178] Compiling CoreStore FetchableSource.swift
/Users/admin/builder/spi-builder-workspace/Sources/DispatchQueue+CoreStore.swift:113:48: warning: capture of 'closure' with non-sendable type '() -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
111 | ) {
112 |
113 | self.async { autoreleasepool(invoking: closure) }
| |- warning: capture of 'closure' with non-sendable type '() -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
114 | }
115 |
/Users/admin/builder/spi-builder-workspace/Sources/DispatchQueue+CoreStore.swift:129:65: warning: capture of 'closure' with non-sendable type '() -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
127 | ) {
128 |
129 | self.async(flags: .barrier) { autoreleasepool(invoking: closure) }
| |- warning: capture of 'closure' with non-sendable type '() -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
130 | }
131 |
[137/178] Compiling CoreStore Field.Coded.swift
/Users/admin/builder/spi-builder-workspace/Sources/DispatchQueue+CoreStore.swift:113:48: warning: capture of 'closure' with non-sendable type '() -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
111 | ) {
112 |
113 | self.async { autoreleasepool(invoking: closure) }
| |- warning: capture of 'closure' with non-sendable type '() -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
114 | }
115 |
/Users/admin/builder/spi-builder-workspace/Sources/DispatchQueue+CoreStore.swift:129:65: warning: capture of 'closure' with non-sendable type '() -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
127 | ) {
128 |
129 | self.async(flags: .barrier) { autoreleasepool(invoking: closure) }
| |- warning: capture of 'closure' with non-sendable type '() -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
130 | }
131 |
[138/178] Compiling CoreStore Field.Relationship.swift
/Users/admin/builder/spi-builder-workspace/Sources/DispatchQueue+CoreStore.swift:113:48: warning: capture of 'closure' with non-sendable type '() -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
111 | ) {
112 |
113 | self.async { autoreleasepool(invoking: closure) }
| |- warning: capture of 'closure' with non-sendable type '() -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
114 | }
115 |
/Users/admin/builder/spi-builder-workspace/Sources/DispatchQueue+CoreStore.swift:129:65: warning: capture of 'closure' with non-sendable type '() -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
127 | ) {
128 |
129 | self.async(flags: .barrier) { autoreleasepool(invoking: closure) }
| |- warning: capture of 'closure' with non-sendable type '() -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
130 | }
131 |
[139/178] Compiling CoreStore Field.Stored.swift
/Users/admin/builder/spi-builder-workspace/Sources/DispatchQueue+CoreStore.swift:113:48: warning: capture of 'closure' with non-sendable type '() -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
111 | ) {
112 |
113 | self.async { autoreleasepool(invoking: closure) }
| |- warning: capture of 'closure' with non-sendable type '() -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
114 | }
115 |
/Users/admin/builder/spi-builder-workspace/Sources/DispatchQueue+CoreStore.swift:129:65: warning: capture of 'closure' with non-sendable type '() -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
127 | ) {
128 |
129 | self.async(flags: .barrier) { autoreleasepool(invoking: closure) }
| |- warning: capture of 'closure' with non-sendable type '() -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
130 | }
131 |
[140/178] Compiling CoreStore Field.Virtual.swift
/Users/admin/builder/spi-builder-workspace/Sources/DispatchQueue+CoreStore.swift:113:48: warning: capture of 'closure' with non-sendable type '() -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
111 | ) {
112 |
113 | self.async { autoreleasepool(invoking: closure) }
| |- warning: capture of 'closure' with non-sendable type '() -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
114 | }
115 |
/Users/admin/builder/spi-builder-workspace/Sources/DispatchQueue+CoreStore.swift:129:65: warning: capture of 'closure' with non-sendable type '() -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
127 | ) {
128 |
129 | self.async(flags: .barrier) { autoreleasepool(invoking: closure) }
| |- warning: capture of 'closure' with non-sendable type '() -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
130 | }
131 |
[141/178] Compiling CoreStore Field.swift
/Users/admin/builder/spi-builder-workspace/Sources/DispatchQueue+CoreStore.swift:113:48: warning: capture of 'closure' with non-sendable type '() -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
111 | ) {
112 |
113 | self.async { autoreleasepool(invoking: closure) }
| |- warning: capture of 'closure' with non-sendable type '() -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
114 | }
115 |
/Users/admin/builder/spi-builder-workspace/Sources/DispatchQueue+CoreStore.swift:129:65: warning: capture of 'closure' with non-sendable type '() -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
127 | ) {
128 |
129 | self.async(flags: .barrier) { autoreleasepool(invoking: closure) }
| |- warning: capture of 'closure' with non-sendable type '() -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
130 | }
131 |
[142/178] Compiling CoreStore FieldAttributeProtocol.swift
/Users/admin/builder/spi-builder-workspace/Sources/DispatchQueue+CoreStore.swift:113:48: warning: capture of 'closure' with non-sendable type '() -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
111 | ) {
112 |
113 | self.async { autoreleasepool(invoking: closure) }
| |- warning: capture of 'closure' with non-sendable type '() -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
114 | }
115 |
/Users/admin/builder/spi-builder-workspace/Sources/DispatchQueue+CoreStore.swift:129:65: warning: capture of 'closure' with non-sendable type '() -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
127 | ) {
128 |
129 | self.async(flags: .barrier) { autoreleasepool(invoking: closure) }
| |- warning: capture of 'closure' with non-sendable type '() -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
130 | }
131 |
[143/178] Compiling CoreStore FieldCoderType.swift
/Users/admin/builder/spi-builder-workspace/Sources/DispatchQueue+CoreStore.swift:113:48: warning: capture of 'closure' with non-sendable type '() -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
111 | ) {
112 |
113 | self.async { autoreleasepool(invoking: closure) }
| |- warning: capture of 'closure' with non-sendable type '() -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
114 | }
115 |
/Users/admin/builder/spi-builder-workspace/Sources/DispatchQueue+CoreStore.swift:129:65: warning: capture of 'closure' with non-sendable type '() -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
127 | ) {
128 |
129 | self.async(flags: .barrier) { autoreleasepool(invoking: closure) }
| |- warning: capture of 'closure' with non-sendable type '() -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
130 | }
131 |
[144/178] Compiling CoreStore FieldCoders.DefaultNSSecureCoding.swift
/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
460 | // MARK: Internal
461 |
462 | internal static var defaultConfigurationName = "PF_DEFAULT_CONFIGURATION_NAME"
| |- 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
| |- note: convert 'defaultConfigurationName' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'defaultConfigurationName' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
463 |
464 | internal let coordinator: NSPersistentStoreCoordinator
[145/178] Compiling CoreStore FieldCoders.Json.swift
/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
460 | // MARK: Internal
461 |
462 | internal static var defaultConfigurationName = "PF_DEFAULT_CONFIGURATION_NAME"
| |- 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
| |- note: convert 'defaultConfigurationName' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'defaultConfigurationName' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
463 |
464 | internal let coordinator: NSPersistentStoreCoordinator
[146/178] Compiling CoreStore FieldCoders.NSCoding.swift
/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
460 | // MARK: Internal
461 |
462 | internal static var defaultConfigurationName = "PF_DEFAULT_CONFIGURATION_NAME"
| |- 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
| |- note: convert 'defaultConfigurationName' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'defaultConfigurationName' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
463 |
464 | internal let coordinator: NSPersistentStoreCoordinator
[147/178] Compiling CoreStore FieldCoders.Plist.swift
/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
460 | // MARK: Internal
461 |
462 | internal static var defaultConfigurationName = "PF_DEFAULT_CONFIGURATION_NAME"
| |- 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
| |- note: convert 'defaultConfigurationName' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'defaultConfigurationName' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
463 |
464 | internal let coordinator: NSPersistentStoreCoordinator
[148/178] Compiling CoreStore FieldCoders.swift
/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
460 | // MARK: Internal
461 |
462 | internal static var defaultConfigurationName = "PF_DEFAULT_CONFIGURATION_NAME"
| |- 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
| |- note: convert 'defaultConfigurationName' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'defaultConfigurationName' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
463 |
464 | internal let coordinator: NSPersistentStoreCoordinator
[149/178] Compiling CoreStore FieldOptionalType.swift
/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
460 | // MARK: Internal
461 |
462 | internal static var defaultConfigurationName = "PF_DEFAULT_CONFIGURATION_NAME"
| |- 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
| |- note: convert 'defaultConfigurationName' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'defaultConfigurationName' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
463 |
464 | internal let coordinator: NSPersistentStoreCoordinator
[150/178] Compiling CoreStore FieldProtocol.swift
/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
460 | // MARK: Internal
461 |
462 | internal static var defaultConfigurationName = "PF_DEFAULT_CONFIGURATION_NAME"
| |- 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
| |- note: convert 'defaultConfigurationName' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'defaultConfigurationName' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
463 |
464 | internal let coordinator: NSPersistentStoreCoordinator
[151/178] Compiling CoreStore FieldRelationshipProtocol.swift
/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
460 | // MARK: Internal
461 |
462 | internal static var defaultConfigurationName = "PF_DEFAULT_CONFIGURATION_NAME"
| |- 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
| |- note: convert 'defaultConfigurationName' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'defaultConfigurationName' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
463 |
464 | internal let coordinator: NSPersistentStoreCoordinator
[152/178] Compiling CoreStore FieldStorableType.swift
/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
460 | // MARK: Internal
461 |
462 | internal static var defaultConfigurationName = "PF_DEFAULT_CONFIGURATION_NAME"
| |- 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
| |- note: convert 'defaultConfigurationName' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'defaultConfigurationName' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
463 |
464 | internal let coordinator: NSPersistentStoreCoordinator
[153/178] Compiling CoreStore ForEach+SwiftUI.swift
/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
460 | // MARK: Internal
461 |
462 | internal static var defaultConfigurationName = "PF_DEFAULT_CONFIGURATION_NAME"
| |- 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
| |- note: convert 'defaultConfigurationName' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'defaultConfigurationName' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
463 |
464 | internal let coordinator: NSPersistentStoreCoordinator
[154/178] Compiling CoreStore From+Querying.swift
/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
460 | // MARK: Internal
461 |
462 | internal static var defaultConfigurationName = "PF_DEFAULT_CONFIGURATION_NAME"
| |- 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
| |- note: convert 'defaultConfigurationName' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'defaultConfigurationName' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
463 |
464 | internal let coordinator: NSPersistentStoreCoordinator
[155/178] Compiling CoreStore From.swift
/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
460 | // MARK: Internal
461 |
462 | internal static var defaultConfigurationName = "PF_DEFAULT_CONFIGURATION_NAME"
| |- 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
| |- note: convert 'defaultConfigurationName' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'defaultConfigurationName' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
463 |
464 | internal let coordinator: NSPersistentStoreCoordinator
[156/178] Compiling CoreStore GroupBy.swift
/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
460 | // MARK: Internal
461 |
462 | internal static var defaultConfigurationName = "PF_DEFAULT_CONFIGURATION_NAME"
| |- 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
| |- note: convert 'defaultConfigurationName' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'defaultConfigurationName' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
463 |
464 | internal let coordinator: NSPersistentStoreCoordinator
[157/178] Compiling CoreStore ImportableAttributeType.swift
/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
460 | // MARK: Internal
461 |
462 | internal static var defaultConfigurationName = "PF_DEFAULT_CONFIGURATION_NAME"
| |- 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
| |- note: convert 'defaultConfigurationName' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'defaultConfigurationName' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
463 |
464 | internal let coordinator: NSPersistentStoreCoordinator
[158/178] Compiling CoreStore ImportableObject.swift
/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
460 | // MARK: Internal
461 |
462 | internal static var defaultConfigurationName = "PF_DEFAULT_CONFIGURATION_NAME"
| |- 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
| |- note: convert 'defaultConfigurationName' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'defaultConfigurationName' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
463 |
464 | internal let coordinator: NSPersistentStoreCoordinator
[159/178] Compiling CoreStore ImportableUniqueObject.swift
/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
460 | // MARK: Internal
461 |
462 | internal static var defaultConfigurationName = "PF_DEFAULT_CONFIGURATION_NAME"
| |- 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
| |- note: convert 'defaultConfigurationName' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'defaultConfigurationName' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
463 |
464 | internal let coordinator: NSPersistentStoreCoordinator
[160/178] Compiling CoreStore InMemoryStore.swift
/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
460 | // MARK: Internal
461 |
462 | internal static var defaultConfigurationName = "PF_DEFAULT_CONFIGURATION_NAME"
| |- 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
| |- note: convert 'defaultConfigurationName' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'defaultConfigurationName' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
463 |
464 | internal let coordinator: NSPersistentStoreCoordinator
[161/178] Compiling CoreStore InferredSchemaMappingProvider.swift
/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
460 | // MARK: Internal
461 |
462 | internal static var defaultConfigurationName = "PF_DEFAULT_CONFIGURATION_NAME"
| |- 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
| |- note: convert 'defaultConfigurationName' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'defaultConfigurationName' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
463 |
464 | internal let coordinator: NSPersistentStoreCoordinator
[162/178] Compiling CoreStore ObjectMonitor.swift
/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
92 | // MARK: Private
93 |
94 | @ObservedObject
| `- warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
95 | private var observer: Observer
96 |
SwiftUICore.ObservedObject:7:39: note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
5 | }
6 | @MainActor @preconcurrency public init(initialValue: ObjectType)
7 | @MainActor @preconcurrency public init(wrappedValue: ObjectType)
| `- note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
8 | @MainActor @preconcurrency public var wrappedValue: ObjectType
9 | @MainActor @preconcurrency public var projectedValue: ObservedObject<ObjectType>.Wrapper { get }
/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
65 | public init(_ objectPublisher: ObjectPublisher<O>?) {
66 |
67 | self.observer = .init(objectPublisher: objectPublisher)
| `- warning: main actor-isolated property 'observer' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
68 | }
69 |
:
93 |
94 | @ObservedObject
95 | private var observer: Observer
| `- note: mutation of this property is only permitted within the actor
96 |
97 |
/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
73 | public var wrappedValue: ObjectSnapshot<O>? {
74 |
75 | return self.observer.item
| `- warning: main actor-isolated property 'observer' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
76 | }
77 |
:
93 |
94 | @ObservedObject
95 | private var observer: Observer
| `- note: property declared here
96 |
97 |
/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
78 | public var projectedValue: ObjectPublisher<O>? {
79 |
80 | return self.observer.objectPublisher
| `- warning: main actor-isolated property 'observer' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
81 | }
82 |
:
93 |
94 | @ObservedObject
95 | private var observer: Observer
| `- note: property declared here
96 |
97 |
/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
47 | private struct PropertyKeys {
48 |
49 | static var progressObserver: Void?
| |- 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
| |- note: convert 'progressObserver' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'progressObserver' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
50 | }
51 |
/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
147 | DispatchQueue.main.async {
148 |
149 | self.publisher.removeObserver(self)
| |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
150 | }
151 | }
/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
92 | // MARK: Private
93 |
94 | @ObservedObject
| |- warning: sending '$input_value' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated '$input_value' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
95 | private var observer: Observer
96 |
/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
133 | DispatchQueue.main.async { [weak self] () -> Void in
134 |
135 | self?.progressHandler?(progress)
| |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
136 | }
137 | }
[163/178] Compiling CoreStore ObjectObserver.swift
/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
92 | // MARK: Private
93 |
94 | @ObservedObject
| `- warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
95 | private var observer: Observer
96 |
SwiftUICore.ObservedObject:7:39: note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
5 | }
6 | @MainActor @preconcurrency public init(initialValue: ObjectType)
7 | @MainActor @preconcurrency public init(wrappedValue: ObjectType)
| `- note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
8 | @MainActor @preconcurrency public var wrappedValue: ObjectType
9 | @MainActor @preconcurrency public var projectedValue: ObservedObject<ObjectType>.Wrapper { get }
/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
65 | public init(_ objectPublisher: ObjectPublisher<O>?) {
66 |
67 | self.observer = .init(objectPublisher: objectPublisher)
| `- warning: main actor-isolated property 'observer' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
68 | }
69 |
:
93 |
94 | @ObservedObject
95 | private var observer: Observer
| `- note: mutation of this property is only permitted within the actor
96 |
97 |
/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
73 | public var wrappedValue: ObjectSnapshot<O>? {
74 |
75 | return self.observer.item
| `- warning: main actor-isolated property 'observer' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
76 | }
77 |
:
93 |
94 | @ObservedObject
95 | private var observer: Observer
| `- note: property declared here
96 |
97 |
/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
78 | public var projectedValue: ObjectPublisher<O>? {
79 |
80 | return self.observer.objectPublisher
| `- warning: main actor-isolated property 'observer' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
81 | }
82 |
:
93 |
94 | @ObservedObject
95 | private var observer: Observer
| `- note: property declared here
96 |
97 |
/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
47 | private struct PropertyKeys {
48 |
49 | static var progressObserver: Void?
| |- 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
| |- note: convert 'progressObserver' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'progressObserver' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
50 | }
51 |
/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
147 | DispatchQueue.main.async {
148 |
149 | self.publisher.removeObserver(self)
| |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
150 | }
151 | }
/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
92 | // MARK: Private
93 |
94 | @ObservedObject
| |- warning: sending '$input_value' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated '$input_value' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
95 | private var observer: Observer
96 |
/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
133 | DispatchQueue.main.async { [weak self] () -> Void in
134 |
135 | self?.progressHandler?(progress)
| |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
136 | }
137 | }
[164/178] Compiling CoreStore ObjectProxy.swift
/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
92 | // MARK: Private
93 |
94 | @ObservedObject
| `- warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
95 | private var observer: Observer
96 |
SwiftUICore.ObservedObject:7:39: note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
5 | }
6 | @MainActor @preconcurrency public init(initialValue: ObjectType)
7 | @MainActor @preconcurrency public init(wrappedValue: ObjectType)
| `- note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
8 | @MainActor @preconcurrency public var wrappedValue: ObjectType
9 | @MainActor @preconcurrency public var projectedValue: ObservedObject<ObjectType>.Wrapper { get }
/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
65 | public init(_ objectPublisher: ObjectPublisher<O>?) {
66 |
67 | self.observer = .init(objectPublisher: objectPublisher)
| `- warning: main actor-isolated property 'observer' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
68 | }
69 |
:
93 |
94 | @ObservedObject
95 | private var observer: Observer
| `- note: mutation of this property is only permitted within the actor
96 |
97 |
/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
73 | public var wrappedValue: ObjectSnapshot<O>? {
74 |
75 | return self.observer.item
| `- warning: main actor-isolated property 'observer' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
76 | }
77 |
:
93 |
94 | @ObservedObject
95 | private var observer: Observer
| `- note: property declared here
96 |
97 |
/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
78 | public var projectedValue: ObjectPublisher<O>? {
79 |
80 | return self.observer.objectPublisher
| `- warning: main actor-isolated property 'observer' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
81 | }
82 |
:
93 |
94 | @ObservedObject
95 | private var observer: Observer
| `- note: property declared here
96 |
97 |
/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
47 | private struct PropertyKeys {
48 |
49 | static var progressObserver: Void?
| |- 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
| |- note: convert 'progressObserver' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'progressObserver' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
50 | }
51 |
/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
147 | DispatchQueue.main.async {
148 |
149 | self.publisher.removeObserver(self)
| |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
150 | }
151 | }
/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
92 | // MARK: Private
93 |
94 | @ObservedObject
| |- warning: sending '$input_value' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated '$input_value' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
95 | private var observer: Observer
96 |
/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
133 | DispatchQueue.main.async { [weak self] () -> Void in
134 |
135 | self?.progressHandler?(progress)
| |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
136 | }
137 | }
[165/178] Compiling CoreStore ObjectPublisher+Reactive.swift
/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
92 | // MARK: Private
93 |
94 | @ObservedObject
| `- warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
95 | private var observer: Observer
96 |
SwiftUICore.ObservedObject:7:39: note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
5 | }
6 | @MainActor @preconcurrency public init(initialValue: ObjectType)
7 | @MainActor @preconcurrency public init(wrappedValue: ObjectType)
| `- note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
8 | @MainActor @preconcurrency public var wrappedValue: ObjectType
9 | @MainActor @preconcurrency public var projectedValue: ObservedObject<ObjectType>.Wrapper { get }
/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
65 | public init(_ objectPublisher: ObjectPublisher<O>?) {
66 |
67 | self.observer = .init(objectPublisher: objectPublisher)
| `- warning: main actor-isolated property 'observer' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
68 | }
69 |
:
93 |
94 | @ObservedObject
95 | private var observer: Observer
| `- note: mutation of this property is only permitted within the actor
96 |
97 |
/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
73 | public var wrappedValue: ObjectSnapshot<O>? {
74 |
75 | return self.observer.item
| `- warning: main actor-isolated property 'observer' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
76 | }
77 |
:
93 |
94 | @ObservedObject
95 | private var observer: Observer
| `- note: property declared here
96 |
97 |
/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
78 | public var projectedValue: ObjectPublisher<O>? {
79 |
80 | return self.observer.objectPublisher
| `- warning: main actor-isolated property 'observer' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
81 | }
82 |
:
93 |
94 | @ObservedObject
95 | private var observer: Observer
| `- note: property declared here
96 |
97 |
/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
47 | private struct PropertyKeys {
48 |
49 | static var progressObserver: Void?
| |- 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
| |- note: convert 'progressObserver' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'progressObserver' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
50 | }
51 |
/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
147 | DispatchQueue.main.async {
148 |
149 | self.publisher.removeObserver(self)
| |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
150 | }
151 | }
/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
92 | // MARK: Private
93 |
94 | @ObservedObject
| |- warning: sending '$input_value' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated '$input_value' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
95 | private var observer: Observer
96 |
/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
133 | DispatchQueue.main.async { [weak self] () -> Void in
134 |
135 | self?.progressHandler?(progress)
| |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
136 | }
137 | }
[166/178] Compiling CoreStore ObjectPublisher.SnapshotPublisher.swift
/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
92 | // MARK: Private
93 |
94 | @ObservedObject
| `- warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
95 | private var observer: Observer
96 |
SwiftUICore.ObservedObject:7:39: note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
5 | }
6 | @MainActor @preconcurrency public init(initialValue: ObjectType)
7 | @MainActor @preconcurrency public init(wrappedValue: ObjectType)
| `- note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
8 | @MainActor @preconcurrency public var wrappedValue: ObjectType
9 | @MainActor @preconcurrency public var projectedValue: ObservedObject<ObjectType>.Wrapper { get }
/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
65 | public init(_ objectPublisher: ObjectPublisher<O>?) {
66 |
67 | self.observer = .init(objectPublisher: objectPublisher)
| `- warning: main actor-isolated property 'observer' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
68 | }
69 |
:
93 |
94 | @ObservedObject
95 | private var observer: Observer
| `- note: mutation of this property is only permitted within the actor
96 |
97 |
/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
73 | public var wrappedValue: ObjectSnapshot<O>? {
74 |
75 | return self.observer.item
| `- warning: main actor-isolated property 'observer' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
76 | }
77 |
:
93 |
94 | @ObservedObject
95 | private var observer: Observer
| `- note: property declared here
96 |
97 |
/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
78 | public var projectedValue: ObjectPublisher<O>? {
79 |
80 | return self.observer.objectPublisher
| `- warning: main actor-isolated property 'observer' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
81 | }
82 |
:
93 |
94 | @ObservedObject
95 | private var observer: Observer
| `- note: property declared here
96 |
97 |
/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
47 | private struct PropertyKeys {
48 |
49 | static var progressObserver: Void?
| |- 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
| |- note: convert 'progressObserver' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'progressObserver' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
50 | }
51 |
/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
147 | DispatchQueue.main.async {
148 |
149 | self.publisher.removeObserver(self)
| |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
150 | }
151 | }
/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
92 | // MARK: Private
93 |
94 | @ObservedObject
| |- warning: sending '$input_value' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated '$input_value' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
95 | private var observer: Observer
96 |
/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
133 | DispatchQueue.main.async { [weak self] () -> Void in
134 |
135 | self?.progressHandler?(progress)
| |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
136 | }
137 | }
[167/178] Compiling CoreStore ObjectPublisher.swift
/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
92 | // MARK: Private
93 |
94 | @ObservedObject
| `- warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
95 | private var observer: Observer
96 |
SwiftUICore.ObservedObject:7:39: note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
5 | }
6 | @MainActor @preconcurrency public init(initialValue: ObjectType)
7 | @MainActor @preconcurrency public init(wrappedValue: ObjectType)
| `- note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
8 | @MainActor @preconcurrency public var wrappedValue: ObjectType
9 | @MainActor @preconcurrency public var projectedValue: ObservedObject<ObjectType>.Wrapper { get }
/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
65 | public init(_ objectPublisher: ObjectPublisher<O>?) {
66 |
67 | self.observer = .init(objectPublisher: objectPublisher)
| `- warning: main actor-isolated property 'observer' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
68 | }
69 |
:
93 |
94 | @ObservedObject
95 | private var observer: Observer
| `- note: mutation of this property is only permitted within the actor
96 |
97 |
/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
73 | public var wrappedValue: ObjectSnapshot<O>? {
74 |
75 | return self.observer.item
| `- warning: main actor-isolated property 'observer' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
76 | }
77 |
:
93 |
94 | @ObservedObject
95 | private var observer: Observer
| `- note: property declared here
96 |
97 |
/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
78 | public var projectedValue: ObjectPublisher<O>? {
79 |
80 | return self.observer.objectPublisher
| `- warning: main actor-isolated property 'observer' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
81 | }
82 |
:
93 |
94 | @ObservedObject
95 | private var observer: Observer
| `- note: property declared here
96 |
97 |
/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
47 | private struct PropertyKeys {
48 |
49 | static var progressObserver: Void?
| |- 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
| |- note: convert 'progressObserver' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'progressObserver' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
50 | }
51 |
/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
147 | DispatchQueue.main.async {
148 |
149 | self.publisher.removeObserver(self)
| |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
150 | }
151 | }
/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
92 | // MARK: Private
93 |
94 | @ObservedObject
| |- warning: sending '$input_value' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated '$input_value' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
95 | private var observer: Observer
96 |
/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
133 | DispatchQueue.main.async { [weak self] () -> Void in
134 |
135 | self?.progressHandler?(progress)
| |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
136 | }
137 | }
[168/178] Compiling CoreStore ObjectReader.swift
/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
92 | // MARK: Private
93 |
94 | @ObservedObject
| `- warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
95 | private var observer: Observer
96 |
SwiftUICore.ObservedObject:7:39: note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
5 | }
6 | @MainActor @preconcurrency public init(initialValue: ObjectType)
7 | @MainActor @preconcurrency public init(wrappedValue: ObjectType)
| `- note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
8 | @MainActor @preconcurrency public var wrappedValue: ObjectType
9 | @MainActor @preconcurrency public var projectedValue: ObservedObject<ObjectType>.Wrapper { get }
/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
65 | public init(_ objectPublisher: ObjectPublisher<O>?) {
66 |
67 | self.observer = .init(objectPublisher: objectPublisher)
| `- warning: main actor-isolated property 'observer' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
68 | }
69 |
:
93 |
94 | @ObservedObject
95 | private var observer: Observer
| `- note: mutation of this property is only permitted within the actor
96 |
97 |
/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
73 | public var wrappedValue: ObjectSnapshot<O>? {
74 |
75 | return self.observer.item
| `- warning: main actor-isolated property 'observer' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
76 | }
77 |
:
93 |
94 | @ObservedObject
95 | private var observer: Observer
| `- note: property declared here
96 |
97 |
/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
78 | public var projectedValue: ObjectPublisher<O>? {
79 |
80 | return self.observer.objectPublisher
| `- warning: main actor-isolated property 'observer' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
81 | }
82 |
:
93 |
94 | @ObservedObject
95 | private var observer: Observer
| `- note: property declared here
96 |
97 |
/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
47 | private struct PropertyKeys {
48 |
49 | static var progressObserver: Void?
| |- 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
| |- note: convert 'progressObserver' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'progressObserver' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
50 | }
51 |
/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
147 | DispatchQueue.main.async {
148 |
149 | self.publisher.removeObserver(self)
| |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
150 | }
151 | }
/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
92 | // MARK: Private
93 |
94 | @ObservedObject
| |- warning: sending '$input_value' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated '$input_value' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
95 | private var observer: Observer
96 |
/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
133 | DispatchQueue.main.async { [weak self] () -> Void in
134 |
135 | self?.progressHandler?(progress)
| |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
136 | }
137 | }
[169/178] Compiling CoreStore ObjectRepresentation.swift
/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
92 | // MARK: Private
93 |
94 | @ObservedObject
| `- warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
95 | private var observer: Observer
96 |
SwiftUICore.ObservedObject:7:39: note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
5 | }
6 | @MainActor @preconcurrency public init(initialValue: ObjectType)
7 | @MainActor @preconcurrency public init(wrappedValue: ObjectType)
| `- note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
8 | @MainActor @preconcurrency public var wrappedValue: ObjectType
9 | @MainActor @preconcurrency public var projectedValue: ObservedObject<ObjectType>.Wrapper { get }
/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
65 | public init(_ objectPublisher: ObjectPublisher<O>?) {
66 |
67 | self.observer = .init(objectPublisher: objectPublisher)
| `- warning: main actor-isolated property 'observer' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
68 | }
69 |
:
93 |
94 | @ObservedObject
95 | private var observer: Observer
| `- note: mutation of this property is only permitted within the actor
96 |
97 |
/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
73 | public var wrappedValue: ObjectSnapshot<O>? {
74 |
75 | return self.observer.item
| `- warning: main actor-isolated property 'observer' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
76 | }
77 |
:
93 |
94 | @ObservedObject
95 | private var observer: Observer
| `- note: property declared here
96 |
97 |
/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
78 | public var projectedValue: ObjectPublisher<O>? {
79 |
80 | return self.observer.objectPublisher
| `- warning: main actor-isolated property 'observer' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
81 | }
82 |
:
93 |
94 | @ObservedObject
95 | private var observer: Observer
| `- note: property declared here
96 |
97 |
/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
47 | private struct PropertyKeys {
48 |
49 | static var progressObserver: Void?
| |- 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
| |- note: convert 'progressObserver' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'progressObserver' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
50 | }
51 |
/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
147 | DispatchQueue.main.async {
148 |
149 | self.publisher.removeObserver(self)
| |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
150 | }
151 | }
/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
92 | // MARK: Private
93 |
94 | @ObservedObject
| |- warning: sending '$input_value' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated '$input_value' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
95 | private var observer: Observer
96 |
/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
133 | DispatchQueue.main.async { [weak self] () -> Void in
134 |
135 | self?.progressHandler?(progress)
| |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
136 | }
137 | }
[170/178] Compiling CoreStore ObjectSnapshot.swift
/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
92 | // MARK: Private
93 |
94 | @ObservedObject
| `- warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
95 | private var observer: Observer
96 |
SwiftUICore.ObservedObject:7:39: note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
5 | }
6 | @MainActor @preconcurrency public init(initialValue: ObjectType)
7 | @MainActor @preconcurrency public init(wrappedValue: ObjectType)
| `- note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
8 | @MainActor @preconcurrency public var wrappedValue: ObjectType
9 | @MainActor @preconcurrency public var projectedValue: ObservedObject<ObjectType>.Wrapper { get }
/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
65 | public init(_ objectPublisher: ObjectPublisher<O>?) {
66 |
67 | self.observer = .init(objectPublisher: objectPublisher)
| `- warning: main actor-isolated property 'observer' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
68 | }
69 |
:
93 |
94 | @ObservedObject
95 | private var observer: Observer
| `- note: mutation of this property is only permitted within the actor
96 |
97 |
/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
73 | public var wrappedValue: ObjectSnapshot<O>? {
74 |
75 | return self.observer.item
| `- warning: main actor-isolated property 'observer' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
76 | }
77 |
:
93 |
94 | @ObservedObject
95 | private var observer: Observer
| `- note: property declared here
96 |
97 |
/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
78 | public var projectedValue: ObjectPublisher<O>? {
79 |
80 | return self.observer.objectPublisher
| `- warning: main actor-isolated property 'observer' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
81 | }
82 |
:
93 |
94 | @ObservedObject
95 | private var observer: Observer
| `- note: property declared here
96 |
97 |
/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
47 | private struct PropertyKeys {
48 |
49 | static var progressObserver: Void?
| |- 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
| |- note: convert 'progressObserver' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'progressObserver' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
50 | }
51 |
/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
147 | DispatchQueue.main.async {
148 |
149 | self.publisher.removeObserver(self)
| |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
150 | }
151 | }
/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
92 | // MARK: Private
93 |
94 | @ObservedObject
| |- warning: sending '$input_value' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated '$input_value' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
95 | private var observer: Observer
96 |
/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
133 | DispatchQueue.main.async { [weak self] () -> Void in
134 |
135 | self?.progressHandler?(progress)
| |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
136 | }
137 | }
[171/178] Compiling CoreStore ObjectState.swift
/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
92 | // MARK: Private
93 |
94 | @ObservedObject
| `- warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
95 | private var observer: Observer
96 |
SwiftUICore.ObservedObject:7:39: note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
5 | }
6 | @MainActor @preconcurrency public init(initialValue: ObjectType)
7 | @MainActor @preconcurrency public init(wrappedValue: ObjectType)
| `- note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
8 | @MainActor @preconcurrency public var wrappedValue: ObjectType
9 | @MainActor @preconcurrency public var projectedValue: ObservedObject<ObjectType>.Wrapper { get }
/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
65 | public init(_ objectPublisher: ObjectPublisher<O>?) {
66 |
67 | self.observer = .init(objectPublisher: objectPublisher)
| `- warning: main actor-isolated property 'observer' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
68 | }
69 |
:
93 |
94 | @ObservedObject
95 | private var observer: Observer
| `- note: mutation of this property is only permitted within the actor
96 |
97 |
/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
73 | public var wrappedValue: ObjectSnapshot<O>? {
74 |
75 | return self.observer.item
| `- warning: main actor-isolated property 'observer' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
76 | }
77 |
:
93 |
94 | @ObservedObject
95 | private var observer: Observer
| `- note: property declared here
96 |
97 |
/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
78 | public var projectedValue: ObjectPublisher<O>? {
79 |
80 | return self.observer.objectPublisher
| `- warning: main actor-isolated property 'observer' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
81 | }
82 |
:
93 |
94 | @ObservedObject
95 | private var observer: Observer
| `- note: property declared here
96 |
97 |
/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
47 | private struct PropertyKeys {
48 |
49 | static var progressObserver: Void?
| |- 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
| |- note: convert 'progressObserver' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'progressObserver' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
50 | }
51 |
/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
147 | DispatchQueue.main.async {
148 |
149 | self.publisher.removeObserver(self)
| |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
150 | }
151 | }
/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
92 | // MARK: Private
93 |
94 | @ObservedObject
| |- warning: sending '$input_value' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated '$input_value' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
95 | private var observer: Observer
96 |
/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
133 | DispatchQueue.main.async { [weak self] () -> Void in
134 |
135 | self?.progressHandler?(progress)
| |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
136 | }
137 | }
[172/178] Compiling CoreStore Operators.swift
/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
92 | // MARK: Private
93 |
94 | @ObservedObject
| `- warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
95 | private var observer: Observer
96 |
SwiftUICore.ObservedObject:7:39: note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
5 | }
6 | @MainActor @preconcurrency public init(initialValue: ObjectType)
7 | @MainActor @preconcurrency public init(wrappedValue: ObjectType)
| `- note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
8 | @MainActor @preconcurrency public var wrappedValue: ObjectType
9 | @MainActor @preconcurrency public var projectedValue: ObservedObject<ObjectType>.Wrapper { get }
/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
65 | public init(_ objectPublisher: ObjectPublisher<O>?) {
66 |
67 | self.observer = .init(objectPublisher: objectPublisher)
| `- warning: main actor-isolated property 'observer' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
68 | }
69 |
:
93 |
94 | @ObservedObject
95 | private var observer: Observer
| `- note: mutation of this property is only permitted within the actor
96 |
97 |
/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
73 | public var wrappedValue: ObjectSnapshot<O>? {
74 |
75 | return self.observer.item
| `- warning: main actor-isolated property 'observer' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
76 | }
77 |
:
93 |
94 | @ObservedObject
95 | private var observer: Observer
| `- note: property declared here
96 |
97 |
/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
78 | public var projectedValue: ObjectPublisher<O>? {
79 |
80 | return self.observer.objectPublisher
| `- warning: main actor-isolated property 'observer' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
81 | }
82 |
:
93 |
94 | @ObservedObject
95 | private var observer: Observer
| `- note: property declared here
96 |
97 |
/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
47 | private struct PropertyKeys {
48 |
49 | static var progressObserver: Void?
| |- 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
| |- note: convert 'progressObserver' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'progressObserver' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
50 | }
51 |
/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
147 | DispatchQueue.main.async {
148 |
149 | self.publisher.removeObserver(self)
| |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
150 | }
151 | }
/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
92 | // MARK: Private
93 |
94 | @ObservedObject
| |- warning: sending '$input_value' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated '$input_value' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
95 | private var observer: Observer
96 |
/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
133 | DispatchQueue.main.async { [weak self] () -> Void in
134 |
135 | self?.progressHandler?(progress)
| |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
136 | }
137 | }
[173/178] Compiling CoreStore OrderBy.swift
/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
92 | // MARK: Private
93 |
94 | @ObservedObject
| `- warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
95 | private var observer: Observer
96 |
SwiftUICore.ObservedObject:7:39: note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
5 | }
6 | @MainActor @preconcurrency public init(initialValue: ObjectType)
7 | @MainActor @preconcurrency public init(wrappedValue: ObjectType)
| `- note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
8 | @MainActor @preconcurrency public var wrappedValue: ObjectType
9 | @MainActor @preconcurrency public var projectedValue: ObservedObject<ObjectType>.Wrapper { get }
/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
65 | public init(_ objectPublisher: ObjectPublisher<O>?) {
66 |
67 | self.observer = .init(objectPublisher: objectPublisher)
| `- warning: main actor-isolated property 'observer' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
68 | }
69 |
:
93 |
94 | @ObservedObject
95 | private var observer: Observer
| `- note: mutation of this property is only permitted within the actor
96 |
97 |
/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
73 | public var wrappedValue: ObjectSnapshot<O>? {
74 |
75 | return self.observer.item
| `- warning: main actor-isolated property 'observer' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
76 | }
77 |
:
93 |
94 | @ObservedObject
95 | private var observer: Observer
| `- note: property declared here
96 |
97 |
/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
78 | public var projectedValue: ObjectPublisher<O>? {
79 |
80 | return self.observer.objectPublisher
| `- warning: main actor-isolated property 'observer' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
81 | }
82 |
:
93 |
94 | @ObservedObject
95 | private var observer: Observer
| `- note: property declared here
96 |
97 |
/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
47 | private struct PropertyKeys {
48 |
49 | static var progressObserver: Void?
| |- 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
| |- note: convert 'progressObserver' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'progressObserver' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
50 | }
51 |
/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
147 | DispatchQueue.main.async {
148 |
149 | self.publisher.removeObserver(self)
| |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
150 | }
151 | }
/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
92 | // MARK: Private
93 |
94 | @ObservedObject
| |- warning: sending '$input_value' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated '$input_value' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
95 | private var observer: Observer
96 |
/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
133 | DispatchQueue.main.async { [weak self] () -> Void in
134 |
135 | self?.progressHandler?(progress)
| |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
136 | }
137 | }
[174/178] Compiling CoreStore PartialObject.swift
/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
92 | // MARK: Private
93 |
94 | @ObservedObject
| `- warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
95 | private var observer: Observer
96 |
SwiftUICore.ObservedObject:7:39: note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
5 | }
6 | @MainActor @preconcurrency public init(initialValue: ObjectType)
7 | @MainActor @preconcurrency public init(wrappedValue: ObjectType)
| `- note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
8 | @MainActor @preconcurrency public var wrappedValue: ObjectType
9 | @MainActor @preconcurrency public var projectedValue: ObservedObject<ObjectType>.Wrapper { get }
/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
65 | public init(_ objectPublisher: ObjectPublisher<O>?) {
66 |
67 | self.observer = .init(objectPublisher: objectPublisher)
| `- warning: main actor-isolated property 'observer' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
68 | }
69 |
:
93 |
94 | @ObservedObject
95 | private var observer: Observer
| `- note: mutation of this property is only permitted within the actor
96 |
97 |
/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
73 | public var wrappedValue: ObjectSnapshot<O>? {
74 |
75 | return self.observer.item
| `- warning: main actor-isolated property 'observer' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
76 | }
77 |
:
93 |
94 | @ObservedObject
95 | private var observer: Observer
| `- note: property declared here
96 |
97 |
/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
78 | public var projectedValue: ObjectPublisher<O>? {
79 |
80 | return self.observer.objectPublisher
| `- warning: main actor-isolated property 'observer' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
81 | }
82 |
:
93 |
94 | @ObservedObject
95 | private var observer: Observer
| `- note: property declared here
96 |
97 |
/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
47 | private struct PropertyKeys {
48 |
49 | static var progressObserver: Void?
| |- 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
| |- note: convert 'progressObserver' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'progressObserver' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
50 | }
51 |
/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
147 | DispatchQueue.main.async {
148 |
149 | self.publisher.removeObserver(self)
| |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
150 | }
151 | }
/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
92 | // MARK: Private
93 |
94 | @ObservedObject
| |- warning: sending '$input_value' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated '$input_value' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
95 | private var observer: Observer
96 |
/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
133 | DispatchQueue.main.async { [weak self] () -> Void in
134 |
135 | self?.progressHandler?(progress)
| |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
136 | }
137 | }
[175/178] Compiling CoreStore Progress+Convenience.swift
/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
92 | // MARK: Private
93 |
94 | @ObservedObject
| `- warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
95 | private var observer: Observer
96 |
SwiftUICore.ObservedObject:7:39: note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
5 | }
6 | @MainActor @preconcurrency public init(initialValue: ObjectType)
7 | @MainActor @preconcurrency public init(wrappedValue: ObjectType)
| `- note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
8 | @MainActor @preconcurrency public var wrappedValue: ObjectType
9 | @MainActor @preconcurrency public var projectedValue: ObservedObject<ObjectType>.Wrapper { get }
/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
65 | public init(_ objectPublisher: ObjectPublisher<O>?) {
66 |
67 | self.observer = .init(objectPublisher: objectPublisher)
| `- warning: main actor-isolated property 'observer' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
68 | }
69 |
:
93 |
94 | @ObservedObject
95 | private var observer: Observer
| `- note: mutation of this property is only permitted within the actor
96 |
97 |
/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
73 | public var wrappedValue: ObjectSnapshot<O>? {
74 |
75 | return self.observer.item
| `- warning: main actor-isolated property 'observer' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
76 | }
77 |
:
93 |
94 | @ObservedObject
95 | private var observer: Observer
| `- note: property declared here
96 |
97 |
/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
78 | public var projectedValue: ObjectPublisher<O>? {
79 |
80 | return self.observer.objectPublisher
| `- warning: main actor-isolated property 'observer' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
81 | }
82 |
:
93 |
94 | @ObservedObject
95 | private var observer: Observer
| `- note: property declared here
96 |
97 |
/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
47 | private struct PropertyKeys {
48 |
49 | static var progressObserver: Void?
| |- 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
| |- note: convert 'progressObserver' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'progressObserver' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
50 | }
51 |
/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
147 | DispatchQueue.main.async {
148 |
149 | self.publisher.removeObserver(self)
| |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
150 | }
151 | }
/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
92 | // MARK: Private
93 |
94 | @ObservedObject
| |- warning: sending '$input_value' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated '$input_value' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
95 | private var observer: Observer
96 |
/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
133 | DispatchQueue.main.async { [weak self] () -> Void in
134 |
135 | self?.progressHandler?(progress)
| |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
136 | }
137 | }
[176/178] Compiling CoreStore PropertyProtocol.swift
/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
92 | // MARK: Private
93 |
94 | @ObservedObject
| `- warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
95 | private var observer: Observer
96 |
SwiftUICore.ObservedObject:7:39: note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
5 | }
6 | @MainActor @preconcurrency public init(initialValue: ObjectType)
7 | @MainActor @preconcurrency public init(wrappedValue: ObjectType)
| `- note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
8 | @MainActor @preconcurrency public var wrappedValue: ObjectType
9 | @MainActor @preconcurrency public var projectedValue: ObservedObject<ObjectType>.Wrapper { get }
/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
65 | public init(_ objectPublisher: ObjectPublisher<O>?) {
66 |
67 | self.observer = .init(objectPublisher: objectPublisher)
| `- warning: main actor-isolated property 'observer' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
68 | }
69 |
:
93 |
94 | @ObservedObject
95 | private var observer: Observer
| `- note: mutation of this property is only permitted within the actor
96 |
97 |
/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
73 | public var wrappedValue: ObjectSnapshot<O>? {
74 |
75 | return self.observer.item
| `- warning: main actor-isolated property 'observer' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
76 | }
77 |
:
93 |
94 | @ObservedObject
95 | private var observer: Observer
| `- note: property declared here
96 |
97 |
/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
78 | public var projectedValue: ObjectPublisher<O>? {
79 |
80 | return self.observer.objectPublisher
| `- warning: main actor-isolated property 'observer' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
81 | }
82 |
:
93 |
94 | @ObservedObject
95 | private var observer: Observer
| `- note: property declared here
96 |
97 |
/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
47 | private struct PropertyKeys {
48 |
49 | static var progressObserver: Void?
| |- 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
| |- note: convert 'progressObserver' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'progressObserver' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
50 | }
51 |
/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
147 | DispatchQueue.main.async {
148 |
149 | self.publisher.removeObserver(self)
| |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
150 | }
151 | }
/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
92 | // MARK: Private
93 |
94 | @ObservedObject
| |- warning: sending '$input_value' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated '$input_value' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
95 | private var observer: Observer
96 |
/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
133 | DispatchQueue.main.async { [weak self] () -> Void in
134 |
135 | self?.progressHandler?(progress)
| |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
136 | }
137 | }
[177/178] Compiling CoreStore QueryChainBuilder.swift
/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
92 | // MARK: Private
93 |
94 | @ObservedObject
| `- warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
95 | private var observer: Observer
96 |
SwiftUICore.ObservedObject:7:39: note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
5 | }
6 | @MainActor @preconcurrency public init(initialValue: ObjectType)
7 | @MainActor @preconcurrency public init(wrappedValue: ObjectType)
| `- note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
8 | @MainActor @preconcurrency public var wrappedValue: ObjectType
9 | @MainActor @preconcurrency public var projectedValue: ObservedObject<ObjectType>.Wrapper { get }
/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
65 | public init(_ objectPublisher: ObjectPublisher<O>?) {
66 |
67 | self.observer = .init(objectPublisher: objectPublisher)
| `- warning: main actor-isolated property 'observer' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
68 | }
69 |
:
93 |
94 | @ObservedObject
95 | private var observer: Observer
| `- note: mutation of this property is only permitted within the actor
96 |
97 |
/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
73 | public var wrappedValue: ObjectSnapshot<O>? {
74 |
75 | return self.observer.item
| `- warning: main actor-isolated property 'observer' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
76 | }
77 |
:
93 |
94 | @ObservedObject
95 | private var observer: Observer
| `- note: property declared here
96 |
97 |
/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
78 | public var projectedValue: ObjectPublisher<O>? {
79 |
80 | return self.observer.objectPublisher
| `- warning: main actor-isolated property 'observer' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
81 | }
82 |
:
93 |
94 | @ObservedObject
95 | private var observer: Observer
| `- note: property declared here
96 |
97 |
/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
47 | private struct PropertyKeys {
48 |
49 | static var progressObserver: Void?
| |- 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
| |- note: convert 'progressObserver' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'progressObserver' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
50 | }
51 |
/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
147 | DispatchQueue.main.async {
148 |
149 | self.publisher.removeObserver(self)
| |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
150 | }
151 | }
/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
92 | // MARK: Private
93 |
94 | @ObservedObject
| |- warning: sending '$input_value' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated '$input_value' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
95 | private var observer: Observer
96 |
/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
133 | DispatchQueue.main.async { [weak self] () -> Void in
134 |
135 | self?.progressHandler?(progress)
| |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
136 | }
137 | }
[178/178] Compiling CoreStore QueryableAttributeType.swift
/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
92 | // MARK: Private
93 |
94 | @ObservedObject
| `- warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
95 | private var observer: Observer
96 |
SwiftUICore.ObservedObject:7:39: note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
5 | }
6 | @MainActor @preconcurrency public init(initialValue: ObjectType)
7 | @MainActor @preconcurrency public init(wrappedValue: ObjectType)
| `- note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
8 | @MainActor @preconcurrency public var wrappedValue: ObjectType
9 | @MainActor @preconcurrency public var projectedValue: ObservedObject<ObjectType>.Wrapper { get }
/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
65 | public init(_ objectPublisher: ObjectPublisher<O>?) {
66 |
67 | self.observer = .init(objectPublisher: objectPublisher)
| `- warning: main actor-isolated property 'observer' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
68 | }
69 |
:
93 |
94 | @ObservedObject
95 | private var observer: Observer
| `- note: mutation of this property is only permitted within the actor
96 |
97 |
/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
73 | public var wrappedValue: ObjectSnapshot<O>? {
74 |
75 | return self.observer.item
| `- warning: main actor-isolated property 'observer' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
76 | }
77 |
:
93 |
94 | @ObservedObject
95 | private var observer: Observer
| `- note: property declared here
96 |
97 |
/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
78 | public var projectedValue: ObjectPublisher<O>? {
79 |
80 | return self.observer.objectPublisher
| `- warning: main actor-isolated property 'observer' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
81 | }
82 |
:
93 |
94 | @ObservedObject
95 | private var observer: Observer
| `- note: property declared here
96 |
97 |
/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
47 | private struct PropertyKeys {
48 |
49 | static var progressObserver: Void?
| |- 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
| |- note: convert 'progressObserver' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'progressObserver' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
50 | }
51 |
/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
147 | DispatchQueue.main.async {
148 |
149 | self.publisher.removeObserver(self)
| |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
150 | }
151 | }
/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
92 | // MARK: Private
93 |
94 | @ObservedObject
| |- warning: sending '$input_value' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated '$input_value' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
95 | private var observer: Observer
96 |
/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
133 | DispatchQueue.main.async { [weak self] () -> Void in
134 |
135 | self?.progressHandler?(progress)
| |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
136 | }
137 | }
Build complete! (24.36s)
warning: 'spi-builder-workspace': found 1 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
/Users/admin/builder/spi-builder-workspace/Sources/Info.plist
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.