Build Information
Successful build of OAuthSwiftAlamofire, reference master (460d13), with Swift 6.2 for macOS (SPM) on 17 Jun 2025 14:40:57 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64Build Log
========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/OAuthSwift/OAuthSwiftAlamofire.git
Reference: master
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/OAuthSwift/OAuthSwiftAlamofire
* branch master -> FETCH_HEAD
* [new branch] master -> origin/master
HEAD is now at 460d135 Update README.md
Cloned https://github.com/OAuthSwift/OAuthSwiftAlamofire.git
Revision (git rev-parse @):
460d13516b2bb7e85e735b06a2f46045a5b30d79
SUCCESS checkout https://github.com/OAuthSwift/OAuthSwiftAlamofire.git at master
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.2
Building package at path: $PWD
https://github.com/OAuthSwift/OAuthSwiftAlamofire.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Building for debugging...
[0/5] Write sources
[0/5] Copying PrivacyInfo.xcprivacy
[1/5] Write sources
[4/5] Write swift-version-1EA4D86E10B52AF.txt
[6/74] Compiling Alamofire DispatchQueue+Alamofire.swift
[7/74] Compiling Alamofire OperationQueue+Alamofire.swift
[8/74] Compiling Alamofire Result+Alamofire.swift
[9/74] Compiling Alamofire StringEncoding+Alamofire.swift
[10/78] Compiling Alamofire SessionDelegate.swift
[11/78] Compiling Alamofire URLConvertible+URLRequestConvertible.swift
[12/78] Compiling Alamofire UploadRequest.swift
[13/78] Compiling Alamofire WebSocketRequest.swift
[14/78] Compiling Alamofire RequestCompression.swift
[15/78] Compiling Alamofire RequestInterceptor.swift
[16/78] Compiling Alamofire ResponseSerialization.swift
[17/78] Compiling Alamofire RetryPolicy.swift
[18/78] Compiling Alamofire HTTPHeaders.swift
[19/78] Compiling Alamofire HTTPMethod.swift
[20/78] Compiling Alamofire Notifications.swift
[21/78] Compiling Alamofire ParameterEncoder.swift
[22/78] Compiling Alamofire ParameterEncoding.swift
[23/78] Compiling Alamofire Protected.swift
[24/78] Compiling Alamofire Request.swift
[25/78] Compiling Alamofire RequestTaskMap.swift
[26/78] Compiling Alamofire Response.swift
[27/78] Compiling Alamofire Session.swift
[28/78] Compiling Alamofire MultipartFormData.swift
[29/78] Compiling Alamofire MultipartUpload.swift
[30/78] Compiling Alamofire NetworkReachabilityManager.swift
[31/78] Compiling Alamofire RedirectHandler.swift
[32/78] Compiling Alamofire URLRequest+Alamofire.swift
[33/78] Compiling Alamofire URLSessionConfiguration+Alamofire.swift
[34/78] Compiling Alamofire AlamofireExtended.swift
[35/78] Compiling Alamofire AuthenticationInterceptor.swift
[36/78] Compiling Alamofire CachedResponseHandler.swift
[37/78] Compiling Alamofire Combine.swift
[38/78] Compiling Alamofire Concurrency.swift
[39/78] Compiling Alamofire EventMonitor.swift
[40/78] Emitting module Alamofire
[41/78] Compiling Alamofire Alamofire.swift
[42/78] Compiling Alamofire AFError.swift
[43/78] Compiling Alamofire DataRequest.swift
[44/78] Compiling Alamofire DataStreamRequest.swift
[45/78] Compiling Alamofire DownloadRequest.swift
[46/78] Compiling Alamofire ServerTrustEvaluation.swift
[47/78] Compiling Alamofire URLEncodedFormEncoder.swift
[48/78] Compiling Alamofire Validation.swift
[49/78] Compiling Alamofire resource_bundle_accessor.swift
[50/78] Emitting module OAuthSwift
[58/81] Compiling OAuthSwift URL+OAuthSwift.swift
[59/81] Compiling OAuthSwift URLConvertible.swift
[60/81] Compiling OAuthSwift Utils.swift
[82/84] Emitting module OAuthSwiftAlamofire
/Users/admin/builder/spi-builder-workspace/Sources/OAuthSwiftRequestInterceptor.swift:14:12: warning: non-final class 'OAuthSwiftRequestInterceptor' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
12 |
13 | /// Add authentification headers from OAuthSwift to Alamofire request
14 | open class OAuthSwiftRequestInterceptor: RequestInterceptor {
| `- warning: non-final class 'OAuthSwiftRequestInterceptor' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
15 |
16 | fileprivate let oauthSwift: OAuthSwift
/Users/admin/builder/spi-builder-workspace/Sources/OAuthSwiftRequestInterceptor.swift:16:21: warning: stored property 'oauthSwift' of 'Sendable'-conforming class 'OAuthSwiftRequestInterceptor' has non-sendable type 'OAuthSwift'; this is an error in the Swift 6 language mode
14 | open class OAuthSwiftRequestInterceptor: RequestInterceptor {
15 |
16 | fileprivate let oauthSwift: OAuthSwift
| `- warning: stored property 'oauthSwift' of 'Sendable'-conforming class 'OAuthSwiftRequestInterceptor' has non-sendable type 'OAuthSwift'; this is an error in the Swift 6 language mode
17 | public var paramsLocation: OAuthSwiftHTTPRequest.ParamsLocation = .authorizationHeader
18 | public var dataEncoding: String.Encoding = .utf8
/Users/admin/builder/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwift.swift:11:12: note: class 'OAuthSwift' does not conform to the 'Sendable' protocol
9 | import Foundation
10 |
11 | open class OAuthSwift: NSObject, OAuthSwiftRequestHandle {
| `- note: class 'OAuthSwift' does not conform to the 'Sendable' protocol
12 |
13 | // MARK: Properties
/Users/admin/builder/spi-builder-workspace/Sources/OAuthSwiftRequestInterceptor.swift:11:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'OAuthSwift'
9 | import Foundation
10 | import Alamofire
11 | import OAuthSwift
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'OAuthSwift'
12 |
13 | /// Add authentification headers from OAuthSwift to Alamofire request
/Users/admin/builder/spi-builder-workspace/Sources/OAuthSwiftRequestInterceptor.swift:17:16: warning: stored property 'paramsLocation' of 'Sendable'-conforming class 'OAuthSwiftRequestInterceptor' is mutable; this is an error in the Swift 6 language mode
15 |
16 | fileprivate let oauthSwift: OAuthSwift
17 | public var paramsLocation: OAuthSwiftHTTPRequest.ParamsLocation = .authorizationHeader
| `- warning: stored property 'paramsLocation' of 'Sendable'-conforming class 'OAuthSwiftRequestInterceptor' is mutable; this is an error in the Swift 6 language mode
18 | public var dataEncoding: String.Encoding = .utf8
19 | public var retryLimit = 1
/Users/admin/builder/spi-builder-workspace/Sources/OAuthSwiftRequestInterceptor.swift:47:12: warning: non-final class 'OAuthSwift2RequestInterceptor' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
45 | }
46 |
47 | open class OAuthSwift2RequestInterceptor: OAuthSwiftRequestInterceptor {
| `- warning: non-final class 'OAuthSwift2RequestInterceptor' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
48 |
49 | public init(_ oauthSwift: OAuth2Swift) {
/Users/admin/builder/spi-builder-workspace/Sources/OAuthSwiftRequestInterceptor.swift:56:17: warning: stored property 'isRefreshing' of 'Sendable'-conforming class 'OAuthSwift2RequestInterceptor' is mutable; this is an error in the Swift 6 language mode
54 |
55 | private let lock = NSLock() // lock required to manage requestToRetry access
56 | private var isRefreshing = false
| `- warning: stored property 'isRefreshing' of 'Sendable'-conforming class 'OAuthSwift2RequestInterceptor' is mutable; this is an error in the Swift 6 language mode
57 |
58 | open override func retry(_ request: Request, for session: Session, dueTo error: Error, completion: @escaping (RetryResult) -> Void) {
/Users/admin/builder/spi-builder-workspace/Sources/OAuthSwiftRequestInterceptor.swift:117:5: warning: non-'@objc' property declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
115 |
116 | extension OAuth1Swift {
117 | open var requestInterceptor: OAuthSwiftRequestInterceptor {
| `- warning: non-'@objc' property declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
118 | return OAuthSwiftRequestInterceptor(self)
119 | }
/Users/admin/builder/spi-builder-workspace/Sources/OAuthSwiftRequestInterceptor.swift:125:5: warning: non-'@objc' property declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
123 | extension OAuth2Swift {
124 |
125 | open var requestInterceptor: OAuthSwift2RequestInterceptor {
| `- warning: non-'@objc' property declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
126 | return OAuthSwift2RequestInterceptor(self)
127 | }
[83/84] Compiling OAuthSwiftAlamofire HTTPMethod.swift
[84/84] Compiling OAuthSwiftAlamofire OAuthSwiftRequestInterceptor.swift
/Users/admin/builder/spi-builder-workspace/Sources/OAuthSwiftRequestInterceptor.swift:14:12: warning: non-final class 'OAuthSwiftRequestInterceptor' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
12 |
13 | /// Add authentification headers from OAuthSwift to Alamofire request
14 | open class OAuthSwiftRequestInterceptor: RequestInterceptor {
| `- warning: non-final class 'OAuthSwiftRequestInterceptor' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
15 |
16 | fileprivate let oauthSwift: OAuthSwift
/Users/admin/builder/spi-builder-workspace/Sources/OAuthSwiftRequestInterceptor.swift:16:21: warning: stored property 'oauthSwift' of 'Sendable'-conforming class 'OAuthSwiftRequestInterceptor' has non-sendable type 'OAuthSwift'; this is an error in the Swift 6 language mode
14 | open class OAuthSwiftRequestInterceptor: RequestInterceptor {
15 |
16 | fileprivate let oauthSwift: OAuthSwift
| `- warning: stored property 'oauthSwift' of 'Sendable'-conforming class 'OAuthSwiftRequestInterceptor' has non-sendable type 'OAuthSwift'; this is an error in the Swift 6 language mode
17 | public var paramsLocation: OAuthSwiftHTTPRequest.ParamsLocation = .authorizationHeader
18 | public var dataEncoding: String.Encoding = .utf8
/Users/admin/builder/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwift.swift:11:12: note: class 'OAuthSwift' does not conform to the 'Sendable' protocol
9 | import Foundation
10 |
11 | open class OAuthSwift: NSObject, OAuthSwiftRequestHandle {
| `- note: class 'OAuthSwift' does not conform to the 'Sendable' protocol
12 |
13 | // MARK: Properties
/Users/admin/builder/spi-builder-workspace/Sources/OAuthSwiftRequestInterceptor.swift:11:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'OAuthSwift'
9 | import Foundation
10 | import Alamofire
11 | import OAuthSwift
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'OAuthSwift'
12 |
13 | /// Add authentification headers from OAuthSwift to Alamofire request
/Users/admin/builder/spi-builder-workspace/Sources/OAuthSwiftRequestInterceptor.swift:17:16: warning: stored property 'paramsLocation' of 'Sendable'-conforming class 'OAuthSwiftRequestInterceptor' is mutable; this is an error in the Swift 6 language mode
15 |
16 | fileprivate let oauthSwift: OAuthSwift
17 | public var paramsLocation: OAuthSwiftHTTPRequest.ParamsLocation = .authorizationHeader
| `- warning: stored property 'paramsLocation' of 'Sendable'-conforming class 'OAuthSwiftRequestInterceptor' is mutable; this is an error in the Swift 6 language mode
18 | public var dataEncoding: String.Encoding = .utf8
19 | public var retryLimit = 1
/Users/admin/builder/spi-builder-workspace/Sources/OAuthSwiftRequestInterceptor.swift:47:12: warning: non-final class 'OAuthSwift2RequestInterceptor' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
45 | }
46 |
47 | open class OAuthSwift2RequestInterceptor: OAuthSwiftRequestInterceptor {
| `- warning: non-final class 'OAuthSwift2RequestInterceptor' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
48 |
49 | public init(_ oauthSwift: OAuth2Swift) {
/Users/admin/builder/spi-builder-workspace/Sources/OAuthSwiftRequestInterceptor.swift:56:17: warning: stored property 'isRefreshing' of 'Sendable'-conforming class 'OAuthSwift2RequestInterceptor' is mutable; this is an error in the Swift 6 language mode
54 |
55 | private let lock = NSLock() // lock required to manage requestToRetry access
56 | private var isRefreshing = false
| `- warning: stored property 'isRefreshing' of 'Sendable'-conforming class 'OAuthSwift2RequestInterceptor' is mutable; this is an error in the Swift 6 language mode
57 |
58 | open override func retry(_ request: Request, for session: Session, dueTo error: Error, completion: @escaping (RetryResult) -> Void) {
/Users/admin/builder/spi-builder-workspace/Sources/OAuthSwiftRequestInterceptor.swift:117:5: warning: non-'@objc' property declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
115 |
116 | extension OAuth1Swift {
117 | open var requestInterceptor: OAuthSwiftRequestInterceptor {
| `- warning: non-'@objc' property declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
118 | return OAuthSwiftRequestInterceptor(self)
119 | }
/Users/admin/builder/spi-builder-workspace/Sources/OAuthSwiftRequestInterceptor.swift:125:5: warning: non-'@objc' property declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
123 | extension OAuth2Swift {
124 |
125 | open var requestInterceptor: OAuthSwift2RequestInterceptor {
| `- warning: non-'@objc' property declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
126 | return OAuthSwift2RequestInterceptor(self)
127 | }
Build complete! (19.45s)
Fetching https://github.com/Alamofire/Alamofire.git
Fetching https://github.com/OAuthSwift/OAuthSwift.git
[1/5134] Fetching oauthswift
[772/35275] Fetching oauthswift, alamofire
Fetched https://github.com/Alamofire/Alamofire.git from cache (2.65s)
Fetched https://github.com/OAuthSwift/OAuthSwift.git from cache (2.65s)
Computing version for https://github.com/OAuthSwift/OAuthSwift.git
Computed https://github.com/OAuthSwift/OAuthSwift.git at 2.2.0 (3.19s)
Fetching https://github.com/httpswift/swifter.git
Fetching https://github.com/tid-kijyun/Kanna.git
Fetching https://github.com/phimage/Erik.git
[1/642] Fetching erik
[21/2999] Fetching erik, kanna
[1161/9049] Fetching erik, kanna, swifter
Fetched https://github.com/tid-kijyun/Kanna.git from cache (0.95s)
[2276/6692] Fetching erik, swifter
Fetched https://github.com/phimage/Erik.git from cache (1.55s)
Fetched https://github.com/httpswift/swifter.git from cache (1.55s)
Computing version for https://github.com/httpswift/swifter.git
Computed https://github.com/httpswift/swifter.git at 1.5.0 (2.10s)
Computing version for https://github.com/phimage/Erik.git
Computed https://github.com/phimage/Erik.git at 5.1.0 (0.51s)
Fetching https://github.com/nvzqz/FileKit.git
Fetching https://github.com/Thomvis/BrightFutures.git
[1/4067] Fetching brightfutures
[42/7190] Fetching brightfutures, filekit
Fetched https://github.com/nvzqz/FileKit.git from cache (1.20s)
[3730/4067] Fetching brightfutures
Fetched https://github.com/Thomvis/BrightFutures.git from cache (1.72s)
Computing version for https://github.com/nvzqz/FileKit.git
Computed https://github.com/nvzqz/FileKit.git at 6.1.0 (2.25s)
Computing version for https://github.com/Thomvis/BrightFutures.git
Computed https://github.com/Thomvis/BrightFutures.git at 8.2.0 (0.51s)
Computing version for https://github.com/tid-kijyun/Kanna.git
Computed https://github.com/tid-kijyun/Kanna.git at 5.3.0 (0.53s)
Computing version for https://github.com/Alamofire/Alamofire.git
Computed https://github.com/Alamofire/Alamofire.git at 5.10.2 (0.44s)
Creating working copy for https://github.com/httpswift/swifter.git
Working copy of https://github.com/httpswift/swifter.git resolved at 1.5.0
Creating working copy for https://github.com/Alamofire/Alamofire.git
Working copy of https://github.com/Alamofire/Alamofire.git resolved at 5.10.2
Creating working copy for https://github.com/tid-kijyun/Kanna.git
Working copy of https://github.com/tid-kijyun/Kanna.git resolved at 5.3.0
Creating working copy for https://github.com/phimage/Erik.git
Working copy of https://github.com/phimage/Erik.git resolved at 5.1.0
Creating working copy for https://github.com/OAuthSwift/OAuthSwift.git
Working copy of https://github.com/OAuthSwift/OAuthSwift.git resolved at 2.2.0
Creating working copy for https://github.com/Thomvis/BrightFutures.git
Working copy of https://github.com/Thomvis/BrightFutures.git resolved at 8.2.0
Creating working copy for https://github.com/nvzqz/FileKit.git
Working copy of https://github.com/nvzqz/FileKit.git resolved at 6.1.0
Build complete.
{
"dependencies" : [
{
"identity" : "oauthswift",
"requirement" : {
"range" : [
{
"lower_bound" : "2.1.0",
"upper_bound" : "3.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/OAuthSwift/OAuthSwift.git"
},
{
"identity" : "alamofire",
"requirement" : {
"range" : [
{
"lower_bound" : "5.0.0",
"upper_bound" : "6.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/Alamofire/Alamofire.git"
}
],
"manifest_display_name" : "OAuthSwiftAlamofire",
"name" : "OAuthSwiftAlamofire",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "10.12"
},
{
"name" : "ios",
"version" : "10.0"
},
{
"name" : "tvos",
"version" : "10.0"
},
{
"name" : "watchos",
"version" : "3.0"
}
],
"products" : [
{
"name" : "OAuthSwiftAlamofire",
"targets" : [
"OAuthSwiftAlamofire"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"swift_languages_versions" : [
"5"
],
"targets" : [
{
"c99name" : "OAuthSwiftAlamofireTests",
"module_type" : "SwiftTarget",
"name" : "OAuthSwiftAlamofireTests",
"path" : "Tests",
"sources" : [
"OAuthSwiftAlamofireTests.swift"
],
"target_dependencies" : [
"OAuthSwiftAlamofire"
],
"type" : "test"
},
{
"c99name" : "OAuthSwiftAlamofire",
"module_type" : "SwiftTarget",
"name" : "OAuthSwiftAlamofire",
"path" : "Sources",
"product_dependencies" : [
"OAuthSwift",
"Alamofire"
],
"product_memberships" : [
"OAuthSwiftAlamofire"
],
"sources" : [
"HTTPMethod.swift",
"OAuthSwiftRequestInterceptor.swift"
],
"type" : "library"
}
],
"tools_version" : "5.0"
}
Done.