Build Information
Successful build of WOWSQL, reference v3.1.0 (3b00eb), with Swift 6.1 for macOS (SPM) on 22 Apr 2026 00:02:38 UTC.
Swift 6 data race errors: 9
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64Build Log
========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/WowSQL/wowsql-swift.git
Reference: v3.1.0
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/WowSQL/wowsql-swift
* tag v3.1.0 -> FETCH_HEAD
HEAD is now at 3b00eb1 Release v3.1.0
Cloned https://github.com/WowSQL/wowsql-swift.git
Revision (git rev-parse @):
3b00eb1f58d4557abc9e7d9591295a2d3915e522
SUCCESS checkout https://github.com/WowSQL/wowsql-swift.git at v3.1.0
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.1
Building package at path: $PWD
https://github.com/WowSQL/wowsql-swift.git
https://github.com/WowSQL/wowsql-swift.git
{
"dependencies" : [
],
"manifest_display_name" : "WOWSQL",
"name" : "WOWSQL",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "13.0"
},
{
"name" : "macos",
"version" : "10.15"
},
{
"name" : "watchos",
"version" : "6.0"
},
{
"name" : "tvos",
"version" : "13.0"
}
],
"products" : [
{
"name" : "WOWSQL",
"targets" : [
"WOWSQL"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "WOWSQLTests",
"module_type" : "SwiftTarget",
"name" : "WOWSQLTests",
"path" : "Tests/WOWSQLTests",
"sources" : [
"WOWSQLTests.swift"
],
"target_dependencies" : [
"WOWSQL"
],
"type" : "test"
},
{
"c99name" : "WOWSQL",
"module_type" : "SwiftTarget",
"name" : "WOWSQL",
"path" : "Sources/WOWSQL",
"product_memberships" : [
"WOWSQL"
],
"sources" : [
"Client.swift",
"Exceptions.swift",
"Models.swift",
"ProjectAuthClient.swift",
"QueryBuilder.swift",
"Schema.swift",
"Storage.swift",
"WOWSQL.swift"
],
"type" : "library"
}
],
"tools_version" : "5.9"
}
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-2F0A5646E1D333AE.txt
[3/11] Compiling WOWSQL QueryBuilder.swift
/Users/admin/builder/spi-builder-workspace/Sources/WOWSQL/QueryBuilder.swift:240:20: error: type of expression is ambiguous without a type annotation
238 | /// Get first result.
239 | public func first<T: Codable>() async throws -> T? {
240 | return try await limit(1).execute().data.first
| `- error: type of expression is ambiguous without a type annotation
241 | }
242 |
/Users/admin/builder/spi-builder-workspace/Sources/WOWSQL/QueryBuilder.swift:240:20: warning: no 'async' operations occur within 'await' expression
238 | /// Get first result.
239 | public func first<T: Codable>() async throws -> T? {
240 | return try await limit(1).execute().data.first
| `- warning: no 'async' operations occur within 'await' expression
241 | }
242 |
/Users/admin/builder/spi-builder-workspace/Sources/WOWSQL/QueryBuilder.swift:240:16: warning: no calls to throwing functions occur within 'try' expression
238 | /// Get first result.
239 | public func first<T: Codable>() async throws -> T? {
240 | return try await limit(1).execute().data.first
| `- warning: no calls to throwing functions occur within 'try' expression
241 | }
242 |
[4/11] Compiling WOWSQL WOWSQL.swift
[5/11] Compiling WOWSQL Schema.swift
[6/11] Compiling WOWSQL Storage.swift
[7/11] Compiling WOWSQL ProjectAuthClient.swift
[8/11] Compiling WOWSQL Client.swift
[9/11] Compiling WOWSQL Exceptions.swift
/Users/admin/builder/spi-builder-workspace/Sources/WOWSQL/Exceptions.swift:12:14: warning: non-final class 'WOWSQLError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
10 |
11 | /// Base error for WOWSQL SDK
12 | public class WOWSQLError: Error, LocalizedError {
| `- warning: non-final class 'WOWSQLError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
13 | public let message: String
14 | public let statusCode: Int?
/Users/admin/builder/spi-builder-workspace/Sources/WOWSQL/Exceptions.swift:15:16: warning: stored property 'response' of 'Sendable'-conforming class 'WOWSQLError' has non-sendable type '[String : Any]?'; this is an error in the Swift 6 language mode
13 | public let message: String
14 | public let statusCode: Int?
15 | public let response: [String: Any]?
| `- warning: stored property 'response' of 'Sendable'-conforming class 'WOWSQLError' has non-sendable type '[String : Any]?'; this is an error in the Swift 6 language mode
16 |
17 | public var errorDescription: String? {
/Users/admin/builder/spi-builder-workspace/Sources/WOWSQL/Exceptions.swift:32:14: warning: non-final class 'AuthenticationError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
30 |
31 | /// Authentication error (401/403)
32 | public class AuthenticationError: WOWSQLError {
| `- warning: non-final class 'AuthenticationError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
33 | public override init(_ message: String, statusCode: Int? = nil, response: [String: Any]? = nil) {
34 | super.init(message, statusCode: statusCode, response: response)
/Users/admin/builder/spi-builder-workspace/Sources/WOWSQL/Exceptions.swift:41:14: warning: non-final class 'NotFoundError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
39 |
40 | /// Not found error (404)
41 | public class NotFoundError: WOWSQLError {
| `- warning: non-final class 'NotFoundError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
42 | public init(_ message: String, response: [String: Any]? = nil) {
43 | super.init(message, statusCode: 404, response: response)
/Users/admin/builder/spi-builder-workspace/Sources/WOWSQL/Exceptions.swift:50:14: warning: non-final class 'RateLimitError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
48 |
49 | /// Rate limit error (429)
50 | public class RateLimitError: WOWSQLError {
| `- warning: non-final class 'RateLimitError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
51 | public init(_ message: String, response: [String: Any]? = nil) {
52 | super.init(message, statusCode: 429, response: response)
/Users/admin/builder/spi-builder-workspace/Sources/WOWSQL/Exceptions.swift:59:14: warning: non-final class 'NetworkError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
57 |
58 | /// Network error
59 | public class NetworkError: WOWSQLError {
| `- warning: non-final class 'NetworkError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
60 | public init(_ message: String, underlyingError: Error? = nil) {
61 | super.init(message)
/Users/admin/builder/spi-builder-workspace/Sources/WOWSQL/Exceptions.swift:68:14: warning: non-final class 'StorageError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
66 |
67 | /// Storage error
68 | public class StorageError: WOWSQLError {
| `- warning: non-final class 'StorageError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
69 | public override init(_ message: String, statusCode: Int? = nil, response: [String: Any]? = nil) {
70 | super.init(message, statusCode: statusCode, response: response)
/Users/admin/builder/spi-builder-workspace/Sources/WOWSQL/Exceptions.swift:77:14: warning: non-final class 'StorageLimitExceededError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
75 |
76 | /// Storage limit exceeded error (413)
77 | public class StorageLimitExceededError: StorageError {
| `- warning: non-final class 'StorageLimitExceededError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
78 | public let requiredBytes: Int64
79 | public let availableBytes: Int64
/Users/admin/builder/spi-builder-workspace/Sources/WOWSQL/Exceptions.swift:91:14: warning: non-final class 'SchemaPermissionError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
89 |
90 | /// Schema permission error (403) - requires service role key
91 | public class SchemaPermissionError: WOWSQLError {
| `- warning: non-final class 'SchemaPermissionError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
92 | public init(_ message: String = "Schema operations require a SERVICE ROLE key.", response: [String: Any]? = nil) {
93 | super.init(message, statusCode: 403, response: response)
[10/11] Emitting module WOWSQL
/Users/admin/builder/spi-builder-workspace/Sources/WOWSQL/Exceptions.swift:12:14: warning: non-final class 'WOWSQLError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
10 |
11 | /// Base error for WOWSQL SDK
12 | public class WOWSQLError: Error, LocalizedError {
| `- warning: non-final class 'WOWSQLError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
13 | public let message: String
14 | public let statusCode: Int?
/Users/admin/builder/spi-builder-workspace/Sources/WOWSQL/Exceptions.swift:15:16: warning: stored property 'response' of 'Sendable'-conforming class 'WOWSQLError' has non-sendable type '[String : Any]?'; this is an error in the Swift 6 language mode
13 | public let message: String
14 | public let statusCode: Int?
15 | public let response: [String: Any]?
| `- warning: stored property 'response' of 'Sendable'-conforming class 'WOWSQLError' has non-sendable type '[String : Any]?'; this is an error in the Swift 6 language mode
16 |
17 | public var errorDescription: String? {
/Users/admin/builder/spi-builder-workspace/Sources/WOWSQL/Exceptions.swift:32:14: warning: non-final class 'AuthenticationError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
30 |
31 | /// Authentication error (401/403)
32 | public class AuthenticationError: WOWSQLError {
| `- warning: non-final class 'AuthenticationError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
33 | public override init(_ message: String, statusCode: Int? = nil, response: [String: Any]? = nil) {
34 | super.init(message, statusCode: statusCode, response: response)
/Users/admin/builder/spi-builder-workspace/Sources/WOWSQL/Exceptions.swift:41:14: warning: non-final class 'NotFoundError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
39 |
40 | /// Not found error (404)
41 | public class NotFoundError: WOWSQLError {
| `- warning: non-final class 'NotFoundError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
42 | public init(_ message: String, response: [String: Any]? = nil) {
43 | super.init(message, statusCode: 404, response: response)
/Users/admin/builder/spi-builder-workspace/Sources/WOWSQL/Exceptions.swift:50:14: warning: non-final class 'RateLimitError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
48 |
49 | /// Rate limit error (429)
50 | public class RateLimitError: WOWSQLError {
| `- warning: non-final class 'RateLimitError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
51 | public init(_ message: String, response: [String: Any]? = nil) {
52 | super.init(message, statusCode: 429, response: response)
/Users/admin/builder/spi-builder-workspace/Sources/WOWSQL/Exceptions.swift:59:14: warning: non-final class 'NetworkError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
57 |
58 | /// Network error
59 | public class NetworkError: WOWSQLError {
| `- warning: non-final class 'NetworkError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
60 | public init(_ message: String, underlyingError: Error? = nil) {
61 | super.init(message)
/Users/admin/builder/spi-builder-workspace/Sources/WOWSQL/Exceptions.swift:68:14: warning: non-final class 'StorageError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
66 |
67 | /// Storage error
68 | public class StorageError: WOWSQLError {
| `- warning: non-final class 'StorageError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
69 | public override init(_ message: String, statusCode: Int? = nil, response: [String: Any]? = nil) {
70 | super.init(message, statusCode: statusCode, response: response)
/Users/admin/builder/spi-builder-workspace/Sources/WOWSQL/Exceptions.swift:77:14: warning: non-final class 'StorageLimitExceededError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
75 |
76 | /// Storage limit exceeded error (413)
77 | public class StorageLimitExceededError: StorageError {
| `- warning: non-final class 'StorageLimitExceededError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
78 | public let requiredBytes: Int64
79 | public let availableBytes: Int64
/Users/admin/builder/spi-builder-workspace/Sources/WOWSQL/Exceptions.swift:91:14: warning: non-final class 'SchemaPermissionError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
89 |
90 | /// Schema permission error (403) - requires service role key
91 | public class SchemaPermissionError: WOWSQLError {
| `- warning: non-final class 'SchemaPermissionError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
92 | public init(_ message: String = "Schema operations require a SERVICE ROLE key.", response: [String: Any]? = nil) {
93 | super.init(message, statusCode: 403, response: response)
[11/11] Compiling WOWSQL Models.swift
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64
[0/1] Planning build
Building for debugging...
[0/1] Write swift-version-2F0A5646E1D333AE.txt
[2/10] Compiling WOWSQL WOWSQL.swift
[3/10] Compiling WOWSQL Schema.swift
[4/10] Compiling WOWSQL Storage.swift
[5/10] Compiling WOWSQL ProjectAuthClient.swift
[6/10] Compiling WOWSQL Models.swift
[7/10] Compiling WOWSQL Client.swift
[8/10] Compiling WOWSQL QueryBuilder.swift
[9/10] Emitting module WOWSQL
[10/10] Compiling WOWSQL Exceptions.swift
Build complete! (1.18s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "WOWSQL",
"name" : "WOWSQL",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "13.0"
},
{
"name" : "macos",
"version" : "10.15"
},
{
"name" : "watchos",
"version" : "6.0"
},
{
"name" : "tvos",
"version" : "13.0"
}
],
"products" : [
{
"name" : "WOWSQL",
"targets" : [
"WOWSQL"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "WOWSQLTests",
"module_type" : "SwiftTarget",
"name" : "WOWSQLTests",
"path" : "Tests/WOWSQLTests",
"sources" : [
"WOWSQLTests.swift"
],
"target_dependencies" : [
"WOWSQL"
],
"type" : "test"
},
{
"c99name" : "WOWSQL",
"module_type" : "SwiftTarget",
"name" : "WOWSQL",
"path" : "Sources/WOWSQL",
"product_memberships" : [
"WOWSQL"
],
"sources" : [
"Client.swift",
"Exceptions.swift",
"Models.swift",
"ProjectAuthClient.swift",
"QueryBuilder.swift",
"Schema.swift",
"Storage.swift",
"WOWSQL.swift"
],
"type" : "library"
}
],
"tools_version" : "5.9"
}
Done.