Build Information
Successful build of CoreDataPlus, reference 0.5.0 (1bdd8b), with Swift 6.3 for macOS (SPM) on 16 Apr 2026 17:38:40 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64Build Log
========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/richardpiazza/CoreDataPlus.git
Reference: 0.5.0
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/richardpiazza/CoreDataPlus
* tag 0.5.0 -> FETCH_HEAD
HEAD is now at 1bdd8b6 Deprecation Cleanup (#9)
Cloned https://github.com/richardpiazza/CoreDataPlus.git
Revision (git rev-parse @):
1bdd8b6f9af4b4ef0b75280498180c04b601f5ea
SUCCESS checkout https://github.com/richardpiazza/CoreDataPlus.git at 0.5.0
Fetching https://github.com/apple/swift-log.git
[1/6605] Fetching swift-log
Fetched https://github.com/apple/swift-log.git from cache (1.18s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.6.2 (1.76s)
Creating working copy for https://github.com/apple/swift-log.git
Working copy of https://github.com/apple/swift-log.git resolved at 1.6.2
========================================
ResolveProductDependencies
========================================
Resolving dependencies ...
{
"identity": ".resolve-product-dependencies",
"name": "resolve-dependencies",
"url": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
"traits": [
"default"
],
"dependencies": [
{
"identity": "coredataplus",
"name": "CoreDataPlus",
"url": "https://github.com/richardpiazza/CoreDataPlus.git",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/CoreDataPlus",
"traits": [
"default"
],
"dependencies": [
{
"identity": "swift-log",
"name": "swift-log",
"url": "https://github.com/apple/swift-log.git",
"version": "1.12.0",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/swift-log",
"traits": [
],
"dependencies": [
]
}
]
}
]
}
Fetching https://github.com/richardpiazza/CoreDataPlus.git
[1/257] Fetching coredataplus
Fetched https://github.com/richardpiazza/CoreDataPlus.git from cache (0.71s)
Fetching https://github.com/apple/swift-log.git from cache
Fetched https://github.com/apple/swift-log.git from cache (0.56s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.12.0 (1.26s)
Creating working copy for https://github.com/richardpiazza/CoreDataPlus.git
Working copy of https://github.com/richardpiazza/CoreDataPlus.git resolved at 0.5.0 (1bdd8b6)
Creating working copy for https://github.com/apple/swift-log.git
Working copy of https://github.com/apple/swift-log.git resolved at 1.12.0
warning: '.resolve-product-dependencies': dependency 'coredataplus' is not used by any target
Found 1 product dependencies
- swift-log
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.3
Building package at path: $PWD
https://github.com/richardpiazza/CoreDataPlus.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64
Building for debugging...
[0/3] Write sources
[2/3] Write swift-version--6988338F2F200930.txt
[4/8] Compiling Logging Logging.swift
[5/8] Compiling Logging LogHandler.swift
[6/8] Emitting module Logging
[7/8] Compiling Logging MetadataProvider.swift
[8/8] Compiling Logging Locks.swift
[9/27] Compiling CoreDataPlus NSRelationshipDescription+CoreDataPlus.swift
[10/27] Compiling CoreDataPlus FileExtension.swift
[11/27] Compiling CoreDataPlus NSAttributeDescription+CoreDataPlus.swift
[12/27] Compiling CoreDataPlus NSEntityDescription+CoreDataPlus.swift
[13/27] Compiling CoreDataPlus NSPersistentStoreCoordinator+CoreDataPlus.swift
[14/27] Compiling CoreDataPlus NSPropertyMapping+CoreDataPlus.swift
[15/27] Compiling CoreDataPlus NSManagedObjectContext+CoreDataPlus.swift
/Users/admin/builder/spi-builder-workspace/Sources/CoreDataPlus/Extensions/NSManagedObjectContext+CoreDataPlus.swift:24:23: warning: capture of 'request' with non-Sendable type 'NSFetchRequest<T>' in a '@Sendable' closure [#SendableClosureCaptures]
22 | func fetchSynchronously<T>(_ request: NSFetchRequest<T>) throws -> [T] {
23 | try performAndWait {
24 | try fetch(request)
| `- warning: capture of 'request' with non-Sendable type 'NSFetchRequest<T>' in a '@Sendable' closure [#SendableClosureCaptures]
25 | }
26 | }
/Applications/Xcode-26.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchRequest.h:47:12: note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
45 |
46 | API_AVAILABLE(macosx(10.4),ios(3.0))
47 | @interface NSFetchRequest<__covariant ResultType:id<NSFetchRequestResult>> : NSPersistentStoreRequest <NSCoding, NSCopying> {
| `- note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
48 | }
49 |
/Users/admin/builder/spi-builder-workspace/Sources/CoreDataPlus/Extensions/NSManagedObjectContext+CoreDataPlus.swift:3:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreData'
1 | import Foundation
2 | #if canImport(CoreData)
3 | import CoreData
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreData'
4 |
5 | public extension NSManagedObjectContext {
/Users/admin/builder/spi-builder-workspace/Sources/CoreDataPlus/Extensions/NSManagedObjectContext+CoreDataPlus.swift:36:42: warning: capture of 'request' with non-Sendable type 'NSFetchRequest<T>' in a '@Sendable' closure [#SendableClosureCaptures]
34 | func fetchSynchronously<T, U>(_ request: NSFetchRequest<T>, mapping: (T) -> U) throws -> [U] {
35 | try performAndWait {
36 | let fetchResults = try fetch(request)
| `- warning: capture of 'request' with non-Sendable type 'NSFetchRequest<T>' in a '@Sendable' closure [#SendableClosureCaptures]
37 | return fetchResults.map(mapping)
38 | }
/Applications/Xcode-26.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchRequest.h:47:12: note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
45 |
46 | API_AVAILABLE(macosx(10.4),ios(3.0))
47 | @interface NSFetchRequest<__covariant ResultType:id<NSFetchRequestResult>> : NSPersistentStoreRequest <NSCoding, NSCopying> {
| `- note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
48 | }
49 |
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[16/27] Compiling CoreDataPlus NSPersistentContainer+CoreDataPlus.swift
/Users/admin/builder/spi-builder-workspace/Sources/CoreDataPlus/Extensions/NSManagedObjectContext+CoreDataPlus.swift:24:23: warning: capture of 'request' with non-Sendable type 'NSFetchRequest<T>' in a '@Sendable' closure [#SendableClosureCaptures]
22 | func fetchSynchronously<T>(_ request: NSFetchRequest<T>) throws -> [T] {
23 | try performAndWait {
24 | try fetch(request)
| `- warning: capture of 'request' with non-Sendable type 'NSFetchRequest<T>' in a '@Sendable' closure [#SendableClosureCaptures]
25 | }
26 | }
/Applications/Xcode-26.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchRequest.h:47:12: note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
45 |
46 | API_AVAILABLE(macosx(10.4),ios(3.0))
47 | @interface NSFetchRequest<__covariant ResultType:id<NSFetchRequestResult>> : NSPersistentStoreRequest <NSCoding, NSCopying> {
| `- note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
48 | }
49 |
/Users/admin/builder/spi-builder-workspace/Sources/CoreDataPlus/Extensions/NSManagedObjectContext+CoreDataPlus.swift:3:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreData'
1 | import Foundation
2 | #if canImport(CoreData)
3 | import CoreData
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreData'
4 |
5 | public extension NSManagedObjectContext {
/Users/admin/builder/spi-builder-workspace/Sources/CoreDataPlus/Extensions/NSManagedObjectContext+CoreDataPlus.swift:36:42: warning: capture of 'request' with non-Sendable type 'NSFetchRequest<T>' in a '@Sendable' closure [#SendableClosureCaptures]
34 | func fetchSynchronously<T, U>(_ request: NSFetchRequest<T>, mapping: (T) -> U) throws -> [U] {
35 | try performAndWait {
36 | let fetchResults = try fetch(request)
| `- warning: capture of 'request' with non-Sendable type 'NSFetchRequest<T>' in a '@Sendable' closure [#SendableClosureCaptures]
37 | return fetchResults.map(mapping)
38 | }
/Applications/Xcode-26.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchRequest.h:47:12: note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
45 |
46 | API_AVAILABLE(macosx(10.4),ios(3.0))
47 | @interface NSFetchRequest<__covariant ResultType:id<NSFetchRequestResult>> : NSPersistentStoreRequest <NSCoding, NSCopying> {
| `- note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
48 | }
49 |
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[17/27] Compiling CoreDataPlus CatalogContainer.swift
[18/27] Compiling CoreDataPlus CoreDataPlusError.swift
[19/27] Compiling CoreDataPlus Migrator.swift
[20/27] Compiling CoreDataPlus ModelCatalog.swift
[21/27] Emitting module CoreDataPlus
[22/27] Compiling CoreDataPlus ModelVersion.swift
[23/27] Compiling CoreDataPlus Persistence.swift
[24/27] Compiling CoreDataPlus NSEntityMapping+CoreDataPlus.swift
[25/27] Compiling CoreDataPlus NSManagedObject+CoreDataPlus.swift
[26/27] Compiling CoreDataPlus Bundle+Resources.swift
[27/27] Compiling CoreDataPlus Logger+CoreDataPlus.swift
[28/29] Compiling CoreDataPlus ResourceSuffix.swift
[29/29] Compiling CoreDataPlus StoreURL.swift
Build complete! (7.26s)
Build complete.
{
"dependencies" : [
{
"identity" : "swift-log",
"requirement" : {
"range" : [
{
"lower_bound" : "1.6.2",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-log.git"
}
],
"manifest_display_name" : "CoreDataPlus",
"name" : "CoreDataPlus",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "12.0"
},
{
"name" : "maccatalyst",
"version" : "15.0"
},
{
"name" : "ios",
"version" : "15.0"
},
{
"name" : "tvos",
"version" : "15.0"
},
{
"name" : "watchos",
"version" : "8.0"
}
],
"products" : [
{
"name" : "CoreDataPlus",
"targets" : [
"CoreDataPlus"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"swift_languages_versions" : [
"5"
],
"targets" : [
{
"c99name" : "CoreDataPlusTests",
"module_type" : "SwiftTarget",
"name" : "CoreDataPlusTests",
"path" : "Tests/CoreDataPlusTests",
"resources" : [
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/CoreDataPlusTests/PrecompiledResources",
"rule" : {
"copy" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/CoreDataPlusTests/Resources/CoreDataPlus_1.0.xcdatamodeld",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/CoreDataPlusTests/Resources/CoreDataPlus_1.1.xcdatamodeld",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/CoreDataPlusTests/Resources/Model_1_0_to_1_1.cdm_precompiled",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/CoreDataPlusTests/Resources/Model_1_0_to_1_1.xcmappingmodel",
"rule" : {
"process" : {
}
}
}
],
"sources" : [
"CoreDataPlusTests.swift",
"Data+Hex.swift",
"Models/AuthorV1_0.swift",
"Models/AuthorV1_1.swift",
"Models/BookV1_0.swift",
"Models/BookV1_1.swift"
],
"target_dependencies" : [
"CoreDataPlus"
],
"type" : "test"
},
{
"c99name" : "CoreDataPlus",
"module_type" : "SwiftTarget",
"name" : "CoreDataPlus",
"path" : "Sources/CoreDataPlus",
"product_dependencies" : [
"Logging"
],
"product_memberships" : [
"CoreDataPlus"
],
"sources" : [
"CatalogContainer.swift",
"CoreDataPlusError.swift",
"Extensions/Bundle+Resources.swift",
"Extensions/Logger+CoreDataPlus.swift",
"Extensions/NSAttributeDescription+CoreDataPlus.swift",
"Extensions/NSEntityDescription+CoreDataPlus.swift",
"Extensions/NSEntityMapping+CoreDataPlus.swift",
"Extensions/NSManagedObject+CoreDataPlus.swift",
"Extensions/NSManagedObjectContext+CoreDataPlus.swift",
"Extensions/NSPersistentContainer+CoreDataPlus.swift",
"Extensions/NSPersistentStoreCoordinator+CoreDataPlus.swift",
"Extensions/NSPropertyMapping+CoreDataPlus.swift",
"Extensions/NSRelationshipDescription+CoreDataPlus.swift",
"FileExtension.swift",
"Migrator.swift",
"ModelCatalog.swift",
"ModelVersion.swift",
"Persistence.swift",
"ResourceSuffix.swift",
"StoreURL.swift"
],
"type" : "library"
}
],
"tools_version" : "5.9"
}
Done.