Build Information
Successful build of SRNetworkManager, reference 1.0.27 (afd0e6
), with Swift 6.2 (beta) for macOS (SPM) on 26 Aug 2025 11:17:59 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.67.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/siamakrostami/SRNetworkManager.git
Reference: 1.0.27
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/siamakrostami/SRNetworkManager
* tag 1.0.27 -> FETCH_HEAD
HEAD is now at afd0e69 feat: Add comprehensive documentation and enhance library features
Cloned https://github.com/siamakrostami/SRNetworkManager.git
Revision (git rev-parse @):
afd0e69129481f28f99e8e67d4d3df2c04c10464
SUCCESS checkout https://github.com/siamakrostami/SRNetworkManager.git at 1.0.27
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.2
Building package at path: $PWD
https://github.com/siamakrostami/SRNetworkManager.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/19] Compiling SRNetworkManager HeaderHandler.swift
[4/19] Compiling SRNetworkManager URLSessionLogger.swift
[5/20] Compiling SRNetworkManager DefaultRetryHandler.swift
[6/20] Compiling SRNetworkManager RetryHandler.swift
[7/20] Compiling SRNetworkManager APIClient.swift
/Users/admin/builder/spi-builder-workspace/Sources/Client/APIClient.swift:415:25: warning: capture of non-sendable type 'T.Type' in an isolated closure
413 |
414 | return try await withCheckedThrowingContinuation {
415 | [weak self] continuation in
| `- warning: capture of non-sendable type 'T.Type' in an isolated closure
416 | guard let self = self else {
417 | continuation.resume(throwing: NetworkError.unknown)
/Users/admin/builder/spi-builder-workspace/Sources/Client/APIClient.swift:423:45: warning: capture of non-sendable type 'T.Type' in an isolated closure
421 | Task {
422 | do {
423 | let result: T = try await self.makeAsyncRequest(
| `- warning: capture of non-sendable type 'T.Type' in an isolated closure
424 | urlRequest: urlRequest, retryCount: self.retryHandler.numberOfRetries)
425 | continuation.resume(returning: result)
/Users/admin/builder/spi-builder-workspace/Sources/Client/APIClient.swift:415:25: warning: capture of non-sendable type 'T.Type' in an isolated closure
413 |
414 | return try await withCheckedThrowingContinuation {
415 | [weak self] continuation in
| `- warning: capture of non-sendable type 'T.Type' in an isolated closure
416 | guard let self = self else {
417 | continuation.resume(throwing: NetworkError.unknown)
/Users/admin/builder/spi-builder-workspace/Sources/Client/APIClient.swift:502:49: warning: capture of non-sendable type 'T.Type' in an isolated closure
500 |
501 | do {
502 | let result: T = try await makeAsyncRequest(
| `- warning: capture of non-sendable type 'T.Type' in an isolated closure
503 | urlRequest: newUrlRequest, retryCount: retryCount - 1)
504 | continuation.resume(returning: result)
/Users/admin/builder/spi-builder-workspace/Sources/Client/APIClient.swift:480:60: warning: capture of non-sendable type 'T.Type' in an isolated closure
478 | let networkError = error as? NetworkError ?? mapErrorToNetworkError(error)
479 |
480 | return try await withCheckedThrowingContinuation { continuation in
| `- warning: capture of non-sendable type 'T.Type' in an isolated closure
481 | Task {
482 | do {
/Users/admin/builder/spi-builder-workspace/Sources/Client/APIClient.swift:540:25: warning: capture of non-sendable type 'T.Type' in an isolated closure
538 |
539 | return try await withCheckedThrowingContinuation {
540 | [weak self] continuation in
| `- warning: capture of non-sendable type 'T.Type' in an isolated closure
541 | guard let self = self else {
542 | continuation.resume(throwing: NetworkError.unknown)
/Users/admin/builder/spi-builder-workspace/Sources/Client/APIClient.swift:548:45: warning: capture of non-sendable type 'T.Type' in an isolated closure
546 | Task {
547 | do {
548 | let result: T = try await self.makeAsyncUploadRequest(
| `- warning: capture of non-sendable type 'T.Type' in an isolated closure
549 | urlRequest: urlRequest, params: endpoint.params,
550 | withName: withName, data: file,
/Users/admin/builder/spi-builder-workspace/Sources/Client/APIClient.swift:540:25: warning: capture of non-sendable type 'T.Type' in an isolated closure
538 |
539 | return try await withCheckedThrowingContinuation {
540 | [weak self] continuation in
| `- warning: capture of non-sendable type 'T.Type' in an isolated closure
541 | guard let self = self else {
542 | continuation.resume(throwing: NetworkError.unknown)
[8/20] Compiling SRNetworkManager APIVersion.swift
/Users/admin/builder/spi-builder-workspace/Sources/Client/APIClient.swift:415:25: warning: capture of non-sendable type 'T.Type' in an isolated closure
413 |
414 | return try await withCheckedThrowingContinuation {
415 | [weak self] continuation in
| `- warning: capture of non-sendable type 'T.Type' in an isolated closure
416 | guard let self = self else {
417 | continuation.resume(throwing: NetworkError.unknown)
/Users/admin/builder/spi-builder-workspace/Sources/Client/APIClient.swift:423:45: warning: capture of non-sendable type 'T.Type' in an isolated closure
421 | Task {
422 | do {
423 | let result: T = try await self.makeAsyncRequest(
| `- warning: capture of non-sendable type 'T.Type' in an isolated closure
424 | urlRequest: urlRequest, retryCount: self.retryHandler.numberOfRetries)
425 | continuation.resume(returning: result)
/Users/admin/builder/spi-builder-workspace/Sources/Client/APIClient.swift:415:25: warning: capture of non-sendable type 'T.Type' in an isolated closure
413 |
414 | return try await withCheckedThrowingContinuation {
415 | [weak self] continuation in
| `- warning: capture of non-sendable type 'T.Type' in an isolated closure
416 | guard let self = self else {
417 | continuation.resume(throwing: NetworkError.unknown)
/Users/admin/builder/spi-builder-workspace/Sources/Client/APIClient.swift:502:49: warning: capture of non-sendable type 'T.Type' in an isolated closure
500 |
501 | do {
502 | let result: T = try await makeAsyncRequest(
| `- warning: capture of non-sendable type 'T.Type' in an isolated closure
503 | urlRequest: newUrlRequest, retryCount: retryCount - 1)
504 | continuation.resume(returning: result)
/Users/admin/builder/spi-builder-workspace/Sources/Client/APIClient.swift:480:60: warning: capture of non-sendable type 'T.Type' in an isolated closure
478 | let networkError = error as? NetworkError ?? mapErrorToNetworkError(error)
479 |
480 | return try await withCheckedThrowingContinuation { continuation in
| `- warning: capture of non-sendable type 'T.Type' in an isolated closure
481 | Task {
482 | do {
/Users/admin/builder/spi-builder-workspace/Sources/Client/APIClient.swift:540:25: warning: capture of non-sendable type 'T.Type' in an isolated closure
538 |
539 | return try await withCheckedThrowingContinuation {
540 | [weak self] continuation in
| `- warning: capture of non-sendable type 'T.Type' in an isolated closure
541 | guard let self = self else {
542 | continuation.resume(throwing: NetworkError.unknown)
/Users/admin/builder/spi-builder-workspace/Sources/Client/APIClient.swift:548:45: warning: capture of non-sendable type 'T.Type' in an isolated closure
546 | Task {
547 | do {
548 | let result: T = try await self.makeAsyncUploadRequest(
| `- warning: capture of non-sendable type 'T.Type' in an isolated closure
549 | urlRequest: urlRequest, params: endpoint.params,
550 | withName: withName, data: file,
/Users/admin/builder/spi-builder-workspace/Sources/Client/APIClient.swift:540:25: warning: capture of non-sendable type 'T.Type' in an isolated closure
538 |
539 | return try await withCheckedThrowingContinuation {
540 | [weak self] continuation in
| `- warning: capture of non-sendable type 'T.Type' in an isolated closure
541 | guard let self = self else {
542 | continuation.resume(throwing: NetworkError.unknown)
[9/20] Emitting module SRNetworkManager
[10/20] Compiling SRNetworkManager NetworkParameterEncoding.swift
[11/20] Compiling SRNetworkManager NetworkError.swift
[12/20] Compiling SRNetworkManager NetworkMonitor.swift
[13/20] Compiling SRNetworkManager VPNChecking.swift
[14/20] Compiling SRNetworkManager NetworkRouter.swift
[15/20] Compiling SRNetworkManager SendablePromise.swift
[16/20] Compiling SRNetworkManager Data+Extentions.swift
[17/20] Compiling SRNetworkManager MimeTypeDetector.swift
[18/20] Compiling SRNetworkManager Connectivity.swift
[19/20] Compiling SRNetworkManager SRNetworkManager.swift
[20/20] Compiling SRNetworkManager UploadProgressDelegate.swift
Build complete! (4.83s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "SRNetworkManager",
"name" : "SRNetworkManager",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "13.0"
},
{
"name" : "macos",
"version" : "13.0"
},
{
"name" : "tvos",
"version" : "13.0"
},
{
"name" : "watchos",
"version" : "7.0"
}
],
"products" : [
{
"name" : "SRNetworkManager",
"targets" : [
"SRNetworkManager"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"swift_languages_versions" : [
"6",
"5"
],
"targets" : [
{
"c99name" : "SRNetworkManagerTests",
"module_type" : "SwiftTarget",
"name" : "SRNetworkManagerTests",
"path" : "Tests/SRNetworkManagerTests",
"sources" : [
"SRNetworkManagerTests.swift"
],
"target_dependencies" : [
"SRNetworkManager"
],
"type" : "test"
},
{
"c99name" : "SRNetworkManager",
"module_type" : "SwiftTarget",
"name" : "SRNetworkManager",
"path" : "Sources",
"product_memberships" : [
"SRNetworkManager"
],
"sources" : [
"Client/APIClient.swift",
"Client/APIVersion.swift",
"Client/DefaultRetryHandler.swift",
"Client/RetryHandler.swift",
"Client/SendablePromise.swift",
"Data/Data+Extentions.swift",
"Encoding/NetworkParameterEncoding.swift",
"Error/NetworkError.swift",
"HeaderHandler/HeaderHandler.swift",
"Log/URLSessionLogger.swift",
"Mime/MimeTypeDetector.swift",
"Reachability/Connectivity.swift",
"Reachability/NetworkMonitor.swift",
"Reachability/VPNChecking.swift",
"Router/NetworkRouter.swift",
"SRNetworkManager/SRNetworkManager.swift",
"UploadProgress/UploadProgressDelegate.swift"
],
"type" : "library"
}
],
"tools_version" : "6.0"
}
Done.