The Swift Package Index logo.Swift Package Index

Build Information

Successful build of tca-kit, reference v1.0.0 (b69e1b), with Swift 6.2 for macOS (SPM) on 15 Sep 2025 08:55:26 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.67.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/ronstorm/tca-kit.git
Reference: v1.0.0
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/ronstorm/tca-kit
 * tag               v1.0.0     -> FETCH_HEAD
HEAD is now at b69e1b0 fix: simplify release script to avoid bash heredoc syntax issues
Cloned https://github.com/ronstorm/tca-kit.git
Revision (git rev-parse @):
b69e1b096324fdcba221acc0c1cb4294440bfdb2
SUCCESS checkout https://github.com/ronstorm/tca-kit.git at v1.0.0
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/ronstorm/tca-kit.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-1EA4D86E10B52AF.txt
[3/11] Compiling TCAKit TCAKit.swift
[4/11] Compiling TCAKit TestStore.swift
/Users/admin/builder/spi-builder-workspace/Sources/TCAKit/Testing/TestStore.swift:106:24: warning: no 'async' operations occur within 'await' expression
104 |
105 |         // Update our current state
106 |         var newState = await store.state
    |                        `- warning: no 'async' operations occur within 'await' expression
107 |         assert(&newState)
108 |
/Users/admin/builder/spi-builder-workspace/Sources/TCAKit/Testing/TestStore.swift:122:31: warning: no 'async' operations occur within 'await' expression
120 |         if !areStatesEqual(previousState, newState) {
121 |             // The assertion modified the state, so we need to verify it matches the actual state
122 |             let actualState = await store.state
    |                               `- warning: no 'async' operations occur within 'await' expression
