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 SignalRClient, reference master (655e8b), with Swift 6.2 (beta) for macOS (SPM) on 20 Jun 2025 20:13: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.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/moozzyk/SignalR-Client-Swift.git
Reference: master
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/moozzyk/SignalR-Client-Swift
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at 655e8bd Add HubConnection extension methods for non-void hub methods with client streams
Cloned https://github.com/moozzyk/SignalR-Client-Swift.git
Revision (git rev-parse @):
655e8bde45b4e3fc737c8ced9da242e3a76f3e69
SUCCESS checkout https://github.com/moozzyk/SignalR-Client-Swift.git at master
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/moozzyk/SignalR-Client-Swift.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/31] Emitting module SignalRClient
[4/34] Compiling SignalRClient TransportDelegate.swift
[5/34] Compiling SignalRClient TransportType.swift
[6/34] Compiling SignalRClient WebsocketsTransport.swift
[7/34] Compiling SignalRClient StreamHandle.swift
[8/34] Compiling SignalRClient TransferFormat.swift
[9/34] Compiling SignalRClient Transport.swift
[10/34] Compiling SignalRClient ClientStreamWorker.swift
[11/34] Compiling SignalRClient CodableHelpers.swift
[12/34] Compiling SignalRClient Connection.swift
[13/34] Compiling SignalRClient ConnectionDelegate.swift
[14/34] Compiling SignalRClient HttpClientProtocol.swift
[15/34] Compiling SignalRClient HttpConnection.swift
[16/34] Compiling SignalRClient HttpConnectionOptions.swift
[17/34] Compiling SignalRClient HubProtocol.swift
[18/34] Compiling SignalRClient JSONHubProtocol.swift
[19/34] Compiling SignalRClient Logger.swift
[20/34] Compiling SignalRClient LongPollingTransport.swift
[21/34] Compiling SignalRClient NegotiationResponse.swift
[22/34] Compiling SignalRClient ReconnectPolicy.swift
[23/34] Compiling SignalRClient ReconnectableConnection.swift
/Users/admin/builder/spi-builder-workspace/Sources/SignalRClient/ServerInvocationHandler.swift:40:17: warning: capture of non-sendable type 'T.Type' in an isolated closure
 38 |             callbackQueue.async {
 39 |                 clientStreamWorkers.forEach { $0.stop() }
 40 |                 invocationDidComplete(result, error)
    |                 `- warning: capture of non-sendable type 'T.Type' in an isolated closure
 41 |             }
 42 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SignalRClient/ServerInvocationHandler.swift:31:9: warning: capture of non-sendable type 'T.Type' in an isolated closure
 29 |         logger: Logger, callbackQueue: DispatchQueue, method: String, arguments: [Encodable],
 30 |         clientStreamWorkers: [ClientStreamWorker],
 31 |         invocationDidComplete: @escaping (T?, Error?) -> Void
    |         `- warning: capture of non-sendable type 'T.Type' in an isolated closure
 32 |     ) {
 33 |         self.logger = logger
/Users/admin/builder/spi-builder-workspace/Sources/SignalRClient/ServerInvocationHandler.swift:122:67: warning: capture of non-sendable type 'T.Type' in an isolated closure
120 |         self.arguments = arguments
121 |         self.clientStreamWorkers = clientStreamWorkers
122 |         self.streamItemReceived = { item in callbackQueue.async { streamItemReceived(item) } }
    |                                                                   `- warning: capture of non-sendable type 'T.Type' in an isolated closure
123 |         self.invocationDidComplete = { error in
124 |             callbackQueue.async {
/Users/admin/builder/spi-builder-workspace/Sources/SignalRClient/ServerInvocationHandler.swift:116:9: warning: capture of non-sendable type 'T.Type' in an isolated closure
114 |         logger: Logger, callbackQueue: DispatchQueue, method: String, arguments: [Encodable],
115 |         clientStreamWorkers: [ClientStreamWorker],
116 |         streamItemReceived: @escaping (T) -> Void, invocationDidComplete: @escaping (Error?) -> Void
    |         `- warning: capture of non-sendable type 'T.Type' in an isolated closure
117 |     ) {
118 |         self.logger = logger
[24/34] Compiling SignalRClient ServerInvocationHandler.swift
/Users/admin/builder/spi-builder-workspace/Sources/SignalRClient/ServerInvocationHandler.swift:40:17: warning: capture of non-sendable type 'T.Type' in an isolated closure
 38 |             callbackQueue.async {
 39 |                 clientStreamWorkers.forEach { $0.stop() }
 40 |                 invocationDidComplete(result, error)
    |                 `- warning: capture of non-sendable type 'T.Type' in an isolated closure
 41 |             }
 42 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SignalRClient/ServerInvocationHandler.swift:31:9: warning: capture of non-sendable type 'T.Type' in an isolated closure
 29 |         logger: Logger, callbackQueue: DispatchQueue, method: String, arguments: [Encodable],
 30 |         clientStreamWorkers: [ClientStreamWorker],
 31 |         invocationDidComplete: @escaping (T?, Error?) -> Void
    |         `- warning: capture of non-sendable type 'T.Type' in an isolated closure
 32 |     ) {
 33 |         self.logger = logger
/Users/admin/builder/spi-builder-workspace/Sources/SignalRClient/ServerInvocationHandler.swift:122:67: warning: capture of non-sendable type 'T.Type' in an isolated closure
120 |         self.arguments = arguments
121 |         self.clientStreamWorkers = clientStreamWorkers
122 |         self.streamItemReceived = { item in callbackQueue.async { streamItemReceived(item) } }
    |                                                                   `- warning: capture of non-sendable type 'T.Type' in an isolated closure
123 |         self.invocationDidComplete = { error in
124 |             callbackQueue.async {
/Users/admin/builder/spi-builder-workspace/Sources/SignalRClient/ServerInvocationHandler.swift:116:9: warning: capture of non-sendable type 'T.Type' in an isolated closure
114 |         logger: Logger, callbackQueue: DispatchQueue, method: String, arguments: [Encodable],
115 |         clientStreamWorkers: [ClientStreamWorker],
116 |         streamItemReceived: @escaping (T) -> Void, invocationDidComplete: @escaping (Error?) -> Void
    |         `- warning: capture of non-sendable type 'T.Type' in an isolated closure
117 |     ) {
118 |         self.logger = logger
[25/34] Compiling SignalRClient SignalRError.swift
/Users/admin/builder/spi-builder-workspace/Sources/SignalRClient/ServerInvocationHandler.swift:40:17: warning: capture of non-sendable type 'T.Type' in an isolated closure
 38 |             callbackQueue.async {
 39 |                 clientStreamWorkers.forEach { $0.stop() }
 40 |                 invocationDidComplete(result, error)
    |                 `- warning: capture of non-sendable type 'T.Type' in an isolated closure
 41 |             }
 42 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SignalRClient/ServerInvocationHandler.swift:31:9: warning: capture of non-sendable type 'T.Type' in an isolated closure
 29 |         logger: Logger, callbackQueue: DispatchQueue, method: String, arguments: [Encodable],
 30 |         clientStreamWorkers: [ClientStreamWorker],
 31 |         invocationDidComplete: @escaping (T?, Error?) -> Void
    |         `- warning: capture of non-sendable type 'T.Type' in an isolated closure
 32 |     ) {
 33 |         self.logger = logger
/Users/admin/builder/spi-builder-workspace/Sources/SignalRClient/ServerInvocationHandler.swift:122:67: warning: capture of non-sendable type 'T.Type' in an isolated closure
120 |         self.arguments = arguments
121 |         self.clientStreamWorkers = clientStreamWorkers
122 |         self.streamItemReceived = { item in callbackQueue.async { streamItemReceived(item) } }
    |                                                                   `- warning: capture of non-sendable type 'T.Type' in an isolated closure
123 |         self.invocationDidComplete = { error in
124 |             callbackQueue.async {
/Users/admin/builder/spi-builder-workspace/Sources/SignalRClient/ServerInvocationHandler.swift:116:9: warning: capture of non-sendable type 'T.Type' in an isolated closure
114 |         logger: Logger, callbackQueue: DispatchQueue, method: String, arguments: [Encodable],
115 |         clientStreamWorkers: [ClientStreamWorker],
116 |         streamItemReceived: @escaping (T) -> Void, invocationDidComplete: @escaping (Error?) -> Void
    |         `- warning: capture of non-sendable type 'T.Type' in an isolated closure
117 |     ) {
118 |         self.logger = logger
[26/34] Compiling SignalRClient DefaultHttpClient.swift
[27/34] Compiling SignalRClient DefaultTransportFactory.swift
[28/34] Compiling SignalRClient HandshakeProtocol.swift
[29/34] Compiling SignalRClient HttpResponse.swift
[30/34] Compiling SignalRClient HubConnection.swift
[31/34] Compiling SignalRClient HubConnectionBuilder.swift
[32/34] Compiling SignalRClient HubConnectionDelegate.swift
[33/34] Compiling SignalRClient HubConnectionExtensions.swift
[34/34] Compiling SignalRClient HubConnectionOptions.swift
Build complete! (5.06s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "SignalRClient",
  "name" : "SignalRClient",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "SignalRClient",
      "targets" : [
        "SignalRClient"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "swift_languages_versions" : [
    "4",
    "4.2",
    "5"
  ],
  "targets" : [
    {
      "c99name" : "SignalRClientTests",
      "module_type" : "SwiftTarget",
      "name" : "SignalRClientTests",
      "path" : "Tests/SignalRClientTests",
      "sources" : [
        "ClientStreamWorkerTests.swift",
        "Constants.swift",
        "Fakes.swift",
        "HandshakeProtocolTests.swift",
        "HttpConnectionTests.swift",
        "HubConnectionExtensionsTests.swift",
        "HubConnectionTests.swift",
        "HubProtocolFake.swift",
        "JSONHubProtocolTests.swift",
        "LoggerTests.swift",
        "LongPollingTransportTests.swift",
        "NegotiationResponseTests.swift",
        "ReconnectPolicyTests.swift",
        "ReconnectableConnectionTests.swift",
        "ServerInvocationHandlerTests.swift",
        "TestTransport.swift",
        "TestTransportDelegate.swift",
        "TestUtils.swift",
        "TransportTypeTests.swift",
        "WebsocketsTransportTests.swift"
      ],
      "target_dependencies" : [
        "SignalRClient"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SignalRClient",
      "module_type" : "SwiftTarget",
      "name" : "SignalRClient",
      "path" : "Sources/SignalRClient",
      "product_memberships" : [
        "SignalRClient"
      ],
      "sources" : [
        "ClientStreamWorker.swift",
        "CodableHelpers.swift",
        "Connection.swift",
        "ConnectionDelegate.swift",
        "DefaultHttpClient.swift",
        "DefaultTransportFactory.swift",
        "HandshakeProtocol.swift",
        "HttpClientProtocol.swift",
        "HttpConnection.swift",
        "HttpConnectionOptions.swift",
        "HttpResponse.swift",
        "HubConnection.swift",
        "HubConnectionBuilder.swift",
        "HubConnectionDelegate.swift",
        "HubConnectionExtensions.swift",
        "HubConnectionOptions.swift",
        "HubProtocol.swift",
        "JSONHubProtocol.swift",
        "Logger.swift",
        "LongPollingTransport.swift",
        "NegotiationResponse.swift",
        "ReconnectPolicy.swift",
        "ReconnectableConnection.swift",
        "ServerInvocationHandler.swift",
        "SignalRError.swift",
        "StreamHandle.swift",
        "TransferFormat.swift",
        "Transport.swift",
        "TransportDelegate.swift",
        "TransportType.swift",
        "WebsocketsTransport.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.0"
}
Done.