The Swift Package Index logo.Swift Package Index

Build Information

Successful build of AERecord, reference 4.1.2 (105ad0), with Swift 6.3 for macOS (SPM) on 20 Apr 2026 16:37:58 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64

Build Log

========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/tadija/AERecord.git
Reference: 4.1.2
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/tadija/AERecord
 * tag               4.1.2      -> FETCH_HEAD
HEAD is now at 105ad07 Merge branch 'develop'
Cloned https://github.com/tadija/AERecord.git
Revision (git rev-parse @):
105ad07a0b5b317c65f3670836f2ba48083dcf6b
SUCCESS checkout https://github.com/tadija/AERecord.git at 4.1.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": "aerecord",
      "name": "AERecord",
      "url": "https://github.com/tadija/AERecord.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/AERecord",
      "traits": [
        "default"
      ],
      "dependencies": [
      ]
    }
  ]
}
Fetching https://github.com/tadija/AERecord.git
[1/1108] Fetching aerecord
Fetched https://github.com/tadija/AERecord.git from cache (0.84s)
Creating working copy for https://github.com/tadija/AERecord.git
Working copy of https://github.com/tadija/AERecord.git resolved at 4.1.2 (105ad07)
warning: '.resolve-product-dependencies': dependency 'aerecord' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.3
Building package at path:  $PWD
https://github.com/tadija/AERecord.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version--6988338F2F200930.txt
[3/6] Compiling AERecord AERecord.swift
[4/6] Emitting module AERecord
/Users/admin/builder/spi-builder-workspace/Sources/AERecord/Query.swift:54:5: warning: 'public' modifier is redundant for static property declared in a public extension
 52 |     }
 53 |
 54 |     public static let defaultPredicateType: NSCompoundPredicate.LogicalType = .and
    |     `- warning: 'public' modifier is redundant for static property declared in a public extension
 55 |
 56 |     /**
[5/6] Compiling AERecord Query.swift
/Users/admin/builder/spi-builder-workspace/Sources/AERecord/Query.swift:54:5: warning: 'public' modifier is redundant for static property declared in a public extension
 52 |     }
 53 |
 54 |     public static let defaultPredicateType: NSCompoundPredicate.LogicalType = .and
    |     `- warning: 'public' modifier is redundant for static property declared in a public extension
 55 |
 56 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/AERecord/Query.swift:683:53: warning: capture of 'request' with non-Sendable type 'NSBatchUpdateRequest' in a '@Sendable' closure [#SendableClosureCaptures]
681 |         context.performAndWait {
682 |             do {
683 |                 if let result = try context.execute(request) as? NSBatchUpdateResult {
    |                                                     `- warning: capture of 'request' with non-Sendable type 'NSBatchUpdateRequest' in a '@Sendable' closure [#SendableClosureCaptures]
684 |                     batchResult = result
685 |                 }
/Applications/Xcode-26.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSBatchUpdateRequest.h:24:12: note: class 'NSBatchUpdateRequest' does not conform to the 'Sendable' protocol
22 | //  the underlying store do not violate any validation rules specified in the model.
23 | API_AVAILABLE(macosx(10.10),ios(8.0))
24 | @interface NSBatchUpdateRequest : NSPersistentStoreRequest {
   |            `- note: class 'NSBatchUpdateRequest' does not conform to the 'Sendable' protocol
25 | }
26 |
/Users/admin/builder/spi-builder-workspace/Sources/AERecord/Query.swift:7:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreData'
  5 |  */
  6 |
  7 | import CoreData
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreData'
  8 |
  9 | /**
/Users/admin/builder/spi-builder-workspace/Sources/AERecord/Query.swift:684:21: warning: capture of 'batchResult' with non-Sendable type 'NSBatchUpdateResult?' in a '@Sendable' closure [#SendableClosureCaptures]
682 |             do {
683 |                 if let result = try context.execute(request) as? NSBatchUpdateResult {
684 |                     batchResult = result
    |                     `- warning: capture of 'batchResult' with non-Sendable type 'NSBatchUpdateResult?' in a '@Sendable' closure [#SendableClosureCaptures]
685 |                 }
686 |             } catch {
/Applications/Xcode-26.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentStoreResult.h:90:12: note: class 'NSBatchUpdateResult' does not conform to the 'Sendable' protocol
 88 | // The result returned when executing an NSBatchUpdateRequest
 89 | API_AVAILABLE(macosx(10.10),ios(8.0))
 90 | @interface NSBatchUpdateResult : NSPersistentStoreResult {
    |            `- note: class 'NSBatchUpdateResult' does not conform to the 'Sendable' protocol
 91 | }
 92 |
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[6/6] Compiling AERecord Stack.swift
/Users/admin/builder/spi-builder-workspace/Sources/AERecord/Stack.swift:236:53: warning: 'NSPersistentStoreDidImportUbiquitousContentChanges' was deprecated in macOS 10.12: Please see the release notes and Core Data documentation. [#DeprecatedDeclaration]
234 |         #if !(os(tvOS) || os(watchOS))
235 |             let didImport = #selector(Stack.persistentStoreDidImportUbiquitousContentChanges(_:))
236 |             let didImportName = NSNotification.Name.NSPersistentStoreDidImportUbiquitousContentChanges
    |                                                     `- warning: 'NSPersistentStoreDidImportUbiquitousContentChanges' was deprecated in macOS 10.12: Please see the release notes and Core Data documentation. [#DeprecatedDeclaration]
237 |             center.addObserver(self, selector: didImport, name: didImportName, object: coordinator)
238 |         #endif
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
Build complete! (3.93s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "AERecord",
  "name" : "AERecord",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "AERecord",
      "targets" : [
        "AERecord"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "AERecordTests",
      "module_type" : "SwiftTarget",
      "name" : "AERecordTests",
      "path" : "Tests/AERecordTests",
      "sources" : [
        "AERecordTests.swift"
      ],
      "target_dependencies" : [
        "AERecord"
      ],
      "type" : "test"
    },
    {
      "c99name" : "AERecord",
      "module_type" : "SwiftTarget",
      "name" : "AERecord",
      "path" : "Sources/AERecord",
      "product_memberships" : [
        "AERecord"
      ],
      "sources" : [
        "AERecord.swift",
        "Query.swift",
        "Stack.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "4.2"
}
Done.