The Swift Package Index logo.Swift Package Index

Build Information

Successful build of JNetworkManager, reference 1.3.4 (349b9b), with Swift 6.0 for macOS (SPM) on 15 Sep 2025 13:43:45 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.2.0.app xcrun swift build --arch arm64

Build Log

========================================
RunAll
========================================
Builder version: 4.67.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/jeetrajput01/JNetworkManager.git
Reference: 1.3.4
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/jeetrajput01/JNetworkManager
 * tag               1.3.4      -> FETCH_HEAD
HEAD is now at 349b9b5 add cURL logging for API requests
Cloned https://github.com/jeetrajput01/JNetworkManager.git
Revision (git rev-parse @):
349b9b5f258c01f7f678abe37796b282433a1cde
SUCCESS checkout https://github.com/jeetrajput01/JNetworkManager.git at 1.3.4
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $PWD
https://github.com/jeetrajput01/JNetworkManager.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.2.0.app xcrun swift build --arch arm64
Building for debugging...
[0/4] Write sources
[1/4] Copying PrivacyInfo.xcprivacy
[1/4] Write sources
[3/4] Write swift-version-5BDAB9E9C0126B9D.txt
[5/44] Emitting module Alamofire
[6/48] Compiling Alamofire DispatchQueue+Alamofire.swift
[7/48] Compiling Alamofire OperationQueue+Alamofire.swift
[8/48] Compiling Alamofire Result+Alamofire.swift
[9/48] Compiling Alamofire StringEncoding+Alamofire.swift
[10/48] Compiling Alamofire HTTPHeaders.swift
[11/48] Compiling Alamofire HTTPMethod.swift
[12/48] Compiling Alamofire Notifications.swift
[13/48] Compiling Alamofire ParameterEncoder.swift
[14/48] Compiling Alamofire ParameterEncoding.swift
[15/48] Compiling Alamofire RequestCompression.swift
[16/48] Compiling Alamofire RequestInterceptor.swift
[17/48] Compiling Alamofire ResponseSerialization.swift
[18/48] Compiling Alamofire RetryPolicy.swift
[19/48] Compiling Alamofire SessionDelegate.swift
[20/48] Compiling Alamofire URLConvertible+URLRequestConvertible.swift
[21/48] Compiling Alamofire UploadRequest.swift
[22/48] Compiling Alamofire WebSocketRequest.swift
[23/48] Compiling Alamofire URLRequest+Alamofire.swift
[24/48] Compiling Alamofire URLSessionConfiguration+Alamofire.swift
[25/48] Compiling Alamofire AlamofireExtended.swift
[26/48] Compiling Alamofire AuthenticationInterceptor.swift
[27/48] Compiling Alamofire CachedResponseHandler.swift
[28/48] Compiling Alamofire Combine.swift
[29/48] Compiling Alamofire Concurrency.swift
[30/48] Compiling Alamofire EventMonitor.swift
[31/48] Compiling Alamofire Alamofire.swift
[32/48] Compiling Alamofire AFError.swift
[33/48] Compiling Alamofire DataRequest.swift
[34/48] Compiling Alamofire DataStreamRequest.swift
[35/48] Compiling Alamofire DownloadRequest.swift
[36/48] Compiling Alamofire MultipartFormData.swift
[37/48] Compiling Alamofire MultipartUpload.swift
[38/48] Compiling Alamofire NetworkReachabilityManager.swift
[39/48] Compiling Alamofire RedirectHandler.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/52] Compiling JNetworkManager CurlGenerator.swift
[50/52] Emitting module JNetworkManager
[51/52] Compiling JNetworkManager JNetworkManager.swift
/Users/admin/builder/spi-builder-workspace/Sources/JNetworkManager/JNetworkManager.swift:100:37: warning: capture of 'progressHandler' with non-sendable type '((Double) -> Void)?' in a `@Sendable` closure
 98 |                             box.request = AF.request(urlRequest)
 99 |                                 .uploadProgress { prog in
100 |                                     progressHandler?(prog.fractionCompleted)
    |                                     |- warning: capture of 'progressHandler' with non-sendable type '((Double) -> Void)?' in a `@Sendable` closure
    |                                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
101 |                                 }
102 |                                 .responseData(queue: .global(qos: .background)) { response in
/Users/admin/builder/spi-builder-workspace/Sources/JNetworkManager/JNetworkManager.swift:110:66: warning: capture of 'parameter' with non-sendable type 'Any?' in a `@Sendable` closure
108 | #if DEBUG
109 |                                             print("Header = \(headers)")
110 |                                             print("parameter = \(parameter ?? [:])")
    |                                                                  `- warning: capture of 'parameter' with non-sendable type 'Any?' in a `@Sendable` closure
111 |                                             print("Request URL = \(url)")
112 |                                             print(responseData.prettyPrintedJSONString ?? "")
/Users/admin/builder/spi-builder-workspace/Sources/JNetworkManager/JNetworkManager.swift:222:33: warning: capture of 'progressHandler' with non-sendable type '((Double) -> Void)?' in a `@Sendable` closure
220 |                             }, with: urlRequest)
221 |                             .uploadProgress { progress in
222 |                                 progressHandler?(progress.fractionCompleted)
    |                                 |- warning: capture of 'progressHandler' with non-sendable type '((Double) -> Void)?' in a `@Sendable` closure
    |                                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
223 |                             }
224 |                             .responseData(queue: .global(qos: .background)) { response in
/Users/admin/builder/spi-builder-workspace/Sources/JNetworkManager/JNetworkManager.swift:235:62: warning: capture of 'parameter' with non-sendable type '[String : Any]?' in a `@Sendable` closure
233 |                                         print("----- cURL Multipart Request -----")
234 |                                         print("Header = \(headers)")
235 |                                         print("parameter = \(parameter ?? [:])")
    |                                                              `- warning: capture of 'parameter' with non-sendable type '[String : Any]?' in a `@Sendable` closure
236 |                                         print("Request URL = \(url)")
237 |                                         print(responseData.prettyPrintedJSONString ?? "")
/Users/admin/builder/spi-builder-workspace/Sources/JNetworkManager/JNetworkManager.swift:346:66: warning: capture of 'parameter' with non-sendable type '[String : Any]?' in a `@Sendable` closure
344 | #if DEBUG
345 |                                             print("Header = \(headers)")
346 |                                             print("parameter = \(parameter ?? [:])")
    |                                                                  `- warning: capture of 'parameter' with non-sendable type '[String : Any]?' in a `@Sendable` closure
347 |                                             print("Request URL = \(url)")
348 |                                             print(responseData.prettyPrintedJSONString ?? "")
/Users/admin/builder/spi-builder-workspace/Sources/JNetworkManager/JNetworkManager.swift:472:29: warning: capture of 'progressHandler' with non-sendable type '((Double) -> Void)?' in a `@Sendable` closure
470 |                         }, with: urlRequest)
471 |                         .uploadProgress { progress in
472 |                             progressHandler?(progress.fractionCompleted)
    |                             |- warning: capture of 'progressHandler' with non-sendable type '((Double) -> Void)?' in a `@Sendable` closure
    |                             `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
473 |                         }
474 |                         .responseData(queue: .global(qos: .background)) { response in
/Users/admin/builder/spi-builder-workspace/Sources/JNetworkManager/JNetworkManager.swift:483:62: warning: capture of 'parameter' with non-sendable type '[String : Any]?' in a `@Sendable` closure
481 |                                         print("----- cURL Multipart Request -----")
482 |                                         print("Header = \(headers)")
483 |                                         print("parameter = \(parameter ?? [:])")
    |                                                              `- warning: capture of 'parameter' with non-sendable type '[String : Any]?' in a `@Sendable` closure
484 |                                         print("Request URL = \(url)")
485 |                                         print(responseData.prettyPrintedJSONString ?? "")
[52/52] Compiling JNetworkManager Extension.swift
Build complete! (13.29s)
Fetching https://github.com/Alamofire/Alamofire.git
[1/30289] Fetching alamofire
Fetched https://github.com/Alamofire/Alamofire.git from cache (4.12s)
Computing version for https://github.com/Alamofire/Alamofire.git
Computed https://github.com/Alamofire/Alamofire.git at 5.10.2 (0.49s)
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.9.1",
            "upper_bound" : "6.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/Alamofire/Alamofire.git"
    }
  ],
  "manifest_display_name" : "JNetworkManager",
  "name" : "JNetworkManager",
  "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" : "JNetworkManager",
      "targets" : [
        "JNetworkManager"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "JNetworkManagerTests",
      "module_type" : "SwiftTarget",
      "name" : "JNetworkManagerTests",
      "path" : "Tests/JNetworkManagerTests",
      "sources" : [
        "JNetworkManagerTests.swift"
      ],
      "target_dependencies" : [
        "JNetworkManager"
      ],
      "type" : "test"
    },
    {
      "c99name" : "JNetworkManager",
      "module_type" : "SwiftTarget",
      "name" : "JNetworkManager",
      "path" : "Sources/JNetworkManager",
      "product_dependencies" : [
        "Alamofire"
      ],
      "product_memberships" : [
        "JNetworkManager"
      ],
      "sources" : [
        "CurlGenerator.swift",
        "Extension.swift",
        "JNetworkManager.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "6.0"
}
Done.