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 Requestify, reference 1.2.1 (30a69c), with Swift 6.2 (beta) for macOS (SPM) on 22 Jun 2025 03:32:23 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/insub4067/Requestify.git
Reference: 1.2.1
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/insub4067/Requestify
 * tag               1.2.1      -> FETCH_HEAD
HEAD is now at 30a69cd Update Params.swift
Cloned https://github.com/insub4067/Requestify.git
Revision (git rev-parse @):
30a69cdd036797e6db965fd5b6d0b8329f1542f9
SUCCESS checkout https://github.com/insub4067/Requestify.git at 1.2.1
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/insub4067/Requestify.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Building for debugging...
[0/4] Copying PrivacyInfo.xcprivacy
[0/4] Write sources
[3/4] Write swift-version-1EA4D86E10B52AF.txt
[5/44] Emitting module Alamofire
[6/48] Compiling Alamofire HTTPHeaders.swift
[7/48] Compiling Alamofire HTTPMethod.swift
[8/48] Compiling Alamofire Notifications.swift
[9/48] Compiling Alamofire ParameterEncoder.swift
[10/48] Compiling Alamofire ParameterEncoding.swift
[11/48] Compiling Alamofire RequestCompression.swift
[12/48] Compiling Alamofire RequestInterceptor.swift
[13/48] Compiling Alamofire ResponseSerialization.swift
[14/48] Compiling Alamofire RetryPolicy.swift
[15/48] Compiling Alamofire URLRequest+Alamofire.swift
[16/48] Compiling Alamofire URLSessionConfiguration+Alamofire.swift
[17/48] Compiling Alamofire AlamofireExtended.swift
[18/48] Compiling Alamofire AuthenticationInterceptor.swift
[19/48] Compiling Alamofire Alamofire.swift
[20/48] Compiling Alamofire AFError.swift
[21/48] Compiling Alamofire DataRequest.swift
[22/48] Compiling Alamofire DataStreamRequest.swift
[23/48] Compiling Alamofire DownloadRequest.swift
[24/48] Compiling Alamofire DispatchQueue+Alamofire.swift
[25/48] Compiling Alamofire OperationQueue+Alamofire.swift
[26/48] Compiling Alamofire Result+Alamofire.swift
[27/48] Compiling Alamofire StringEncoding+Alamofire.swift
[28/48] Compiling Alamofire CachedResponseHandler.swift
[29/48] Compiling Alamofire Combine.swift
[30/48] Compiling Alamofire Concurrency.swift
[31/48] Compiling Alamofire EventMonitor.swift
[32/48] Compiling Alamofire MultipartFormData.swift
[33/48] Compiling Alamofire MultipartUpload.swift
[34/48] Compiling Alamofire NetworkReachabilityManager.swift
[35/48] Compiling Alamofire RedirectHandler.swift
[36/48] Compiling Alamofire SessionDelegate.swift
[37/48] Compiling Alamofire URLConvertible+URLRequestConvertible.swift
[38/48] Compiling Alamofire UploadRequest.swift
[39/48] Compiling Alamofire WebSocketRequest.swift
[40/48] Compiling Alamofire Protected.swift
[41/48] Compiling Alamofire Request.swift
[42/48] Compiling Alamofire RequestTaskMap.swift
[43/48] Compiling Alamofire Response.swift
[44/48] Compiling Alamofire Session.swift
[45/48] Compiling Alamofire ServerTrustEvaluation.swift
[46/48] Compiling Alamofire URLEncodedFormEncoder.swift
[47/48] Compiling Alamofire Validation.swift
[48/48] Compiling Alamofire resource_bundle_accessor.swift
[49/54] Emitting module Requestify
[50/54] Compiling Requestify printApiLog.swift
[51/54] Compiling Requestify RequestBuilderError.swift
[52/54] Compiling Requestify Requestify.swift
/Users/admin/builder/spi-builder-workspace/Sources/Requestify/Requestify.swift:111:20: warning: capture of 'self' with non-sendable type 'Requestify' in a '@Sendable' closure [#SendableClosureCaptures]
  8 | #endif
  9 |
 10 | public struct Requestify {
    |               `- note: consider making struct 'Requestify' conform to the 'Sendable' protocol
 11 |
 12 |     var urlString: String = ""
    :
109 |             )
110 |             .responseDecodable(of: R.self) { response in
111 |                 if printLog {
    |                    `- warning: capture of 'self' with non-sendable type 'Requestify' in a '@Sendable' closure [#SendableClosureCaptures]
112 |                     printApiLog(response, object: object, printResponse: self.printResponse)
113 |                 }
/Users/admin/builder/spi-builder-workspace/Sources/Requestify/Requestify.swift:112:21: warning: capture of non-sendable type 'R.Type' in an isolated closure
110 |             .responseDecodable(of: R.self) { response in
111 |                 if printLog {
112 |                     printApiLog(response, object: object, printResponse: self.printResponse)
    |                     `- warning: capture of non-sendable type 'R.Type' in an isolated closure
113 |                 }
114 |                 switch response.result {
/Users/admin/builder/spi-builder-workspace/Sources/Requestify/Requestify.swift:102:53: warning: capture of non-sendable type 'R.Type' in an isolated closure
100 |
101 |     @discardableResult func request<R: Codable>(_ expect: R.Type) async throws -> R {
102 |         try await withCheckedThrowingContinuation { continuation in
    |                                                     `- warning: capture of non-sendable type 'R.Type' in an isolated closure
103 |             AF.request(
104 |                 self.urlString,
/Users/admin/builder/spi-builder-workspace/Sources/Requestify/Requestify.swift:134:20: warning: capture of 'self' with non-sendable type 'Requestify' in a '@Sendable' closure [#SendableClosureCaptures]
  8 | #endif
  9 |
 10 | public struct Requestify {
    |               `- note: consider making struct 'Requestify' conform to the 'Sendable' protocol
 11 |
 12 |     var urlString: String = ""
    :
132 |             )
133 |             .response { response in
134 |                 if printLog {
    |                    `- warning: capture of 'self' with non-sendable type 'Requestify' in a '@Sendable' closure [#SendableClosureCaptures]
135 |                     printApiLog(response, object: object, printResponse: self.printResponse)
136 |                 }
/Users/admin/builder/spi-builder-workspace/Sources/Requestify/Requestify.swift:160:20: warning: capture of 'self' with non-sendable type 'Requestify' in a '@Sendable' closure [#SendableClosureCaptures]
  8 | #endif
  9 |
 10 | public struct Requestify {
    |               `- note: consider making struct 'Requestify' conform to the 'Sendable' protocol
 11 |
 12 |     var urlString: String = ""
    :
158 |             )
159 |             .responseDecodable(of: R.self) { response in
160 |                 if printLog {
    |                    `- warning: capture of 'self' with non-sendable type 'Requestify' in a '@Sendable' closure [#SendableClosureCaptures]
161 |                     printApiLog(response, object: object, printResponse: self.printResponse)
162 |                 }
/Users/admin/builder/spi-builder-workspace/Sources/Requestify/Requestify.swift:161:21: warning: capture of non-sendable type 'R.Type' in an isolated closure
159 |             .responseDecodable(of: R.self) { response in
160 |                 if printLog {
161 |                     printApiLog(response, object: object, printResponse: self.printResponse)
    |                     `- warning: capture of non-sendable type 'R.Type' in an isolated closure
162 |                 }
163 |                 switch response.result {
/Users/admin/builder/spi-builder-workspace/Sources/Requestify/Requestify.swift:148:53: warning: capture of non-sendable type 'R.Type' in an isolated closure
146 |
147 |     @discardableResult func upload<R: Codable>(_ expect: R.Type) async throws -> R {
148 |         try await withCheckedThrowingContinuation { continuation in
    |                                                     `- warning: capture of non-sendable type 'R.Type' in an isolated closure
149 |             AF.upload(
150 |                 multipartFormData: { multipartFormData in
/Users/admin/builder/spi-builder-workspace/Sources/Requestify/Requestify.swift:186:20: warning: capture of 'self' with non-sendable type 'Requestify' in a '@Sendable' closure [#SendableClosureCaptures]
  8 | #endif
  9 |
 10 | public struct Requestify {
    |               `- note: consider making struct 'Requestify' conform to the 'Sendable' protocol
 11 |
 12 |     var urlString: String = ""
    :
184 |             )
185 |             .response { response in
186 |                 if printLog {
    |                    `- warning: capture of 'self' with non-sendable type 'Requestify' in a '@Sendable' closure [#SendableClosureCaptures]
187 |                     printApiLog(response, object: object, printResponse: self.printResponse)
188 |                 }
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[53/54] Compiling Requestify Params.swift
[54/54] Compiling Requestify Encodable+.swift
Build complete! (9.76s)
Fetching https://github.com/Alamofire/Alamofire.git
[1/30141] Fetching alamofire
Fetched https://github.com/Alamofire/Alamofire.git from cache (2.67s)
Computing version for https://github.com/Alamofire/Alamofire.git
Computed https://github.com/Alamofire/Alamofire.git at 5.10.2 (3.15s)
Creating working copy for https://github.com/Alamofire/Alamofire.git
Working copy of https://github.com/Alamofire/Alamofire.git resolved at 5.10.2
Build complete.
{
  "dependencies" : [
    {
      "identity" : "alamofire",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "5.4.0",
            "upper_bound" : "6.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/Alamofire/Alamofire.git"
    }
  ],
  "manifest_display_name" : "Requestify",
  "name" : "Requestify",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "tvos",
      "version" : "12.0"
    },
    {
      "name" : "watchos",
      "version" : "4.0"
    }
  ],
  "products" : [
    {
      "name" : "Requestify",
      "targets" : [
        "Requestify"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "RequestifyTests",
      "module_type" : "SwiftTarget",
      "name" : "RequestifyTests",
      "path" : "Tests/RequestifyTests",
      "sources" : [
        "ParamsTests.swift",
        "RequestifyTests.swift"
      ],
      "target_dependencies" : [
        "Requestify"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Requestify",
      "module_type" : "SwiftTarget",
      "name" : "Requestify",
      "path" : "Sources/Requestify",
      "product_dependencies" : [
        "Alamofire"
      ],
      "product_memberships" : [
        "Requestify"
      ],
      "sources" : [
        "Params.swift",
        "Requestify.swift",
        "Utils/Encodable+.swift",
        "Utils/RequestBuilderError.swift",
        "Utils/printApiLog.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.4"
}
Done.