This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.

The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Successful build of AERecord with Swift 6.0 for macOS (SPM).

Swift 6 data race errors: 1

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.0.0-Beta.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete

Build Log

========================================
RunAll
========================================
Builder version: 4.43.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/
warning: templates not found in /usr/share/git-core/templates
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
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $workDir
https://github.com/tadija/AERecord.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.0.0-Beta.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-6A63A117629E05AE.txt
[3/6] Compiling AERecord Stack.swift
/Users/admin/builder/spi-builder-workspace/Sources/AERecord/Stack.swift:14:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'Stack' may have shared mutable state; this is an error in the Swift 6 language mode
  8 |
  9 | /// This internal class is core of AERecord as it configures and accesses Core Data Stack.
 10 | public class Stack {
    |              `- note: class 'Stack' does not conform to the 'Sendable' protocol
 11 |
 12 |     // MARK: - Singleton
 13 |
 14 |     static let shared = Stack()
    |                |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'Stack' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 15 |
 16 |     // MARK: - Defaults
/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.
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.
237 |             center.addObserver(self, selector: didImport, name: didImportName, object: coordinator)
238 |         #endif
[4/6] Compiling AERecord AERecord.swift
/Users/admin/builder/spi-builder-workspace/Sources/AERecord/Stack.swift:14:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'Stack' may have shared mutable state; this is an error in the Swift 6 language mode
  8 |
  9 | /// This internal class is core of AERecord as it configures and accesses Core Data Stack.
 10 | public class Stack {
    |              `- note: class 'Stack' does not conform to the 'Sendable' protocol
 11 |
 12 |     // MARK: - Singleton
 13 |
 14 |     static let shared = Stack()
    |                |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'Stack' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 15 |
 16 |     // MARK: - Defaults
[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 |     /**
[6/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 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/AERecord/Stack.swift:14:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'Stack' may have shared mutable state; this is an error in the Swift 6 language mode
  8 |
  9 | /// This internal class is core of AERecord as it configures and accesses Core Data Stack.
 10 | public class Stack {
    |              `- note: class 'Stack' does not conform to the 'Sendable' protocol
 11 |
 12 |     // MARK: - Singleton
 13 |
 14 |     static let shared = Stack()
    |                |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'Stack' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 15 |
 16 |     // MARK: - Defaults
Build complete! (6.87s)
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.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.