The Swift Package Index logo.Swift Package Index

Build Information

Successful build of ArchitectureComponents, reference master (ee79f0), with Swift 6.3 for macOS (SPM) on 10 Apr 2026 14:54:10 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/spropensource/ArchitectureComponents.git
Reference: master
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/spropensource/ArchitectureComponents
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at ee79f06 Updated README to note Carthage and CocoaPods are supported
Cloned https://github.com/spropensource/ArchitectureComponents.git
Revision (git rev-parse @):
ee79f060ccbcac69a479af973d3a33426becfa26
SUCCESS checkout https://github.com/spropensource/ArchitectureComponents.git at master
========================================
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": "architecturecomponents",
      "name": "ArchitectureComponents",
      "url": "https://github.com/spropensource/ArchitectureComponents.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/ArchitectureComponents",
      "traits": [
        "default"
      ],
      "dependencies": [
      ]
    }
  ]
}
Fetching https://github.com/spropensource/ArchitectureComponents.git
[1/139] Fetching architecturecomponents
Fetched https://github.com/spropensource/ArchitectureComponents.git from cache (0.61s)
Creating working copy for https://github.com/spropensource/ArchitectureComponents.git
Working copy of https://github.com/spropensource/ArchitectureComponents.git resolved at master (ee79f06)
warning: '.resolve-product-dependencies': dependency 'architecturecomponents' 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/spropensource/ArchitectureComponents.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/21] Compiling ArchitectureComponents LiveDataError.swift
[4/21] Compiling ArchitectureComponents ObserverController.swift
[5/21] Emitting module ArchitectureComponents
/Users/admin/builder/spi-builder-workspace/Sources/ArchitectureComponents/Lifecycle/LifecycleRegistry.swift:48:20: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'LifecycleRegistry.LifecycleObserverEnvelope' to 'Hashable' by implementing 'hash(into:)' instead [#DeprecatedDeclaration]
 46 |         // MARK: Hashable
 47 |
 48 |         public var hashValue: Int {
    |                    `- warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'LifecycleRegistry.LifecycleObserverEnvelope' to 'Hashable' by implementing 'hash(into:)' instead [#DeprecatedDeclaration]
 49 |             guard let observer = self.lifecycleObserver else { return 0 }
 50 |
/Users/admin/builder/spi-builder-workspace/Sources/ArchitectureComponents/Lifecycle/Swift/Extensions.swift:60:5: warning: 'internal' modifier is redundant for property declared in an internal extension
 58 |     // MARK: Helpers
 59 |
 60 |     internal var stateAfter: LifecycleState {
    |     `- warning: 'internal' modifier is redundant for property declared in an internal extension
 61 |         let state: LifecycleState
 62 |         switch self {
/Users/admin/builder/spi-builder-workspace/Sources/ArchitectureComponents/Lifecycle/Swift/Extensions.swift:73:5: warning: 'internal' modifier is redundant for property declared in an internal extension
 71 |     }
 72 |
 73 |     internal var stateBefore: LifecycleState {
    |     `- warning: 'internal' modifier is redundant for property declared in an internal extension
 74 |         let state: LifecycleState
 75 |         switch self {
/Users/admin/builder/spi-builder-workspace/Sources/ArchitectureComponents/Lifecycle/Swift/Extensions.swift:110:5: warning: 'internal' modifier is redundant for instance method declared in an internal extension
108 | internal extension LifecycleState {
109 |
110 |     internal func eventsToState(_ targetState: LifecycleState) throws -> [LifecycleEvent] {
    |     `- warning: 'internal' modifier is redundant for instance method declared in an internal extension
111 |         guard self != targetState else { return [] }
112 |         guard targetState != .initialized else {
/Users/admin/builder/spi-builder-workspace/Sources/ArchitectureComponents/LiveData/Swift/ObserverHandle.swift:36:16: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'ObserverHandle' to 'Hashable' by implementing 'hash(into:)' instead [#DeprecatedDeclaration]
34 |     // MARK: Hashable
35 |
36 |     public var hashValue: Int {
   |                `- warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'ObserverHandle' to 'Hashable' by implementing 'hash(into:)' instead [#DeprecatedDeclaration]
37 |         let result = self.value.hashValue
38 |         return result
/Users/admin/builder/spi-builder-workspace/Sources/ArchitectureComponents/LiveData/Swift/ObserverListController.swift:54:37: warning: generic parameter 'Type' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 17 |
 18 |
 19 | internal class ObserverListController<Type>: ObserverControllerDelegate {
    |                                       `- note: 'Type' previously declared here
 20 |
 21 |     // MARK: Type
    :
 52 |     // MARK: ObserverControllerDelegate
 53 |
 54 |     public func observerDidActivate<Type>(_ observer: ObserverController<Type>) {
    |                                     `- warning: generic parameter 'Type' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 55 |         self.active = self.hasActiveObservers
 56 |     }
/Users/admin/builder/spi-builder-workspace/Sources/ArchitectureComponents/LiveData/Swift/ObserverListController.swift:58:39: warning: generic parameter 'Type' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 17 |
 18 |
 19 | internal class ObserverListController<Type>: ObserverControllerDelegate {
    |                                       `- note: 'Type' previously declared here
 20 |
 21 |     // MARK: Type
    :
 56 |     }
 57 |
 58 |     public func observerDidDeactivate<Type>(_ observer: ObserverController<Type>) {
    |                                       `- warning: generic parameter 'Type' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 59 |         self.active = self.hasActiveObservers
 60 |     }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[6/21] Compiling ArchitectureComponents LifecycleObserver.swift
[7/21] Compiling ArchitectureComponents LifecycleOwner.swift
[8/21] Compiling ArchitectureComponents DefaultLifecycleObserver.swift
[9/21] Compiling ArchitectureComponents Lifecycle.swift
[10/21] Compiling ArchitectureComponents Transformations.swift
[11/21] Compiling ArchitectureComponents LifecycleTableViewController.swift
[12/21] Compiling ArchitectureComponents LifecycleError.swift
[13/21] Compiling ArchitectureComponents LiveData.swift
[14/21] Compiling ArchitectureComponents SwitchedLiveData.swift
[15/21] Compiling ArchitectureComponents TransformedLiveData.swift
[16/21] Compiling ArchitectureComponents LifecycleRegistry.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArchitectureComponents/Lifecycle/LifecycleRegistry.swift:48:20: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'LifecycleRegistry.LifecycleObserverEnvelope' to 'Hashable' by implementing 'hash(into:)' instead [#DeprecatedDeclaration]
 46 |         // MARK: Hashable
 47 |
 48 |         public var hashValue: Int {
    |                    `- warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'LifecycleRegistry.LifecycleObserverEnvelope' to 'Hashable' by implementing 'hash(into:)' instead [#DeprecatedDeclaration]
 49 |             guard let observer = self.lifecycleObserver else { return 0 }
 50 |
/Users/admin/builder/spi-builder-workspace/Sources/ArchitectureComponents/Lifecycle/LifecycleRegistry.swift:165:50: warning: 'flatMap' is deprecated: Please use compactMap(_:) for the case where closure returns an optional value [#DeprecatedDeclaration]
163 |         guard let owner = self.owner else { return }
164 |
165 |         let activeObservers = self.weakObservers.flatMap({ $0.lifecycleObserver })
    |                                                  |- warning: 'flatMap' is deprecated: Please use compactMap(_:) for the case where closure returns an optional value [#DeprecatedDeclaration]
    |                                                  `- note: use 'compactMap(_:)' instead
166 |         for observer in activeObservers {
167 |             switch event {
/Users/admin/builder/spi-builder-workspace/Sources/ArchitectureComponents/Lifecycle/Swift/Extensions.swift:60:5: warning: 'internal' modifier is redundant for property declared in an internal extension
 58 |     // MARK: Helpers
 59 |
 60 |     internal var stateAfter: LifecycleState {
    |     `- warning: 'internal' modifier is redundant for property declared in an internal extension
 61 |         let state: LifecycleState
 62 |         switch self {
/Users/admin/builder/spi-builder-workspace/Sources/ArchitectureComponents/Lifecycle/Swift/Extensions.swift:73:5: warning: 'internal' modifier is redundant for property declared in an internal extension
 71 |     }
 72 |
 73 |     internal var stateBefore: LifecycleState {
    |     `- warning: 'internal' modifier is redundant for property declared in an internal extension
 74 |         let state: LifecycleState
 75 |         switch self {
/Users/admin/builder/spi-builder-workspace/Sources/ArchitectureComponents/Lifecycle/Swift/Extensions.swift:110:5: warning: 'internal' modifier is redundant for instance method declared in an internal extension
108 | internal extension LifecycleState {
109 |
110 |     internal func eventsToState(_ targetState: LifecycleState) throws -> [LifecycleEvent] {
    |     `- warning: 'internal' modifier is redundant for instance method declared in an internal extension
111 |         guard self != targetState else { return [] }
112 |         guard targetState != .initialized else {
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[17/21] Compiling ArchitectureComponents Extensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArchitectureComponents/Lifecycle/LifecycleRegistry.swift:48:20: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'LifecycleRegistry.LifecycleObserverEnvelope' to 'Hashable' by implementing 'hash(into:)' instead [#DeprecatedDeclaration]
 46 |         // MARK: Hashable
 47 |
 48 |         public var hashValue: Int {
    |                    `- warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'LifecycleRegistry.LifecycleObserverEnvelope' to 'Hashable' by implementing 'hash(into:)' instead [#DeprecatedDeclaration]
 49 |             guard let observer = self.lifecycleObserver else { return 0 }
 50 |
/Users/admin/builder/spi-builder-workspace/Sources/ArchitectureComponents/Lifecycle/LifecycleRegistry.swift:165:50: warning: 'flatMap' is deprecated: Please use compactMap(_:) for the case where closure returns an optional value [#DeprecatedDeclaration]
163 |         guard let owner = self.owner else { return }
164 |
165 |         let activeObservers = self.weakObservers.flatMap({ $0.lifecycleObserver })
    |                                                  |- warning: 'flatMap' is deprecated: Please use compactMap(_:) for the case where closure returns an optional value [#DeprecatedDeclaration]
    |                                                  `- note: use 'compactMap(_:)' instead
166 |         for observer in activeObservers {
167 |             switch event {
/Users/admin/builder/spi-builder-workspace/Sources/ArchitectureComponents/Lifecycle/Swift/Extensions.swift:60:5: warning: 'internal' modifier is redundant for property declared in an internal extension
 58 |     // MARK: Helpers
 59 |
 60 |     internal var stateAfter: LifecycleState {
    |     `- warning: 'internal' modifier is redundant for property declared in an internal extension
 61 |         let state: LifecycleState
 62 |         switch self {
/Users/admin/builder/spi-builder-workspace/Sources/ArchitectureComponents/Lifecycle/Swift/Extensions.swift:73:5: warning: 'internal' modifier is redundant for property declared in an internal extension
 71 |     }
 72 |
 73 |     internal var stateBefore: LifecycleState {
    |     `- warning: 'internal' modifier is redundant for property declared in an internal extension
 74 |         let state: LifecycleState
 75 |         switch self {
/Users/admin/builder/spi-builder-workspace/Sources/ArchitectureComponents/Lifecycle/Swift/Extensions.swift:110:5: warning: 'internal' modifier is redundant for instance method declared in an internal extension
108 | internal extension LifecycleState {
109 |
110 |     internal func eventsToState(_ targetState: LifecycleState) throws -> [LifecycleEvent] {
    |     `- warning: 'internal' modifier is redundant for instance method declared in an internal extension
111 |         guard self != targetState else { return [] }
112 |         guard targetState != .initialized else {
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[18/21] Compiling ArchitectureComponents ObserverHandle.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArchitectureComponents/LiveData/Swift/ObserverHandle.swift:36:16: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'ObserverHandle' to 'Hashable' by implementing 'hash(into:)' instead [#DeprecatedDeclaration]
34 |     // MARK: Hashable
35 |
36 |     public var hashValue: Int {
   |                `- warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'ObserverHandle' to 'Hashable' by implementing 'hash(into:)' instead [#DeprecatedDeclaration]
37 |         let result = self.value.hashValue
38 |         return result
/Users/admin/builder/spi-builder-workspace/Sources/ArchitectureComponents/LiveData/Swift/ObserverListController.swift:54:37: warning: generic parameter 'Type' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 17 |
 18 |
 19 | internal class ObserverListController<Type>: ObserverControllerDelegate {
    |                                       `- note: 'Type' previously declared here
 20 |
 21 |     // MARK: Type
    :
 52 |     // MARK: ObserverControllerDelegate
 53 |
 54 |     public func observerDidActivate<Type>(_ observer: ObserverController<Type>) {
    |                                     `- warning: generic parameter 'Type' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 55 |         self.active = self.hasActiveObservers
 56 |     }
/Users/admin/builder/spi-builder-workspace/Sources/ArchitectureComponents/LiveData/Swift/ObserverListController.swift:58:39: warning: generic parameter 'Type' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 17 |
 18 |
 19 | internal class ObserverListController<Type>: ObserverControllerDelegate {
    |                                       `- note: 'Type' previously declared here
 20 |
 21 |     // MARK: Type
    :
 56 |     }
 57 |
 58 |     public func observerDidDeactivate<Type>(_ observer: ObserverController<Type>) {
    |                                       `- warning: generic parameter 'Type' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 59 |         self.active = self.hasActiveObservers
 60 |     }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[19/21] Compiling ArchitectureComponents ObserverListController.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArchitectureComponents/LiveData/Swift/ObserverHandle.swift:36:16: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'ObserverHandle' to 'Hashable' by implementing 'hash(into:)' instead [#DeprecatedDeclaration]
34 |     // MARK: Hashable
35 |
36 |     public var hashValue: Int {
   |                `- warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'ObserverHandle' to 'Hashable' by implementing 'hash(into:)' instead [#DeprecatedDeclaration]
37 |         let result = self.value.hashValue
38 |         return result
/Users/admin/builder/spi-builder-workspace/Sources/ArchitectureComponents/LiveData/Swift/ObserverListController.swift:54:37: warning: generic parameter 'Type' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 17 |
 18 |
 19 | internal class ObserverListController<Type>: ObserverControllerDelegate {
    |                                       `- note: 'Type' previously declared here
 20 |
 21 |     // MARK: Type
    :
 52 |     // MARK: ObserverControllerDelegate
 53 |
 54 |     public func observerDidActivate<Type>(_ observer: ObserverController<Type>) {
    |                                     `- warning: generic parameter 'Type' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 55 |         self.active = self.hasActiveObservers
 56 |     }
/Users/admin/builder/spi-builder-workspace/Sources/ArchitectureComponents/LiveData/Swift/ObserverListController.swift:58:39: warning: generic parameter 'Type' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 17 |
 18 |
 19 | internal class ObserverListController<Type>: ObserverControllerDelegate {
    |                                       `- note: 'Type' previously declared here
 20 |
 21 |     // MARK: Type
    :
 56 |     }
 57 |
 58 |     public func observerDidDeactivate<Type>(_ observer: ObserverController<Type>) {
    |                                       `- warning: generic parameter 'Type' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 59 |         self.active = self.hasActiveObservers
 60 |     }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[20/21] Compiling ArchitectureComponents MediatorLiveData.swift
[21/21] Compiling ArchitectureComponents MutableLiveData.swift
[22/22] Compiling ArchitectureComponents LifecycleViewController.swift
Build complete! (5.18s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "ArchitectureComponents",
  "name" : "ArchitectureComponents",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "ArchitectureComponents",
      "targets" : [
        "ArchitectureComponents"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "ArchitectureComponentsTests",
      "module_type" : "SwiftTarget",
      "name" : "ArchitectureComponentsTests",
      "path" : "Tests/ArchitectureComponentsTests",
      "sources" : [
        "Lifecycle/LifecycleStateTests.swift",
        "LiveData/Helpers/MockLifecycleOwner.swift",
        "LiveData/Helpers/MockLiveDataObserver.swift",
        "LiveData/LiveData_NotificationTests.swift",
        "LiveData/LiveData_ObserverManagementTests.swift",
        "LiveData/MutableLiveData_PostValueTests.swift"
      ],
      "target_dependencies" : [
        "ArchitectureComponents"
      ],
      "type" : "test"
    },
    {
      "c99name" : "ArchitectureComponents",
      "module_type" : "SwiftTarget",
      "name" : "ArchitectureComponents",
      "path" : "Sources/ArchitectureComponents",
      "product_memberships" : [
        "ArchitectureComponents"
      ],
      "sources" : [
        "Lifecycle/DefaultLifecycleObserver.swift",
        "Lifecycle/Lifecycle.swift",
        "Lifecycle/LifecycleObserver.swift",
        "Lifecycle/LifecycleOwner.swift",
        "Lifecycle/LifecycleRegistry.swift",
        "Lifecycle/Swift/Extensions.swift",
        "Lifecycle/Swift/LifecycleError.swift",
        "LiveData/LiveData.swift",
        "LiveData/MediatorLiveData.swift",
        "LiveData/MutableLiveData.swift",
        "LiveData/Swift/LiveDataError.swift",
        "LiveData/Swift/ObserverController.swift",
        "LiveData/Swift/ObserverHandle.swift",
        "LiveData/Swift/ObserverListController.swift",
        "LiveData/Swift/SwitchedLiveData.swift",
        "LiveData/Swift/TransformedLiveData.swift",
        "LiveData/Transformations.swift",
        "UIKit/LifecycleTableViewController.swift",
        "UIKit/LifecycleViewController.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "4.0"
}
Done.