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 WSPublisher, reference 0.2.0 (84a9b5), with Swift 6.0 for macOS (SPM) on 8 Nov 2024 18:04:31 UTC.

Swift 6 data race errors: 3

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.1.0.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.57.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/edonv/WSPublisher.git
Reference: 0.2.0
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/edonv/WSPublisher
 * tag               0.2.0      -> FETCH_HEAD
HEAD is now at 84a9b5a Update WebSocketPublisher.swift
Cloned https://github.com/edonv/WSPublisher.git
Revision (git rev-parse @):
84a9b5a051633437ebf39d45aa2017377525e502
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/edonv/WSPublisher.git at 0.2.0
Fetching https://github.com/apple/swift-http-types.git
[1/648] Fetching swift-http-types
Fetched https://github.com/apple/swift-http-types.git from cache (0.92s)
Computing version for https://github.com/apple/swift-http-types.git
Computed https://github.com/apple/swift-http-types.git at 1.2.0 (0.65s)
Creating working copy for https://github.com/apple/swift-http-types.git
Working copy of https://github.com/apple/swift-http-types.git resolved at 1.2.0
========================================
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",
  "dependencies": [
    {
      "identity": "wspublisher",
      "name": "WSPublisher",
      "url": "https://github.com/edonv/WSPublisher.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/WSPublisher",
      "dependencies": [
        {
          "identity": "swift-http-types",
          "name": "swift-http-types",
          "url": "https://github.com/apple/swift-http-types.git",
          "version": "1.3.0",
          "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/swift-http-types",
          "dependencies": [
          ]
        }
      ]
    }
  ]
}
Fetching https://github.com/edonv/WSPublisher.git
[1/569] Fetching wspublisher
Fetched https://github.com/edonv/WSPublisher.git from cache (0.76s)
Fetching https://github.com/apple/swift-http-types.git from cache
Fetched https://github.com/apple/swift-http-types.git from cache (0.50s)
Computing version for https://github.com/apple/swift-http-types.git
Computed https://github.com/apple/swift-http-types.git at 1.3.0 (0.03s)
Creating working copy for https://github.com/edonv/WSPublisher.git
Working copy of https://github.com/edonv/WSPublisher.git resolved at 0.2.0 (84a9b5a)
Creating working copy for https://github.com/apple/swift-http-types.git
Working copy of https://github.com/apple/swift-http-types.git resolved at 1.3.0
warning: '.resolve-product-dependencies': dependency 'wspublisher' is not used by any target
Found 1 product dependencies
  - swift-http-types
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $PWD
https://github.com/edonv/WSPublisher.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete
Building for debugging...
[0/4] Write sources
[3/4] Write swift-version--7754E27361AE5C74.txt
[5/12] Emitting module HTTPTypes
[6/12] Compiling HTTPTypes HTTPParsedFields.swift
[7/12] Compiling HTTPTypes HTTPField.swift
[8/12] Compiling HTTPTypes HTTPResponse.swift
[9/12] Compiling HTTPTypes HTTPRequest.swift
[10/12] Compiling HTTPTypes ISOLatin1String.swift
[11/12] Compiling HTTPTypes HTTPFieldName.swift
[12/12] Compiling HTTPTypes HTTPFields.swift
[13/18] Compiling HTTPTypesFoundation URLSession+HTTPTypes.swift
[14/18] Compiling HTTPTypesFoundation URLRequest+HTTPTypes.swift
[15/18] Emitting module HTTPTypesFoundation
[16/18] Compiling HTTPTypesFoundation HTTPTypes+ISOLatin1.swift
[17/18] Compiling HTTPTypesFoundation HTTPRequest+URL.swift
[18/18] Compiling HTTPTypesFoundation URLResponse+HTTPTypes.swift
[19/28] Compiling WSPublisher URLSessionWebSocketTask+Async.swift
[20/28] Compiling WSPublisher URLSessionWebSocketTask+Combine.swift
/Users/admin/builder/spi-builder-workspace/Sources/WSPublisher/URLSessionWebSocketTask/URLSessionWebSocketTask+Combine.swift:21:21: warning: capture of 'promise' with non-sendable type '(Result<Void, any Error>) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
19 |             self.send(message) { error in
20 |                 if let err = error {
21 |                     promise(.failure(err))
   |                     |- warning: capture of 'promise' with non-sendable type '(Result<Void, any Error>) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
   |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
22 |                 } else {
23 |                     promise(.success(()))
/Users/admin/builder/spi-builder-workspace/Sources/WSPublisher/URLSessionWebSocketTask/URLSessionWebSocketTask+Combine.swift:37:21: warning: capture of 'promise' with non-sendable type '(Result<Void, any Error>) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
35 |             self.sendPing { error in
36 |                 if let err = error {
37 |                     promise(.failure(err))
   |                     |- warning: capture of 'promise' with non-sendable type '(Result<Void, any Error>) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
   |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
38 |                 } else {
39 |                     promise(.success(()))
/Users/admin/builder/spi-builder-workspace/Sources/WSPublisher/URLSessionWebSocketTask/URLSessionWebSocketTask+Combine.swift:52:45: warning: passing non-sendable parameter 'promise' to function expecting a @Sendable closure
49 |     /// completing when a message has been received. Fails if an error occurs while waiting to receive the next message.
50 |     public func receiveOnce() -> Future<URLSessionWebSocketTask.Message, Error> {
51 |         return Future { promise in
   |                         `- note: parameter 'promise' is implicitly non-sendable
52 |             self.receive(completionHandler: promise)
   |                                             `- warning: passing non-sendable parameter 'promise' to function expecting a @Sendable closure
53 |         }
54 |     }
[21/29] Compiling WSPublisher WebSocketPublisher+Async.swift
[22/29] Compiling WSPublisher URLSessionWebSocketTaskCloseCode+StringConvertible.swift
/Users/admin/builder/spi-builder-workspace/Sources/WSPublisher/Extensions/URLSessionWebSocketTaskCloseCode+StringConvertible.swift:10:1: warning: extension declares a conformance of imported type 'CloseCode' to imported protocols 'CustomStringConvertible', 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 8 | import Foundation
 9 |
10 | extension URLSessionWebSocketTask.CloseCode: CustomStringConvertible, CustomDebugStringConvertible {
   | |- warning: extension declares a conformance of imported type 'CloseCode' to imported protocols 'CustomStringConvertible', 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
11 |     public var description: String {
12 |         return "\(_caseName) (\(rawValue))"
[23/29] Emitting module WSPublisher
/Users/admin/builder/spi-builder-workspace/Sources/WSPublisher/Extensions/URLSessionWebSocketTaskCloseCode+StringConvertible.swift:10:1: warning: extension declares a conformance of imported type 'CloseCode' to imported protocols 'CustomStringConvertible', 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 8 | import Foundation
 9 |
10 | extension URLSessionWebSocketTask.CloseCode: CustomStringConvertible, CustomDebugStringConvertible {
   | |- warning: extension declares a conformance of imported type 'CloseCode' to imported protocols 'CustomStringConvertible', 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
11 |     public var description: String {
12 |         return "\(_caseName) (\(rawValue))"
/Users/admin/builder/spi-builder-workspace/Sources/WSPublisher/Extensions/URLSessionWebSocketTaskMessage+Hashable.swift:10:1: warning: extension declares a conformance of imported type 'Message' to imported protocols 'Hashable', 'Equatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 8 | import Foundation
 9 |
10 | extension URLSessionWebSocketTask.Message: Hashable {
   | |- warning: extension declares a conformance of imported type 'Message' to imported protocols 'Hashable', 'Equatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
11 |     private var comparisonValue: AnyHashable {
12 |         switch self {
/Users/admin/builder/spi-builder-workspace/Sources/WSPublisher/Extensions/WebSocketPublisher+URLSessionDelegate.swift:14:1: warning: conformance to 'Sendable' must occur in the same source file as class 'WebSocketPublisher'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
12 | import HTTPTypesFoundation
13 |
14 | extension WebSocketPublisher: URLSessionWebSocketDelegate {
   | `- warning: conformance to 'Sendable' must occur in the same source file as class 'WebSocketPublisher'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
15 |     /// This function is called automatically by the delegate system when the WebSocket connection
16 |     /// opens successfully.
/Users/admin/builder/spi-builder-workspace/Sources/WSPublisher/WebSocketPublisher.swift:15:14: warning: non-final class 'WebSocketPublisher' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 13 |
 14 | /// Wraps around a subscribable [`Publisher`](https://developer.apple.com/documentation/combine/publisher) for connection over WebSocket.
 15 | public class WebSocketPublisher: NSObject {
    |              `- warning: non-final class 'WebSocketPublisher' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 16 |     /// The `URLRequest` used for creating an `URLSession` to start a connection.
 17 |     public var urlRequest: URLRequest? = nil
/Users/admin/builder/spi-builder-workspace/Sources/WSPublisher/WebSocketPublisher.swift:17:16: warning: stored property 'urlRequest' of 'Sendable'-conforming class 'WebSocketPublisher' is mutable; this is an error in the Swift 6 language mode
 15 | public class WebSocketPublisher: NSObject {
 16 |     /// The `URLRequest` used for creating an `URLSession` to start a connection.
 17 |     public var urlRequest: URLRequest? = nil
    |                `- warning: stored property 'urlRequest' of 'Sendable'-conforming class 'WebSocketPublisher' is mutable; this is an error in the Swift 6 language mode
 18 |
 19 |     /// The [URLSessionWebSocketTask](https://developer.apple.com/documentation/foundation/urlsessionwebsockettask)
[24/29] Compiling WSPublisher WebSocketPublisher+Event.swift
[25/29] Compiling WSPublisher WebSocketPublisher+Errors.swift
[26/29] Compiling WSPublisher WebSocketPublisher+URLSessionDelegate.swift
/Users/admin/builder/spi-builder-workspace/Sources/WSPublisher/Extensions/WebSocketPublisher+URLSessionDelegate.swift:14:1: warning: conformance to 'Sendable' must occur in the same source file as class 'WebSocketPublisher'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
12 | import HTTPTypesFoundation
13 |
14 | extension WebSocketPublisher: URLSessionWebSocketDelegate {
   | `- warning: conformance to 'Sendable' must occur in the same source file as class 'WebSocketPublisher'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
15 |     /// This function is called automatically by the delegate system when the WebSocket connection
16 |     /// opens successfully.
/Users/admin/builder/spi-builder-workspace/Sources/WSPublisher/WebSocketPublisher.swift:15:14: warning: non-final class 'WebSocketPublisher' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 13 |
 14 | /// Wraps around a subscribable [`Publisher`](https://developer.apple.com/documentation/combine/publisher) for connection over WebSocket.
 15 | public class WebSocketPublisher: NSObject {
    |              `- warning: non-final class 'WebSocketPublisher' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 16 |     /// The `URLRequest` used for creating an `URLSession` to start a connection.
 17 |     public var urlRequest: URLRequest? = nil
/Users/admin/builder/spi-builder-workspace/Sources/WSPublisher/WebSocketPublisher.swift:17:16: warning: stored property 'urlRequest' of 'Sendable'-conforming class 'WebSocketPublisher' is mutable; this is an error in the Swift 6 language mode
 15 | public class WebSocketPublisher: NSObject {
 16 |     /// The `URLRequest` used for creating an `URLSession` to start a connection.
 17 |     public var urlRequest: URLRequest? = nil
    |                `- warning: stored property 'urlRequest' of 'Sendable'-conforming class 'WebSocketPublisher' is mutable; this is an error in the Swift 6 language mode
 18 |
 19 |     /// The [URLSessionWebSocketTask](https://developer.apple.com/documentation/foundation/urlsessionwebsockettask)
[27/29] Compiling WSPublisher WebSocketPublisher.swift
[28/29] Compiling WSPublisher WSPublisher+SwiftUI.swift
[29/29] Compiling WSPublisher URLSessionWebSocketTaskMessage+Hashable.swift
/Users/admin/builder/spi-builder-workspace/Sources/WSPublisher/Extensions/URLSessionWebSocketTaskMessage+Hashable.swift:10:1: warning: extension declares a conformance of imported type 'Message' to imported protocols 'Hashable', 'Equatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 8 | import Foundation
 9 |
10 | extension URLSessionWebSocketTask.Message: Hashable {
   | |- warning: extension declares a conformance of imported type 'Message' to imported protocols 'Hashable', 'Equatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
11 |     private var comparisonValue: AnyHashable {
12 |         switch self {
Build complete! (18.80s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-http-types",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.1.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-http-types.git"
    }
  ],
  "manifest_display_name" : "WSPublisher",
  "name" : "WSPublisher",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    },
    {
      "name" : "watchos",
      "version" : "6.0"
    }
  ],
  "products" : [
    {
      "name" : "WSPublisher",
      "targets" : [
        "WSPublisher"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "WSPublisherTests",
      "module_type" : "SwiftTarget",
      "name" : "WSPublisherTests",
      "path" : "Tests/WSPublisherTests",
      "sources" : [
        "WSPublisherTests.swift"
      ],
      "target_dependencies" : [
        "WSPublisher"
      ],
      "type" : "test"
    },
    {
      "c99name" : "WSPublisher",
      "module_type" : "SwiftTarget",
      "name" : "WSPublisher",
      "path" : "Sources/WSPublisher",
      "product_dependencies" : [
        "HTTPTypes",
        "HTTPTypesFoundation"
      ],
      "product_memberships" : [
        "WSPublisher"
      ],
      "sources" : [
        "Extensions/URLSessionWebSocketTaskCloseCode+StringConvertible.swift",
        "Extensions/URLSessionWebSocketTaskMessage+Hashable.swift",
        "Extensions/WSPublisher+SwiftUI.swift",
        "Extensions/WebSocketPublisher+Async.swift",
        "Extensions/WebSocketPublisher+URLSessionDelegate.swift",
        "Types/WebSocketPublisher+Errors.swift",
        "Types/WebSocketPublisher+Event.swift",
        "URLSessionWebSocketTask/URLSessionWebSocketTask+Async.swift",
        "URLSessionWebSocketTask/URLSessionWebSocketTask+Combine.swift",
        "WebSocketPublisher.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.5"
}
✅  Doc result (pending) reported
========================================
GenerateDocs
========================================
Generating docs at path:  $PWD/.docs/edonv/wspublisher/0.2.0
Repository:               edonv/WSPublisher
Swift version used:       6.0
Target:                   WSPublisher
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/swift-docc-render-artifact/.git/
From https://github.com/swiftlang/swift-docc-render-artifact
 * branch            88815688627177b9716a01ca41da19397bd30e47 -> FETCH_HEAD
HEAD is now at 8881568 Update the artifact
Extracting symbol information for 'WSPublisher'...
Finished extracting symbol information for 'WSPublisher'. (6.88s)
Building documentation for 'WSPublisher'...
warning: Return value documented for instance method returning void
  --> Sources/WSPublisher/Extensions/WebSocketPublisher+Async.swift:29:9-29:65
27 |     /// - Throws: ``WebSocketPublisher/Errors/noActiveConnection`` if there isn't an active connection, or can fail if an
28 |     /// error occurs while sending.
29 +     /// - Returns: `Void`, signalling the message has been sent.
   |         ╰─suggestion: Remove return value documentation
30 |     public func send(_ message: String) async throws {
31 |         try await send(.string(message))
warning: Return value documented for instance method returning void
  --> Sources/WSPublisher/Extensions/WebSocketPublisher+Async.swift:38:9-38:65
36 |     /// - Throws: ``WebSocketPublisher/Errors/noActiveConnection`` if there isn't an active connection, or can fail if an
37 |     /// error occurs while sending.
38 +     /// - Returns: `Void`, signalling the message has been sent.
   |         ╰─suggestion: Remove return value documentation
39 |     public func send(_ message: Data) async throws {
40 |         try await send(.data(message))
warning: Return value documented for instance method returning void
  --> Sources/WSPublisher/Extensions/WebSocketPublisher+Async.swift:46:9-46:62
44 |     /// - Throws: ``WebSocketPublisher/Errors/noActiveConnection`` if there isn't an active connection, or can fail if an
45 |     /// error occurs while sending.
46 +     /// - Returns: `Void`, signalling the ping has been sent.
   |         ╰─suggestion: Remove return value documentation
47 |     public func ping() async throws {
48 |         let task = try confirmConnection()
warning: Return value documented for instance method returning void
  --> Sources/WSPublisher/URLSessionWebSocketTask/URLSessionWebSocketTask+Async.swift:14:9-14:64
12 |     /// in an async function.
13 |     /// - Throws: Fails if an error occurs while sending ping.
14 +     /// - Returns: `Void`, the response pong had been received.
   |         ╰─suggestion: Remove return value documentation
15 |     public func sendPing() async throws {
16 |         try await withCheckedThrowingContinuation { (continuation: CheckedContinuation<Void, Error>) inFinished building documentation for 'WSPublisher' (0.18s)
Generated documentation archive at:
  /Users/admin/builder/spi-builder-workspace/.docs/edonv/wspublisher/0.2.0
Fetching https://github.com/swiftlang/swift-docc-plugin
[1/2038] Fetching swift-docc-plugin
Updating https://github.com/apple/swift-http-types.git
Fetched https://github.com/swiftlang/swift-docc-plugin from cache (1.26s)
Updated https://github.com/apple/swift-http-types.git (0.48s)
Computing version for https://github.com/apple/swift-http-types.git
Computed https://github.com/apple/swift-http-types.git at 1.2.0 (0.64s)
Computing version for https://github.com/swiftlang/swift-docc-plugin
Computed https://github.com/swiftlang/swift-docc-plugin at 1.4.3 (0.63s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3168] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (1.25s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (0.68s)
Creating working copy for https://github.com/swiftlang/swift-docc-plugin
Working copy of https://github.com/swiftlang/swift-docc-plugin resolved at 1.4.3
Creating working copy for https://github.com/swiftlang/swift-docc-symbolkit
Working copy of https://github.com/swiftlang/swift-docc-symbolkit resolved at 1.0.0
Building for debugging...
[0/8] Write sources
[3/8] Write snippet-extract-tool-entitlement.plist
[4/8] Write swift-version--7754E27361AE5C74.txt
[6/53] Compiling SymbolKit Mixin+Equals.swift
[7/53] Compiling SymbolKit Mixin+Hash.swift
[8/53] Compiling SymbolKit Mixin.swift
[9/53] Compiling SymbolKit LineList.swift
[10/53] Compiling SymbolKit Position.swift
[11/57] Compiling SymbolKit DeclarationFragments.swift
[12/57] Compiling SymbolKit Fragment.swift
[13/57] Compiling SymbolKit FragmentKind.swift
[14/57] Compiling SymbolKit FunctionParameter.swift
[15/57] Compiling SymbolKit FunctionSignature.swift
[16/57] Compiling SymbolKit Identifier.swift
[17/57] Compiling SymbolKit KindIdentifier.swift
[18/57] Compiling SymbolKit Location.swift
[19/57] Compiling SymbolKit Mutability.swift
[20/57] Compiling SymbolKit SemanticVersion.swift
[21/57] Compiling SymbolKit AccessControl.swift
[22/57] Compiling SymbolKit Availability.swift
[23/57] Compiling SymbolKit AvailabilityItem.swift
[24/57] Compiling SymbolKit Domain.swift
[25/57] Compiling SymbolKit Names.swift
[26/57] Compiling SymbolKit SPI.swift
[27/57] Compiling SymbolKit Snippet.swift
[28/57] Compiling SymbolKit Extension.swift
[29/57] Emitting module SymbolKit
[30/57] Compiling SymbolKit SourceRange.swift
[31/57] Compiling SymbolKit Metadata.swift
[32/57] Compiling SymbolKit Module.swift
[33/57] Compiling SymbolKit OperatingSystem.swift
[34/57] Compiling SymbolKit Platform.swift
[35/57] Compiling SymbolKit GenericConstraint.swift
[36/57] Compiling SymbolKit GenericParameter.swift
[37/57] Compiling SymbolKit Generics.swift
[38/57] Compiling SymbolKit Namespace.swift
[39/57] Compiling SymbolKit Relationship.swift
[40/57] Compiling SymbolKit RelationshipKind.swift
[41/57] Compiling SymbolKit SourceOrigin.swift
[42/57] Compiling SymbolKit GenericConstraints.swift
[43/57] Compiling SymbolKit Swift.swift
[44/57] Compiling SymbolKit Symbol.swift
[45/57] Compiling SymbolKit SymbolKind.swift
[46/57] Compiling SymbolKit SymbolGraph.swift
[47/57] Compiling SymbolKit GraphCollector.swift
[48/57] Compiling SymbolKit UnifiedSymbol+Encodable.swift
[49/57] Compiling SymbolKit UnifiedSymbol.swift
[50/57] Compiling SymbolKit UnifiedSymbolGraph+Encodable.swift
[51/57] Compiling SymbolKit UnifiedSymbolGraph.swift
[52/57] Compiling Snippets SnippetParser.swift
[53/57] Emitting module Snippets
[54/57] Compiling Snippets Snippet.swift
[55/61] Compiling snippet_extract URL+Status.swift
[56/61] Compiling snippet_extract SymbolGraph+Snippet.swift
[57/61] Compiling snippet_extract SnippetBuildCommand.swift
[58/61] Emitting module snippet_extract
[58/61] Write Objects.LinkFileList
[59/61] Linking snippet-extract-tool
[60/61] Applying snippet-extract-tool
Build of product 'snippet-extract' complete! (4.68s)
Building for debugging...
[0/1] Write swift-version--7754E27361AE5C74.txt
[2/9] Compiling HTTPTypes ISOLatin1String.swift
[3/9] Compiling HTTPTypes HTTPResponse.swift
[4/9] Compiling HTTPTypes HTTPFieldName.swift
[5/9] Compiling HTTPTypes HTTPRequest.swift
[6/9] Compiling HTTPTypes HTTPParsedFields.swift
[7/9] Emitting module HTTPTypes
[8/9] Compiling HTTPTypes HTTPField.swift
[9/9] Compiling HTTPTypes HTTPFields.swift
[10/15] Compiling HTTPTypesFoundation URLSession+HTTPTypes.swift
[11/15] Compiling HTTPTypesFoundation URLResponse+HTTPTypes.swift
[12/15] Compiling HTTPTypesFoundation HTTPTypes+ISOLatin1.swift
[13/15] Compiling HTTPTypesFoundation URLRequest+HTTPTypes.swift
[14/15] Emitting module HTTPTypesFoundation
[15/15] Compiling HTTPTypesFoundation HTTPRequest+URL.swift
[16/25] Compiling WSPublisher URLSessionWebSocketTask+Combine.swift
[17/26] Compiling WSPublisher URLSessionWebSocketTask+Async.swift
[18/26] Compiling WSPublisher WebSocketPublisher+Errors.swift
[19/26] Compiling WSPublisher WebSocketPublisher+URLSessionDelegate.swift
[20/26] Compiling WSPublisher WebSocketPublisher+Async.swift
[21/26] Emitting module WSPublisher
/Users/admin/builder/spi-builder-workspace/Sources/WSPublisher/Extensions/URLSessionWebSocketTaskCloseCode+StringConvertible.swift:10:1: warning: extension declares a conformance of imported type 'CloseCode' to imported protocols 'CustomStringConvertible', 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 8 | import Foundation
 9 |
10 | extension URLSessionWebSocketTask.CloseCode: CustomStringConvertible, CustomDebugStringConvertible {
   | |- warning: extension declares a conformance of imported type 'CloseCode' to imported protocols 'CustomStringConvertible', 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
11 |     public var description: String {
12 |         return "\(_caseName) (\(rawValue))"
/Users/admin/builder/spi-builder-workspace/Sources/WSPublisher/Extensions/URLSessionWebSocketTaskMessage+Hashable.swift:10:1: warning: extension declares a conformance of imported type 'Message' to imported protocols 'Hashable', 'Equatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 8 | import Foundation
 9 |
10 | extension URLSessionWebSocketTask.Message: Hashable {
   | |- warning: extension declares a conformance of imported type 'Message' to imported protocols 'Hashable', 'Equatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
11 |     private var comparisonValue: AnyHashable {
12 |         switch self {
[22/26] Compiling WSPublisher URLSessionWebSocketTaskCloseCode+StringConvertible.swift
/Users/admin/builder/spi-builder-workspace/Sources/WSPublisher/Extensions/URLSessionWebSocketTaskCloseCode+StringConvertible.swift:10:1: warning: extension declares a conformance of imported type 'CloseCode' to imported protocols 'CustomStringConvertible', 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 8 | import Foundation
 9 |
10 | extension URLSessionWebSocketTask.CloseCode: CustomStringConvertible, CustomDebugStringConvertible {
   | |- warning: extension declares a conformance of imported type 'CloseCode' to imported protocols 'CustomStringConvertible', 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
11 |     public var description: String {
12 |         return "\(_caseName) (\(rawValue))"
[23/26] Compiling WSPublisher WebSocketPublisher+Event.swift
[24/26] Compiling WSPublisher URLSessionWebSocketTaskMessage+Hashable.swift
/Users/admin/builder/spi-builder-workspace/Sources/WSPublisher/Extensions/URLSessionWebSocketTaskMessage+Hashable.swift:10:1: warning: extension declares a conformance of imported type 'Message' to imported protocols 'Hashable', 'Equatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 8 | import Foundation
 9 |
10 | extension URLSessionWebSocketTask.Message: Hashable {
   | |- warning: extension declares a conformance of imported type 'Message' to imported protocols 'Hashable', 'Equatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
11 |     private var comparisonValue: AnyHashable {
12 |         switch self {
[25/26] Compiling WSPublisher WSPublisher+SwiftUI.swift
[26/26] Compiling WSPublisher WebSocketPublisher.swift
Build of target: 'WSPublisher' complete! (2.46s)
     216
3	/Users/admin/builder/spi-builder-workspace/.docs/edonv/wspublisher/0.2.0
✅  Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/edonv/wspublisher/0.2.0
File count: 216
Doc size:   3.0MB
Preparing doc bundle ...
Uploading prod-edonv-wspublisher-0.2.0-e0e550dc.zip to s3://spi-docs-inbox/prod-edonv-wspublisher-0.2.0-e0e550dc.zip
Copying... [12%]
Copying... [24%]
Copying... [37%]
Copying... [49%]
Copying... [61%]
Copying... [73%]
Copying... [86%]
Copying... [98%]
Copying... [100%]
Done.