123 |             if !areStatesEqual(newState, actualState) {
124 |                 fatalError("State assertion failed. Expected: \(newState), Actual: \(actualState)")
/Users/admin/builder/spi-builder-workspace/Sources/TCAKit/Testing/TestStore.swift:149:24: warning: no 'async' operations occur within 'await' expression
147 |
148 |         // Update our current state
149 |         var newState = await store.state
    |                        `- warning: no 'async' operations occur within 'await' expression
150 |         assert(&newState)
151 |
/Users/admin/builder/spi-builder-workspace/Sources/TCAKit/Testing/TestStore.swift:163:27: warning: no 'async' operations occur within 'await' expression
161 |
162 |         // Verify the state matches our assertion
163 |         let actualState = await store.state
    |                           `- warning: no 'async' operations occur within 'await' expression
164 |         if !areStatesEqual(newState, actualState) {
165 |             fatalError("State assertion failed. Expected: \(newState), Actual: \(actualState)")
[5/11] Compiling TCAKit Store.swift
[6/11] Compiling TCAKit Dependencies.swift
[7/11] Compiling TCAKit Reducer.swift
[8/11] Emitting module TCAKit
[9/11] Compiling TCAKit WithStore.swift
[10/11] Compiling TCAKit CombineBridge.swift
/Users/admin/builder/spi-builder-workspace/Sources/TCAKit/Bridges/CombineBridge.swift:191:38: warning: capture of non-sendable type 'S.Type' in an isolated closure; this is an error in the Swift 6 language mode
189 |
190 |         Task { @MainActor in
191 |             let currentState = await store.state
    |                                      `- warning: capture of non-sendable type 'S.Type' in an isolated closure; this is an error in the Swift 6 language mode
192 |             _ = subscriber.receive(currentState)
193 |             subscriber.receive(completion: .finished)
/Users/admin/builder/spi-builder-workspace/Sources/TCAKit/Bridges/CombineBridge.swift:187:10: warning: capture of non-sendable type 'S.Type' in an isolated closure; this is an error in the Swift 6 language mode
185 |     }
186 |
187 |     func request(_ demand: Subscribers.Demand) {
    |          `- warning: capture of non-sendable type 'S.Type' in an isolated closure; this is an error in the Swift 6 language mode
188 |         guard !isCancelled, demand > 0 else { return }
189 |
/Users/admin/builder/spi-builder-workspace/Sources/TCAKit/Bridges/CombineBridge.swift:191:32: warning: no 'async' operations occur within 'await' expression
189 |
190 |         Task { @MainActor in
191 |             let currentState = await store.state
    |                                `- warning: no 'async' operations occur within 'await' expression
192 |             _ = subscriber.receive(currentState)
193 |             subscriber.receive(completion: .finished)
/Users/admin/builder/spi-builder-workspace/Sources/TCAKit/Bridges/CombineBridge.swift:221:38: warning: capture of non-sendable type 'S.Type' in an isolated closure; this is an error in the Swift 6 language mode
219 |         task = Task { @MainActor in
220 |             // Send initial state
221 |             let initialState = await store.state
    |                                      `- warning: capture of non-sendable type 'S.Type' in an isolated closure; this is an error in the Swift 6 language mode
222 |             _ = subscriber.receive(initialState)
223 |
/Users/admin/builder/spi-builder-workspace/Sources/TCAKit/Bridges/CombineBridge.swift:216:10: warning: capture of non-sendable type 'S.Type' in an isolated closure; this is an error in the Swift 6 language mode
214 |     }
215 |
216 |     func request(_ demand: Subscribers.Demand) {
    |          `- warning: capture of non-sendable type 'S.Type' in an isolated closure; this is an error in the Swift 6 language mode
217 |         guard !isCancelled, demand > 0 else { return }
218 |
/Users/admin/builder/spi-builder-workspace/Sources/TCAKit/Bridges/CombineBridge.swift:221:32: warning: no 'async' operations occur within 'await' expression
219 |         task = Task { @MainActor in
220 |             // Send initial state
221 |             let initialState = await store.state
    |                                `- warning: no 'async' operations occur within 'await' expression
222 |             _ = subscriber.receive(initialState)
223 |
/Users/admin/builder/spi-builder-workspace/Sources/TCAKit/Bridges/CombineBridge.swift:271:18: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
269 |     /// - Parameter store: The store to send actions to
270 |     /// - Returns: A cancellable for the subscription
271 |     func send(to store: Store<Output, Output>) -> AnyCancellable {
    |                  `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
272 |         return self
273 |             .sink { action in
[11/11] Compiling TCAKit Effect.swift
Build complete! (8.40s)
Build complete.
{
  "default_localization" : "en",
  "dependencies" : [
  ],
  "manifest_display_name" : "tca-kit",
  "name" : "tca-kit",
  "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" : "TCAKit",
      "targets" : [
        "TCAKit"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "TCAKitTests",
      "module_type" : "SwiftTarget",
      "name" : "TCAKitTests",
      "path" : "Tests/TCAKitTests",
      "sources" : [
        "Bridges/CombineBridgeTests.swift",
        "Core/EffectTests.swift",
        "Core/ReducerTests.swift",
        "Core/StoreTests.swift",
        "DependenciesTests.swift",
        "SwiftUI/WithStoreTests.swift",
        "TCAKitTests.swift",
        "TestHelpers.swift",
        "Testing/TestStoreTests.swift"
      ],
      "target_dependencies" : [
        "TCAKit"
      ],
      "type" : "test"
    },
    {
      "c99name" : "TCAKit",
      "module_type" : "SwiftTarget",
      "name" : "TCAKit",
      "path" : "Sources/TCAKit",
      "product_memberships" : [
        "TCAKit"
      ],
      "sources" : [
        "Bridges/CombineBridge.swift",
        "Core/Effect.swift",
        "Core/Reducer.swift",
        "Core/Store.swift",
        "Dependencies.swift",
        "SwiftUI/WithStore.swift",
        "TCAKit.swift",
        "Testing/TestStore.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
Done.