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 Firework with Swift 6.0 for macOS (SPM).

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete

Build Log

========================================
RunAll
========================================
Builder version: 4.40.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/jrsaruo/Firework.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/jrsaruo/Firework
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at a9fd1b4 Merge pull request #42 from jrsaruo/release-3.0.2
Cloned https://github.com/jrsaruo/Firework.git
Revision (git rev-parse @):
a9fd1b49ebe41aa4a5dde44785796d8b258856ef
SUCCESS checkout https://github.com/jrsaruo/Firework.git at main
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $workDir
https://github.com/jrsaruo/Firework.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete
Building for debugging...
[0/3] Write sources
[2/3] Write swift-version-6F35C1178C84523A.txt
[4/37] Emitting module Alamofire
[5/37] Compiling Alamofire ParameterEncoder.swift
[6/37] Compiling Alamofire ParameterEncoding.swift
[7/37] Compiling Alamofire Protected.swift
[8/37] Compiling Alamofire RedirectHandler.swift
[9/40] Compiling Alamofire MultipartUpload.swift
[10/40] Compiling Alamofire NetworkReachabilityManager.swift
[11/40] Compiling Alamofire Notifications.swift
[12/40] Compiling Alamofire OperationQueue+Alamofire.swift
[13/40] Compiling Alamofire CachedResponseHandler.swift
[14/40] Compiling Alamofire Combine.swift
[15/40] Compiling Alamofire Concurrency.swift
[16/40] Compiling Alamofire DispatchQueue+Alamofire.swift
[17/40] Compiling Alamofire AFError.swift
[18/40] Compiling Alamofire Alamofire.swift
[19/40] Compiling Alamofire AlamofireExtended.swift
[20/40] Compiling Alamofire AuthenticationInterceptor.swift
[21/40] Compiling Alamofire Request.swift
[22/40] Compiling Alamofire RequestInterceptor.swift
[23/40] Compiling Alamofire RequestTaskMap.swift
[24/40] Compiling Alamofire Response.swift
[25/40] Compiling Alamofire ResponseSerialization.swift
[26/40] Compiling Alamofire Result+Alamofire.swift
[27/40] Compiling Alamofire RetryPolicy.swift
[28/40] Compiling Alamofire ServerTrustEvaluation.swift
[29/40] Compiling Alamofire Session.swift
[30/40] Compiling Alamofire SessionDelegate.swift
[31/40] Compiling Alamofire StringEncoding+Alamofire.swift
[32/40] Compiling Alamofire URLConvertible+URLRequestConvertible.swift
[33/40] Compiling Alamofire URLEncodedFormEncoder.swift
[34/40] Compiling Alamofire EventMonitor.swift
[35/40] Compiling Alamofire HTTPHeaders.swift
[36/40] Compiling Alamofire HTTPMethod.swift
[37/40] Compiling Alamofire MultipartFormData.swift
[38/40] Compiling Alamofire URLRequest+Alamofire.swift
[39/40] Compiling Alamofire URLSessionConfiguration+Alamofire.swift
[40/40] Compiling Alamofire Validation.swift
[41/44] Emitting module Firework
[42/44] Compiling Firework Endpoint.swift
[43/44] Compiling Firework HTTPClient.swift
[44/44] Compiling Firework HTTPRequest.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Alamofire/Source/HTTPMethod.swift:35:23: warning: static property 'get' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
27 | ///
28 | /// See https://tools.ietf.org/html/rfc7231#section-4.3
29 | public struct HTTPMethod: RawRepresentable, Equatable, Hashable {
   |               `- note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
30 |     /// `CONNECT` method.
31 |     public static let connect = HTTPMethod(rawValue: "CONNECT")
   :
33 |     public static let delete = HTTPMethod(rawValue: "DELETE")
34 |     /// `GET` method.
35 |     public static let get = HTTPMethod(rawValue: "GET")
   |                       |- warning: static property 'get' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'get' 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
36 |     /// `HEAD` method.
37 |     public static let head = HTTPMethod(rawValue: "HEAD")
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Alamofire/Source/HTTPMethod.swift:43:23: warning: static property 'post' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
27 | ///
28 | /// See https://tools.ietf.org/html/rfc7231#section-4.3
29 | public struct HTTPMethod: RawRepresentable, Equatable, Hashable {
   |               `- note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
30 |     /// `CONNECT` method.
31 |     public static let connect = HTTPMethod(rawValue: "CONNECT")
   :
41 |     public static let patch = HTTPMethod(rawValue: "PATCH")
42 |     /// `POST` method.
43 |     public static let post = HTTPMethod(rawValue: "POST")
   |                       |- warning: static property 'post' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'post' 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
44 |     /// `PUT` method.
45 |     public static let put = HTTPMethod(rawValue: "PUT")
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Alamofire/Source/HTTPMethod.swift:45:23: warning: static property 'put' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
27 | ///
28 | /// See https://tools.ietf.org/html/rfc7231#section-4.3
29 | public struct HTTPMethod: RawRepresentable, Equatable, Hashable {
   |               `- note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
30 |     /// `CONNECT` method.
31 |     public static let connect = HTTPMethod(rawValue: "CONNECT")
   :
43 |     public static let post = HTTPMethod(rawValue: "POST")
44 |     /// `PUT` method.
45 |     public static let put = HTTPMethod(rawValue: "PUT")
   |                       |- warning: static property 'put' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'put' 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
46 |     /// `QUERY` method.
47 |     public static let query = HTTPMethod(rawValue: "QUERY")
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Alamofire/Source/HTTPMethod.swift:41:23: warning: static property 'patch' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
27 | ///
28 | /// See https://tools.ietf.org/html/rfc7231#section-4.3
29 | public struct HTTPMethod: RawRepresentable, Equatable, Hashable {
   |               `- note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
30 |     /// `CONNECT` method.
31 |     public static let connect = HTTPMethod(rawValue: "CONNECT")
   :
39 |     public static let options = HTTPMethod(rawValue: "OPTIONS")
40 |     /// `PATCH` method.
41 |     public static let patch = HTTPMethod(rawValue: "PATCH")
   |                       |- warning: static property 'patch' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'patch' 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
42 |     /// `POST` method.
43 |     public static let post = HTTPMethod(rawValue: "POST")
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Alamofire/Source/HTTPMethod.swift:33:23: warning: static property 'delete' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
27 | ///
28 | /// See https://tools.ietf.org/html/rfc7231#section-4.3
29 | public struct HTTPMethod: RawRepresentable, Equatable, Hashable {
   |               `- note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
30 |     /// `CONNECT` method.
31 |     public static let connect = HTTPMethod(rawValue: "CONNECT")
32 |     /// `DELETE` method.
33 |     public static let delete = HTTPMethod(rawValue: "DELETE")
   |                       |- warning: static property 'delete' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'delete' 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
34 |     /// `GET` method.
35 |     public static let get = HTTPMethod(rawValue: "GET")
Build complete! (28.49s)
Fetching https://github.com/Alamofire/Alamofire.git
[1/28780] Fetching alamofire
Fetched https://github.com/Alamofire/Alamofire.git from cache (2.68s)
Computing version for https://github.com/Alamofire/Alamofire.git
Computed https://github.com/Alamofire/Alamofire.git at 5.6.2 (0.71s)
Creating working copy for https://github.com/Alamofire/Alamofire.git
Working copy of https://github.com/Alamofire/Alamofire.git resolved at 5.6.2
Build complete.
{
  "dependencies" : [
    {
      "identity" : "alamofire",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "5.6.2",
            "upper_bound" : "6.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/Alamofire/Alamofire.git"
    }
  ],
  "manifest_display_name" : "Firework",
  "name" : "Firework",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "10.0"
    },
    {
      "name" : "macos",
      "version" : "10.12"
    },
    {
      "name" : "tvos",
      "version" : "10.0"
    },
    {
      "name" : "watchos",
      "version" : "3.0"
    }
  ],
  "products" : [
    {
      "name" : "Firework",
      "targets" : [
        "Firework"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "FireworkTests",
      "module_type" : "SwiftTarget",
      "name" : "FireworkTests",
      "path" : "Tests/FireworkTests",
      "sources" : [
        "EndpointTests.swift",
        "HTTPClientTests.swift",
        "HTTPRequestTests.swift"
      ],
      "target_dependencies" : [
        "Firework"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Firework",
      "module_type" : "SwiftTarget",
      "name" : "Firework",
      "path" : "Sources/Firework",
      "product_dependencies" : [
        "Alamofire"
      ],
      "product_memberships" : [
        "Firework"
      ],
      "sources" : [
        "Endpoint.swift",
        "HTTPClient.swift",
        "HTTPRequest.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.3"
}
Done.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.