Build Information
Successful build of Requests, reference master (8504a5
), with Swift 6.2 (beta) for macOS (SPM) on 17 Jun 2025 16:23: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/alexjohnj/Requests.git
Reference: master
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/alexjohnj/Requests
* branch master -> FETCH_HEAD
* [new branch] master -> origin/master
HEAD is now at 8504a52 Version Bump
Cloned https://github.com/alexjohnj/Requests.git
Revision (git rev-parse @):
8504a521e463f5a6fe4d55c3876e3747295f5730
SUCCESS checkout https://github.com/alexjohnj/Requests.git at master
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.2
Building package at path: $PWD
https://github.com/alexjohnj/Requests.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/18] Compiling Requests URLQueryItem+ExpresibleByDictionaryLiteral.swift
/Users/admin/builder/spi-builder-workspace/Sources/URLQueryItem+ExpresibleByDictionaryLiteral.swift:7:1: warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByDictionaryLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
5 | import Foundation
6 |
7 | extension Array: ExpressibleByDictionaryLiteral where Element == URLQueryItem {
| |- warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByDictionaryLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
8 |
9 | public typealias Key = String
[4/18] Compiling Requests Request.swift
[5/18] Compiling Requests RequestBody.swift
[6/18] Compiling Requests RequestConvertible.swift
[7/18] Compiling Requests RequestError.swift
[8/18] Compiling Requests URL+StaticString.swift
[9/18] Compiling Requests AuthenticationProvider.swift
[10/18] Compiling Requests BodyProvider.swift
[11/18] Compiling Requests CaseInsensitiveString.swift
[12/18] Compiling Requests DefaultValue.swift
[13/18] Emitting module Requests
/Users/admin/builder/spi-builder-workspace/Sources/URLQueryItem+ExpresibleByDictionaryLiteral.swift:7:1: warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByDictionaryLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
5 | import Foundation
6 |
7 | extension Array: ExpressibleByDictionaryLiteral where Element == URLQueryItem {
| |- warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByDictionaryLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
8 |
9 | public typealias Key = String
[14/18] Compiling Requests Field.swift
[15/18] Compiling Requests HTTPMethod.swift
[16/18] Compiling Requests Header.swift
[17/18] Compiling Requests MediaType.swift
[18/18] Compiling Requests ResponseDecoder.swift
[19/19] Compiling Requests URLSession+Requests.swift
/Users/admin/builder/spi-builder-workspace/Sources/URLSession+Requests.swift:34:7: warning: capture of non-sendable type 'R.Type' in an isolated closure
32 | callbackQueue: DispatchQueue = .main,
33 | configureTask: (URLSessionTask) -> Void = { _ in },
34 | completionHandler: @escaping (NetworkResult<R.Resource>) -> Void
| `- warning: capture of non-sendable type 'R.Type' in an isolated closure
35 | ) {
36 | let complete = { (response: NetworkResult<R.Resource>) in
/Users/admin/builder/spi-builder-workspace/Sources/URLSession+Requests.swift:99:62: warning: capture of non-sendable type 'R.Type' in an isolated closure
97 | do {
98 | let resource = try decodeBody(from: data, forResponse: httpResponse,
99 | using: request.responseDecoder)
| `- warning: capture of non-sendable type 'R.Type' in an isolated closure
100 | complete(.success((httpResponse, resource)))
101 | } catch let decodingError {
/Users/admin/builder/spi-builder-workspace/Sources/URLSession+Requests.swift:29:9: warning: capture of non-sendable type 'R.Type' in an isolated closure
27 | ///
28 | public func perform<R: RequestConvertible>(
29 | _ request: R,
| `- warning: capture of non-sendable type 'R.Type' in an isolated closure
30 | validateResponse validationBlock: ((HTTPURLResponse) throws -> Bool)? = nil,
31 | decodingQueue: DispatchQueue = .global(qos: .userInitiated),
Build complete! (4.86s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "Requests",
"name" : "Requests",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "Requests",
"targets" : [
"Requests"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "RequestsTests",
"module_type" : "SwiftTarget",
"name" : "RequestsTests",
"path" : "Tests",
"sources" : [
"AuthenticationProviderTests.swift",
"BodyProviderTests.swift",
"CaseInsensitiveStringTests.swift",
"FieldTests.swift",
"HTTPMethodTests.swift",
"HTTPStubProtocol.swift",
"HeaderTests.swift",
"MediaTypeTests.swift",
"RequestConvertibleTests.swift",
"RequestTests.swift",
"URLQueryItem+ExpressibleByDictionaryLiteralTests.swift",
"URLSessionExtensionTests.swift"
],
"target_dependencies" : [
"Requests"
],
"type" : "test"
},
{
"c99name" : "Requests",
"module_type" : "SwiftTarget",
"name" : "Requests",
"path" : "Sources",
"product_memberships" : [
"Requests"
],
"sources" : [
"AuthenticationProvider.swift",
"BodyProvider.swift",
"CaseInsensitiveString.swift",
"DefaultValue.swift",
"Field.swift",
"HTTPMethod.swift",
"Header.swift",
"MediaType.swift",
"Request.swift",
"RequestBody.swift",
"RequestConvertible.swift",
"RequestError.swift",
"ResponseDecoder.swift",
"URL+StaticString.swift",
"URLQueryItem+ExpresibleByDictionaryLiteral.swift",
"URLSession+Requests.swift"
],
"type" : "library"
}
],
"tools_version" : "5.0"
}
Done.