The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Successful build of CoreDataRepository, reference 2.0.5 (f0c5f8), with Swift 6.2 (beta) for macOS (SPM) on 20 Jun 2025 17:21:05 UTC.

Swift 6 data race errors: 0

Build Command

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

Build Log

========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/roanutil/CoreDataRepository.git
Reference: 2.0.5
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/roanutil/CoreDataRepository
 * tag               2.0.5      -> FETCH_HEAD
HEAD is now at f0c5f84 Merge pull request #33 from roanutil/bugfix/unable-to-build-v2-with-swift-6
Cloned https://github.com/roanutil/CoreDataRepository.git
Revision (git rev-parse @):
f0c5f84ff66c000d433d0d9b694dce77523aa58c
SUCCESS checkout https://github.com/roanutil/CoreDataRepository.git at 2.0.5
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/roanutil/CoreDataRepository.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Building for debugging...
[0/5] Write sources
[1/5] Copying Localizable.strings
[1/5] Copying Info.plist
[4/5] Write swift-version-1EA4D86E10B52AF.txt
[6/42] Emitting module CombineExt
[7/46] Compiling CombineExt DemandBuffer.swift
[8/46] Compiling CombineExt Sink.swift
[9/46] Compiling CombineExt Optional.swift
[10/46] Compiling CombineExt Event.swift
[11/46] Compiling CombineExt MapMany.swift
[12/46] Compiling CombineExt MapToResult.swift
[13/46] Compiling CombineExt MapToValue.swift
[14/46] Compiling CombineExt Materialize.swift
[15/46] Compiling CombineExt PrefixWhileBehavior.swift
[16/46] Compiling CombineExt RemoveAllDuplicates.swift
[17/46] Compiling CombineExt RetryWhen.swift
[18/46] Compiling CombineExt SetOutputType.swift
[19/46] Compiling CombineExt MergeMany.swift
[20/46] Compiling CombineExt Nwise.swift
[21/46] Compiling CombineExt Partition.swift
[22/46] Compiling CombineExt PrefixDuration.swift
[23/46] Compiling CombineExt FilterMany.swift
[24/46] Compiling CombineExt FlatMapBatches.swift
[25/46] Compiling CombineExt FlatMapFirst.swift
[26/46] Compiling CombineExt FlatMapLatest.swift
[27/46] Compiling CombineExt IgnoreFailure.swift
[28/46] Compiling CombineExt IgnoreOutputSetOutputType.swift
[29/46] Compiling CombineExt Lock.swift
[30/46] Compiling CombineExt Timer.swift
[31/46] Compiling CombineExt ShareReplay.swift
[32/46] Compiling CombineExt Toggle.swift
[33/46] Compiling CombineExt WithLatestFrom.swift
[34/46] Compiling CombineExt ZipMany.swift
[35/46] Compiling CombineExt CombineLatestMany.swift
[36/46] Compiling CombineExt Create.swift
[37/46] Compiling CombineExt Dematerialize.swift
[38/46] Compiling CombineExt Enumerated.swift
[39/46] Compiling CombineExt ObjectOwnership.swift
[40/46] Compiling CombineExt Amb.swift
[41/46] Compiling CombineExt AssignOwnership.swift
[42/46] Compiling CombineExt AssignToMany.swift
[43/46] Compiling CombineExt CurrentValueRelay.swift
[44/46] Compiling CombineExt PassthroughRelay.swift
[45/46] Compiling CombineExt Relay.swift
[46/46] Compiling CombineExt ReplaySubject.swift
[47/64] Compiling CoreDataRepository SubscriptionProvider.swift
[48/64] Compiling CoreDataRepository UnmanagedModel.swift
[49/64] Compiling CoreDataRepository _Result.swift
[50/65] Compiling CoreDataRepository FetchSubscription.swift
[51/65] Compiling CoreDataRepository NSManagedObject+CRUDHelpers.swift
[52/65] Compiling CoreDataRepository NSManagedObjectContext+CRUDHelpers.swift
[53/65] Compiling CoreDataRepository NSManagedObjectContext+Child.swift
[54/65] Compiling CoreDataRepository NSManagedObjectContext+Scratchpad.swift
[55/65] Compiling CoreDataRepository ReadSubscription.swift
[56/65] Compiling CoreDataRepository RepositoryManagedModel.swift
[57/65] Compiling CoreDataRepository Result+CRUDHelpers.swift
[58/65] Compiling CoreDataRepository CoreDataRepository.swift
[59/65] Compiling CoreDataRepository CoreDataRepositoryError.swift
[60/65] Compiling CoreDataRepository CoreDataRepository+Aggregate.swift
/Users/admin/builder/spi-builder-workspace/Sources/CoreDataRepository/CoreDataRepository+Batch.swift:55:80: warning: capture of non-sendable type 'Model.Type' in an isolated closure; this is an error in the Swift 6 language mode
 53 |             for item in items {
 54 |                 let added = group.addTaskUnlessCancelled {
 55 |                     async let result: Result<Model, CoreDataRepositoryError> = self
    |                                                                                `- warning: capture of non-sendable type 'Model.Type' in an isolated closure; this is an error in the Swift 6 language mode
 56 |                         .create(item, transactionAuthor: transactionAuthor)
 57 |                     switch await result {
/Users/admin/builder/spi-builder-workspace/Sources/CoreDataRepository/CoreDataRepository+Batch.swift:53:17: warning: capture of non-sendable type 'Model.Type' in an isolated closure; this is an error in the Swift 6 language mode
 51 |                 return
 52 |             }
 53 |             for item in items {
    |                 `- warning: capture of non-sendable type 'Model.Type' in an isolated closure; this is an error in the Swift 6 language mode
 54 |                 let added = group.addTaskUnlessCancelled {
 55 |                     async let result: Result<Model, CoreDataRepositoryError> = self
/Users/admin/builder/spi-builder-workspace/Sources/CoreDataRepository/CoreDataRepository+Batch.swift:108:80: warning: capture of non-sendable type 'Model.Type' in an isolated closure; this is an error in the Swift 6 language mode
106 |             for url in urls {
107 |                 let added = group.addTaskUnlessCancelled {
108 |                     async let result: Result<Model, CoreDataRepositoryError> = self.read(url)
    |                                                                                `- warning: capture of non-sendable type 'Model.Type' in an isolated closure; this is an error in the Swift 6 language mode
109 |                     switch await result {
110 |                     case let .success(created):
/Users/admin/builder/spi-builder-workspace/Sources/CoreDataRepository/CoreDataRepository+Batch.swift:172:37: warning: capture of non-sendable type 'Model.Type' in an isolated closure; this is an error in the Swift 6 language mode
170 |             for item in items {
171 |                 let added = group.addTaskUnlessCancelled {
172 |                     guard let url = item.managedRepoUrl else {
    |                                     `- warning: capture of non-sendable type 'Model.Type' in an isolated closure; this is an error in the Swift 6 language mode
173 |                         return _Result<Model, Model>.failure(item)
174 |                     }
/Users/admin/builder/spi-builder-workspace/Sources/CoreDataRepository/CoreDataRepository+Batch.swift:170:17: warning: capture of non-sendable type 'Model.Type' in an isolated closure; this is an error in the Swift 6 language mode
168 |                 return
169 |             }
170 |             for item in items {
    |                 `- warning: capture of non-sendable type 'Model.Type' in an isolated closure; this is an error in the Swift 6 language mode
171 |                 let added = group.addTaskUnlessCancelled {
172 |                     guard let url = item.managedRepoUrl else {
[61/65] Compiling CoreDataRepository CoreDataRepository+Batch.swift
/Users/admin/builder/spi-builder-workspace/Sources/CoreDataRepository/CoreDataRepository+Batch.swift:55:80: warning: capture of non-sendable type 'Model.Type' in an isolated closure; this is an error in the Swift 6 language mode
 53 |             for item in items {
 54 |                 let added = group.addTaskUnlessCancelled {
 55 |                     async let result: Result<Model, CoreDataRepositoryError> = self
    |                                                                                `- warning: capture of non-sendable type 'Model.Type' in an isolated closure; this is an error in the Swift 6 language mode
 56 |                         .create(item, transactionAuthor: transactionAuthor)
 57 |                     switch await result {
/Users/admin/builder/spi-builder-workspace/Sources/CoreDataRepository/CoreDataRepository+Batch.swift:53:17: warning: capture of non-sendable type 'Model.Type' in an isolated closure; this is an error in the Swift 6 language mode
 51 |                 return
 52 |             }
 53 |             for item in items {
    |                 `- warning: capture of non-sendable type 'Model.Type' in an isolated closure; this is an error in the Swift 6 language mode
 54 |                 let added = group.addTaskUnlessCancelled {
 55 |                     async let result: Result<Model, CoreDataRepositoryError> = self
/Users/admin/builder/spi-builder-workspace/Sources/CoreDataRepository/CoreDataRepository+Batch.swift:108:80: warning: capture of non-sendable type 'Model.Type' in an isolated closure; this is an error in the Swift 6 language mode
106 |             for url in urls {
107 |                 let added = group.addTaskUnlessCancelled {
108 |                     async let result: Result<Model, CoreDataRepositoryError> = self.read(url)
    |                                                                                `- warning: capture of non-sendable type 'Model.Type' in an isolated closure; this is an error in the Swift 6 language mode
109 |                     switch await result {
110 |                     case let .success(created):
/Users/admin/builder/spi-builder-workspace/Sources/CoreDataRepository/CoreDataRepository+Batch.swift:172:37: warning: capture of non-sendable type 'Model.Type' in an isolated closure; this is an error in the Swift 6 language mode
170 |             for item in items {
171 |                 let added = group.addTaskUnlessCancelled {
172 |                     guard let url = item.managedRepoUrl else {
    |                                     `- warning: capture of non-sendable type 'Model.Type' in an isolated closure; this is an error in the Swift 6 language mode
173 |                         return _Result<Model, Model>.failure(item)
174 |                     }
/Users/admin/builder/spi-builder-workspace/Sources/CoreDataRepository/CoreDataRepository+Batch.swift:170:17: warning: capture of non-sendable type 'Model.Type' in an isolated closure; this is an error in the Swift 6 language mode
168 |                 return
169 |             }
170 |             for item in items {
    |                 `- warning: capture of non-sendable type 'Model.Type' in an isolated closure; this is an error in the Swift 6 language mode
171 |                 let added = group.addTaskUnlessCancelled {
172 |                     guard let url = item.managedRepoUrl else {
[62/65] Compiling CoreDataRepository CoreDataRepository+CRUD.swift
[63/65] Compiling CoreDataRepository CoreDataRepository+Fetch.swift
[64/65] Emitting module CoreDataRepository
[65/65] Compiling CoreDataRepository resource_bundle_accessor.swift
Build complete! (11.67s)
Fetching https://github.com/CombineCommunity/CombineExt.git
Fetching https://github.com/pointfreeco/swift-custom-dump.git
[1/4581] Fetching swift-custom-dump
[276/6803] Fetching swift-custom-dump, combineext
Fetched https://github.com/CombineCommunity/CombineExt.git from cache (0.90s)
Fetched https://github.com/pointfreeco/swift-custom-dump.git from cache (0.90s)
Computing version for https://github.com/CombineCommunity/CombineExt.git
Computed https://github.com/CombineCommunity/CombineExt.git at 1.8.1 (1.41s)
Computing version for https://github.com/pointfreeco/swift-custom-dump.git
Computed https://github.com/pointfreeco/swift-custom-dump.git at 0.11.2 (0.47s)
Fetching https://github.com/pointfreeco/xctest-dynamic-overlay
[1/5467] Fetching xctest-dynamic-overlay
Fetched https://github.com/pointfreeco/xctest-dynamic-overlay from cache (1.29s)
Computing version for https://github.com/pointfreeco/xctest-dynamic-overlay
Computed https://github.com/pointfreeco/xctest-dynamic-overlay at 0.9.0 (1.79s)
Creating working copy for https://github.com/pointfreeco/xctest-dynamic-overlay
Working copy of https://github.com/pointfreeco/xctest-dynamic-overlay resolved at 0.9.0
Creating working copy for https://github.com/CombineCommunity/CombineExt.git
Working copy of https://github.com/CombineCommunity/CombineExt.git resolved at 1.8.1
Creating working copy for https://github.com/pointfreeco/swift-custom-dump.git
Working copy of https://github.com/pointfreeco/swift-custom-dump.git resolved at 0.11.2
Build complete.
{
  "default_localization" : "en",
  "dependencies" : [
    {
      "identity" : "combineext",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.5.1",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/CombineCommunity/CombineExt.git"
    },
    {
      "identity" : "swift-custom-dump",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.4.0",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/pointfreeco/swift-custom-dump.git"
    }
  ],
  "manifest_display_name" : "CoreDataRepository",
  "name" : "CoreDataRepository",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "15.0"
    },
    {
      "name" : "macos",
      "version" : "12.0"
    },
    {
      "name" : "tvos",
      "version" : "15.0"
    },
    {
      "name" : "watchos",
      "version" : "8.0"
    }
  ],
  "products" : [
    {
      "name" : "CoreDataRepository",
      "targets" : [
        "CoreDataRepository"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "CoreDataRepositoryTests",
      "module_type" : "SwiftTarget",
      "name" : "CoreDataRepositoryTests",
      "path" : "Tests/CoreDataRepositoryTests",
      "product_dependencies" : [
        "CustomDump"
      ],
      "sources" : [
        "AggregateRepositoryTests.swift",
        "BatchRepositoryTests.swift",
        "CRUDRepositoryTests.swift",
        "CoreDataStack.swift",
        "CoreDataXCTestCase.swift",
        "FetchRepositoryTests.swift",
        "Movie.swift"
      ],
      "target_dependencies" : [
        "CoreDataRepository"
      ],
      "type" : "test"
    },
    {
      "c99name" : "CoreDataRepository",
      "module_type" : "SwiftTarget",
      "name" : "CoreDataRepository",
      "path" : "Sources/CoreDataRepository",
      "product_dependencies" : [
        "CombineExt"
      ],
      "product_memberships" : [
        "CoreDataRepository"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/CoreDataRepository/Resources/en.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "en"
            }
          }
        }
      ],
      "sources" : [
        "CoreDataRepository+Aggregate.swift",
        "CoreDataRepository+Batch.swift",
        "CoreDataRepository+CRUD.swift",
        "CoreDataRepository+Fetch.swift",
        "CoreDataRepository.swift",
        "CoreDataRepositoryError.swift",
        "FetchSubscription.swift",
        "NSManagedObject+CRUDHelpers.swift",
        "NSManagedObjectContext+CRUDHelpers.swift",
        "NSManagedObjectContext+Child.swift",
        "NSManagedObjectContext+Scratchpad.swift",
        "ReadSubscription.swift",
        "RepositoryManagedModel.swift",
        "Result+CRUDHelpers.swift",
        "SubscriptionProvider.swift",
        "UnmanagedModel.swift",
        "_Result.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.5"
}
Done.