The Swift Package Index logo.Swift Package Index

Build Information

Failed to build HTTPClient, reference main (960cbb), with Swift 6.1 for Wasm on 29 May 2025 17:17:18 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-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/marinofelipe/http_client.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/marinofelipe/http_client
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 960cbb5 Missing conditional imports for Linux
Cloned https://github.com/marinofelipe/http_client.git
Revision (git rev-parse @):
960cbb55c2082c97523257aec91bb6b7e57f8e2e
SUCCESS checkout https://github.com/marinofelipe/http_client.git at main
========================================
Build
========================================
Selected platform:         wasm
Swift version:             6.1
Building package at path:  $PWD
https://github.com/marinofelipe/http_client.git
https://github.com/marinofelipe/http_client.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
  "dependencies" : [
    {
      "identity" : "swift-log",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-log.git"
    }
  ],
  "manifest_display_name" : "HTTPClient",
  "name" : "HTTPClient",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "ios",
      "version" : "13.0"
    }
  ],
  "products" : [
    {
      "name" : "HTTPClient",
      "targets" : [
        "HTTPClient",
        "HTTPClientCore"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "CombineHTTPClient",
      "targets" : [
        "CombineHTTPClient",
        "HTTPClientCore"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "HTTPClientTestSupport",
      "targets" : [
        "HTTPClientTestSupport"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "HTTPClientTests",
      "module_type" : "SwiftTarget",
      "name" : "HTTPClientTests",
      "path" : "Tests/HTTPClientTests",
      "sources" : [
        "HTTPClientTests.swift",
        "HTTPResponseDecoderTests.swift",
        "HTTPResponseHandlerTests.swift",
        "Helpers/Helpers.swift",
        "Mocks/Mocks.swift"
      ],
      "target_dependencies" : [
        "HTTPClient",
        "HTTPClientTestSupport"
      ],
      "type" : "test"
    },
    {
      "c99name" : "HTTPClientTestSupport",
      "module_type" : "SwiftTarget",
      "name" : "HTTPClientTestSupport",
      "path" : "Sources/HTTPClientTestSupport",
      "product_memberships" : [
        "HTTPClientTestSupport"
      ],
      "sources" : [
        "Fakes/FakeError.swift",
        "Fakes/FakeHTTPResponse.swift",
        "Fakes/FakeResponseBody.swift",
        "Fakes/HTTPTaskFake.swift",
        "Mocks/HTTPClientMock.swift",
        "Mocks/MockURLProtocol.swift"
      ],
      "target_dependencies" : [
        "HTTPClient"
      ],
      "type" : "library"
    },
    {
      "c99name" : "HTTPClientCoreTests",
      "module_type" : "SwiftTarget",
      "name" : "HTTPClientCoreTests",
      "path" : "Tests/HTTPClientCoreTests",
      "sources" : [
        "DataExtensionTests.swift",
        "HTTPRequestBuilderTests.swift",
        "ResultExtensionTests.swift",
        "SetExtensionTests.swift"
      ],
      "target_dependencies" : [
        "HTTPClientCore",
        "HTTPClientTestSupport"
      ],
      "type" : "test"
    },
    {
      "c99name" : "HTTPClientCore",
      "module_type" : "SwiftTarget",
      "name" : "HTTPClientCore",
      "path" : "Sources/HTTPClientCore",
      "product_memberships" : [
        "HTTPClient",
        "CombineHTTPClient",
        "HTTPClientTestSupport"
      ],
      "sources" : [
        "Extensions/Data+HTTPClient.swift",
        "Extensions/Result+HTTPClient.swift",
        "Extensions/Set+HTTPClient.swift",
        "HTTPRequestBuilder/HTTPRequestBuilder.swift",
        "HTTPRequestError.swift",
        "HTTPRequestMethod.swift",
        "HTTPRequestScheme.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "HTTPClient",
      "module_type" : "SwiftTarget",
      "name" : "HTTPClient",
      "path" : "Sources/HTTPClient",
      "product_dependencies" : [
        "Logging"
      ],
      "product_memberships" : [
        "HTTPClient",
        "HTTPClientTestSupport"
      ],
      "sources" : [
        "Abstractions/HTTPTask.swift",
        "Abstractions/URLSessionProtocol.swift",
        "Decoders/HTTPDecoder.swift",
        "Extensions/Optional+Data.swift",
        "HTTPClient.swift",
        "HTTPResponse.swift",
        "Handlers/HTTPResponseHandler.swift",
        "Middlewares/HTTPClientMiddleware.swift",
        "Middlewares/LoggerMiddleware.swift"
      ],
      "target_dependencies" : [
        "HTTPClientCore"
      ],
      "type" : "library"
    },
    {
      "c99name" : "CombineHTTPClientTests",
      "module_type" : "SwiftTarget",
      "name" : "CombineHTTPClientTests",
      "path" : "Tests/CombineHTTPClientTests",
      "sources" : [
        "CombineHTTPClientTests.swift"
      ],
      "target_dependencies" : [
        "CombineHTTPClient",
        "HTTPClientTestSupport"
      ],
      "type" : "test"
    },
    {
      "c99name" : "CombineHTTPClient",
      "module_type" : "SwiftTarget",
      "name" : "CombineHTTPClient",
      "path" : "Sources/CombineHTTPClient",
      "product_dependencies" : [
        "Logging"
      ],
      "product_memberships" : [
        "CombineHTTPClient"
      ],
      "sources" : [
        "CombineHTTPClient.swift",
        "HTTPResponse.swift"
      ],
      "target_dependencies" : [
        "HTTPClientCore"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.8"
}
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-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
Fetching https://github.com/apple/swift-log.git
[1/3836] Fetching swift-log
Fetched https://github.com/apple/swift-log.git from cache (0.40s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.6.3 (1.50s)
Creating working copy for https://github.com/apple/swift-log.git
Working copy of https://github.com/apple/swift-log.git resolved at 1.6.3
Building for debugging...
[0/6] Write sources
[5/6] Write swift-version-24593BA9C3E375BF.txt
[7/19] Compiling HTTPClientCore HTTPRequestScheme.swift
[8/19] Compiling HTTPClientCore Result+HTTPClient.swift
[9/19] Compiling HTTPClientCore HTTPRequestMethod.swift
[10/19] Emitting module Logging
[11/19] Compiling Logging LogHandler.swift
[12/19] Compiling Logging MetadataProvider.swift
[13/19] Compiling Logging Locks.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[14/19] Compiling HTTPClientCore Data+HTTPClient.swift
[15/19] Emitting module HTTPClientCore
/host/spi-builder-workspace/Sources/HTTPClientCore/Extensions/Set+HTTPClient.swift:2:16: warning: static property 'defaultSuccessfulStatusCodes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
1 | public extension Set where Element == Int {
2 |     static var defaultSuccessfulStatusCodes: Set<Int> = Set(200..<300)
  |                |- warning: static property 'defaultSuccessfulStatusCodes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  |                |- note: convert 'defaultSuccessfulStatusCodes' to a 'let' constant to make 'Sendable' shared state immutable
  |                |- note: add '@MainActor' to make static property 'defaultSuccessfulStatusCodes' part of global actor 'MainActor'
  |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
3 | }
4 |
/host/spi-builder-workspace/Sources/HTTPClientCore/HTTPRequestBuilder/HTTPRequestBuilder.swift:38:30: error: cannot find type 'URLRequest' in scope
 36 |     private var timeoutInterval: TimeInterval = 10
 37 |     private var body: Data?
 38 |     private var cachePolicy: URLRequest.CachePolicy = .useProtocolCachePolicy
    |                              `- error: cannot find type 'URLRequest' in scope
 39 |     private var allHeaders = [String: String]()
 40 |     private var urlComponents = URLComponents()
/host/spi-builder-workspace/Sources/HTTPClientCore/HTTPRequestBuilder/HTTPRequestBuilder.swift:100:44: error: cannot find type 'URLRequest' in scope
 98 |     /// - Parameter cachePolicy: The cache policy for the request. Defaults to `.useProtocolCachePolicy`
 99 |     @discardableResult
100 |     public func cachePolicy(_ cachePolicy: URLRequest.CachePolicy) -> HTTPRequestBuilder {
    |                                            `- error: cannot find type 'URLRequest' in scope
101 |         self.cachePolicy = cachePolicy
102 |         return self
/host/spi-builder-workspace/Sources/HTTPClientCore/HTTPRequestBuilder/HTTPRequestBuilder.swift:111:35: error: cannot find type 'URLRequest' in scope
109 |     }
110 |
111 |     public func build() throws -> URLRequest {
    |                                   `- error: cannot find type 'URLRequest' in scope
112 |         try makeUrlRequest()
113 |     }
/host/spi-builder-workspace/Sources/HTTPClientCore/HTTPRequestBuilder/HTTPRequestBuilder.swift:118:46: error: cannot find type 'URLRequest' in scope
116 |
117 |     /// The `URLRequest` to be built.
118 |     private func makeUrlRequest() throws  -> URLRequest {
    |                                              `- error: cannot find type 'URLRequest' in scope
119 |         guard let url = urlComponents.url else {
120 |             throw HTTPRequestBuilderError.invalidURLComponents
/host/spi-builder-workspace/Sources/HTTPClientCore/HTTPRequestError.swift:8:41: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 6 | /// Possible errors for an HTTP response.
 7 | public enum HTTPResponseError: Error, CustomDebugStringConvertible {
 8 |     case invalidResponse(_ urlResponse: URLResponse)
   |                                         `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 9 |     case underlying(_ error: URLError)
10 |     case decoding(_ error: DecodingError)
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/HTTPClientCore/HTTPRequestError.swift:8:10: warning: associated value 'invalidResponse' of 'Sendable'-conforming enum 'HTTPResponseError' has non-sendable type 'URLResponse' (aka 'AnyObject'); this is an error in the Swift 6 language mode
 6 | /// Possible errors for an HTTP response.
 7 | public enum HTTPResponseError: Error, CustomDebugStringConvertible {
 8 |     case invalidResponse(_ urlResponse: URLResponse)
   |          `- warning: associated value 'invalidResponse' of 'Sendable'-conforming enum 'HTTPResponseError' has non-sendable type 'URLResponse' (aka 'AnyObject'); this is an error in the Swift 6 language mode
 9 |     case underlying(_ error: URLError)
10 |     case decoding(_ error: DecodingError)
[16/19] Compiling Logging Logging.swift
[18/20] Compiling HTTPClientCore Set+HTTPClient.swift
/host/spi-builder-workspace/Sources/HTTPClientCore/Extensions/Set+HTTPClient.swift:2:16: warning: static property 'defaultSuccessfulStatusCodes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
1 | public extension Set where Element == Int {
2 |     static var defaultSuccessfulStatusCodes: Set<Int> = Set(200..<300)
  |                |- warning: static property 'defaultSuccessfulStatusCodes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  |                |- note: convert 'defaultSuccessfulStatusCodes' to a 'let' constant to make 'Sendable' shared state immutable
  |                |- note: add '@MainActor' to make static property 'defaultSuccessfulStatusCodes' part of global actor 'MainActor'
  |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
3 | }
4 |
[19/20] Compiling HTTPClientCore HTTPRequestError.swift
/host/spi-builder-workspace/Sources/HTTPClientCore/HTTPRequestError.swift:8:41: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 6 | /// Possible errors for an HTTP response.
 7 | public enum HTTPResponseError: Error, CustomDebugStringConvertible {
 8 |     case invalidResponse(_ urlResponse: URLResponse)
   |                                         `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 9 |     case underlying(_ error: URLError)
10 |     case decoding(_ error: DecodingError)
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/HTTPClientCore/HTTPRequestError.swift:8:10: warning: associated value 'invalidResponse' of 'Sendable'-conforming enum 'HTTPResponseError' has non-sendable type 'URLResponse' (aka 'AnyObject'); this is an error in the Swift 6 language mode
 6 | /// Possible errors for an HTTP response.
 7 | public enum HTTPResponseError: Error, CustomDebugStringConvertible {
 8 |     case invalidResponse(_ urlResponse: URLResponse)
   |          `- warning: associated value 'invalidResponse' of 'Sendable'-conforming enum 'HTTPResponseError' has non-sendable type 'URLResponse' (aka 'AnyObject'); this is an error in the Swift 6 language mode
 9 |     case underlying(_ error: URLError)
10 |     case decoding(_ error: DecodingError)
[20/20] Compiling HTTPClientCore HTTPRequestBuilder.swift
/host/spi-builder-workspace/Sources/HTTPClientCore/HTTPRequestBuilder/HTTPRequestBuilder.swift:38:30: error: cannot find type 'URLRequest' in scope
 36 |     private var timeoutInterval: TimeInterval = 10
 37 |     private var body: Data?
 38 |     private var cachePolicy: URLRequest.CachePolicy = .useProtocolCachePolicy
    |                              `- error: cannot find type 'URLRequest' in scope
 39 |     private var allHeaders = [String: String]()
 40 |     private var urlComponents = URLComponents()
/host/spi-builder-workspace/Sources/HTTPClientCore/HTTPRequestBuilder/HTTPRequestBuilder.swift:100:44: error: cannot find type 'URLRequest' in scope
 98 |     /// - Parameter cachePolicy: The cache policy for the request. Defaults to `.useProtocolCachePolicy`
 99 |     @discardableResult
100 |     public func cachePolicy(_ cachePolicy: URLRequest.CachePolicy) -> HTTPRequestBuilder {
    |                                            `- error: cannot find type 'URLRequest' in scope
101 |         self.cachePolicy = cachePolicy
102 |         return self
/host/spi-builder-workspace/Sources/HTTPClientCore/HTTPRequestBuilder/HTTPRequestBuilder.swift:111:35: error: cannot find type 'URLRequest' in scope
109 |     }
110 |
111 |     public func build() throws -> URLRequest {
    |                                   `- error: cannot find type 'URLRequest' in scope
112 |         try makeUrlRequest()
113 |     }
/host/spi-builder-workspace/Sources/HTTPClientCore/HTTPRequestBuilder/HTTPRequestBuilder.swift:118:46: error: cannot find type 'URLRequest' in scope
116 |
117 |     /// The `URLRequest` to be built.
118 |     private func makeUrlRequest() throws  -> URLRequest {
    |                                              `- error: cannot find type 'URLRequest' in scope
119 |         guard let url = urlComponents.url else {
120 |             throw HTTPRequestBuilderError.invalidURLComponents
/host/spi-builder-workspace/Sources/HTTPClientCore/HTTPRequestBuilder/HTTPRequestBuilder.swift:123:26: error: cannot find 'URLRequest' in scope
121 |         }
122 |
123 |         var urlRequest = URLRequest(url: url, cachePolicy: cachePolicy, timeoutInterval: timeoutInterval)
    |                          `- error: cannot find 'URLRequest' in scope
124 |         urlRequest.httpMethod = method.rawValue
125 |         for (key, value) in allHeaders {
/host/spi-builder-workspace/Sources/HTTPClientCore/HTTPRequestBuilder/HTTPRequestBuilder.swift:141:24: error: cannot infer contextual base in reference to member 'useProtocolCachePolicy'
139 |         timeoutInterval = 10
140 |         body = nil
141 |         cachePolicy = .useProtocolCachePolicy
    |                        `- error: cannot infer contextual base in reference to member 'useProtocolCachePolicy'
142 |
143 |         // Reset all headers to default headers
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-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/14] Compiling HTTPClientCore HTTPRequestError.swift
/host/spi-builder-workspace/Sources/HTTPClientCore/HTTPRequestError.swift:8:41: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 6 | /// Possible errors for an HTTP response.
 7 | public enum HTTPResponseError: Error, CustomDebugStringConvertible {
 8 |     case invalidResponse(_ urlResponse: URLResponse)
   |                                         `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 9 |     case underlying(_ error: URLError)
10 |     case decoding(_ error: DecodingError)
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/HTTPClientCore/HTTPRequestError.swift:8:10: warning: associated value 'invalidResponse' of 'Sendable'-conforming enum 'HTTPResponseError' has non-sendable type 'URLResponse' (aka 'AnyObject'); this is an error in the Swift 6 language mode
 6 | /// Possible errors for an HTTP response.
 7 | public enum HTTPResponseError: Error, CustomDebugStringConvertible {
 8 |     case invalidResponse(_ urlResponse: URLResponse)
   |          `- warning: associated value 'invalidResponse' of 'Sendable'-conforming enum 'HTTPResponseError' has non-sendable type 'URLResponse' (aka 'AnyObject'); this is an error in the Swift 6 language mode
 9 |     case underlying(_ error: URLError)
10 |     case decoding(_ error: DecodingError)
[3/14] Compiling HTTPClientCore Result+HTTPClient.swift
[4/14] Compiling HTTPClientCore Set+HTTPClient.swift
/host/spi-builder-workspace/Sources/HTTPClientCore/Extensions/Set+HTTPClient.swift:2:16: warning: static property 'defaultSuccessfulStatusCodes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
1 | public extension Set where Element == Int {
2 |     static var defaultSuccessfulStatusCodes: Set<Int> = Set(200..<300)
  |                |- warning: static property 'defaultSuccessfulStatusCodes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  |                |- note: convert 'defaultSuccessfulStatusCodes' to a 'let' constant to make 'Sendable' shared state immutable
  |                |- note: add '@MainActor' to make static property 'defaultSuccessfulStatusCodes' part of global actor 'MainActor'
  |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
3 | }
4 |
[5/14] Compiling HTTPClientCore HTTPRequestBuilder.swift
/host/spi-builder-workspace/Sources/HTTPClientCore/HTTPRequestBuilder/HTTPRequestBuilder.swift:38:30: error: cannot find type 'URLRequest' in scope
 36 |     private var timeoutInterval: TimeInterval = 10
 37 |     private var body: Data?
 38 |     private var cachePolicy: URLRequest.CachePolicy = .useProtocolCachePolicy
    |                              `- error: cannot find type 'URLRequest' in scope
 39 |     private var allHeaders = [String: String]()
 40 |     private var urlComponents = URLComponents()
/host/spi-builder-workspace/Sources/HTTPClientCore/HTTPRequestBuilder/HTTPRequestBuilder.swift:100:44: error: cannot find type 'URLRequest' in scope
 98 |     /// - Parameter cachePolicy: The cache policy for the request. Defaults to `.useProtocolCachePolicy`
 99 |     @discardableResult
100 |     public func cachePolicy(_ cachePolicy: URLRequest.CachePolicy) -> HTTPRequestBuilder {
    |                                            `- error: cannot find type 'URLRequest' in scope
101 |         self.cachePolicy = cachePolicy
102 |         return self
/host/spi-builder-workspace/Sources/HTTPClientCore/HTTPRequestBuilder/HTTPRequestBuilder.swift:111:35: error: cannot find type 'URLRequest' in scope
109 |     }
110 |
111 |     public func build() throws -> URLRequest {
    |                                   `- error: cannot find type 'URLRequest' in scope
112 |         try makeUrlRequest()
113 |     }
/host/spi-builder-workspace/Sources/HTTPClientCore/HTTPRequestBuilder/HTTPRequestBuilder.swift:118:46: error: cannot find type 'URLRequest' in scope
116 |
117 |     /// The `URLRequest` to be built.
118 |     private func makeUrlRequest() throws  -> URLRequest {
    |                                              `- error: cannot find type 'URLRequest' in scope
119 |         guard let url = urlComponents.url else {
120 |             throw HTTPRequestBuilderError.invalidURLComponents
/host/spi-builder-workspace/Sources/HTTPClientCore/HTTPRequestBuilder/HTTPRequestBuilder.swift:123:26: error: cannot find 'URLRequest' in scope
121 |         }
122 |
123 |         var urlRequest = URLRequest(url: url, cachePolicy: cachePolicy, timeoutInterval: timeoutInterval)
    |                          `- error: cannot find 'URLRequest' in scope
124 |         urlRequest.httpMethod = method.rawValue
125 |         for (key, value) in allHeaders {
/host/spi-builder-workspace/Sources/HTTPClientCore/HTTPRequestBuilder/HTTPRequestBuilder.swift:141:24: error: cannot infer contextual base in reference to member 'useProtocolCachePolicy'
139 |         timeoutInterval = 10
140 |         body = nil
141 |         cachePolicy = .useProtocolCachePolicy
    |                        `- error: cannot infer contextual base in reference to member 'useProtocolCachePolicy'
142 |
143 |         // Reset all headers to default headers
error: emit-module command failed with exit code 1 (use -v to see invocation)
[6/14] Emitting module HTTPClientCore
/host/spi-builder-workspace/Sources/HTTPClientCore/Extensions/Set+HTTPClient.swift:2:16: warning: static property 'defaultSuccessfulStatusCodes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
1 | public extension Set where Element == Int {
2 |     static var defaultSuccessfulStatusCodes: Set<Int> = Set(200..<300)
  |                |- warning: static property 'defaultSuccessfulStatusCodes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  |                |- note: convert 'defaultSuccessfulStatusCodes' to a 'let' constant to make 'Sendable' shared state immutable
  |                |- note: add '@MainActor' to make static property 'defaultSuccessfulStatusCodes' part of global actor 'MainActor'
  |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
3 | }
4 |
/host/spi-builder-workspace/Sources/HTTPClientCore/HTTPRequestBuilder/HTTPRequestBuilder.swift:38:30: error: cannot find type 'URLRequest' in scope
 36 |     private var timeoutInterval: TimeInterval = 10
 37 |     private var body: Data?
 38 |     private var cachePolicy: URLRequest.CachePolicy = .useProtocolCachePolicy
    |                              `- error: cannot find type 'URLRequest' in scope
 39 |     private var allHeaders = [String: String]()
 40 |     private var urlComponents = URLComponents()
/host/spi-builder-workspace/Sources/HTTPClientCore/HTTPRequestBuilder/HTTPRequestBuilder.swift:100:44: error: cannot find type 'URLRequest' in scope
 98 |     /// - Parameter cachePolicy: The cache policy for the request. Defaults to `.useProtocolCachePolicy`
 99 |     @discardableResult
100 |     public func cachePolicy(_ cachePolicy: URLRequest.CachePolicy) -> HTTPRequestBuilder {
    |                                            `- error: cannot find type 'URLRequest' in scope
101 |         self.cachePolicy = cachePolicy
102 |         return self
/host/spi-builder-workspace/Sources/HTTPClientCore/HTTPRequestBuilder/HTTPRequestBuilder.swift:111:35: error: cannot find type 'URLRequest' in scope
109 |     }
110 |
111 |     public func build() throws -> URLRequest {
    |                                   `- error: cannot find type 'URLRequest' in scope
112 |         try makeUrlRequest()
113 |     }
/host/spi-builder-workspace/Sources/HTTPClientCore/HTTPRequestBuilder/HTTPRequestBuilder.swift:118:46: error: cannot find type 'URLRequest' in scope
116 |
117 |     /// The `URLRequest` to be built.
118 |     private func makeUrlRequest() throws  -> URLRequest {
    |                                              `- error: cannot find type 'URLRequest' in scope
119 |         guard let url = urlComponents.url else {
120 |             throw HTTPRequestBuilderError.invalidURLComponents
/host/spi-builder-workspace/Sources/HTTPClientCore/HTTPRequestError.swift:8:41: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 6 | /// Possible errors for an HTTP response.
 7 | public enum HTTPResponseError: Error, CustomDebugStringConvertible {
 8 |     case invalidResponse(_ urlResponse: URLResponse)
   |                                         `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 9 |     case underlying(_ error: URLError)
10 |     case decoding(_ error: DecodingError)
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/HTTPClientCore/HTTPRequestError.swift:8:10: warning: associated value 'invalidResponse' of 'Sendable'-conforming enum 'HTTPResponseError' has non-sendable type 'URLResponse' (aka 'AnyObject'); this is an error in the Swift 6 language mode
 6 | /// Possible errors for an HTTP response.
 7 | public enum HTTPResponseError: Error, CustomDebugStringConvertible {
 8 |     case invalidResponse(_ urlResponse: URLResponse)
   |          `- warning: associated value 'invalidResponse' of 'Sendable'-conforming enum 'HTTPResponseError' has non-sendable type 'URLResponse' (aka 'AnyObject'); this is an error in the Swift 6 language mode
 9 |     case underlying(_ error: URLError)
10 |     case decoding(_ error: DecodingError)
[7/14] Compiling HTTPClientCore Data+HTTPClient.swift
[8/14] Compiling HTTPClientCore HTTPRequestScheme.swift
[9/14] Compiling Logging LogHandler.swift
[10/14] Compiling HTTPClientCore HTTPRequestMethod.swift
[11/14] Compiling Logging MetadataProvider.swift
[12/14] Compiling Logging Locks.swift
[13/14] Emitting module Logging
BUILD FAILURE 6.1 wasm