Build Information
Failed to build SupabaseStorage, reference 0.1.4 (65cae9
), with Swift 6.1 for Wasm on 28 May 2025 18:06:29 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1
Build Log
========================================
RunAll
========================================
Builder version: 4.63.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/supabase-community/storage-swift.git
Reference: 0.1.4
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/supabase-community/storage-swift
* tag 0.1.4 -> FETCH_HEAD
HEAD is now at 65cae9e Fix getPublicURL method (#26)
Cloned https://github.com/supabase-community/storage-swift.git
Revision (git rev-parse @):
65cae9e1156711043cbdebb27b4df93cbef46a1b
SUCCESS checkout https://github.com/supabase-community/storage-swift.git at 0.1.4
========================================
Build
========================================
Selected platform: wasm
Swift version: 6.1
Building package at path: $PWD
https://github.com/supabase-community/storage-swift.git
https://github.com/supabase-community/storage-swift.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
"dependencies" : [
],
"manifest_display_name" : "SupabaseStorage",
"name" : "SupabaseStorage",
"path" : "/host/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "13.0"
},
{
"name" : "maccatalyst",
"version" : "13.0"
},
{
"name" : "macos",
"version" : "10.15"
},
{
"name" : "watchos",
"version" : "6.0"
},
{
"name" : "tvos",
"version" : "13.0"
}
],
"products" : [
{
"name" : "SupabaseStorage",
"targets" : [
"SupabaseStorage"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "SupabaseStorageTests",
"module_type" : "SwiftTarget",
"name" : "SupabaseStorageTests",
"path" : "Tests/SupabaseStorageTests",
"sources" : [
"SupabaseStorageTests.swift"
],
"target_dependencies" : [
"SupabaseStorage"
],
"type" : "test"
},
{
"c99name" : "SupabaseStorage",
"module_type" : "SwiftTarget",
"name" : "SupabaseStorage",
"path" : "Sources/SupabaseStorage",
"product_memberships" : [
"SupabaseStorage"
],
"sources" : [
"Bucket.swift",
"BucketOptions.swift",
"FileObject.swift",
"FileOptions.swift",
"MultipartFile.swift",
"SearchOptions.swift",
"SortBy.swift",
"StorageApi.swift",
"StorageBucketApi.swift",
"StorageError.swift",
"StorageFileApi.swift",
"StorageHTTPClient.swift",
"SupabaseStorage.swift",
"TransformOptions.swift"
],
"type" : "library"
}
],
"tools_version" : "5.5"
}
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi -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 2>&1
wasm-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:7e37457820e5f17452a98118754f345f2619722c485f2db0d8b666940a83afd2
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
[3/16] Compiling SupabaseStorage SupabaseStorage.swift
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:8:25: error: cannot find type 'URLRequest' in scope
6 |
7 | public protocol StorageHTTPClient {
8 | func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse)
| `- error: cannot find type 'URLRequest' in scope
9 | func upload(_ request: URLRequest, from data: Data) async throws -> (Data, HTTPURLResponse)
10 | }
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:9:26: error: cannot find type 'URLRequest' in scope
7 | public protocol StorageHTTPClient {
8 | func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse)
9 | func upload(_ request: URLRequest, from data: Data) async throws -> (Data, HTTPURLResponse)
| `- error: cannot find type 'URLRequest' in scope
10 | }
11 |
[4/17] Compiling SupabaseStorage StorageFileApi.swift
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageFileApi.swift:7:5: warning: let 'DEFAULT_SEARCH_OPTIONS' is not concurrency-safe because non-'Sendable' type 'SearchOptions' may have shared mutable state; this is an error in the Swift 6 language mode
5 | #endif
6 |
7 | let DEFAULT_SEARCH_OPTIONS = SearchOptions(
| |- warning: let 'DEFAULT_SEARCH_OPTIONS' is not concurrency-safe because non-'Sendable' type 'SearchOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'DEFAULT_SEARCH_OPTIONS' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
8 | limit: 100,
9 | offset: 0,
/host/spi-builder-workspace/Sources/SupabaseStorage/SearchOptions.swift:1:15: note: consider making struct 'SearchOptions' conform to the 'Sendable' protocol
1 | public struct SearchOptions {
| `- note: consider making struct 'SearchOptions' conform to the 'Sendable' protocol
2 | /// The number of files you want to be returned.
3 | public var limit: Int?
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:8:25: error: cannot find type 'URLRequest' in scope
6 |
7 | public protocol StorageHTTPClient {
8 | func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse)
| `- error: cannot find type 'URLRequest' in scope
9 | func upload(_ request: URLRequest, from data: Data) async throws -> (Data, HTTPURLResponse)
10 | }
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:9:26: error: cannot find type 'URLRequest' in scope
7 | public protocol StorageHTTPClient {
8 | func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse)
9 | func upload(_ request: URLRequest, from data: Data) async throws -> (Data, HTTPURLResponse)
| `- error: cannot find type 'URLRequest' in scope
10 | }
11 |
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:8:60: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
6 |
7 | public protocol StorageHTTPClient {
8 | func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse)
| `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
9 | func upload(_ request: URLRequest, from data: Data) async throws -> (Data, HTTPURLResponse)
10 | }
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/SupabaseStorage/StorageHTTPClient.swift:9:78: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
7 | public protocol StorageHTTPClient {
8 | func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse)
9 | func upload(_ request: URLRequest, from data: Data) async throws -> (Data, HTTPURLResponse)
| `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
10 | }
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/SupabaseStorage/StorageHTTPClient.swift:15:32: error: cannot find type 'URLRequest' in scope
13 | public init() {}
14 |
15 | public func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse) {
| `- error: cannot find type 'URLRequest' in scope
16 | try await withCheckedThrowingContinuation { continuation in
17 | let dataTask = URLSession.shared.dataTask(with: request) { data, response, error in
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:15:67: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
13 | public init() {}
14 |
15 | public func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse) {
| `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
16 | try await withCheckedThrowingContinuation { continuation in
17 | let dataTask = URLSession.shared.dataTask(with: request) { data, response, error in
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/SupabaseStorage/StorageHTTPClient.swift:39:16: error: cannot find type 'URLRequest' in scope
37 |
38 | public func upload(
39 | _ request: URLRequest,
| `- error: cannot find type 'URLRequest' in scope
40 | from data: Data
41 | ) async throws -> (Data, HTTPURLResponse) {
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:41:28: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
39 | _ request: URLRequest,
40 | from data: Data
41 | ) async throws -> (Data, HTTPURLResponse) {
| `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
42 | try await withCheckedThrowingContinuation { continuation in
43 | let task = URLSession.shared.uploadTask(with: request, from: data) { data, response, error in
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/SupabaseStorage/StorageHTTPClient.swift:17:33: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
15 | public func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse) {
16 | try await withCheckedThrowingContinuation { continuation in
17 | let dataTask = URLSession.shared.dataTask(with: request) { data, response, error in
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
18 | if let error = error {
19 | continuation.resume(throwing: error)
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:43:29: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
41 | ) async throws -> (Data, HTTPURLResponse) {
42 | try await withCheckedThrowingContinuation { continuation in
43 | let task = URLSession.shared.uploadTask(with: request, from: data) { data, response, error in
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
44 | if let error = error {
45 | continuation.resume(throwing: error)
[5/17] Compiling SupabaseStorage StorageHTTPClient.swift
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageFileApi.swift:7:5: warning: let 'DEFAULT_SEARCH_OPTIONS' is not concurrency-safe because non-'Sendable' type 'SearchOptions' may have shared mutable state; this is an error in the Swift 6 language mode
5 | #endif
6 |
7 | let DEFAULT_SEARCH_OPTIONS = SearchOptions(
| |- warning: let 'DEFAULT_SEARCH_OPTIONS' is not concurrency-safe because non-'Sendable' type 'SearchOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'DEFAULT_SEARCH_OPTIONS' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
8 | limit: 100,
9 | offset: 0,
/host/spi-builder-workspace/Sources/SupabaseStorage/SearchOptions.swift:1:15: note: consider making struct 'SearchOptions' conform to the 'Sendable' protocol
1 | public struct SearchOptions {
| `- note: consider making struct 'SearchOptions' conform to the 'Sendable' protocol
2 | /// The number of files you want to be returned.
3 | public var limit: Int?
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:8:25: error: cannot find type 'URLRequest' in scope
6 |
7 | public protocol StorageHTTPClient {
8 | func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse)
| `- error: cannot find type 'URLRequest' in scope
9 | func upload(_ request: URLRequest, from data: Data) async throws -> (Data, HTTPURLResponse)
10 | }
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:9:26: error: cannot find type 'URLRequest' in scope
7 | public protocol StorageHTTPClient {
8 | func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse)
9 | func upload(_ request: URLRequest, from data: Data) async throws -> (Data, HTTPURLResponse)
| `- error: cannot find type 'URLRequest' in scope
10 | }
11 |
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:8:60: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
6 |
7 | public protocol StorageHTTPClient {
8 | func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse)
| `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
9 | func upload(_ request: URLRequest, from data: Data) async throws -> (Data, HTTPURLResponse)
10 | }
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/SupabaseStorage/StorageHTTPClient.swift:9:78: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
7 | public protocol StorageHTTPClient {
8 | func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse)
9 | func upload(_ request: URLRequest, from data: Data) async throws -> (Data, HTTPURLResponse)
| `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
10 | }
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/SupabaseStorage/StorageHTTPClient.swift:15:32: error: cannot find type 'URLRequest' in scope
13 | public init() {}
14 |
15 | public func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse) {
| `- error: cannot find type 'URLRequest' in scope
16 | try await withCheckedThrowingContinuation { continuation in
17 | let dataTask = URLSession.shared.dataTask(with: request) { data, response, error in
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:15:67: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
13 | public init() {}
14 |
15 | public func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse) {
| `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
16 | try await withCheckedThrowingContinuation { continuation in
17 | let dataTask = URLSession.shared.dataTask(with: request) { data, response, error in
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/SupabaseStorage/StorageHTTPClient.swift:39:16: error: cannot find type 'URLRequest' in scope
37 |
38 | public func upload(
39 | _ request: URLRequest,
| `- error: cannot find type 'URLRequest' in scope
40 | from data: Data
41 | ) async throws -> (Data, HTTPURLResponse) {
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:41:28: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
39 | _ request: URLRequest,
40 | from data: Data
41 | ) async throws -> (Data, HTTPURLResponse) {
| `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
42 | try await withCheckedThrowingContinuation { continuation in
43 | let task = URLSession.shared.uploadTask(with: request, from: data) { data, response, error in
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/SupabaseStorage/StorageHTTPClient.swift:17:33: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
15 | public func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse) {
16 | try await withCheckedThrowingContinuation { continuation in
17 | let dataTask = URLSession.shared.dataTask(with: request) { data, response, error in
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
18 | if let error = error {
19 | continuation.resume(throwing: error)
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:43:29: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
41 | ) async throws -> (Data, HTTPURLResponse) {
42 | try await withCheckedThrowingContinuation { continuation in
43 | let task = URLSession.shared.uploadTask(with: request, from: data) { data, response, error in
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
44 | if let error = error {
45 | continuation.resume(throwing: error)
[6/17] Compiling SupabaseStorage SortBy.swift
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:8:25: error: cannot find type 'URLRequest' in scope
6 |
7 | public protocol StorageHTTPClient {
8 | func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse)
| `- error: cannot find type 'URLRequest' in scope
9 | func upload(_ request: URLRequest, from data: Data) async throws -> (Data, HTTPURLResponse)
10 | }
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:9:26: error: cannot find type 'URLRequest' in scope
7 | public protocol StorageHTTPClient {
8 | func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse)
9 | func upload(_ request: URLRequest, from data: Data) async throws -> (Data, HTTPURLResponse)
| `- error: cannot find type 'URLRequest' in scope
10 | }
11 |
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageApi.swift:38:19: error: cannot find 'URLRequest' in scope
36 | headers: [String: String]? = nil
37 | ) async throws -> Any {
38 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
39 | request.httpMethod = method.rawValue
40 |
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageApi.swift:74:19: error: cannot find 'URLRequest' in scope
72 | jsonSerialization: Bool = true
73 | ) async throws -> Any {
74 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
75 | request.httpMethod = method.rawValue
76 |
[7/17] Compiling SupabaseStorage StorageApi.swift
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:8:25: error: cannot find type 'URLRequest' in scope
6 |
7 | public protocol StorageHTTPClient {
8 | func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse)
| `- error: cannot find type 'URLRequest' in scope
9 | func upload(_ request: URLRequest, from data: Data) async throws -> (Data, HTTPURLResponse)
10 | }
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:9:26: error: cannot find type 'URLRequest' in scope
7 | public protocol StorageHTTPClient {
8 | func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse)
9 | func upload(_ request: URLRequest, from data: Data) async throws -> (Data, HTTPURLResponse)
| `- error: cannot find type 'URLRequest' in scope
10 | }
11 |
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageApi.swift:38:19: error: cannot find 'URLRequest' in scope
36 | headers: [String: String]? = nil
37 | ) async throws -> Any {
38 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
39 | request.httpMethod = method.rawValue
40 |
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageApi.swift:74:19: error: cannot find 'URLRequest' in scope
72 | jsonSerialization: Bool = true
73 | ) async throws -> Any {
74 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
75 | request.httpMethod = method.rawValue
76 |
[8/17] Compiling SupabaseStorage StorageBucketApi.swift
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:8:25: error: cannot find type 'URLRequest' in scope
6 |
7 | public protocol StorageHTTPClient {
8 | func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse)
| `- error: cannot find type 'URLRequest' in scope
9 | func upload(_ request: URLRequest, from data: Data) async throws -> (Data, HTTPURLResponse)
10 | }
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:9:26: error: cannot find type 'URLRequest' in scope
7 | public protocol StorageHTTPClient {
8 | func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse)
9 | func upload(_ request: URLRequest, from data: Data) async throws -> (Data, HTTPURLResponse)
| `- error: cannot find type 'URLRequest' in scope
10 | }
11 |
[9/17] Compiling SupabaseStorage StorageError.swift
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:8:25: error: cannot find type 'URLRequest' in scope
6 |
7 | public protocol StorageHTTPClient {
8 | func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse)
| `- error: cannot find type 'URLRequest' in scope
9 | func upload(_ request: URLRequest, from data: Data) async throws -> (Data, HTTPURLResponse)
10 | }
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:9:26: error: cannot find type 'URLRequest' in scope
7 | public protocol StorageHTTPClient {
8 | func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse)
9 | func upload(_ request: URLRequest, from data: Data) async throws -> (Data, HTTPURLResponse)
| `- error: cannot find type 'URLRequest' in scope
10 | }
11 |
[10/17] Compiling SupabaseStorage TransformOptions.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[11/17] Compiling SupabaseStorage FileObject.swift
[12/17] Compiling SupabaseStorage FileOptions.swift
[13/17] Compiling SupabaseStorage Bucket.swift
[14/17] Compiling SupabaseStorage BucketOptions.swift
[15/17] Compiling SupabaseStorage MultipartFile.swift
[16/17] Compiling SupabaseStorage SearchOptions.swift
[17/17] Emitting module SupabaseStorage
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:8:25: error: cannot find type 'URLRequest' in scope
6 |
7 | public protocol StorageHTTPClient {
8 | func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse)
| `- error: cannot find type 'URLRequest' in scope
9 | func upload(_ request: URLRequest, from data: Data) async throws -> (Data, HTTPURLResponse)
10 | }
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:9:26: error: cannot find type 'URLRequest' in scope
7 | public protocol StorageHTTPClient {
8 | func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse)
9 | func upload(_ request: URLRequest, from data: Data) async throws -> (Data, HTTPURLResponse)
| `- error: cannot find type 'URLRequest' in scope
10 | }
11 |
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageFileApi.swift:7:5: warning: let 'DEFAULT_SEARCH_OPTIONS' is not concurrency-safe because non-'Sendable' type 'SearchOptions' may have shared mutable state; this is an error in the Swift 6 language mode
5 | #endif
6 |
7 | let DEFAULT_SEARCH_OPTIONS = SearchOptions(
| |- warning: let 'DEFAULT_SEARCH_OPTIONS' is not concurrency-safe because non-'Sendable' type 'SearchOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'DEFAULT_SEARCH_OPTIONS' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
8 | limit: 100,
9 | offset: 0,
/host/spi-builder-workspace/Sources/SupabaseStorage/SearchOptions.swift:1:15: note: consider making struct 'SearchOptions' conform to the 'Sendable' protocol
1 | public struct SearchOptions {
| `- note: consider making struct 'SearchOptions' conform to the 'Sendable' protocol
2 | /// The number of files you want to be returned.
3 | public var limit: Int?
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:8:60: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
6 |
7 | public protocol StorageHTTPClient {
8 | func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse)
| `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
9 | func upload(_ request: URLRequest, from data: Data) async throws -> (Data, HTTPURLResponse)
10 | }
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/SupabaseStorage/StorageHTTPClient.swift:9:78: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
7 | public protocol StorageHTTPClient {
8 | func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse)
9 | func upload(_ request: URLRequest, from data: Data) async throws -> (Data, HTTPURLResponse)
| `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
10 | }
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/SupabaseStorage/StorageHTTPClient.swift:15:32: error: cannot find type 'URLRequest' in scope
13 | public init() {}
14 |
15 | public func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse) {
| `- error: cannot find type 'URLRequest' in scope
16 | try await withCheckedThrowingContinuation { continuation in
17 | let dataTask = URLSession.shared.dataTask(with: request) { data, response, error in
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:15:67: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
13 | public init() {}
14 |
15 | public func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse) {
| `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
16 | try await withCheckedThrowingContinuation { continuation in
17 | let dataTask = URLSession.shared.dataTask(with: request) { data, response, error in
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/SupabaseStorage/StorageHTTPClient.swift:39:16: error: cannot find type 'URLRequest' in scope
37 |
38 | public func upload(
39 | _ request: URLRequest,
| `- error: cannot find type 'URLRequest' in scope
40 | from data: Data
41 | ) async throws -> (Data, HTTPURLResponse) {
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:41:28: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
39 | _ request: URLRequest,
40 | from data: Data
41 | ) async throws -> (Data, HTTPURLResponse) {
| `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
42 | try await withCheckedThrowingContinuation { continuation in
43 | let task = URLSession.shared.uploadTask(with: request, from: data) { data, response, error in
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
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1
wasm-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:7e37457820e5f17452a98118754f345f2619722c485f2db0d8b666940a83afd2
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest
[0/1] Planning build
Building for debugging...
[0/1] Write swift-version-24593BA9C3E375BF.txt
[2/15] Compiling SupabaseStorage SupabaseStorage.swift
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:8:25: error: cannot find type 'URLRequest' in scope
6 |
7 | public protocol StorageHTTPClient {
8 | func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse)
| `- error: cannot find type 'URLRequest' in scope
9 | func upload(_ request: URLRequest, from data: Data) async throws -> (Data, HTTPURLResponse)
10 | }
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:9:26: error: cannot find type 'URLRequest' in scope
7 | public protocol StorageHTTPClient {
8 | func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse)
9 | func upload(_ request: URLRequest, from data: Data) async throws -> (Data, HTTPURLResponse)
| `- error: cannot find type 'URLRequest' in scope
10 | }
11 |
[3/16] Compiling SupabaseStorage TransformOptions.swift
[4/16] Compiling SupabaseStorage StorageFileApi.swift
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:8:25: error: cannot find type 'URLRequest' in scope
6 |
7 | public protocol StorageHTTPClient {
8 | func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse)
| `- error: cannot find type 'URLRequest' in scope
9 | func upload(_ request: URLRequest, from data: Data) async throws -> (Data, HTTPURLResponse)
10 | }
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:9:26: error: cannot find type 'URLRequest' in scope
7 | public protocol StorageHTTPClient {
8 | func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse)
9 | func upload(_ request: URLRequest, from data: Data) async throws -> (Data, HTTPURLResponse)
| `- error: cannot find type 'URLRequest' in scope
10 | }
11 |
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:8:60: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
6 |
7 | public protocol StorageHTTPClient {
8 | func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse)
| `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
9 | func upload(_ request: URLRequest, from data: Data) async throws -> (Data, HTTPURLResponse)
10 | }
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/SupabaseStorage/StorageHTTPClient.swift:9:78: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
7 | public protocol StorageHTTPClient {
8 | func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse)
9 | func upload(_ request: URLRequest, from data: Data) async throws -> (Data, HTTPURLResponse)
| `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
10 | }
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/SupabaseStorage/StorageHTTPClient.swift:15:32: error: cannot find type 'URLRequest' in scope
13 | public init() {}
14 |
15 | public func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse) {
| `- error: cannot find type 'URLRequest' in scope
16 | try await withCheckedThrowingContinuation { continuation in
17 | let dataTask = URLSession.shared.dataTask(with: request) { data, response, error in
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:15:67: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
13 | public init() {}
14 |
15 | public func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse) {
| `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
16 | try await withCheckedThrowingContinuation { continuation in
17 | let dataTask = URLSession.shared.dataTask(with: request) { data, response, error in
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/SupabaseStorage/StorageHTTPClient.swift:39:16: error: cannot find type 'URLRequest' in scope
37 |
38 | public func upload(
39 | _ request: URLRequest,
| `- error: cannot find type 'URLRequest' in scope
40 | from data: Data
41 | ) async throws -> (Data, HTTPURLResponse) {
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:41:28: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
39 | _ request: URLRequest,
40 | from data: Data
41 | ) async throws -> (Data, HTTPURLResponse) {
| `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
42 | try await withCheckedThrowingContinuation { continuation in
43 | let task = URLSession.shared.uploadTask(with: request, from: data) { data, response, error in
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/SupabaseStorage/StorageHTTPClient.swift:17:33: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
15 | public func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse) {
16 | try await withCheckedThrowingContinuation { continuation in
17 | let dataTask = URLSession.shared.dataTask(with: request) { data, response, error in
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
18 | if let error = error {
19 | continuation.resume(throwing: error)
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:43:29: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
41 | ) async throws -> (Data, HTTPURLResponse) {
42 | try await withCheckedThrowingContinuation { continuation in
43 | let task = URLSession.shared.uploadTask(with: request, from: data) { data, response, error in
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
44 | if let error = error {
45 | continuation.resume(throwing: error)
[5/16] Compiling SupabaseStorage StorageHTTPClient.swift
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:8:25: error: cannot find type 'URLRequest' in scope
6 |
7 | public protocol StorageHTTPClient {
8 | func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse)
| `- error: cannot find type 'URLRequest' in scope
9 | func upload(_ request: URLRequest, from data: Data) async throws -> (Data, HTTPURLResponse)
10 | }
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:9:26: error: cannot find type 'URLRequest' in scope
7 | public protocol StorageHTTPClient {
8 | func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse)
9 | func upload(_ request: URLRequest, from data: Data) async throws -> (Data, HTTPURLResponse)
| `- error: cannot find type 'URLRequest' in scope
10 | }
11 |
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:8:60: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
6 |
7 | public protocol StorageHTTPClient {
8 | func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse)
| `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
9 | func upload(_ request: URLRequest, from data: Data) async throws -> (Data, HTTPURLResponse)
10 | }
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/SupabaseStorage/StorageHTTPClient.swift:9:78: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
7 | public protocol StorageHTTPClient {
8 | func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse)
9 | func upload(_ request: URLRequest, from data: Data) async throws -> (Data, HTTPURLResponse)
| `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
10 | }
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/SupabaseStorage/StorageHTTPClient.swift:15:32: error: cannot find type 'URLRequest' in scope
13 | public init() {}
14 |
15 | public func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse) {
| `- error: cannot find type 'URLRequest' in scope
16 | try await withCheckedThrowingContinuation { continuation in
17 | let dataTask = URLSession.shared.dataTask(with: request) { data, response, error in
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:15:67: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
13 | public init() {}
14 |
15 | public func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse) {
| `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
16 | try await withCheckedThrowingContinuation { continuation in
17 | let dataTask = URLSession.shared.dataTask(with: request) { data, response, error in
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/SupabaseStorage/StorageHTTPClient.swift:39:16: error: cannot find type 'URLRequest' in scope
37 |
38 | public func upload(
39 | _ request: URLRequest,
| `- error: cannot find type 'URLRequest' in scope
40 | from data: Data
41 | ) async throws -> (Data, HTTPURLResponse) {
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:41:28: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
39 | _ request: URLRequest,
40 | from data: Data
41 | ) async throws -> (Data, HTTPURLResponse) {
| `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
42 | try await withCheckedThrowingContinuation { continuation in
43 | let task = URLSession.shared.uploadTask(with: request, from: data) { data, response, error in
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/SupabaseStorage/StorageHTTPClient.swift:17:33: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
15 | public func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse) {
16 | try await withCheckedThrowingContinuation { continuation in
17 | let dataTask = URLSession.shared.dataTask(with: request) { data, response, error in
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
18 | if let error = error {
19 | continuation.resume(throwing: error)
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:43:29: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
41 | ) async throws -> (Data, HTTPURLResponse) {
42 | try await withCheckedThrowingContinuation { continuation in
43 | let task = URLSession.shared.uploadTask(with: request, from: data) { data, response, error in
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
44 | if let error = error {
45 | continuation.resume(throwing: error)
[6/16] Compiling SupabaseStorage StorageBucketApi.swift
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:8:25: error: cannot find type 'URLRequest' in scope
6 |
7 | public protocol StorageHTTPClient {
8 | func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse)
| `- error: cannot find type 'URLRequest' in scope
9 | func upload(_ request: URLRequest, from data: Data) async throws -> (Data, HTTPURLResponse)
10 | }
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:9:26: error: cannot find type 'URLRequest' in scope
7 | public protocol StorageHTTPClient {
8 | func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse)
9 | func upload(_ request: URLRequest, from data: Data) async throws -> (Data, HTTPURLResponse)
| `- error: cannot find type 'URLRequest' in scope
10 | }
11 |
[7/16] Compiling SupabaseStorage StorageError.swift
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:8:25: error: cannot find type 'URLRequest' in scope
6 |
7 | public protocol StorageHTTPClient {
8 | func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse)
| `- error: cannot find type 'URLRequest' in scope
9 | func upload(_ request: URLRequest, from data: Data) async throws -> (Data, HTTPURLResponse)
10 | }
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:9:26: error: cannot find type 'URLRequest' in scope
7 | public protocol StorageHTTPClient {
8 | func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse)
9 | func upload(_ request: URLRequest, from data: Data) async throws -> (Data, HTTPURLResponse)
| `- error: cannot find type 'URLRequest' in scope
10 | }
11 |
[8/16] Compiling SupabaseStorage SortBy.swift
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:8:25: error: cannot find type 'URLRequest' in scope
6 |
7 | public protocol StorageHTTPClient {
8 | func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse)
| `- error: cannot find type 'URLRequest' in scope
9 | func upload(_ request: URLRequest, from data: Data) async throws -> (Data, HTTPURLResponse)
10 | }
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:9:26: error: cannot find type 'URLRequest' in scope
7 | public protocol StorageHTTPClient {
8 | func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse)
9 | func upload(_ request: URLRequest, from data: Data) async throws -> (Data, HTTPURLResponse)
| `- error: cannot find type 'URLRequest' in scope
10 | }
11 |
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageApi.swift:38:19: error: cannot find 'URLRequest' in scope
36 | headers: [String: String]? = nil
37 | ) async throws -> Any {
38 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
39 | request.httpMethod = method.rawValue
40 |
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageApi.swift:74:19: error: cannot find 'URLRequest' in scope
72 | jsonSerialization: Bool = true
73 | ) async throws -> Any {
74 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
75 | request.httpMethod = method.rawValue
76 |
[9/16] Compiling SupabaseStorage StorageApi.swift
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:8:25: error: cannot find type 'URLRequest' in scope
6 |
7 | public protocol StorageHTTPClient {
8 | func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse)
| `- error: cannot find type 'URLRequest' in scope
9 | func upload(_ request: URLRequest, from data: Data) async throws -> (Data, HTTPURLResponse)
10 | }
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:9:26: error: cannot find type 'URLRequest' in scope
7 | public protocol StorageHTTPClient {
8 | func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse)
9 | func upload(_ request: URLRequest, from data: Data) async throws -> (Data, HTTPURLResponse)
| `- error: cannot find type 'URLRequest' in scope
10 | }
11 |
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageApi.swift:38:19: error: cannot find 'URLRequest' in scope
36 | headers: [String: String]? = nil
37 | ) async throws -> Any {
38 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
39 | request.httpMethod = method.rawValue
40 |
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageApi.swift:74:19: error: cannot find 'URLRequest' in scope
72 | jsonSerialization: Bool = true
73 | ) async throws -> Any {
74 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
75 | request.httpMethod = method.rawValue
76 |
error: emit-module command failed with exit code 1 (use -v to see invocation)
[10/16] Compiling SupabaseStorage FileObject.swift
[11/16] Compiling SupabaseStorage FileOptions.swift
[12/16] Compiling SupabaseStorage Bucket.swift
[13/16] Compiling SupabaseStorage BucketOptions.swift
[14/16] Compiling SupabaseStorage MultipartFile.swift
[15/16] Compiling SupabaseStorage SearchOptions.swift
[16/16] Emitting module SupabaseStorage
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:8:25: error: cannot find type 'URLRequest' in scope
6 |
7 | public protocol StorageHTTPClient {
8 | func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse)
| `- error: cannot find type 'URLRequest' in scope
9 | func upload(_ request: URLRequest, from data: Data) async throws -> (Data, HTTPURLResponse)
10 | }
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:9:26: error: cannot find type 'URLRequest' in scope
7 | public protocol StorageHTTPClient {
8 | func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse)
9 | func upload(_ request: URLRequest, from data: Data) async throws -> (Data, HTTPURLResponse)
| `- error: cannot find type 'URLRequest' in scope
10 | }
11 |
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:8:60: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
6 |
7 | public protocol StorageHTTPClient {
8 | func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse)
| `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
9 | func upload(_ request: URLRequest, from data: Data) async throws -> (Data, HTTPURLResponse)
10 | }
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/SupabaseStorage/StorageHTTPClient.swift:9:78: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
7 | public protocol StorageHTTPClient {
8 | func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse)
9 | func upload(_ request: URLRequest, from data: Data) async throws -> (Data, HTTPURLResponse)
| `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
10 | }
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/SupabaseStorage/StorageHTTPClient.swift:15:32: error: cannot find type 'URLRequest' in scope
13 | public init() {}
14 |
15 | public func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse) {
| `- error: cannot find type 'URLRequest' in scope
16 | try await withCheckedThrowingContinuation { continuation in
17 | let dataTask = URLSession.shared.dataTask(with: request) { data, response, error in
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:15:67: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
13 | public init() {}
14 |
15 | public func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse) {
| `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
16 | try await withCheckedThrowingContinuation { continuation in
17 | let dataTask = URLSession.shared.dataTask(with: request) { data, response, error in
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/SupabaseStorage/StorageHTTPClient.swift:39:16: error: cannot find type 'URLRequest' in scope
37 |
38 | public func upload(
39 | _ request: URLRequest,
| `- error: cannot find type 'URLRequest' in scope
40 | from data: Data
41 | ) async throws -> (Data, HTTPURLResponse) {
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:41:28: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
39 | _ request: URLRequest,
40 | from data: Data
41 | ) async throws -> (Data, HTTPURLResponse) {
| `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
42 | try await withCheckedThrowingContinuation { continuation in
43 | let task = URLSession.shared.uploadTask(with: request, from: data) { data, response, error in
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
BUILD FAILURE 6.1 wasm