Build Information
Failed to build FaunaDB, reference main (708b6c), with Swift 6.3 for Wasm on 11 Apr 2026 12:12:53 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:wasm-6.3-latest swift build --swift-sdk swift-6.3-RELEASE_wasm 2>&1Build Log
========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/fauna/faunadb-swift.git
Reference: main
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: git branch -m <name>
From https://github.com/fauna/faunadb-swift
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at 708b6cd Move from master to main
Cloned https://github.com/fauna/faunadb-swift.git
Revision (git rev-parse @):
708b6cd64a6bdbf5c4ccc4be4480d9769625cd1f
SUCCESS checkout https://github.com/fauna/faunadb-swift.git at main
========================================
Build
========================================
Selected platform: wasm
Swift version: 6.3
Building package at path: $PWD
https://github.com/fauna/faunadb-swift.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:wasm-6.3-latest swift build --swift-sdk swift-6.3-RELEASE_wasm 2>&1
wasm-6.3-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:d69f4e7582c319245442d62a08b2d7c7fd5a0c0c69f5d2ef11d1530cd8d3329b
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:wasm-6.3-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
error: emit-module command failed with exit code 1 (use -v to see invocation)
[3/18] Compiling FaunaDB ISO8601.swift
[4/18] Compiling FaunaDB JSON.swift
[5/18] Emitting module FaunaDB
/host/spi-builder-workspace/Sources/FaunaDB/AtomicInt.swift:5:23: error: cannot find type 'DispatchQueue' in scope
3 | internal final class AtomicInt {
4 |
5 | private let lock: DispatchQueue
| `- error: cannot find type 'DispatchQueue' in scope
6 | private var current: Int
7 |
/host/spi-builder-workspace/Sources/FaunaDB/Client.swift:17:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
15 | private static let resourcesField = Field<Value>("resource")
16 |
17 | private let session: URLSession
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
18 | private let endpoint: URL
19 | private let auth: String
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/FaunaDB/Client.swift:29:87: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
27 | Default: `URLSession(configuration: URLSessionConfiguration.default)`.
28 | */
29 | public convenience init(secret: String, endpoint: URL = DefaultEndpoint, session: URLSession? = nil) {
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
30 | self.init(secret: secret,
31 | endpoint: endpoint,
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/FaunaDB/Client.swift:36:76: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
34 | }
35 |
36 | private init(secret: String, endpoint: URL = DefaultEndpoint, session: URLSession? = nil, lastSeenTxn: AtomicInt) {
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
37 | self.auth = "Basic \((secret.data(using: .ascii) ?? Data()).base64EncodedString()):"
38 | self.endpoint = endpoint
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/FaunaDB/Client.swift:125:57: error: cannot find type 'URLRequest' in scope
123 | }
124 |
125 | private func httpRequestFor(_ expr: Expr) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
126 | let request = NSMutableURLRequest(url: endpoint)
127 |
/host/spi-builder-workspace/Sources/FaunaDB/Client.swift:142:32: error: cannot find type 'URLRequest' in scope
140 | }
141 |
142 | private func send(request: URLRequest,
| `- error: cannot find type 'URLRequest' in scope
143 | ifSuccess successCallback: @escaping (Value) -> Void,
144 | ifFailure failureCallback: @escaping (Error) -> Void) {
/host/spi-builder-workspace/Sources/FaunaDB/Client.swift:173:35: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
171 | }
172 |
173 | private func handle(response: URLResponse?, data: Data?,
| `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
174 | ifSuccess successCallback: @escaping (Value) -> Void,
175 | ifFailure failureCallback: @escaping (Error) -> Void) {
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
| `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/FaunaDB/Errors.swift:9:36: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
7 | )
8 |
9 | static func errorFor(response: HTTPURLResponse, json: Data) -> FaunaError? {
| `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
10 | guard !(200 ..< 300 ~= response.statusCode) else { return nil }
11 |
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias HTTPURLResponse = AnyObject
| `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/FaunaDB/Latch.swift:9:24: error: cannot find 'DispatchSemaphore' in scope
7 | internal class Latch<T> {
8 |
9 | private let lock = DispatchSemaphore(value: 0)
| `- error: cannot find 'DispatchSemaphore' in scope
10 |
11 | var value: Try<T>? {
/host/spi-builder-workspace/Sources/FaunaDB/Latch.swift:16:25: error: cannot find type 'DispatchTime' in scope
14 | }
15 |
16 | func await(timeout: DispatchTime) throws -> T {
| `- error: cannot find type 'DispatchTime' in scope
17 | if case .timedOut = lock.wait(timeout: timeout) {
18 | let now = DispatchTime.now()
/host/spi-builder-workspace/Sources/FaunaDB/Latch.swift:33:32: error: cannot find type 'DispatchTime' in scope
31 | extension Latch {
32 |
33 | static func await(timeout: DispatchTime, _ fn: (@escaping (Try<T>) -> Void) -> Void) throws -> T {
| `- error: cannot find type 'DispatchTime' in scope
34 | let latch = Latch<T>()
35 | fn { value in latch.value = value }
/host/spi-builder-workspace/Sources/FaunaDB/QueryResult.swift:14:24: error: cannot find 'DispatchQueue' in scope
12 | typealias Callback = (Try<T>) -> Void
13 |
14 | private let lock = DispatchQueue(label: "FaunaDB.QueryResult<\(T.self)>-" + UUID().uuidString)
| `- error: cannot find 'DispatchQueue' in scope
15 | private var callbacks = [Callback]()
16 |
/host/spi-builder-workspace/Sources/FaunaDB/QueryResult.swift:22:31: error: cannot find type 'DispatchQueue' in scope
20 | }
21 |
22 | func onComplete(at queue: DispatchQueue? = nil, callback: @escaping Callback) {
| `- error: cannot find type 'DispatchQueue' in scope
23 | let runCallback: Callback = { result in
24 | guard let queue = queue else { return callback(result) }
/host/spi-builder-workspace/Sources/FaunaDB/QueryResult.swift:59:34: error: cannot find type 'DispatchQueue' in scope
57 | - Returns: A `QueryResult` containing the transformed value.
58 | */
59 | public func map<A>(at queue: DispatchQueue? = nil, _ transform: @escaping (T) throws -> A) -> QueryResult<A> {
| `- error: cannot find type 'DispatchQueue' in scope
60 | let res = QueryResult<A>()
61 |
/host/spi-builder-workspace/Sources/FaunaDB/QueryResult.swift:78:38: error: cannot find type 'DispatchQueue' in scope
76 | - Returns: A `QueryResult` containing the transformed value.
77 | */
78 | public func flatMap<A>(at queue: DispatchQueue? = nil, _ transform: @escaping (T) throws -> QueryResult<A>) -> QueryResult<A> {
| `- error: cannot find type 'DispatchQueue' in scope
79 | let res = QueryResult<A>()
80 |
/host/spi-builder-workspace/Sources/FaunaDB/QueryResult.swift:133:34: error: cannot find type 'DispatchQueue' in scope
131 | - Returns: A `QueryResult` containing the transformed value.
132 | */
133 | public func mapErr(at queue: DispatchQueue? = nil, _ transform: @escaping (Error) throws -> T) -> QueryResult {
| `- error: cannot find type 'DispatchQueue' in scope
134 | let res = QueryResult()
135 |
/host/spi-builder-workspace/Sources/FaunaDB/QueryResult.swift:181:38: error: cannot find type 'DispatchQueue' in scope
179 | - Returns: A `QueryResult` containing the transformed value.
180 | */
181 | public func flatMapErr(at queue: DispatchQueue? = nil, _ transform: @escaping (Error) throws -> QueryResult) -> QueryResult {
| `- error: cannot find type 'DispatchQueue' in scope
182 | let res = QueryResult()
183 |
/host/spi-builder-workspace/Sources/FaunaDB/QueryResult.swift:207:37: error: cannot find type 'DispatchQueue' in scope
205 | */
206 | @discardableResult
207 | public func onSuccess(at queue: DispatchQueue? = nil, _ callback: @escaping (T) throws -> Void) -> QueryResult {
| `- error: cannot find type 'DispatchQueue' in scope
208 | return map(at: queue) { res in
209 | try callback(res)
/host/spi-builder-workspace/Sources/FaunaDB/QueryResult.swift:222:37: error: cannot find type 'DispatchQueue' in scope
220 | */
221 | @discardableResult
222 | public func onFailure(at queue: DispatchQueue? = nil, _ callback: @escaping (Error) throws -> Void) -> QueryResult {
| `- error: cannot find type 'DispatchQueue' in scope
223 | return mapErr(at: queue) { error in
224 | try callback(error)
/host/spi-builder-workspace/Sources/FaunaDB/QueryResult.swift:244:32: error: cannot find type 'DispatchTime' in scope
242 | - Throws: Any exception that might have happened during the query execution.
243 | */
244 | public func await(timeout: DispatchTime) throws -> T {
| `- error: cannot find type 'DispatchTime' in scope
245 | do {
246 | return try Latch.await(timeout: timeout) { done in
[6/20] Compiling FaunaDB Field.swift
[7/20] Compiling FaunaDB HighPrecisionTime.swift
[8/20] Compiling FaunaDB QueryResult.swift
/host/spi-builder-workspace/Sources/FaunaDB/QueryResult.swift:14:24: error: cannot find 'DispatchQueue' in scope
12 | typealias Callback = (Try<T>) -> Void
13 |
14 | private let lock = DispatchQueue(label: "FaunaDB.QueryResult<\(T.self)>-" + UUID().uuidString)
| `- error: cannot find 'DispatchQueue' in scope
15 | private var callbacks = [Callback]()
16 |
/host/spi-builder-workspace/Sources/FaunaDB/QueryResult.swift:22:31: error: cannot find type 'DispatchQueue' in scope
20 | }
21 |
22 | func onComplete(at queue: DispatchQueue? = nil, callback: @escaping Callback) {
| `- error: cannot find type 'DispatchQueue' in scope
23 | let runCallback: Callback = { result in
24 | guard let queue = queue else { return callback(result) }
/host/spi-builder-workspace/Sources/FaunaDB/QueryResult.swift:59:34: error: cannot find type 'DispatchQueue' in scope
57 | - Returns: A `QueryResult` containing the transformed value.
58 | */
59 | public func map<A>(at queue: DispatchQueue? = nil, _ transform: @escaping (T) throws -> A) -> QueryResult<A> {
| `- error: cannot find type 'DispatchQueue' in scope
60 | let res = QueryResult<A>()
61 |
/host/spi-builder-workspace/Sources/FaunaDB/QueryResult.swift:78:38: error: cannot find type 'DispatchQueue' in scope
76 | - Returns: A `QueryResult` containing the transformed value.
77 | */
78 | public func flatMap<A>(at queue: DispatchQueue? = nil, _ transform: @escaping (T) throws -> QueryResult<A>) -> QueryResult<A> {
| `- error: cannot find type 'DispatchQueue' in scope
79 | let res = QueryResult<A>()
80 |
/host/spi-builder-workspace/Sources/FaunaDB/QueryResult.swift:133:34: error: cannot find type 'DispatchQueue' in scope
131 | - Returns: A `QueryResult` containing the transformed value.
132 | */
133 | public func mapErr(at queue: DispatchQueue? = nil, _ transform: @escaping (Error) throws -> T) -> QueryResult {
| `- error: cannot find type 'DispatchQueue' in scope
134 | let res = QueryResult()
135 |
/host/spi-builder-workspace/Sources/FaunaDB/QueryResult.swift:181:38: error: cannot find type 'DispatchQueue' in scope
179 | - Returns: A `QueryResult` containing the transformed value.
180 | */
181 | public func flatMapErr(at queue: DispatchQueue? = nil, _ transform: @escaping (Error) throws -> QueryResult) -> QueryResult {
| `- error: cannot find type 'DispatchQueue' in scope
182 | let res = QueryResult()
183 |
/host/spi-builder-workspace/Sources/FaunaDB/QueryResult.swift:207:37: error: cannot find type 'DispatchQueue' in scope
205 | */
206 | @discardableResult
207 | public func onSuccess(at queue: DispatchQueue? = nil, _ callback: @escaping (T) throws -> Void) -> QueryResult {
| `- error: cannot find type 'DispatchQueue' in scope
208 | return map(at: queue) { res in
209 | try callback(res)
/host/spi-builder-workspace/Sources/FaunaDB/QueryResult.swift:222:37: error: cannot find type 'DispatchQueue' in scope
220 | */
221 | @discardableResult
222 | public func onFailure(at queue: DispatchQueue? = nil, _ callback: @escaping (Error) throws -> Void) -> QueryResult {
| `- error: cannot find type 'DispatchQueue' in scope
223 | return mapErr(at: queue) { error in
224 | try callback(error)
/host/spi-builder-workspace/Sources/FaunaDB/QueryResult.swift:244:32: error: cannot find type 'DispatchTime' in scope
242 | - Throws: Any exception that might have happened during the query execution.
243 | */
244 | public func await(timeout: DispatchTime) throws -> T {
| `- error: cannot find type 'DispatchTime' in scope
245 | do {
246 | return try Latch.await(timeout: timeout) { done in
/host/spi-builder-workspace/Sources/FaunaDB/Latch.swift:16:25: error: cannot find type 'DispatchTime' in scope
14 | }
15 |
16 | func await(timeout: DispatchTime) throws -> T {
| `- error: cannot find type 'DispatchTime' in scope
17 | if case .timedOut = lock.wait(timeout: timeout) {
18 | let now = DispatchTime.now()
/host/spi-builder-workspace/Sources/FaunaDB/Latch.swift:33:32: error: cannot find type 'DispatchTime' in scope
31 | extension Latch {
32 |
33 | static func await(timeout: DispatchTime, _ fn: (@escaping (Try<T>) -> Void) -> Void) throws -> T {
| `- error: cannot find type 'DispatchTime' in scope
34 | let latch = Latch<T>()
35 | fn { value in latch.value = value }
/host/spi-builder-workspace/Sources/FaunaDB/QueryResult.swift:246:24: error: generic parameter 'T' could not be inferred
244 | public func await(timeout: DispatchTime) throws -> T {
245 | do {
246 | return try Latch.await(timeout: timeout) { done in
| |- error: generic parameter 'T' could not be inferred
| `- note: explicitly specify the generic arguments to fix this issue
247 | self.onComplete(callback: done)
248 | }
/host/spi-builder-workspace/Sources/FaunaDB/Latch.swift:7:22: note: 'T' declared as parameter to type 'Latch'
5 | }
6 |
7 | internal class Latch<T> {
| `- note: 'T' declared as parameter to type 'Latch'
8 |
9 | private let lock = DispatchSemaphore(value: 0)
[9/20] Compiling FaunaDB Try.swift
/host/spi-builder-workspace/Sources/FaunaDB/QueryResult.swift:14:24: error: cannot find 'DispatchQueue' in scope
12 | typealias Callback = (Try<T>) -> Void
13 |
14 | private let lock = DispatchQueue(label: "FaunaDB.QueryResult<\(T.self)>-" + UUID().uuidString)
| `- error: cannot find 'DispatchQueue' in scope
15 | private var callbacks = [Callback]()
16 |
/host/spi-builder-workspace/Sources/FaunaDB/QueryResult.swift:22:31: error: cannot find type 'DispatchQueue' in scope
20 | }
21 |
22 | func onComplete(at queue: DispatchQueue? = nil, callback: @escaping Callback) {
| `- error: cannot find type 'DispatchQueue' in scope
23 | let runCallback: Callback = { result in
24 | guard let queue = queue else { return callback(result) }
/host/spi-builder-workspace/Sources/FaunaDB/QueryResult.swift:59:34: error: cannot find type 'DispatchQueue' in scope
57 | - Returns: A `QueryResult` containing the transformed value.
58 | */
59 | public func map<A>(at queue: DispatchQueue? = nil, _ transform: @escaping (T) throws -> A) -> QueryResult<A> {
| `- error: cannot find type 'DispatchQueue' in scope
60 | let res = QueryResult<A>()
61 |
/host/spi-builder-workspace/Sources/FaunaDB/QueryResult.swift:78:38: error: cannot find type 'DispatchQueue' in scope
76 | - Returns: A `QueryResult` containing the transformed value.
77 | */
78 | public func flatMap<A>(at queue: DispatchQueue? = nil, _ transform: @escaping (T) throws -> QueryResult<A>) -> QueryResult<A> {
| `- error: cannot find type 'DispatchQueue' in scope
79 | let res = QueryResult<A>()
80 |
/host/spi-builder-workspace/Sources/FaunaDB/QueryResult.swift:133:34: error: cannot find type 'DispatchQueue' in scope
131 | - Returns: A `QueryResult` containing the transformed value.
132 | */
133 | public func mapErr(at queue: DispatchQueue? = nil, _ transform: @escaping (Error) throws -> T) -> QueryResult {
| `- error: cannot find type 'DispatchQueue' in scope
134 | let res = QueryResult()
135 |
/host/spi-builder-workspace/Sources/FaunaDB/QueryResult.swift:181:38: error: cannot find type 'DispatchQueue' in scope
179 | - Returns: A `QueryResult` containing the transformed value.
180 | */
181 | public func flatMapErr(at queue: DispatchQueue? = nil, _ transform: @escaping (Error) throws -> QueryResult) -> QueryResult {
| `- error: cannot find type 'DispatchQueue' in scope
182 | let res = QueryResult()
183 |
/host/spi-builder-workspace/Sources/FaunaDB/QueryResult.swift:207:37: error: cannot find type 'DispatchQueue' in scope
205 | */
206 | @discardableResult
207 | public func onSuccess(at queue: DispatchQueue? = nil, _ callback: @escaping (T) throws -> Void) -> QueryResult {
| `- error: cannot find type 'DispatchQueue' in scope
208 | return map(at: queue) { res in
209 | try callback(res)
/host/spi-builder-workspace/Sources/FaunaDB/QueryResult.swift:222:37: error: cannot find type 'DispatchQueue' in scope
220 | */
221 | @discardableResult
222 | public func onFailure(at queue: DispatchQueue? = nil, _ callback: @escaping (Error) throws -> Void) -> QueryResult {
| `- error: cannot find type 'DispatchQueue' in scope
223 | return mapErr(at: queue) { error in
224 | try callback(error)
/host/spi-builder-workspace/Sources/FaunaDB/QueryResult.swift:244:32: error: cannot find type 'DispatchTime' in scope
242 | - Throws: Any exception that might have happened during the query execution.
243 | */
244 | public func await(timeout: DispatchTime) throws -> T {
| `- error: cannot find type 'DispatchTime' in scope
245 | do {
246 | return try Latch.await(timeout: timeout) { done in
/host/spi-builder-workspace/Sources/FaunaDB/Latch.swift:16:25: error: cannot find type 'DispatchTime' in scope
14 | }
15 |
16 | func await(timeout: DispatchTime) throws -> T {
| `- error: cannot find type 'DispatchTime' in scope
17 | if case .timedOut = lock.wait(timeout: timeout) {
18 | let now = DispatchTime.now()
/host/spi-builder-workspace/Sources/FaunaDB/Latch.swift:33:32: error: cannot find type 'DispatchTime' in scope
31 | extension Latch {
32 |
33 | static func await(timeout: DispatchTime, _ fn: (@escaping (Try<T>) -> Void) -> Void) throws -> T {
| `- error: cannot find type 'DispatchTime' in scope
34 | let latch = Latch<T>()
35 | fn { value in latch.value = value }
/host/spi-builder-workspace/Sources/FaunaDB/QueryResult.swift:246:24: error: generic parameter 'T' could not be inferred
244 | public func await(timeout: DispatchTime) throws -> T {
245 | do {
246 | return try Latch.await(timeout: timeout) { done in
| |- error: generic parameter 'T' could not be inferred
| `- note: explicitly specify the generic arguments to fix this issue
247 | self.onComplete(callback: done)
248 | }
/host/spi-builder-workspace/Sources/FaunaDB/Latch.swift:7:22: note: 'T' declared as parameter to type 'Latch'
5 | }
6 |
7 | internal class Latch<T> {
| `- note: 'T' declared as parameter to type 'Latch'
8 |
9 | private let lock = DispatchSemaphore(value: 0)
[10/20] Compiling FaunaDB Errors.swift
/host/spi-builder-workspace/Sources/FaunaDB/Errors.swift:9:36: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
7 | )
8 |
9 | static func errorFor(response: HTTPURLResponse, json: Data) -> FaunaError? {
| `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
10 | guard !(200 ..< 300 ~= response.statusCode) else { return nil }
11 |
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias HTTPURLResponse = AnyObject
| `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/FaunaDB/Errors.swift:10:41: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
8 |
9 | static func errorFor(response: HTTPURLResponse, json: Data) -> FaunaError? {
10 | guard !(200 ..< 300 ~= response.statusCode) else { return nil }
| `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
11 |
12 | guard let errors = try? parseErrors(from: json) else {
/host/spi-builder-workspace/Sources/FaunaDB/Errors.swift:14:34: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
12 | guard let errors = try? parseErrors(from: json) else {
13 | return errorTypeFor(
14 | status: response.statusCode,
| `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
15 | message: "Unparseable server response"
16 | )
/host/spi-builder-workspace/Sources/FaunaDB/Errors.swift:20:30: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
18 |
19 | return errorTypeFor(
20 | status: response.statusCode,
| `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
21 | errors: errors
22 | )
[11/20] Compiling FaunaDB Expr.swift
/host/spi-builder-workspace/Sources/FaunaDB/Errors.swift:9:36: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
7 | )
8 |
9 | static func errorFor(response: HTTPURLResponse, json: Data) -> FaunaError? {
| `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
10 | guard !(200 ..< 300 ~= response.statusCode) else { return nil }
11 |
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias HTTPURLResponse = AnyObject
| `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/FaunaDB/Errors.swift:10:41: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
8 |
9 | static func errorFor(response: HTTPURLResponse, json: Data) -> FaunaError? {
10 | guard !(200 ..< 300 ~= response.statusCode) else { return nil }
| `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
11 |
12 | guard let errors = try? parseErrors(from: json) else {
/host/spi-builder-workspace/Sources/FaunaDB/Errors.swift:14:34: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
12 | guard let errors = try? parseErrors(from: json) else {
13 | return errorTypeFor(
14 | status: response.statusCode,
| `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
15 | message: "Unparseable server response"
16 | )
/host/spi-builder-workspace/Sources/FaunaDB/Errors.swift:20:30: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
18 |
19 | return errorTypeFor(
20 | status: response.statusCode,
| `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
21 | errors: errors
22 | )
[12/20] Compiling FaunaDB AtomicInt.swift
/host/spi-builder-workspace/Sources/FaunaDB/AtomicInt.swift:5:23: error: cannot find type 'DispatchQueue' in scope
3 | internal final class AtomicInt {
4 |
5 | private let lock: DispatchQueue
| `- error: cannot find type 'DispatchQueue' in scope
6 | private var current: Int
7 |
/host/spi-builder-workspace/Sources/FaunaDB/AtomicInt.swift:9:21: error: cannot find 'DispatchQueue' in scope
7 |
8 | init(label: String, initial: Int = 0) {
9 | self.lock = DispatchQueue(label: label)
| `- error: cannot find 'DispatchQueue' in scope
10 | self.current = initial
11 | }
/host/spi-builder-workspace/Sources/FaunaDB/Client.swift:17:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
15 | private static let resourcesField = Field<Value>("resource")
16 |
17 | private let session: URLSession
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
18 | private let endpoint: URL
19 | private let auth: String
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/FaunaDB/Client.swift:29:87: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
27 | Default: `URLSession(configuration: URLSessionConfiguration.default)`.
28 | */
29 | public convenience init(secret: String, endpoint: URL = DefaultEndpoint, session: URLSession? = nil) {
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
30 | self.init(secret: secret,
31 | endpoint: endpoint,
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/FaunaDB/Client.swift:36:76: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
34 | }
35 |
36 | private init(secret: String, endpoint: URL = DefaultEndpoint, session: URLSession? = nil, lastSeenTxn: AtomicInt) {
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
37 | self.auth = "Basic \((secret.data(using: .ascii) ?? Data()).base64EncodedString()):"
38 | self.endpoint = endpoint
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/FaunaDB/Client.swift:125:57: error: cannot find type 'URLRequest' in scope
123 | }
124 |
125 | private func httpRequestFor(_ expr: Expr) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
126 | let request = NSMutableURLRequest(url: endpoint)
127 |
/host/spi-builder-workspace/Sources/FaunaDB/Client.swift:142:32: error: cannot find type 'URLRequest' in scope
140 | }
141 |
142 | private func send(request: URLRequest,
| `- error: cannot find type 'URLRequest' in scope
143 | ifSuccess successCallback: @escaping (Value) -> Void,
144 | ifFailure failureCallback: @escaping (Error) -> Void) {
/host/spi-builder-workspace/Sources/FaunaDB/Client.swift:173:35: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
171 | }
172 |
173 | private func handle(response: URLResponse?, data: Data?,
| `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
174 | ifSuccess successCallback: @escaping (Value) -> Void,
175 | ifFailure failureCallback: @escaping (Error) -> Void) {
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
| `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/FaunaDB/Client.swift:44:28: error: 'URLSession' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
42 | self.session = session
43 | } else {
44 | self.session = URLSession(configuration: URLSessionConfiguration.default)
| `- error: 'URLSession' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
45 | }
46 | }
/host/spi-builder-workspace/Sources/FaunaDB/Client.swift:44:78: error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'default'
42 | self.session = session
43 | } else {
44 | self.session = URLSession(configuration: URLSessionConfiguration.default)
| `- error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'default'
45 | }
46 | }
/host/spi-builder-workspace/Sources/FaunaDB/QueryResult.swift:59:34: error: cannot find type 'DispatchQueue' in scope
57 | - Returns: A `QueryResult` containing the transformed value.
58 | */
59 | public func map<A>(at queue: DispatchQueue? = nil, _ transform: @escaping (T) throws -> A) -> QueryResult<A> {
| `- error: cannot find type 'DispatchQueue' in scope
60 | let res = QueryResult<A>()
61 |
/host/spi-builder-workspace/Sources/FaunaDB/Client.swift:126:23: error: cannot find 'NSMutableURLRequest' in scope
124 |
125 | private func httpRequestFor(_ expr: Expr) throws -> URLRequest {
126 | let request = NSMutableURLRequest(url: endpoint)
| `- error: cannot find 'NSMutableURLRequest' in scope
127 |
128 | request.httpMethod = "POST"
/host/spi-builder-workspace/Sources/FaunaDB/Client.swift:139:27: error: cannot find type 'URLRequest' in scope
137 | }
138 |
139 | return request as URLRequest
| `- error: cannot find type 'URLRequest' in scope
140 | }
141 |
/host/spi-builder-workspace/Sources/FaunaDB/Client.swift:146:28: error: value of type 'URLSession' (aka 'AnyObject') has no member 'dataTask'
144 | ifFailure failureCallback: @escaping (Error) -> Void) {
145 |
146 | let task = session.dataTask(with: request) { [weak self] data, response, error in
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'dataTask'
147 | guard let this = self else { return }
148 |
/host/spi-builder-workspace/Sources/FaunaDB/Client.swift:146:66: error: cannot infer type of closure parameter 'data' without a type annotation
144 | ifFailure failureCallback: @escaping (Error) -> Void) {
145 |
146 | let task = session.dataTask(with: request) { [weak self] data, response, error in
| `- error: cannot infer type of closure parameter 'data' without a type annotation
147 | guard let this = self else { return }
148 |
/host/spi-builder-workspace/Sources/FaunaDB/Client.swift:146:72: error: cannot infer type of closure parameter 'response' without a type annotation
144 | ifFailure failureCallback: @escaping (Error) -> Void) {
145 |
146 | let task = session.dataTask(with: request) { [weak self] data, response, error in
| `- error: cannot infer type of closure parameter 'response' without a type annotation
147 | guard let this = self else { return }
148 |
/host/spi-builder-workspace/Sources/FaunaDB/Client.swift:146:82: error: cannot infer type of closure parameter 'error' without a type annotation
144 | ifFailure failureCallback: @escaping (Error) -> Void) {
145 |
146 | let task = session.dataTask(with: request) { [weak self] data, response, error in
| `- error: cannot infer type of closure parameter 'error' without a type annotation
147 | guard let this = self else { return }
148 |
/host/spi-builder-workspace/Sources/FaunaDB/Client.swift:150:39: error: argument type '_' expected to be an instance of a class or class-constrained type
148 |
149 | guard this.handle(error: error, with: failureCallback) else {
150 | this.handle(response: response,
| `- error: argument type '_' expected to be an instance of a class or class-constrained type
151 | data: data,
152 | ifSuccess: successCallback,
/host/spi-builder-workspace/Sources/FaunaDB/Client.swift:177:39: warning: conditional downcast from 'URLResponse?' (aka 'Optional<AnyObject>') to 'HTTPURLResponse' (aka 'AnyObject') does nothing
175 | ifFailure failureCallback: @escaping (Error) -> Void) {
176 |
177 | guard let response = response as? HTTPURLResponse, let data = data else {
| `- warning: conditional downcast from 'URLResponse?' (aka 'Optional<AnyObject>') to 'HTTPURLResponse' (aka 'AnyObject') does nothing
178 | failureCallback(UnknownError(message: "Invalid server response."))
179 | return
/host/spi-builder-workspace/Sources/FaunaDB/Client.swift:177:43: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
175 | ifFailure failureCallback: @escaping (Error) -> Void) {
176 |
177 | guard let response = response as? HTTPURLResponse, let data = data else {
| `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
178 | failureCallback(UnknownError(message: "Invalid server response."))
179 | return
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias HTTPURLResponse = AnyObject
| `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/FaunaDB/Client.swift:182:42: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'allHeaderFields'
180 | }
181 |
182 | if let txnHeaderValue = response.allHeaderFields["X-Txn-Time"] as? String, let txnTime = Int(txnHeaderValue) {
| `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'allHeaderFields'
183 | syncLastTxnTime(txnTime)
184 | }
[13/20] Compiling FaunaDB Client.swift
/host/spi-builder-workspace/Sources/FaunaDB/AtomicInt.swift:5:23: error: cannot find type 'DispatchQueue' in scope
3 | internal final class AtomicInt {
4 |
5 | private let lock: DispatchQueue
| `- error: cannot find type 'DispatchQueue' in scope
6 | private var current: Int
7 |
/host/spi-builder-workspace/Sources/FaunaDB/AtomicInt.swift:9:21: error: cannot find 'DispatchQueue' in scope
7 |
8 | init(label: String, initial: Int = 0) {
9 | self.lock = DispatchQueue(label: label)
| `- error: cannot find 'DispatchQueue' in scope
10 | self.current = initial
11 | }
/host/spi-builder-workspace/Sources/FaunaDB/Client.swift:17:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
15 | private static let resourcesField = Field<Value>("resource")
16 |
17 | private let session: URLSession
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
18 | private let endpoint: URL
19 | private let auth: String
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/FaunaDB/Client.swift:29:87: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
27 | Default: `URLSession(configuration: URLSessionConfiguration.default)`.
28 | */
29 | public convenience init(secret: String, endpoint: URL = DefaultEndpoint, session: URLSession? = nil) {
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
30 | self.init(secret: secret,
31 | endpoint: endpoint,
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/FaunaDB/Client.swift:36:76: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
34 | }
35 |
36 | private init(secret: String, endpoint: URL = DefaultEndpoint, session: URLSession? = nil, lastSeenTxn: AtomicInt) {
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
37 | self.auth = "Basic \((secret.data(using: .ascii) ?? Data()).base64EncodedString()):"
38 | self.endpoint = endpoint
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/FaunaDB/Client.swift:125:57: error: cannot find type 'URLRequest' in scope
123 | }
124 |
125 | private func httpRequestFor(_ expr: Expr) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
126 | let request = NSMutableURLRequest(url: endpoint)
127 |
/host/spi-builder-workspace/Sources/FaunaDB/Client.swift:142:32: error: cannot find type 'URLRequest' in scope
140 | }
141 |
142 | private func send(request: URLRequest,
| `- error: cannot find type 'URLRequest' in scope
143 | ifSuccess successCallback: @escaping (Value) -> Void,
144 | ifFailure failureCallback: @escaping (Error) -> Void) {
/host/spi-builder-workspace/Sources/FaunaDB/Client.swift:173:35: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
171 | }
172 |
173 | private func handle(response: URLResponse?, data: Data?,
| `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
174 | ifSuccess successCallback: @escaping (Value) -> Void,
175 | ifFailure failureCallback: @escaping (Error) -> Void) {
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
| `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/FaunaDB/Client.swift:44:28: error: 'URLSession' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
42 | self.session = session
43 | } else {
44 | self.session = URLSession(configuration: URLSessionConfiguration.default)
| `- error: 'URLSession' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
45 | }
46 | }
/host/spi-builder-workspace/Sources/FaunaDB/Client.swift:44:78: error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'default'
42 | self.session = session
43 | } else {
44 | self.session = URLSession(configuration: URLSessionConfiguration.default)
| `- error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'default'
45 | }
46 | }
/host/spi-builder-workspace/Sources/FaunaDB/QueryResult.swift:59:34: error: cannot find type 'DispatchQueue' in scope
57 | - Returns: A `QueryResult` containing the transformed value.
58 | */
59 | public func map<A>(at queue: DispatchQueue? = nil, _ transform: @escaping (T) throws -> A) -> QueryResult<A> {
| `- error: cannot find type 'DispatchQueue' in scope
60 | let res = QueryResult<A>()
61 |
/host/spi-builder-workspace/Sources/FaunaDB/Client.swift:126:23: error: cannot find 'NSMutableURLRequest' in scope
124 |
125 | private func httpRequestFor(_ expr: Expr) throws -> URLRequest {
126 | let request = NSMutableURLRequest(url: endpoint)
| `- error: cannot find 'NSMutableURLRequest' in scope
127 |
128 | request.httpMethod = "POST"
/host/spi-builder-workspace/Sources/FaunaDB/Client.swift:139:27: error: cannot find type 'URLRequest' in scope
137 | }
138 |
139 | return request as URLRequest
| `- error: cannot find type 'URLRequest' in scope
140 | }
141 |
/host/spi-builder-workspace/Sources/FaunaDB/Client.swift:146:28: error: value of type 'URLSession' (aka 'AnyObject') has no member 'dataTask'
144 | ifFailure failureCallback: @escaping (Error) -> Void) {
145 |
146 | let task = session.dataTask(with: request) { [weak self] data, response, error in
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'dataTask'
147 | guard let this = self else { return }
148 |
/host/spi-builder-workspace/Sources/FaunaDB/Client.swift:146:66: error: cannot infer type of closure parameter 'data' without a type annotation
144 | ifFailure failureCallback: @escaping (Error) -> Void) {
145 |
146 | let task = session.dataTask(with: request) { [weak self] data, response, error in
| `- error: cannot infer type of closure parameter 'data' without a type annotation
147 | guard let this = self else { return }
148 |
/host/spi-builder-workspace/Sources/FaunaDB/Client.swift:146:72: error: cannot infer type of closure parameter 'response' without a type annotation
144 | ifFailure failureCallback: @escaping (Error) -> Void) {
145 |
146 | let task = session.dataTask(with: request) { [weak self] data, response, error in
| `- error: cannot infer type of closure parameter 'response' without a type annotation
147 | guard let this = self else { return }
148 |
/host/spi-builder-workspace/Sources/FaunaDB/Client.swift:146:82: error: cannot infer type of closure parameter 'error' without a type annotation
144 | ifFailure failureCallback: @escaping (Error) -> Void) {
145 |
146 | let task = session.dataTask(with: request) { [weak self] data, response, error in
| `- error: cannot infer type of closure parameter 'error' without a type annotation
147 | guard let this = self else { return }
148 |
/host/spi-builder-workspace/Sources/FaunaDB/Client.swift:150:39: error: argument type '_' expected to be an instance of a class or class-constrained type
148 |
149 | guard this.handle(error: error, with: failureCallback) else {
150 | this.handle(response: response,
| `- error: argument type '_' expected to be an instance of a class or class-constrained type
151 | data: data,
152 | ifSuccess: successCallback,
/host/spi-builder-workspace/Sources/FaunaDB/Client.swift:177:39: warning: conditional downcast from 'URLResponse?' (aka 'Optional<AnyObject>') to 'HTTPURLResponse' (aka 'AnyObject') does nothing
175 | ifFailure failureCallback: @escaping (Error) -> Void) {
176 |
177 | guard let response = response as? HTTPURLResponse, let data = data else {
| `- warning: conditional downcast from 'URLResponse?' (aka 'Optional<AnyObject>') to 'HTTPURLResponse' (aka 'AnyObject') does nothing
178 | failureCallback(UnknownError(message: "Invalid server response."))
179 | return
/host/spi-builder-workspace/Sources/FaunaDB/Client.swift:177:43: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
175 | ifFailure failureCallback: @escaping (Error) -> Void) {
176 |
177 | guard let response = response as? HTTPURLResponse, let data = data else {
| `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
178 | failureCallback(UnknownError(message: "Invalid server response."))
179 | return
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias HTTPURLResponse = AnyObject
| `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/FaunaDB/Client.swift:182:42: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'allHeaderFields'
180 | }
181 |
182 | if let txnHeaderValue = response.allHeaderFields["X-Txn-Time"] as? String, let txnTime = Int(txnHeaderValue) {
| `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'allHeaderFields'
183 | syncLastTxnTime(txnTime)
184 | }
[14/20] Compiling FaunaDB Codec.swift
/host/spi-builder-workspace/Sources/FaunaDB/AtomicInt.swift:5:23: error: cannot find type 'DispatchQueue' in scope
3 | internal final class AtomicInt {
4 |
5 | private let lock: DispatchQueue
| `- error: cannot find type 'DispatchQueue' in scope
6 | private var current: Int
7 |
/host/spi-builder-workspace/Sources/FaunaDB/AtomicInt.swift:9:21: error: cannot find 'DispatchQueue' in scope
7 |
8 | init(label: String, initial: Int = 0) {
9 | self.lock = DispatchQueue(label: label)
| `- error: cannot find 'DispatchQueue' in scope
10 | self.current = initial
11 | }
/host/spi-builder-workspace/Sources/FaunaDB/Client.swift:17:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
15 | private static let resourcesField = Field<Value>("resource")
16 |
17 | private let session: URLSession
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
18 | private let endpoint: URL
19 | private let auth: String
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/FaunaDB/Client.swift:29:87: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
27 | Default: `URLSession(configuration: URLSessionConfiguration.default)`.
28 | */
29 | public convenience init(secret: String, endpoint: URL = DefaultEndpoint, session: URLSession? = nil) {
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
30 | self.init(secret: secret,
31 | endpoint: endpoint,
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/FaunaDB/Client.swift:36:76: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
34 | }
35 |
36 | private init(secret: String, endpoint: URL = DefaultEndpoint, session: URLSession? = nil, lastSeenTxn: AtomicInt) {
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
37 | self.auth = "Basic \((secret.data(using: .ascii) ?? Data()).base64EncodedString()):"
38 | self.endpoint = endpoint
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/FaunaDB/Client.swift:125:57: error: cannot find type 'URLRequest' in scope
123 | }
124 |
125 | private func httpRequestFor(_ expr: Expr) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
126 | let request = NSMutableURLRequest(url: endpoint)
127 |
/host/spi-builder-workspace/Sources/FaunaDB/Client.swift:142:32: error: cannot find type 'URLRequest' in scope
140 | }
141 |
142 | private func send(request: URLRequest,
| `- error: cannot find type 'URLRequest' in scope
143 | ifSuccess successCallback: @escaping (Value) -> Void,
144 | ifFailure failureCallback: @escaping (Error) -> Void) {
/host/spi-builder-workspace/Sources/FaunaDB/Client.swift:173:35: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
171 | }
172 |
173 | private func handle(response: URLResponse?, data: Data?,
| `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
174 | ifSuccess successCallback: @escaping (Value) -> Void,
175 | ifFailure failureCallback: @escaping (Error) -> Void) {
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
| `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/FaunaDB/Client.swift:44:28: error: 'URLSession' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
42 | self.session = session
43 | } else {
44 | self.session = URLSession(configuration: URLSessionConfiguration.default)
| `- error: 'URLSession' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
45 | }
46 | }
/host/spi-builder-workspace/Sources/FaunaDB/Client.swift:44:78: error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'default'
42 | self.session = session
43 | } else {
44 | self.session = URLSession(configuration: URLSessionConfiguration.default)
| `- error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'default'
45 | }
46 | }
/host/spi-builder-workspace/Sources/FaunaDB/QueryResult.swift:59:34: error: cannot find type 'DispatchQueue' in scope
57 | - Returns: A `QueryResult` containing the transformed value.
58 | */
59 | public func map<A>(at queue: DispatchQueue? = nil, _ transform: @escaping (T) throws -> A) -> QueryResult<A> {
| `- error: cannot find type 'DispatchQueue' in scope
60 | let res = QueryResult<A>()
61 |
/host/spi-builder-workspace/Sources/FaunaDB/Client.swift:126:23: error: cannot find 'NSMutableURLRequest' in scope
124 |
125 | private func httpRequestFor(_ expr: Expr) throws -> URLRequest {
126 | let request = NSMutableURLRequest(url: endpoint)
| `- error: cannot find 'NSMutableURLRequest' in scope
127 |
128 | request.httpMethod = "POST"
/host/spi-builder-workspace/Sources/FaunaDB/Client.swift:139:27: error: cannot find type 'URLRequest' in scope
137 | }
138 |
139 | return request as URLRequest
| `- error: cannot find type 'URLRequest' in scope
140 | }
141 |
/host/spi-builder-workspace/Sources/FaunaDB/Client.swift:146:28: error: value of type 'URLSession' (aka 'AnyObject') has no member 'dataTask'
144 | ifFailure failureCallback: @escaping (Error) -> Void) {
145 |
146 | let task = session.dataTask(with: request) { [weak self] data, response, error in
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'dataTask'
147 | guard let this = self else { return }
148 |
/host/spi-builder-workspace/Sources/FaunaDB/Client.swift:146:66: error: cannot infer type of closure parameter 'data' without a type annotation
144 | ifFailure failureCallback: @escaping (Error) -> Void) {
145 |
146 | let task = session.dataTask(with: request) { [weak self] data, response, error in
| `- error: cannot infer type of closure parameter 'data' without a type annotation
147 | guard let this = self else { return }
148 |
/host/spi-builder-workspace/Sources/FaunaDB/Client.swift:146:72: error: cannot infer type of closure parameter 'response' without a type annotation
144 | ifFailure failureCallback: @escaping (Error) -> Void) {
145 |
146 | let task = session.dataTask(with: request) { [weak self] data, response, error in
| `- error: cannot infer type of closure parameter 'response' without a type annotation
147 | guard let this = self else { return }
148 |
/host/spi-builder-workspace/Sources/FaunaDB/Client.swift:146:82: error: cannot infer type of closure parameter 'error' without a type annotation
144 | ifFailure failureCallback: @escaping (Error) -> Void) {
145 |
146 | let task = session.dataTask(with: request) { [weak self] data, response, error in
| `- error: cannot infer type of closure parameter 'error' without a type annotation
147 | guard let this = self else { return }
148 |
/host/spi-builder-workspace/Sources/FaunaDB/Client.swift:150:39: error: argument type '_' expected to be an instance of a class or class-constrained type
148 |
149 | guard this.handle(error: error, with: failureCallback) else {
150 | this.handle(response: response,
| `- error: argument type '_' expected to be an instance of a class or class-constrained type
151 | data: data,
152 | ifSuccess: successCallback,
/host/spi-builder-workspace/Sources/FaunaDB/Client.swift:177:39: warning: conditional downcast from 'URLResponse?' (aka 'Optional<AnyObject>') to 'HTTPURLResponse' (aka 'AnyObject') does nothing
175 | ifFailure failureCallback: @escaping (Error) -> Void) {
176 |
177 | guard let response = response as? HTTPURLResponse, let data = data else {
| `- warning: conditional downcast from 'URLResponse?' (aka 'Optional<AnyObject>') to 'HTTPURLResponse' (aka 'AnyObject') does nothing
178 | failureCallback(UnknownError(message: "Invalid server response."))
179 | return
/host/spi-builder-workspace/Sources/FaunaDB/Client.swift:177:43: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
175 | ifFailure failureCallback: @escaping (Error) -> Void) {
176 |
177 | guard let response = response as? HTTPURLResponse, let data = data else {
| `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
178 | failureCallback(UnknownError(message: "Invalid server response."))
179 | return
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias HTTPURLResponse = AnyObject
| `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/FaunaDB/Client.swift:182:42: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'allHeaderFields'
180 | }
181 |
182 | if let txnHeaderValue = response.allHeaderFields["X-Txn-Time"] as? String, let txnTime = Int(txnHeaderValue) {
| `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'allHeaderFields'
183 | syncLastTxnTime(txnTime)
184 | }
[15/20] Compiling FaunaDB LanguageExtensions.swift
/host/spi-builder-workspace/Sources/FaunaDB/LanguageExtensions.swift:24:16: error: cannot find 'CFGetTypeID' in scope
22 |
23 | func isBoolNumber() -> Bool {
24 | return CFGetTypeID(self) == CFBooleanGetTypeID()
| `- error: cannot find 'CFGetTypeID' in scope
25 | }
26 |
/host/spi-builder-workspace/Sources/FaunaDB/LanguageExtensions.swift:24:37: error: cannot find 'CFBooleanGetTypeID' in scope
22 |
23 | func isBoolNumber() -> Bool {
24 | return CFGetTypeID(self) == CFBooleanGetTypeID()
| `- error: cannot find 'CFBooleanGetTypeID' in scope
25 | }
26 |
/host/spi-builder-workspace/Sources/FaunaDB/Latch.swift:9:24: error: cannot find 'DispatchSemaphore' in scope
7 | internal class Latch<T> {
8 |
9 | private let lock = DispatchSemaphore(value: 0)
| `- error: cannot find 'DispatchSemaphore' in scope
10 |
11 | var value: Try<T>? {
/host/spi-builder-workspace/Sources/FaunaDB/Latch.swift:16:25: error: cannot find type 'DispatchTime' in scope
14 | }
15 |
16 | func await(timeout: DispatchTime) throws -> T {
| `- error: cannot find type 'DispatchTime' in scope
17 | if case .timedOut = lock.wait(timeout: timeout) {
18 | let now = DispatchTime.now()
/host/spi-builder-workspace/Sources/FaunaDB/Latch.swift:33:32: error: cannot find type 'DispatchTime' in scope
31 | extension Latch {
32 |
33 | static func await(timeout: DispatchTime, _ fn: (@escaping (Try<T>) -> Void) -> Void) throws -> T {
| `- error: cannot find type 'DispatchTime' in scope
34 | let latch = Latch<T>()
35 | fn { value in latch.value = value }
/host/spi-builder-workspace/Sources/FaunaDB/Latch.swift:18:23: error: cannot find 'DispatchTime' in scope
16 | func await(timeout: DispatchTime) throws -> T {
17 | if case .timedOut = lock.wait(timeout: timeout) {
18 | let now = DispatchTime.now()
| `- error: cannot find 'DispatchTime' in scope
19 | let uptime = now.uptimeNanoseconds - timeout.uptimeNanoseconds
20 | throw LatchTimeout(uptimeNanoseconds: uptime)
[16/20] Compiling FaunaDB Latch.swift
/host/spi-builder-workspace/Sources/FaunaDB/LanguageExtensions.swift:24:16: error: cannot find 'CFGetTypeID' in scope
22 |
23 | func isBoolNumber() -> Bool {
24 | return CFGetTypeID(self) == CFBooleanGetTypeID()
| `- error: cannot find 'CFGetTypeID' in scope
25 | }
26 |
/host/spi-builder-workspace/Sources/FaunaDB/LanguageExtensions.swift:24:37: error: cannot find 'CFBooleanGetTypeID' in scope
22 |
23 | func isBoolNumber() -> Bool {
24 | return CFGetTypeID(self) == CFBooleanGetTypeID()
| `- error: cannot find 'CFBooleanGetTypeID' in scope
25 | }
26 |
/host/spi-builder-workspace/Sources/FaunaDB/Latch.swift:9:24: error: cannot find 'DispatchSemaphore' in scope
7 | internal class Latch<T> {
8 |
9 | private let lock = DispatchSemaphore(value: 0)
| `- error: cannot find 'DispatchSemaphore' in scope
10 |
11 | var value: Try<T>? {
/host/spi-builder-workspace/Sources/FaunaDB/Latch.swift:16:25: error: cannot find type 'DispatchTime' in scope
14 | }
15 |
16 | func await(timeout: DispatchTime) throws -> T {
| `- error: cannot find type 'DispatchTime' in scope
17 | if case .timedOut = lock.wait(timeout: timeout) {
18 | let now = DispatchTime.now()
/host/spi-builder-workspace/Sources/FaunaDB/Latch.swift:33:32: error: cannot find type 'DispatchTime' in scope
31 | extension Latch {
32 |
33 | static func await(timeout: DispatchTime, _ fn: (@escaping (Try<T>) -> Void) -> Void) throws -> T {
| `- error: cannot find type 'DispatchTime' in scope
34 | let latch = Latch<T>()
35 | fn { value in latch.value = value }
/host/spi-builder-workspace/Sources/FaunaDB/Latch.swift:18:23: error: cannot find 'DispatchTime' in scope
16 | func await(timeout: DispatchTime) throws -> T {
17 | if case .timedOut = lock.wait(timeout: timeout) {
18 | let now = DispatchTime.now()
| `- error: cannot find 'DispatchTime' in scope
19 | let uptime = now.uptimeNanoseconds - timeout.uptimeNanoseconds
20 | throw LatchTimeout(uptimeNanoseconds: uptime)
[17/20] Compiling FaunaDB Path.swift
/host/spi-builder-workspace/Sources/FaunaDB/AtomicInt.swift:5:23: error: cannot find type 'DispatchQueue' in scope
3 | internal final class AtomicInt {
4 |
5 | private let lock: DispatchQueue
| `- error: cannot find type 'DispatchQueue' in scope
6 | private var current: Int
7 |
[18/20] Compiling FaunaDB Query.swift
/host/spi-builder-workspace/Sources/FaunaDB/AtomicInt.swift:5:23: error: cannot find type 'DispatchQueue' in scope
3 | internal final class AtomicInt {
4 |
5 | private let lock: DispatchQueue
| `- error: cannot find type 'DispatchQueue' in scope
6 | private var current: Int
7 |
[19/20] Compiling FaunaDB Value+Traversal.swift
[20/20] Compiling FaunaDB Value.swift
BUILD FAILURE 6.3 wasm