Build Information
Successful build of CoreStore, reference 9.3.0 (5a0d27), with Swift 6.3 for macOS (SPM) on 15 Apr 2026 06:15:19 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64Build Log
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:576:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSDictionary>' in a '@Sendable' closure [#SendableClosureCaptures]
574 | do {
575 |
576 | fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSDictionary>' in a '@Sendable' closure [#SendableClosureCaptures]
577 | }
578 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:612:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSDictionary>' in a '@Sendable' closure [#SendableClosureCaptures]
610 | do {
611 |
612 | fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSDictionary>' in a '@Sendable' closure [#SendableClosureCaptures]
613 | }
614 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:647:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSDictionary>' in a '@Sendable' closure [#SendableClosureCaptures]
645 | do {
646 |
647 | fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSDictionary>' in a '@Sendable' closure [#SendableClosureCaptures]
648 | }
649 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:682:55: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<O>' in a '@Sendable' closure [#SendableClosureCaptures]
680 | do {
681 |
682 | let fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<O>' in a '@Sendable' closure [#SendableClosureCaptures]
683 | for object in fetchResults {
684 |
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Setup.swift:81:48: warning: capture of 'note' with non-Sendable type 'Notification' in a '@Sendable' closure [#SendableClosureCaptures]
79 | context?.perform { () -> Void in
80 |
81 | if let updatedObjectIDs = (note.userInfo?[NSUpdatedObjectsKey] as? Set<NSManagedObjectID>) {
| `- warning: capture of 'note' with non-Sendable type 'Notification' in a '@Sendable' closure [#SendableClosureCaptures]
82 |
83 | for objectID in updatedObjectIDs {
Foundation.Notification:2:15: note: struct 'Notification' does not conform to the 'Sendable' protocol
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct Notification : ReferenceConvertible, Equatable, Hashable {
| `- note: struct 'Notification' does not conform to the 'Sendable' protocol
3 | public typealias ReferenceType = NSNotification
4 | public var name: Notification.Name
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Setup.swift:134:44: warning: converting non-Sendable function value to '@Sendable () -> Void' may introduce data races
132 | if case true? = saveMetadata?.isSavingSynchronously {
133 |
134 | context.performAndWait(mergeChanges)
| `- warning: converting non-Sendable function value to '@Sendable () -> Void' may introduce data races
135 | }
136 | else {
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Setup.swift:138:37: warning: converting non-Sendable function value to '@Sendable () -> Void' may introduce data races
136 | else {
137 |
138 | context.perform(mergeChanges)
| `- warning: converting non-Sendable function value to '@Sendable () -> Void' may introduce data races
139 | }
140 | }
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[62/178] Compiling CoreStore NSManagedObject+Convenience.swift
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:302:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSManagedObjectID>' in a '@Sendable' closure [#SendableClosureCaptures]
300 | do {
301 |
302 | fetchResults = try self.fetch(fetchRequest.dynamicCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSManagedObjectID>' in a '@Sendable' closure [#SendableClosureCaptures]
303 | }
304 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:452:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<O>' in a '@Sendable' closure [#SendableClosureCaptures]
450 | do {
451 |
452 | fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<O>' in a '@Sendable' closure [#SendableClosureCaptures]
453 | }
454 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:482:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<O>' in a '@Sendable' closure [#SendableClosureCaptures]
480 | do {
481 |
482 | fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<O>' in a '@Sendable' closure [#SendableClosureCaptures]
483 | }
484 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:512:45: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSNumber>' in a '@Sendable' closure [#SendableClosureCaptures]
510 | do {
511 |
512 | count = try self.count(for: fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSNumber>' in a '@Sendable' closure [#SendableClosureCaptures]
513 | }
514 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:542:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSManagedObjectID>' in a '@Sendable' closure [#SendableClosureCaptures]
540 | do {
541 |
542 | fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSManagedObjectID>' in a '@Sendable' closure [#SendableClosureCaptures]
543 | }
544 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:576:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSDictionary>' in a '@Sendable' closure [#SendableClosureCaptures]
574 | do {
575 |
576 | fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSDictionary>' in a '@Sendable' closure [#SendableClosureCaptures]
577 | }
578 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:612:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSDictionary>' in a '@Sendable' closure [#SendableClosureCaptures]
610 | do {
611 |
612 | fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSDictionary>' in a '@Sendable' closure [#SendableClosureCaptures]
613 | }
614 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:647:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSDictionary>' in a '@Sendable' closure [#SendableClosureCaptures]
645 | do {
646 |
647 | fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSDictionary>' in a '@Sendable' closure [#SendableClosureCaptures]
648 | }
649 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:682:55: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<O>' in a '@Sendable' closure [#SendableClosureCaptures]
680 | do {
681 |
682 | let fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<O>' in a '@Sendable' closure [#SendableClosureCaptures]
683 | for object in fetchResults {
684 |
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Setup.swift:81:48: warning: capture of 'note' with non-Sendable type 'Notification' in a '@Sendable' closure [#SendableClosureCaptures]
79 | context?.perform { () -> Void in
80 |
81 | if let updatedObjectIDs = (note.userInfo?[NSUpdatedObjectsKey] as? Set<NSManagedObjectID>) {
| `- warning: capture of 'note' with non-Sendable type 'Notification' in a '@Sendable' closure [#SendableClosureCaptures]
82 |
83 | for objectID in updatedObjectIDs {
Foundation.Notification:2:15: note: struct 'Notification' does not conform to the 'Sendable' protocol
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct Notification : ReferenceConvertible, Equatable, Hashable {
| `- note: struct 'Notification' does not conform to the 'Sendable' protocol
3 | public typealias ReferenceType = NSNotification
4 | public var name: Notification.Name
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Setup.swift:134:44: warning: converting non-Sendable function value to '@Sendable () -> Void' may introduce data races
132 | if case true? = saveMetadata?.isSavingSynchronously {
133 |
134 | context.performAndWait(mergeChanges)
| `- warning: converting non-Sendable function value to '@Sendable () -> Void' may introduce data races
135 | }
136 | else {
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Setup.swift:138:37: warning: converting non-Sendable function value to '@Sendable () -> Void' may introduce data races
136 | else {
137 |
138 | context.perform(mergeChanges)
| `- warning: converting non-Sendable function value to '@Sendable () -> Void' may introduce data races
139 | }
140 | }
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[63/178] Compiling CoreStore NSManagedObject+DynamicModel.swift
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:302:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSManagedObjectID>' in a '@Sendable' closure [#SendableClosureCaptures]
300 | do {
301 |
302 | fetchResults = try self.fetch(fetchRequest.dynamicCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSManagedObjectID>' in a '@Sendable' closure [#SendableClosureCaptures]
303 | }
304 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:452:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<O>' in a '@Sendable' closure [#SendableClosureCaptures]
450 | do {
451 |
452 | fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<O>' in a '@Sendable' closure [#SendableClosureCaptures]
453 | }
454 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:482:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<O>' in a '@Sendable' closure [#SendableClosureCaptures]
480 | do {
481 |
482 | fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<O>' in a '@Sendable' closure [#SendableClosureCaptures]
483 | }
484 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:512:45: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSNumber>' in a '@Sendable' closure [#SendableClosureCaptures]
510 | do {
511 |
512 | count = try self.count(for: fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSNumber>' in a '@Sendable' closure [#SendableClosureCaptures]
513 | }
514 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:542:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSManagedObjectID>' in a '@Sendable' closure [#SendableClosureCaptures]
540 | do {
541 |
542 | fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSManagedObjectID>' in a '@Sendable' closure [#SendableClosureCaptures]
543 | }
544 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:576:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSDictionary>' in a '@Sendable' closure [#SendableClosureCaptures]
574 | do {
575 |
576 | fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSDictionary>' in a '@Sendable' closure [#SendableClosureCaptures]
577 | }
578 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:612:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSDictionary>' in a '@Sendable' closure [#SendableClosureCaptures]
610 | do {
611 |
612 | fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSDictionary>' in a '@Sendable' closure [#SendableClosureCaptures]
613 | }
614 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:647:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSDictionary>' in a '@Sendable' closure [#SendableClosureCaptures]
645 | do {
646 |
647 | fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSDictionary>' in a '@Sendable' closure [#SendableClosureCaptures]
648 | }
649 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:682:55: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<O>' in a '@Sendable' closure [#SendableClosureCaptures]
680 | do {
681 |
682 | let fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<O>' in a '@Sendable' closure [#SendableClosureCaptures]
683 | for object in fetchResults {
684 |
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Setup.swift:81:48: warning: capture of 'note' with non-Sendable type 'Notification' in a '@Sendable' closure [#SendableClosureCaptures]
79 | context?.perform { () -> Void in
80 |
81 | if let updatedObjectIDs = (note.userInfo?[NSUpdatedObjectsKey] as? Set<NSManagedObjectID>) {
| `- warning: capture of 'note' with non-Sendable type 'Notification' in a '@Sendable' closure [#SendableClosureCaptures]
82 |
83 | for objectID in updatedObjectIDs {
Foundation.Notification:2:15: note: struct 'Notification' does not conform to the 'Sendable' protocol
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct Notification : ReferenceConvertible, Equatable, Hashable {
| `- note: struct 'Notification' does not conform to the 'Sendable' protocol
3 | public typealias ReferenceType = NSNotification
4 | public var name: Notification.Name
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Setup.swift:134:44: warning: converting non-Sendable function value to '@Sendable () -> Void' may introduce data races
132 | if case true? = saveMetadata?.isSavingSynchronously {
133 |
134 | context.performAndWait(mergeChanges)
| `- warning: converting non-Sendable function value to '@Sendable () -> Void' may introduce data races
135 | }
136 | else {
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Setup.swift:138:37: warning: converting non-Sendable function value to '@Sendable () -> Void' may introduce data races
136 | else {
137 |
138 | context.perform(mergeChanges)
| `- warning: converting non-Sendable function value to '@Sendable () -> Void' may introduce data races
139 | }
140 | }
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[64/178] Compiling CoreStore NSManagedObject+Logging.swift
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:302:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSManagedObjectID>' in a '@Sendable' closure [#SendableClosureCaptures]
300 | do {
301 |
302 | fetchResults = try self.fetch(fetchRequest.dynamicCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSManagedObjectID>' in a '@Sendable' closure [#SendableClosureCaptures]
303 | }
304 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:452:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<O>' in a '@Sendable' closure [#SendableClosureCaptures]
450 | do {
451 |
452 | fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<O>' in a '@Sendable' closure [#SendableClosureCaptures]
453 | }
454 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:482:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<O>' in a '@Sendable' closure [#SendableClosureCaptures]
480 | do {
481 |
482 | fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<O>' in a '@Sendable' closure [#SendableClosureCaptures]
483 | }
484 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:512:45: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSNumber>' in a '@Sendable' closure [#SendableClosureCaptures]
510 | do {
511 |
512 | count = try self.count(for: fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSNumber>' in a '@Sendable' closure [#SendableClosureCaptures]
513 | }
514 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:542:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSManagedObjectID>' in a '@Sendable' closure [#SendableClosureCaptures]
540 | do {
541 |
542 | fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSManagedObjectID>' in a '@Sendable' closure [#SendableClosureCaptures]
543 | }
544 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:576:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSDictionary>' in a '@Sendable' closure [#SendableClosureCaptures]
574 | do {
575 |
576 | fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSDictionary>' in a '@Sendable' closure [#SendableClosureCaptures]
577 | }
578 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:612:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSDictionary>' in a '@Sendable' closure [#SendableClosureCaptures]
610 | do {
611 |
612 | fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSDictionary>' in a '@Sendable' closure [#SendableClosureCaptures]
613 | }
614 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:647:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSDictionary>' in a '@Sendable' closure [#SendableClosureCaptures]
645 | do {
646 |
647 | fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSDictionary>' in a '@Sendable' closure [#SendableClosureCaptures]
648 | }
649 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:682:55: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<O>' in a '@Sendable' closure [#SendableClosureCaptures]
680 | do {
681 |
682 | let fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<O>' in a '@Sendable' closure [#SendableClosureCaptures]
683 | for object in fetchResults {
684 |
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Setup.swift:81:48: warning: capture of 'note' with non-Sendable type 'Notification' in a '@Sendable' closure [#SendableClosureCaptures]
79 | context?.perform { () -> Void in
80 |
81 | if let updatedObjectIDs = (note.userInfo?[NSUpdatedObjectsKey] as? Set<NSManagedObjectID>) {
| `- warning: capture of 'note' with non-Sendable type 'Notification' in a '@Sendable' closure [#SendableClosureCaptures]
82 |
83 | for objectID in updatedObjectIDs {
Foundation.Notification:2:15: note: struct 'Notification' does not conform to the 'Sendable' protocol
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct Notification : ReferenceConvertible, Equatable, Hashable {
| `- note: struct 'Notification' does not conform to the 'Sendable' protocol
3 | public typealias ReferenceType = NSNotification
4 | public var name: Notification.Name
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Setup.swift:134:44: warning: converting non-Sendable function value to '@Sendable () -> Void' may introduce data races
132 | if case true? = saveMetadata?.isSavingSynchronously {
133 |
134 | context.performAndWait(mergeChanges)
| `- warning: converting non-Sendable function value to '@Sendable () -> Void' may introduce data races
135 | }
136 | else {
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Setup.swift:138:37: warning: converting non-Sendable function value to '@Sendable () -> Void' may introduce data races
136 | else {
137 |
138 | context.perform(mergeChanges)
| `- warning: converting non-Sendable function value to '@Sendable () -> Void' may introduce data races
139 | }
140 | }
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[65/178] Compiling CoreStore NSManagedObject+Transaction.swift
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:302:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSManagedObjectID>' in a '@Sendable' closure [#SendableClosureCaptures]
300 | do {
301 |
302 | fetchResults = try self.fetch(fetchRequest.dynamicCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSManagedObjectID>' in a '@Sendable' closure [#SendableClosureCaptures]
303 | }
304 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:452:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<O>' in a '@Sendable' closure [#SendableClosureCaptures]
450 | do {
451 |
452 | fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<O>' in a '@Sendable' closure [#SendableClosureCaptures]
453 | }
454 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:482:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<O>' in a '@Sendable' closure [#SendableClosureCaptures]
480 | do {
481 |
482 | fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<O>' in a '@Sendable' closure [#SendableClosureCaptures]
483 | }
484 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:512:45: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSNumber>' in a '@Sendable' closure [#SendableClosureCaptures]
510 | do {
511 |
512 | count = try self.count(for: fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSNumber>' in a '@Sendable' closure [#SendableClosureCaptures]
513 | }
514 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:542:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSManagedObjectID>' in a '@Sendable' closure [#SendableClosureCaptures]
540 | do {
541 |
542 | fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSManagedObjectID>' in a '@Sendable' closure [#SendableClosureCaptures]
543 | }
544 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:576:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSDictionary>' in a '@Sendable' closure [#SendableClosureCaptures]
574 | do {
575 |
576 | fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSDictionary>' in a '@Sendable' closure [#SendableClosureCaptures]
577 | }
578 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:612:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSDictionary>' in a '@Sendable' closure [#SendableClosureCaptures]
610 | do {
611 |
612 | fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSDictionary>' in a '@Sendable' closure [#SendableClosureCaptures]
613 | }
614 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:647:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSDictionary>' in a '@Sendable' closure [#SendableClosureCaptures]
645 | do {
646 |
647 | fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSDictionary>' in a '@Sendable' closure [#SendableClosureCaptures]
648 | }
649 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:682:55: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<O>' in a '@Sendable' closure [#SendableClosureCaptures]
680 | do {
681 |
682 | let fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<O>' in a '@Sendable' closure [#SendableClosureCaptures]
683 | for object in fetchResults {
684 |
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Setup.swift:81:48: warning: capture of 'note' with non-Sendable type 'Notification' in a '@Sendable' closure [#SendableClosureCaptures]
79 | context?.perform { () -> Void in
80 |
81 | if let updatedObjectIDs = (note.userInfo?[NSUpdatedObjectsKey] as? Set<NSManagedObjectID>) {
| `- warning: capture of 'note' with non-Sendable type 'Notification' in a '@Sendable' closure [#SendableClosureCaptures]
82 |
83 | for objectID in updatedObjectIDs {
Foundation.Notification:2:15: note: struct 'Notification' does not conform to the 'Sendable' protocol
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct Notification : ReferenceConvertible, Equatable, Hashable {
| `- note: struct 'Notification' does not conform to the 'Sendable' protocol
3 | public typealias ReferenceType = NSNotification
4 | public var name: Notification.Name
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Setup.swift:134:44: warning: converting non-Sendable function value to '@Sendable () -> Void' may introduce data races
132 | if case true? = saveMetadata?.isSavingSynchronously {
133 |
134 | context.performAndWait(mergeChanges)
| `- warning: converting non-Sendable function value to '@Sendable () -> Void' may introduce data races
135 | }
136 | else {
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Setup.swift:138:37: warning: converting non-Sendable function value to '@Sendable () -> Void' may introduce data races
136 | else {
137 |
138 | context.perform(mergeChanges)
| `- warning: converting non-Sendable function value to '@Sendable () -> Void' may introduce data races
139 | }
140 | }
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[66/178] Compiling CoreStore NSManagedObjectContext+CoreStore.swift
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:302:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSManagedObjectID>' in a '@Sendable' closure [#SendableClosureCaptures]
300 | do {
301 |
302 | fetchResults = try self.fetch(fetchRequest.dynamicCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSManagedObjectID>' in a '@Sendable' closure [#SendableClosureCaptures]
303 | }
304 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:452:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<O>' in a '@Sendable' closure [#SendableClosureCaptures]
450 | do {
451 |
452 | fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<O>' in a '@Sendable' closure [#SendableClosureCaptures]
453 | }
454 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:482:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<O>' in a '@Sendable' closure [#SendableClosureCaptures]
480 | do {
481 |
482 | fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<O>' in a '@Sendable' closure [#SendableClosureCaptures]
483 | }
484 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:512:45: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSNumber>' in a '@Sendable' closure [#SendableClosureCaptures]
510 | do {
511 |
512 | count = try self.count(for: fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSNumber>' in a '@Sendable' closure [#SendableClosureCaptures]
513 | }
514 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:542:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSManagedObjectID>' in a '@Sendable' closure [#SendableClosureCaptures]
540 | do {
541 |
542 | fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSManagedObjectID>' in a '@Sendable' closure [#SendableClosureCaptures]
543 | }
544 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:576:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSDictionary>' in a '@Sendable' closure [#SendableClosureCaptures]
574 | do {
575 |
576 | fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSDictionary>' in a '@Sendable' closure [#SendableClosureCaptures]
577 | }
578 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:612:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSDictionary>' in a '@Sendable' closure [#SendableClosureCaptures]
610 | do {
611 |
612 | fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSDictionary>' in a '@Sendable' closure [#SendableClosureCaptures]
613 | }
614 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:647:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSDictionary>' in a '@Sendable' closure [#SendableClosureCaptures]
645 | do {
646 |
647 | fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSDictionary>' in a '@Sendable' closure [#SendableClosureCaptures]
648 | }
649 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:682:55: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<O>' in a '@Sendable' closure [#SendableClosureCaptures]
680 | do {
681 |
682 | let fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<O>' in a '@Sendable' closure [#SendableClosureCaptures]
683 | for object in fetchResults {
684 |
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Setup.swift:81:48: warning: capture of 'note' with non-Sendable type 'Notification' in a '@Sendable' closure [#SendableClosureCaptures]
79 | context?.perform { () -> Void in
80 |
81 | if let updatedObjectIDs = (note.userInfo?[NSUpdatedObjectsKey] as? Set<NSManagedObjectID>) {
| `- warning: capture of 'note' with non-Sendable type 'Notification' in a '@Sendable' closure [#SendableClosureCaptures]
82 |
83 | for objectID in updatedObjectIDs {
Foundation.Notification:2:15: note: struct 'Notification' does not conform to the 'Sendable' protocol
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct Notification : ReferenceConvertible, Equatable, Hashable {
| `- note: struct 'Notification' does not conform to the 'Sendable' protocol
3 | public typealias ReferenceType = NSNotification
4 | public var name: Notification.Name
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Setup.swift:134:44: warning: converting non-Sendable function value to '@Sendable () -> Void' may introduce data races
132 | if case true? = saveMetadata?.isSavingSynchronously {
133 |
134 | context.performAndWait(mergeChanges)
| `- warning: converting non-Sendable function value to '@Sendable () -> Void' may introduce data races
135 | }
136 | else {
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Setup.swift:138:37: warning: converting non-Sendable function value to '@Sendable () -> Void' may introduce data races
136 | else {
137 |
138 | context.perform(mergeChanges)
| `- warning: converting non-Sendable function value to '@Sendable () -> Void' may introduce data races
139 | }
140 | }
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[67/178] Compiling CoreStore NSManagedObjectContext+Logging.swift
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:302:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSManagedObjectID>' in a '@Sendable' closure [#SendableClosureCaptures]
300 | do {
301 |
302 | fetchResults = try self.fetch(fetchRequest.dynamicCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSManagedObjectID>' in a '@Sendable' closure [#SendableClosureCaptures]
303 | }
304 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:452:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<O>' in a '@Sendable' closure [#SendableClosureCaptures]
450 | do {
451 |
452 | fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<O>' in a '@Sendable' closure [#SendableClosureCaptures]
453 | }
454 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:482:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<O>' in a '@Sendable' closure [#SendableClosureCaptures]
480 | do {
481 |
482 | fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<O>' in a '@Sendable' closure [#SendableClosureCaptures]
483 | }
484 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:512:45: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSNumber>' in a '@Sendable' closure [#SendableClosureCaptures]
510 | do {
511 |
512 | count = try self.count(for: fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSNumber>' in a '@Sendable' closure [#SendableClosureCaptures]
513 | }
514 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:542:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSManagedObjectID>' in a '@Sendable' closure [#SendableClosureCaptures]
540 | do {
541 |
542 | fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSManagedObjectID>' in a '@Sendable' closure [#SendableClosureCaptures]
543 | }
544 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:576:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSDictionary>' in a '@Sendable' closure [#SendableClosureCaptures]
574 | do {
575 |
576 | fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSDictionary>' in a '@Sendable' closure [#SendableClosureCaptures]
577 | }
578 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:612:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSDictionary>' in a '@Sendable' closure [#SendableClosureCaptures]
610 | do {
611 |
612 | fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSDictionary>' in a '@Sendable' closure [#SendableClosureCaptures]
613 | }
614 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:647:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSDictionary>' in a '@Sendable' closure [#SendableClosureCaptures]
645 | do {
646 |
647 | fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSDictionary>' in a '@Sendable' closure [#SendableClosureCaptures]
648 | }
649 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:682:55: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<O>' in a '@Sendable' closure [#SendableClosureCaptures]
680 | do {
681 |
682 | let fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<O>' in a '@Sendable' closure [#SendableClosureCaptures]
683 | for object in fetchResults {
684 |
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Setup.swift:81:48: warning: capture of 'note' with non-Sendable type 'Notification' in a '@Sendable' closure [#SendableClosureCaptures]
79 | context?.perform { () -> Void in
80 |
81 | if let updatedObjectIDs = (note.userInfo?[NSUpdatedObjectsKey] as? Set<NSManagedObjectID>) {
| `- warning: capture of 'note' with non-Sendable type 'Notification' in a '@Sendable' closure [#SendableClosureCaptures]
82 |
83 | for objectID in updatedObjectIDs {
Foundation.Notification:2:15: note: struct 'Notification' does not conform to the 'Sendable' protocol
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct Notification : ReferenceConvertible, Equatable, Hashable {
| `- note: struct 'Notification' does not conform to the 'Sendable' protocol
3 | public typealias ReferenceType = NSNotification
4 | public var name: Notification.Name
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Setup.swift:134:44: warning: converting non-Sendable function value to '@Sendable () -> Void' may introduce data races
132 | if case true? = saveMetadata?.isSavingSynchronously {
133 |
134 | context.performAndWait(mergeChanges)
| `- warning: converting non-Sendable function value to '@Sendable () -> Void' may introduce data races
135 | }
136 | else {
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Setup.swift:138:37: warning: converting non-Sendable function value to '@Sendable () -> Void' may introduce data races
136 | else {
137 |
138 | context.perform(mergeChanges)
| `- warning: converting non-Sendable function value to '@Sendable () -> Void' may introduce data races
139 | }
140 | }
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[68/178] Compiling CoreStore NSManagedObjectContext+Querying.swift
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:302:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSManagedObjectID>' in a '@Sendable' closure [#SendableClosureCaptures]
300 | do {
301 |
302 | fetchResults = try self.fetch(fetchRequest.dynamicCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSManagedObjectID>' in a '@Sendable' closure [#SendableClosureCaptures]
303 | }
304 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:452:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<O>' in a '@Sendable' closure [#SendableClosureCaptures]
450 | do {
451 |
452 | fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<O>' in a '@Sendable' closure [#SendableClosureCaptures]
453 | }
454 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:482:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<O>' in a '@Sendable' closure [#SendableClosureCaptures]
480 | do {
481 |
482 | fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<O>' in a '@Sendable' closure [#SendableClosureCaptures]
483 | }
484 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:512:45: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSNumber>' in a '@Sendable' closure [#SendableClosureCaptures]
510 | do {
511 |
512 | count = try self.count(for: fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSNumber>' in a '@Sendable' closure [#SendableClosureCaptures]
513 | }
514 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:542:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSManagedObjectID>' in a '@Sendable' closure [#SendableClosureCaptures]
540 | do {
541 |
542 | fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSManagedObjectID>' in a '@Sendable' closure [#SendableClosureCaptures]
543 | }
544 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:576:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSDictionary>' in a '@Sendable' closure [#SendableClosureCaptures]
574 | do {
575 |
576 | fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSDictionary>' in a '@Sendable' closure [#SendableClosureCaptures]
577 | }
578 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:612:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSDictionary>' in a '@Sendable' closure [#SendableClosureCaptures]
610 | do {
611 |
612 | fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSDictionary>' in a '@Sendable' closure [#SendableClosureCaptures]
613 | }
614 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:647:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSDictionary>' in a '@Sendable' closure [#SendableClosureCaptures]
645 | do {
646 |
647 | fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSDictionary>' in a '@Sendable' closure [#SendableClosureCaptures]
648 | }
649 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:682:55: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<O>' in a '@Sendable' closure [#SendableClosureCaptures]
680 | do {
681 |
682 | let fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<O>' in a '@Sendable' closure [#SendableClosureCaptures]
683 | for object in fetchResults {
684 |
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Setup.swift:81:48: warning: capture of 'note' with non-Sendable type 'Notification' in a '@Sendable' closure [#SendableClosureCaptures]
79 | context?.perform { () -> Void in
80 |
81 | if let updatedObjectIDs = (note.userInfo?[NSUpdatedObjectsKey] as? Set<NSManagedObjectID>) {
| `- warning: capture of 'note' with non-Sendable type 'Notification' in a '@Sendable' closure [#SendableClosureCaptures]
82 |
83 | for objectID in updatedObjectIDs {
Foundation.Notification:2:15: note: struct 'Notification' does not conform to the 'Sendable' protocol
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct Notification : ReferenceConvertible, Equatable, Hashable {
| `- note: struct 'Notification' does not conform to the 'Sendable' protocol
3 | public typealias ReferenceType = NSNotification
4 | public var name: Notification.Name
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Setup.swift:134:44: warning: converting non-Sendable function value to '@Sendable () -> Void' may introduce data races
132 | if case true? = saveMetadata?.isSavingSynchronously {
133 |
134 | context.performAndWait(mergeChanges)
| `- warning: converting non-Sendable function value to '@Sendable () -> Void' may introduce data races
135 | }
136 | else {
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Setup.swift:138:37: warning: converting non-Sendable function value to '@Sendable () -> Void' may introduce data races
136 | else {
137 |
138 | context.perform(mergeChanges)
| `- warning: converting non-Sendable function value to '@Sendable () -> Void' may introduce data races
139 | }
140 | }
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[69/178] Compiling CoreStore NSManagedObjectContext+Setup.swift
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:302:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSManagedObjectID>' in a '@Sendable' closure [#SendableClosureCaptures]
300 | do {
301 |
302 | fetchResults = try self.fetch(fetchRequest.dynamicCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSManagedObjectID>' in a '@Sendable' closure [#SendableClosureCaptures]
303 | }
304 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:452:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<O>' in a '@Sendable' closure [#SendableClosureCaptures]
450 | do {
451 |
452 | fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<O>' in a '@Sendable' closure [#SendableClosureCaptures]
453 | }
454 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:482:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<O>' in a '@Sendable' closure [#SendableClosureCaptures]
480 | do {
481 |
482 | fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<O>' in a '@Sendable' closure [#SendableClosureCaptures]
483 | }
484 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:512:45: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSNumber>' in a '@Sendable' closure [#SendableClosureCaptures]
510 | do {
511 |
512 | count = try self.count(for: fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSNumber>' in a '@Sendable' closure [#SendableClosureCaptures]
513 | }
514 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:542:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSManagedObjectID>' in a '@Sendable' closure [#SendableClosureCaptures]
540 | do {
541 |
542 | fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSManagedObjectID>' in a '@Sendable' closure [#SendableClosureCaptures]
543 | }
544 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:576:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSDictionary>' in a '@Sendable' closure [#SendableClosureCaptures]
574 | do {
575 |
576 | fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSDictionary>' in a '@Sendable' closure [#SendableClosureCaptures]
577 | }
578 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:612:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSDictionary>' in a '@Sendable' closure [#SendableClosureCaptures]
610 | do {
611 |
612 | fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSDictionary>' in a '@Sendable' closure [#SendableClosureCaptures]
613 | }
614 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:647:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSDictionary>' in a '@Sendable' closure [#SendableClosureCaptures]
645 | do {
646 |
647 | fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSDictionary>' in a '@Sendable' closure [#SendableClosureCaptures]
648 | }
649 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:682:55: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<O>' in a '@Sendable' closure [#SendableClosureCaptures]
680 | do {
681 |
682 | let fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<O>' in a '@Sendable' closure [#SendableClosureCaptures]
683 | for object in fetchResults {
684 |
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Setup.swift:81:48: warning: capture of 'note' with non-Sendable type 'Notification' in a '@Sendable' closure [#SendableClosureCaptures]
79 | context?.perform { () -> Void in
80 |
81 | if let updatedObjectIDs = (note.userInfo?[NSUpdatedObjectsKey] as? Set<NSManagedObjectID>) {
| `- warning: capture of 'note' with non-Sendable type 'Notification' in a '@Sendable' closure [#SendableClosureCaptures]
82 |
83 | for objectID in updatedObjectIDs {
Foundation.Notification:2:15: note: struct 'Notification' does not conform to the 'Sendable' protocol
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct Notification : ReferenceConvertible, Equatable, Hashable {
| `- note: struct 'Notification' does not conform to the 'Sendable' protocol
3 | public typealias ReferenceType = NSNotification
4 | public var name: Notification.Name
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Setup.swift:134:44: warning: converting non-Sendable function value to '@Sendable () -> Void' may introduce data races
132 | if case true? = saveMetadata?.isSavingSynchronously {
133 |
134 | context.performAndWait(mergeChanges)
| `- warning: converting non-Sendable function value to '@Sendable () -> Void' may introduce data races
135 | }
136 | else {
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Setup.swift:138:37: warning: converting non-Sendable function value to '@Sendable () -> Void' may introduce data races
136 | else {
137 |
138 | context.perform(mergeChanges)
| `- warning: converting non-Sendable function value to '@Sendable () -> Void' may introduce data races
139 | }
140 | }
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[70/178] Compiling CoreStore NSManagedObjectContext+Transaction.swift
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:302:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSManagedObjectID>' in a '@Sendable' closure [#SendableClosureCaptures]
300 | do {
301 |
302 | fetchResults = try self.fetch(fetchRequest.dynamicCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSManagedObjectID>' in a '@Sendable' closure [#SendableClosureCaptures]
303 | }
304 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:452:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<O>' in a '@Sendable' closure [#SendableClosureCaptures]
450 | do {
451 |
452 | fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<O>' in a '@Sendable' closure [#SendableClosureCaptures]
453 | }
454 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:482:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<O>' in a '@Sendable' closure [#SendableClosureCaptures]
480 | do {
481 |
482 | fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<O>' in a '@Sendable' closure [#SendableClosureCaptures]
483 | }
484 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:512:45: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSNumber>' in a '@Sendable' closure [#SendableClosureCaptures]
510 | do {
511 |
512 | count = try self.count(for: fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSNumber>' in a '@Sendable' closure [#SendableClosureCaptures]
513 | }
514 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:542:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSManagedObjectID>' in a '@Sendable' closure [#SendableClosureCaptures]
540 | do {
541 |
542 | fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSManagedObjectID>' in a '@Sendable' closure [#SendableClosureCaptures]
543 | }
544 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:576:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSDictionary>' in a '@Sendable' closure [#SendableClosureCaptures]
574 | do {
575 |
576 | fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSDictionary>' in a '@Sendable' closure [#SendableClosureCaptures]
577 | }
578 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:612:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSDictionary>' in a '@Sendable' closure [#SendableClosureCaptures]
610 | do {
611 |
612 | fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSDictionary>' in a '@Sendable' closure [#SendableClosureCaptures]
613 | }
614 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:647:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSDictionary>' in a '@Sendable' closure [#SendableClosureCaptures]
645 | do {
646 |
647 | fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSDictionary>' in a '@Sendable' closure [#SendableClosureCaptures]
648 | }
649 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:682:55: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<O>' in a '@Sendable' closure [#SendableClosureCaptures]
680 | do {
681 |
682 | let fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<O>' in a '@Sendable' closure [#SendableClosureCaptures]
683 | for object in fetchResults {
684 |
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Setup.swift:81:48: warning: capture of 'note' with non-Sendable type 'Notification' in a '@Sendable' closure [#SendableClosureCaptures]
79 | context?.perform { () -> Void in
80 |
81 | if let updatedObjectIDs = (note.userInfo?[NSUpdatedObjectsKey] as? Set<NSManagedObjectID>) {
| `- warning: capture of 'note' with non-Sendable type 'Notification' in a '@Sendable' closure [#SendableClosureCaptures]
82 |
83 | for objectID in updatedObjectIDs {
Foundation.Notification:2:15: note: struct 'Notification' does not conform to the 'Sendable' protocol
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct Notification : ReferenceConvertible, Equatable, Hashable {
| `- note: struct 'Notification' does not conform to the 'Sendable' protocol
3 | public typealias ReferenceType = NSNotification
4 | public var name: Notification.Name
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Setup.swift:134:44: warning: converting non-Sendable function value to '@Sendable () -> Void' may introduce data races
132 | if case true? = saveMetadata?.isSavingSynchronously {
133 |
134 | context.performAndWait(mergeChanges)
| `- warning: converting non-Sendable function value to '@Sendable () -> Void' may introduce data races
135 | }
136 | else {
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Setup.swift:138:37: warning: converting non-Sendable function value to '@Sendable () -> Void' may introduce data races
136 | else {
137 |
138 | context.perform(mergeChanges)
| `- warning: converting non-Sendable function value to '@Sendable () -> Void' may introduce data races
139 | }
140 | }
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[71/178] Compiling CoreStore NSManagedObjectModel+Migration.swift
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:302:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSManagedObjectID>' in a '@Sendable' closure [#SendableClosureCaptures]
300 | do {
301 |
302 | fetchResults = try self.fetch(fetchRequest.dynamicCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSManagedObjectID>' in a '@Sendable' closure [#SendableClosureCaptures]
303 | }
304 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:452:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<O>' in a '@Sendable' closure [#SendableClosureCaptures]
450 | do {
451 |
452 | fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<O>' in a '@Sendable' closure [#SendableClosureCaptures]
453 | }
454 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:482:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<O>' in a '@Sendable' closure [#SendableClosureCaptures]
480 | do {
481 |
482 | fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<O>' in a '@Sendable' closure [#SendableClosureCaptures]
483 | }
484 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:512:45: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSNumber>' in a '@Sendable' closure [#SendableClosureCaptures]
510 | do {
511 |
512 | count = try self.count(for: fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSNumber>' in a '@Sendable' closure [#SendableClosureCaptures]
513 | }
514 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:542:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSManagedObjectID>' in a '@Sendable' closure [#SendableClosureCaptures]
540 | do {
541 |
542 | fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSManagedObjectID>' in a '@Sendable' closure [#SendableClosureCaptures]
543 | }
544 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:576:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSDictionary>' in a '@Sendable' closure [#SendableClosureCaptures]
574 | do {
575 |
576 | fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSDictionary>' in a '@Sendable' closure [#SendableClosureCaptures]
577 | }
578 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:612:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSDictionary>' in a '@Sendable' closure [#SendableClosureCaptures]
610 | do {
611 |
612 | fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSDictionary>' in a '@Sendable' closure [#SendableClosureCaptures]
613 | }
614 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:647:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSDictionary>' in a '@Sendable' closure [#SendableClosureCaptures]
645 | do {
646 |
647 | fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSDictionary>' in a '@Sendable' closure [#SendableClosureCaptures]
648 | }
649 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:682:55: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<O>' in a '@Sendable' closure [#SendableClosureCaptures]
680 | do {
681 |
682 | let fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<O>' in a '@Sendable' closure [#SendableClosureCaptures]
683 | for object in fetchResults {
684 |
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Setup.swift:81:48: warning: capture of 'note' with non-Sendable type 'Notification' in a '@Sendable' closure [#SendableClosureCaptures]
79 | context?.perform { () -> Void in
80 |
81 | if let updatedObjectIDs = (note.userInfo?[NSUpdatedObjectsKey] as? Set<NSManagedObjectID>) {
| `- warning: capture of 'note' with non-Sendable type 'Notification' in a '@Sendable' closure [#SendableClosureCaptures]
82 |
83 | for objectID in updatedObjectIDs {
Foundation.Notification:2:15: note: struct 'Notification' does not conform to the 'Sendable' protocol
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct Notification : ReferenceConvertible, Equatable, Hashable {
| `- note: struct 'Notification' does not conform to the 'Sendable' protocol
3 | public typealias ReferenceType = NSNotification
4 | public var name: Notification.Name
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Setup.swift:134:44: warning: converting non-Sendable function value to '@Sendable () -> Void' may introduce data races
132 | if case true? = saveMetadata?.isSavingSynchronously {
133 |
134 | context.performAndWait(mergeChanges)
| `- warning: converting non-Sendable function value to '@Sendable () -> Void' may introduce data races
135 | }
136 | else {
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Setup.swift:138:37: warning: converting non-Sendable function value to '@Sendable () -> Void' may introduce data races
136 | else {
137 |
138 | context.perform(mergeChanges)
| `- warning: converting non-Sendable function value to '@Sendable () -> Void' may introduce data races
139 | }
140 | }
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[72/178] Compiling CoreStore NSPersistentStore+Setup.swift
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:302:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSManagedObjectID>' in a '@Sendable' closure [#SendableClosureCaptures]
300 | do {
301 |
302 | fetchResults = try self.fetch(fetchRequest.dynamicCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSManagedObjectID>' in a '@Sendable' closure [#SendableClosureCaptures]
303 | }
304 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:452:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<O>' in a '@Sendable' closure [#SendableClosureCaptures]
450 | do {
451 |
452 | fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<O>' in a '@Sendable' closure [#SendableClosureCaptures]
453 | }
454 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:482:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<O>' in a '@Sendable' closure [#SendableClosureCaptures]
480 | do {
481 |
482 | fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<O>' in a '@Sendable' closure [#SendableClosureCaptures]
483 | }
484 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:512:45: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSNumber>' in a '@Sendable' closure [#SendableClosureCaptures]
510 | do {
511 |
512 | count = try self.count(for: fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSNumber>' in a '@Sendable' closure [#SendableClosureCaptures]
513 | }
514 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:542:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSManagedObjectID>' in a '@Sendable' closure [#SendableClosureCaptures]
540 | do {
541 |
542 | fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSManagedObjectID>' in a '@Sendable' closure [#SendableClosureCaptures]
543 | }
544 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:576:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSDictionary>' in a '@Sendable' closure [#SendableClosureCaptures]
574 | do {
575 |
576 | fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSDictionary>' in a '@Sendable' closure [#SendableClosureCaptures]
577 | }
578 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:612:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSDictionary>' in a '@Sendable' closure [#SendableClosureCaptures]
610 | do {
611 |
612 | fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSDictionary>' in a '@Sendable' closure [#SendableClosureCaptures]
613 | }
614 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:647:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSDictionary>' in a '@Sendable' closure [#SendableClosureCaptures]
645 | do {
646 |
647 | fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSDictionary>' in a '@Sendable' closure [#SendableClosureCaptures]
648 | }
649 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:682:55: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<O>' in a '@Sendable' closure [#SendableClosureCaptures]
680 | do {
681 |
682 | let fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<O>' in a '@Sendable' closure [#SendableClosureCaptures]
683 | for object in fetchResults {
684 |
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Setup.swift:81:48: warning: capture of 'note' with non-Sendable type 'Notification' in a '@Sendable' closure [#SendableClosureCaptures]
79 | context?.perform { () -> Void in
80 |
81 | if let updatedObjectIDs = (note.userInfo?[NSUpdatedObjectsKey] as? Set<NSManagedObjectID>) {
| `- warning: capture of 'note' with non-Sendable type 'Notification' in a '@Sendable' closure [#SendableClosureCaptures]
82 |
83 | for objectID in updatedObjectIDs {
Foundation.Notification:2:15: note: struct 'Notification' does not conform to the 'Sendable' protocol
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct Notification : ReferenceConvertible, Equatable, Hashable {
| `- note: struct 'Notification' does not conform to the 'Sendable' protocol
3 | public typealias ReferenceType = NSNotification
4 | public var name: Notification.Name
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Setup.swift:134:44: warning: converting non-Sendable function value to '@Sendable () -> Void' may introduce data races
132 | if case true? = saveMetadata?.isSavingSynchronously {
133 |
134 | context.performAndWait(mergeChanges)
| `- warning: converting non-Sendable function value to '@Sendable () -> Void' may introduce data races
135 | }
136 | else {
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Setup.swift:138:37: warning: converting non-Sendable function value to '@Sendable () -> Void' may introduce data races
136 | else {
137 |
138 | context.perform(mergeChanges)
| `- warning: converting non-Sendable function value to '@Sendable () -> Void' may introduce data races
139 | }
140 | }
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[73/178] Compiling CoreStore NSPersistentStoreCoordinator+Setup.swift
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:302:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSManagedObjectID>' in a '@Sendable' closure [#SendableClosureCaptures]
300 | do {
301 |
302 | fetchResults = try self.fetch(fetchRequest.dynamicCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSManagedObjectID>' in a '@Sendable' closure [#SendableClosureCaptures]
303 | }
304 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:452:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<O>' in a '@Sendable' closure [#SendableClosureCaptures]
450 | do {
451 |
452 | fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<O>' in a '@Sendable' closure [#SendableClosureCaptures]
453 | }
454 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:482:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<O>' in a '@Sendable' closure [#SendableClosureCaptures]
480 | do {
481 |
482 | fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<O>' in a '@Sendable' closure [#SendableClosureCaptures]
483 | }
484 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:512:45: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSNumber>' in a '@Sendable' closure [#SendableClosureCaptures]
510 | do {
511 |
512 | count = try self.count(for: fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSNumber>' in a '@Sendable' closure [#SendableClosureCaptures]
513 | }
514 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:542:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSManagedObjectID>' in a '@Sendable' closure [#SendableClosureCaptures]
540 | do {
541 |
542 | fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSManagedObjectID>' in a '@Sendable' closure [#SendableClosureCaptures]
543 | }
544 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:576:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSDictionary>' in a '@Sendable' closure [#SendableClosureCaptures]
574 | do {
575 |
576 | fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSDictionary>' in a '@Sendable' closure [#SendableClosureCaptures]
577 | }
578 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:612:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSDictionary>' in a '@Sendable' closure [#SendableClosureCaptures]
610 | do {
611 |
612 | fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSDictionary>' in a '@Sendable' closure [#SendableClosureCaptures]
613 | }
614 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:647:47: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSDictionary>' in a '@Sendable' closure [#SendableClosureCaptures]
645 | do {
646 |
647 | fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<NSDictionary>' in a '@Sendable' closure [#SendableClosureCaptures]
648 | }
649 | catch {
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Querying.swift:682:55: warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<O>' in a '@Sendable' closure [#SendableClosureCaptures]
680 | do {
681 |
682 | let fetchResults = try self.fetch(fetchRequest.staticCast())
| `- warning: capture of 'fetchRequest' with non-Sendable type 'Internals.CoreStoreFetchRequest<O>' in a '@Sendable' closure [#SendableClosureCaptures]
683 | for object in fetchResults {
684 |
/Users/admin/builder/spi-builder-workspace/Sources/Internals.CoreStoreFetchRequest.swift:39:26: note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
37 | // Bugfix for NSFetchRequest messing up memory management for `affectedStores`
38 | // http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
39 | internal final class CoreStoreFetchRequest<T: NSFetchRequestResult>: NSFetchRequest<NSFetchRequestResult> {
| `- note: generic class 'CoreStoreFetchRequest' does not conform to the 'Sendable' protocol
40 |
41 | @nonobjc
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Setup.swift:81:48: warning: capture of 'note' with non-Sendable type 'Notification' in a '@Sendable' closure [#SendableClosureCaptures]
79 | context?.perform { () -> Void in
80 |
81 | if let updatedObjectIDs = (note.userInfo?[NSUpdatedObjectsKey] as? Set<NSManagedObjectID>) {
| `- warning: capture of 'note' with non-Sendable type 'Notification' in a '@Sendable' closure [#SendableClosureCaptures]
82 |
83 | for objectID in updatedObjectIDs {
Foundation.Notification:2:15: note: struct 'Notification' does not conform to the 'Sendable' protocol
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct Notification : ReferenceConvertible, Equatable, Hashable {
| `- note: struct 'Notification' does not conform to the 'Sendable' protocol
3 | public typealias ReferenceType = NSNotification
4 | public var name: Notification.Name
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Setup.swift:134:44: warning: converting non-Sendable function value to '@Sendable () -> Void' may introduce data races
132 | if case true? = saveMetadata?.isSavingSynchronously {
133 |
134 | context.performAndWait(mergeChanges)
| `- warning: converting non-Sendable function value to '@Sendable () -> Void' may introduce data races
135 | }
136 | else {
/Users/admin/builder/spi-builder-workspace/Sources/NSManagedObjectContext+Setup.swift:138:37: warning: converting non-Sendable function value to '@Sendable () -> Void' may introduce data races
136 | else {
137 |
138 | context.perform(mergeChanges)
| `- warning: converting non-Sendable function value to '@Sendable () -> Void' may introduce data races
139 | }
140 | }
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[74/178] Compiling CoreStore DiffableDataSourceSnapshotProtocol.swift
[75/178] Compiling CoreStore Differentiable.swift
[76/178] Compiling CoreStore DispatchQueue+CoreStore.swift
[77/178] Compiling CoreStore DynamicObject.swift
[78/178] Compiling CoreStore DynamicSchema+Convenience.swift
[79/178] Compiling CoreStore DynamicSchema.swift
[80/178] Compiling CoreStore Entity.swift
[81/178] Compiling CoreStore EnvironmentValues+DataSources.swift
[82/178] Compiling CoreStore FIeldRelationshipType.swift
[83/178] Compiling CoreStore FetchChainBuilder.swift
[84/178] Compiling CoreStore FetchableSource.swift
[85/178] Compiling CoreStore Field.Coded.swift
[86/178] Compiling CoreStore Field.Relationship.swift
[87/178] Compiling CoreStore Field.Stored.swift
[88/178] Compiling CoreStore Field.Virtual.swift
[89/178] Compiling CoreStore Field.swift
[90/178] Compiling CoreStore FieldAttributeProtocol.swift
[91/178] Compiling CoreStore FieldCoderType.swift
[92/178] Compiling CoreStore Into.swift
[93/178] Compiling CoreStore KeyPath+KeyPaths.swift
[94/178] Compiling CoreStore KeyPath+Querying.swift
[95/178] Compiling CoreStore KeyPathGenericBindings.swift
[96/178] Compiling CoreStore KeyPathStringConvertible.swift
[97/178] Compiling CoreStore ListMonitor.swift
[98/178] Compiling CoreStore ListObserver.swift
[99/178] Compiling CoreStore ListPublisher+Reactive.swift
[100/178] Compiling CoreStore ListPublisher.SnapshotPublisher.swift
[101/178] Compiling CoreStore ListPublisher.swift
[102/178] Compiling CoreStore ListReader.swift
[103/178] Compiling CoreStore ListSnapshot.SectionInfo.swift
[104/178] Compiling CoreStore ListSnapshot.swift
[105/178] Compiling CoreStore ListState.swift
[106/178] Compiling CoreStore MigrationChain.swift
[107/178] Compiling CoreStore MigrationProgress.swift
[108/178] Compiling CoreStore MigrationResult.swift
[109/178] Compiling CoreStore AsynchronousDataTransaction.swift
/Users/admin/builder/spi-builder-workspace/Sources/CoreStoreError.swift:80:10: warning: associated value 'persistentStoreNotFound(entity:)' of 'Sendable'-conforming enum 'CoreStoreError' contains non-Sendable type 'any DynamicObject.Type'
78 | Attempted to perform a fetch but could not find any related persistent store.
79 | */
80 | case persistentStoreNotFound(entity: DynamicObject.Type)
| `- warning: associated value 'persistentStoreNotFound(entity:)' of 'Sendable'-conforming enum 'CoreStoreError' contains non-Sendable type 'any DynamicObject.Type'
81 |
82 | /**
[110/178] Compiling CoreStore AttributeProtocol.swift
/Users/admin/builder/spi-builder-workspace/Sources/CoreStoreError.swift:80:10: warning: associated value 'persistentStoreNotFound(entity:)' of 'Sendable'-conforming enum 'CoreStoreError' contains non-Sendable type 'any DynamicObject.Type'
78 | Attempted to perform a fetch but could not find any related persistent store.
79 | */
80 | case persistentStoreNotFound(entity: DynamicObject.Type)
| `- warning: associated value 'persistentStoreNotFound(entity:)' of 'Sendable'-conforming enum 'CoreStoreError' contains non-Sendable type 'any DynamicObject.Type'
81 |
82 | /**
[111/178] Compiling CoreStore BaseDataTransaction+Importing.swift
/Users/admin/builder/spi-builder-workspace/Sources/CoreStoreError.swift:80:10: warning: associated value 'persistentStoreNotFound(entity:)' of 'Sendable'-conforming enum 'CoreStoreError' contains non-Sendable type 'any DynamicObject.Type'
78 | Attempted to perform a fetch but could not find any related persistent store.
79 | */
80 | case persistentStoreNotFound(entity: DynamicObject.Type)
| `- warning: associated value 'persistentStoreNotFound(entity:)' of 'Sendable'-conforming enum 'CoreStoreError' contains non-Sendable type 'any DynamicObject.Type'
81 |
82 | /**
[112/178] Compiling CoreStore BaseDataTransaction+Querying.swift
/Users/admin/builder/spi-builder-workspace/Sources/CoreStoreError.swift:80:10: warning: associated value 'persistentStoreNotFound(entity:)' of 'Sendable'-conforming enum 'CoreStoreError' contains non-Sendable type 'any DynamicObject.Type'
78 | Attempted to perform a fetch but could not find any related persistent store.
79 | */
80 | case persistentStoreNotFound(entity: DynamicObject.Type)
| `- warning: associated value 'persistentStoreNotFound(entity:)' of 'Sendable'-conforming enum 'CoreStoreError' contains non-Sendable type 'any DynamicObject.Type'
81 |
82 | /**
[113/178] Compiling CoreStore BaseDataTransaction.swift
/Users/admin/builder/spi-builder-workspace/Sources/CoreStoreError.swift:80:10: warning: associated value 'persistentStoreNotFound(entity:)' of 'Sendable'-conforming enum 'CoreStoreError' contains non-Sendable type 'any DynamicObject.Type'
78 | Attempted to perform a fetch but could not find any related persistent store.
79 | */
80 | case persistentStoreNotFound(entity: DynamicObject.Type)
| `- warning: associated value 'persistentStoreNotFound(entity:)' of 'Sendable'-conforming enum 'CoreStoreError' contains non-Sendable type 'any DynamicObject.Type'
81 |
82 | /**
[114/178] Compiling CoreStore CoreDataNativeType.swift
/Users/admin/builder/spi-builder-workspace/Sources/CoreStoreError.swift:80:10: warning: associated value 'persistentStoreNotFound(entity:)' of 'Sendable'-conforming enum 'CoreStoreError' contains non-Sendable type 'any DynamicObject.Type'
78 | Attempted to perform a fetch but could not find any related persistent store.
79 | */
80 | case persistentStoreNotFound(entity: DynamicObject.Type)
| `- warning: associated value 'persistentStoreNotFound(entity:)' of 'Sendable'-conforming enum 'CoreStoreError' contains non-Sendable type 'any DynamicObject.Type'
81 |
82 | /**
[115/178] Compiling CoreStore CoreStore+CustomDebugStringConvertible.swift
/Users/admin/builder/spi-builder-workspace/Sources/CoreStoreError.swift:80:10: warning: associated value 'persistentStoreNotFound(entity:)' of 'Sendable'-conforming enum 'CoreStoreError' contains non-Sendable type 'any DynamicObject.Type'
78 | Attempted to perform a fetch but could not find any related persistent store.
79 | */
80 | case persistentStoreNotFound(entity: DynamicObject.Type)
| `- warning: associated value 'persistentStoreNotFound(entity:)' of 'Sendable'-conforming enum 'CoreStoreError' contains non-Sendable type 'any DynamicObject.Type'
81 |
82 | /**
[116/178] Compiling CoreStore CoreStore+Logging.swift
/Users/admin/builder/spi-builder-workspace/Sources/CoreStoreError.swift:80:10: warning: associated value 'persistentStoreNotFound(entity:)' of 'Sendable'-conforming enum 'CoreStoreError' contains non-Sendable type 'any DynamicObject.Type'
78 | Attempted to perform a fetch but could not find any related persistent store.
79 | */
80 | case persistentStoreNotFound(entity: DynamicObject.Type)
| `- warning: associated value 'persistentStoreNotFound(entity:)' of 'Sendable'-conforming enum 'CoreStoreError' contains non-Sendable type 'any DynamicObject.Type'
81 |
82 | /**
[117/178] Compiling CoreStore CoreStoreDefaults.swift
/Users/admin/builder/spi-builder-workspace/Sources/CoreStoreError.swift:80:10: warning: associated value 'persistentStoreNotFound(entity:)' of 'Sendable'-conforming enum 'CoreStoreError' contains non-Sendable type 'any DynamicObject.Type'
78 | Attempted to perform a fetch but could not find any related persistent store.
79 | */
80 | case persistentStoreNotFound(entity: DynamicObject.Type)
| `- warning: associated value 'persistentStoreNotFound(entity:)' of 'Sendable'-conforming enum 'CoreStoreError' contains non-Sendable type 'any DynamicObject.Type'
81 |
82 | /**
[118/178] Compiling CoreStore CoreStoreError.swift
/Users/admin/builder/spi-builder-workspace/Sources/CoreStoreError.swift:80:10: warning: associated value 'persistentStoreNotFound(entity:)' of 'Sendable'-conforming enum 'CoreStoreError' contains non-Sendable type 'any DynamicObject.Type'
78 | Attempted to perform a fetch but could not find any related persistent store.
79 | */
80 | case persistentStoreNotFound(entity: DynamicObject.Type)
| `- warning: associated value 'persistentStoreNotFound(entity:)' of 'Sendable'-conforming enum 'CoreStoreError' contains non-Sendable type 'any DynamicObject.Type'
81 |
82 | /**
[119/178] Compiling CoreStore CoreStoreLogger.swift
/Users/admin/builder/spi-builder-workspace/Sources/CoreStoreError.swift:80:10: warning: associated value 'persistentStoreNotFound(entity:)' of 'Sendable'-conforming enum 'CoreStoreError' contains non-Sendable type 'any DynamicObject.Type'
78 | Attempted to perform a fetch but could not find any related persistent store.
79 | */
80 | case persistentStoreNotFound(entity: DynamicObject.Type)
| `- warning: associated value 'persistentStoreNotFound(entity:)' of 'Sendable'-conforming enum 'CoreStoreError' contains non-Sendable type 'any DynamicObject.Type'
81 |
82 | /**
[120/178] Compiling CoreStore CoreStoreManagedObject.swift
/Users/admin/builder/spi-builder-workspace/Sources/CoreStoreError.swift:80:10: warning: associated value 'persistentStoreNotFound(entity:)' of 'Sendable'-conforming enum 'CoreStoreError' contains non-Sendable type 'any DynamicObject.Type'
78 | Attempted to perform a fetch but could not find any related persistent store.
79 | */
80 | case persistentStoreNotFound(entity: DynamicObject.Type)
| `- warning: associated value 'persistentStoreNotFound(entity:)' of 'Sendable'-conforming enum 'CoreStoreError' contains non-Sendable type 'any DynamicObject.Type'
81 |
82 | /**
[121/178] Compiling CoreStore CoreStoreObject+Convenience.swift
/Users/admin/builder/spi-builder-workspace/Sources/CoreStoreError.swift:80:10: warning: associated value 'persistentStoreNotFound(entity:)' of 'Sendable'-conforming enum 'CoreStoreError' contains non-Sendable type 'any DynamicObject.Type'
78 | Attempted to perform a fetch but could not find any related persistent store.
79 | */
80 | case persistentStoreNotFound(entity: DynamicObject.Type)
| `- warning: associated value 'persistentStoreNotFound(entity:)' of 'Sendable'-conforming enum 'CoreStoreError' contains non-Sendable type 'any DynamicObject.Type'
81 |
82 | /**
[122/178] Compiling CoreStore CoreStoreObject+DataSources.swift
/Users/admin/builder/spi-builder-workspace/Sources/CoreStoreError.swift:80:10: warning: associated value 'persistentStoreNotFound(entity:)' of 'Sendable'-conforming enum 'CoreStoreError' contains non-Sendable type 'any DynamicObject.Type'
78 | Attempted to perform a fetch but could not find any related persistent store.
79 | */
80 | case persistentStoreNotFound(entity: DynamicObject.Type)
| `- warning: associated value 'persistentStoreNotFound(entity:)' of 'Sendable'-conforming enum 'CoreStoreError' contains non-Sendable type 'any DynamicObject.Type'
81 |
82 | /**
[123/178] Compiling CoreStore CoreStoreObject+Observing.swift
/Users/admin/builder/spi-builder-workspace/Sources/CoreStoreError.swift:80:10: warning: associated value 'persistentStoreNotFound(entity:)' of 'Sendable'-conforming enum 'CoreStoreError' contains non-Sendable type 'any DynamicObject.Type'
78 | Attempted to perform a fetch but could not find any related persistent store.
79 | */
80 | case persistentStoreNotFound(entity: DynamicObject.Type)
| `- warning: associated value 'persistentStoreNotFound(entity:)' of 'Sendable'-conforming enum 'CoreStoreError' contains non-Sendable type 'any DynamicObject.Type'
81 |
82 | /**
[124/178] Compiling CoreStore CoreStoreObject+Querying.swift
/Users/admin/builder/spi-builder-workspace/Sources/CoreStoreError.swift:80:10: warning: associated value 'persistentStoreNotFound(entity:)' of 'Sendable'-conforming enum 'CoreStoreError' contains non-Sendable type 'any DynamicObject.Type'
78 | Attempted to perform a fetch but could not find any related persistent store.
79 | */
80 | case persistentStoreNotFound(entity: DynamicObject.Type)
| `- warning: associated value 'persistentStoreNotFound(entity:)' of 'Sendable'-conforming enum 'CoreStoreError' contains non-Sendable type 'any DynamicObject.Type'
81 |
82 | /**
[125/178] Compiling CoreStore CoreStoreObject.swift
/Users/admin/builder/spi-builder-workspace/Sources/CoreStoreError.swift:80:10: warning: associated value 'persistentStoreNotFound(entity:)' of 'Sendable'-conforming enum 'CoreStoreError' contains non-Sendable type 'any DynamicObject.Type'
78 | Attempted to perform a fetch but could not find any related persistent store.
79 | */
80 | case persistentStoreNotFound(entity: DynamicObject.Type)
| `- warning: associated value 'persistentStoreNotFound(entity:)' of 'Sendable'-conforming enum 'CoreStoreError' contains non-Sendable type 'any DynamicObject.Type'
81 |
82 | /**
[126/178] Compiling CoreStore CoreStoreSchema.swift
/Users/admin/builder/spi-builder-workspace/Sources/CoreStoreError.swift:80:10: warning: associated value 'persistentStoreNotFound(entity:)' of 'Sendable'-conforming enum 'CoreStoreError' contains non-Sendable type 'any DynamicObject.Type'
78 | Attempted to perform a fetch but could not find any related persistent store.
79 | */
80 | case persistentStoreNotFound(entity: DynamicObject.Type)
| `- warning: associated value 'persistentStoreNotFound(entity:)' of 'Sendable'-conforming enum 'CoreStoreError' contains non-Sendable type 'any DynamicObject.Type'
81 |
82 | /**
[127/178] Compiling CoreStore QueryableSource.swift
[128/178] Compiling CoreStore Relationship.ToManyOrdered.swift
[129/178] Compiling CoreStore Relationship.ToManyUnordered.swift
[130/178] Compiling CoreStore Relationship.ToOne.swift
[131/178] Compiling CoreStore Relationship.swift
[132/178] Compiling CoreStore RelationshipProtocol.swift
[133/178] Compiling CoreStore SQLiteStore.swift
[134/178] Compiling CoreStore SchemaHistory.swift
[135/178] Compiling CoreStore SchemaMappingProvider.swift
[136/178] Compiling CoreStore SectionBy.swift
[137/178] Compiling CoreStore SectionMonitorBuilder.swift
[138/178] Compiling CoreStore Select.swift
[139/178] Compiling CoreStore SetupResult.swift
[140/178] Compiling CoreStore StorageInterface.swift
[141/178] Compiling CoreStore String+KeyPaths.swift
[142/178] Compiling CoreStore SynchronousDataTransaction.swift
[143/178] Compiling CoreStore Transformable.Optional.swift
[144/178] Compiling CoreStore Internals.AnyFieldCoder.swift
[145/178] Compiling CoreStore Internals.Closure.swift
[146/178] Compiling CoreStore Internals.CoreStoreFetchRequest.swift
[147/178] Compiling CoreStore Internals.CoreStoreFetchedResultsController.swift
[148/178] Compiling CoreStore Internals.DiffableDataSourceSnapshot.swift
[149/178] Compiling CoreStore Internals.DiffableDataUIDispatcher.Changeset.swift
[150/178] Compiling CoreStore Internals.DiffableDataUIDispatcher.DiffResult.swift
[151/178] Compiling CoreStore Internals.DiffableDataUIDispatcher.StagedChangeset.swift
[152/178] Compiling CoreStore Internals.DiffableDataUIDispatcher.swift
[153/178] Compiling CoreStore Internals.EntityIdentifier.swift
[154/178] Compiling CoreStore Internals.FetchedDiffableDataSourceSnapshotDelegate.swift
[155/178] Compiling CoreStore Internals.FetchedResultsControllerDelegate.swift
[156/178] Compiling CoreStore Internals.LazyNonmutating.swift
[157/178] Compiling CoreStore Internals.MigrationManager.swift
[158/178] Compiling CoreStore Internals.NotificationObserver.swift
[159/178] Compiling CoreStore Internals.SharedNotificationObserver.swift
[160/178] Compiling CoreStore Internals.WeakObject.swift
[161/178] Compiling CoreStore Internals.swift
[162/178] Compiling CoreStore ObjectMonitor.swift
[163/178] Compiling CoreStore ObjectObserver.swift
[164/178] Compiling CoreStore ObjectProxy.swift
[165/178] Compiling CoreStore ObjectPublisher+Reactive.swift
[166/178] Compiling CoreStore ObjectPublisher.SnapshotPublisher.swift
[167/178] Compiling CoreStore ObjectPublisher.swift
[168/178] Compiling CoreStore ObjectReader.swift
[169/178] Compiling CoreStore ObjectRepresentation.swift
[170/178] Compiling CoreStore ObjectSnapshot.swift
[171/178] Compiling CoreStore ObjectState.swift
[172/178] Compiling CoreStore Operators.swift
[173/178] Compiling CoreStore OrderBy.swift
[174/178] Compiling CoreStore PartialObject.swift
[175/178] Compiling CoreStore Progress+Convenience.swift
[176/178] Compiling CoreStore PropertyProtocol.swift
[177/178] Compiling CoreStore QueryChainBuilder.swift
[178/178] Compiling CoreStore QueryableAttributeType.swift
Build complete! (11.35s)
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.