Build Information
Failed to build HTTPStatusCodes, reference master (a2c4f5
), with Swift 6.0 for Linux on 1 Nov 2024 01:00:40 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete 2>&1
Build Log
========================================
RunAll
========================================
Builder version: 4.56.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/rhodgkins/SwiftHTTPStatusCodes.git
Reference: master
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/rhodgkins/SwiftHTTPStatusCodes
* branch master -> FETCH_HEAD
* [new branch] master -> origin/master
HEAD is now at a2c4f5f Bumped to v3.3.2
Cloned https://github.com/rhodgkins/SwiftHTTPStatusCodes.git
Revision (git rev-parse @):
a2c4f5f645dec3a5614ff82e391f44e22d778f87
SUCCESS checkout https://github.com/rhodgkins/SwiftHTTPStatusCodes.git at master
========================================
Build
========================================
Selected platform: linux
Swift version: 6.0
Building package at path: $PWD
https://github.com/rhodgkins/SwiftHTTPStatusCodes.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete 2>&1
basic-6.0-latest: Pulling from finestructure/spi-images
Digest: sha256:47d26c99ca4f1ac0a332c85fd5b13ff4390e72115219984a57a68fe9d1063a05
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.0-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/5] Emitting module HTTPStatusCodes
/host/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:62:25: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
60 |
61 | /// Obtains a possible status code from an optional HTTP URL response.
62 | init?(HTTPResponse: HTTPURLResponse?) {
| `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
63 | guard let statusCodeValue = HTTPResponse?.statusCode else {
64 | return nil
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/HTTPStatusCodes+Extensions.swift:78:8: error: non-nominal type 'HTTPURLResponse' (aka 'AnyObject') cannot be extended
76 | }
77 |
78 | public extension HTTPURLResponse {
| `- error: non-nominal type 'HTTPURLResponse' (aka 'AnyObject') cannot be extended
79 |
80 | /**
/host/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:117:16: warning: static property 'requestEntityTooLarge' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
115 | /// - deprecated: Renamed to `payloadTooLarge`
116 | @available(*, deprecated, renamed: "payloadTooLarge")
117 | static let requestEntityTooLarge = payloadTooLarge
| |- warning: static property 'requestEntityTooLarge' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'requestEntityTooLarge' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
118 |
119 | /// - deprecated: Renamed to `uriTooLong`
/host/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
14 | /// - seealso: [Wikipedia page - List of HTTP status codes](http://en.wikipedia.org/wiki/List_of_HTTP_status_codes)
15 | /// - seealso: [HTTP protocol standard - Status Code Definitions](https://tools.ietf.org/html/rfc2616#section-10)
16 | @objc public enum HTTPStatusCode: Int {
| `- note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
17 |
18 | /// Continue: 100
/host/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:121:16: warning: static property 'requestURITooLong' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
119 | /// - deprecated: Renamed to `uriTooLong`
120 | @available(*, deprecated, renamed: "uriTooLong")
121 | static let requestURITooLong = uriTooLong
| |- warning: static property 'requestURITooLong' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'requestURITooLong' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
122 |
123 | /// - deprecated: Renamed to `rangeNotSatisfiable`
/host/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
14 | /// - seealso: [Wikipedia page - List of HTTP status codes](http://en.wikipedia.org/wiki/List_of_HTTP_status_codes)
15 | /// - seealso: [HTTP protocol standard - Status Code Definitions](https://tools.ietf.org/html/rfc2616#section-10)
16 | @objc public enum HTTPStatusCode: Int {
| `- note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
17 |
18 | /// Continue: 100
/host/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:125:16: warning: static property 'requestedRangeNotSatisfiable' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
123 | /// - deprecated: Renamed to `rangeNotSatisfiable`
124 | @available(*, deprecated, renamed: "rangeNotSatisfiable")
125 | static let requestedRangeNotSatisfiable = rangeNotSatisfiable
| |- warning: static property 'requestedRangeNotSatisfiable' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'requestedRangeNotSatisfiable' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
126 |
127 | /// - deprecated: Renamed to `iisLoginTimeout`
/host/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
14 | /// - seealso: [Wikipedia page - List of HTTP status codes](http://en.wikipedia.org/wiki/List_of_HTTP_status_codes)
15 | /// - seealso: [HTTP protocol standard - Status Code Definitions](https://tools.ietf.org/html/rfc2616#section-10)
16 | @objc public enum HTTPStatusCode: Int {
| `- note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
17 |
18 | /// Continue: 100
/host/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:129:16: warning: static property 'loginTimeout' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
127 | /// - deprecated: Renamed to `iisLoginTimeout`
128 | @available(*, deprecated, renamed: "iisLoginTimeout")
129 | static let loginTimeout = iisLoginTimeout
| |- warning: static property 'loginTimeout' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'loginTimeout' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
130 |
131 | /// - deprecated: Renamed to `iisRetryWith`
/host/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
14 | /// - seealso: [Wikipedia page - List of HTTP status codes](http://en.wikipedia.org/wiki/List_of_HTTP_status_codes)
15 | /// - seealso: [HTTP protocol standard - Status Code Definitions](https://tools.ietf.org/html/rfc2616#section-10)
16 | @objc public enum HTTPStatusCode: Int {
| `- note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
17 |
18 | /// Continue: 100
/host/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:133:16: warning: static property 'retryWith' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
131 | /// - deprecated: Renamed to `iisRetryWith`
132 | @available(*, deprecated, renamed: "iisRetryWith")
133 | static let retryWith = iisRetryWith
| |- warning: static property 'retryWith' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'retryWith' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
134 |
135 | /// - deprecated: Renamed to `nginxNoResponse`
/host/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
14 | /// - seealso: [Wikipedia page - List of HTTP status codes](http://en.wikipedia.org/wiki/List_of_HTTP_status_codes)
15 | /// - seealso: [HTTP protocol standard - Status Code Definitions](https://tools.ietf.org/html/rfc2616#section-10)
16 | @objc public enum HTTPStatusCode: Int {
| `- note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
17 |
18 | /// Continue: 100
/host/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:137:16: warning: static property 'noResponse' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
135 | /// - deprecated: Renamed to `nginxNoResponse`
136 | @available(*, deprecated, renamed: "nginxNoResponse")
137 | static let noResponse = nginxNoResponse
| |- warning: static property 'noResponse' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'noResponse' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
138 |
139 | /// - deprecated: Renamed to `nginxSSLCertificateError`
/host/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
14 | /// - seealso: [Wikipedia page - List of HTTP status codes](http://en.wikipedia.org/wiki/List_of_HTTP_status_codes)
15 | /// - seealso: [HTTP protocol standard - Status Code Definitions](https://tools.ietf.org/html/rfc2616#section-10)
16 | @objc public enum HTTPStatusCode: Int {
| `- note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
17 |
18 | /// Continue: 100
/host/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:141:16: warning: static property 'certError' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
139 | /// - deprecated: Renamed to `nginxSSLCertificateError`
140 | @available(*, deprecated, renamed: "nginxSSLCertificateError")
141 | static let certError = nginxSSLCertificateError
| |- warning: static property 'certError' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'certError' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
142 |
143 | /// - deprecated: Renamed to `nginxSSLCertificateRequired`
/host/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
14 | /// - seealso: [Wikipedia page - List of HTTP status codes](http://en.wikipedia.org/wiki/List_of_HTTP_status_codes)
15 | /// - seealso: [HTTP protocol standard - Status Code Definitions](https://tools.ietf.org/html/rfc2616#section-10)
16 | @objc public enum HTTPStatusCode: Int {
| `- note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
17 |
18 | /// Continue: 100
/host/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:145:16: warning: static property 'noCert' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
143 | /// - deprecated: Renamed to `nginxSSLCertificateRequired`
144 | @available(*, deprecated, renamed: "nginxSSLCertificateRequired")
145 | static let noCert = nginxSSLCertificateRequired
| |- warning: static property 'noCert' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'noCert' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
146 |
147 | /// - deprecated: Renamed to `nginxHTTPToHTTPS`
/host/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
14 | /// - seealso: [Wikipedia page - List of HTTP status codes](http://en.wikipedia.org/wiki/List_of_HTTP_status_codes)
15 | /// - seealso: [HTTP protocol standard - Status Code Definitions](https://tools.ietf.org/html/rfc2616#section-10)
16 | @objc public enum HTTPStatusCode: Int {
| `- note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
17 |
18 | /// Continue: 100
/host/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:149:16: warning: static property 'httpToHTTPS' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
147 | /// - deprecated: Renamed to `nginxHTTPToHTTPS`
148 | @available(*, deprecated, renamed: "nginxHTTPToHTTPS")
149 | static let httpToHTTPS = nginxHTTPToHTTPS
| |- warning: static property 'httpToHTTPS' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'httpToHTTPS' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
150 |
151 | /// - deprecated: Renamed to `nginxClientClosedRequest`
/host/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
14 | /// - seealso: [Wikipedia page - List of HTTP status codes](http://en.wikipedia.org/wiki/List_of_HTTP_status_codes)
15 | /// - seealso: [HTTP protocol standard - Status Code Definitions](https://tools.ietf.org/html/rfc2616#section-10)
16 | @objc public enum HTTPStatusCode: Int {
| `- note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
17 |
18 | /// Continue: 100
/host/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:153:16: warning: static property 'clientClosedRequest' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
151 | /// - deprecated: Renamed to `nginxClientClosedRequest`
152 | @available(*, deprecated, renamed: "nginxClientClosedRequest")
153 | static let clientClosedRequest = nginxClientClosedRequest
| |- warning: static property 'clientClosedRequest' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'clientClosedRequest' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
154 |
155 | /// - deprecated: Renamed to `networkConnectTimeoutError`
/host/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
14 | /// - seealso: [Wikipedia page - List of HTTP status codes](http://en.wikipedia.org/wiki/List_of_HTTP_status_codes)
15 | /// - seealso: [HTTP protocol standard - Status Code Definitions](https://tools.ietf.org/html/rfc2616#section-10)
16 | @objc public enum HTTPStatusCode: Int {
| `- note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
17 |
18 | /// Continue: 100
/host/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:157:16: warning: static property 'networkTimeoutError' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
155 | /// - deprecated: Renamed to `networkConnectTimeoutError`
156 | @available(*, deprecated, renamed: "networkConnectTimeoutError")
157 | static let networkTimeoutError = networkConnectTimeoutError
| |- warning: static property 'networkTimeoutError' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'networkTimeoutError' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
158 |
159 | /// Returned by version 1 of the Twitter Search and Trends API when the client is being rate limited; versions 1.1 and later use the 429 Too Many Requests (`tooManyRequests`) response code instead.
/host/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
14 | /// - seealso: [Wikipedia page - List of HTTP status codes](http://en.wikipedia.org/wiki/List_of_HTTP_status_codes)
15 | /// - seealso: [HTTP protocol standard - Status Code Definitions](https://tools.ietf.org/html/rfc2616#section-10)
16 | @objc public enum HTTPStatusCode: Int {
| `- note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
17 |
18 | /// Continue: 100
/host/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:163:16: warning: static property 'twitterEnhanceYourCalm' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
161 | /// - seealso: [Twitter Error Codes & Responses](https://dev.twitter.com/docs/error-codes-responses)
162 | @available(*, deprecated, renamed: "tooManyRequests")
163 | static let twitterEnhanceYourCalm = tooManyRequests
| |- warning: static property 'twitterEnhanceYourCalm' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'twitterEnhanceYourCalm' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
164 | }
165 |
/host/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
14 | /// - seealso: [Wikipedia page - List of HTTP status codes](http://en.wikipedia.org/wiki/List_of_HTTP_status_codes)
15 | /// - seealso: [HTTP protocol standard - Status Code Definitions](https://tools.ietf.org/html/rfc2616#section-10)
16 | @objc public enum HTTPStatusCode: Int {
| `- note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
17 |
18 | /// Continue: 100
/host/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:166:8: error: non-nominal type 'HTTPURLResponse' (aka 'AnyObject') cannot be extended
164 | }
165 |
166 | public extension HTTPURLResponse {
| `- error: non-nominal type 'HTTPURLResponse' (aka 'AnyObject') cannot be extended
167 |
168 | /// - deprecated: Renamed to `init(url:statusCode:httpVersion:headerFields)` to correct Swift 3 naming convention.
/host/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:179:13: warning: let '__Unavailable' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode?' may have shared mutable state; this is an error in the Swift 6 language mode
177 |
178 | /// Declared here for a cleaner API with no `!` types.
179 | private let __Unavailable: HTTPStatusCode! = nil
| |- warning: let '__Unavailable' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode?' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate '__Unavailable' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
180 |
181 | public extension HTTPStatusCode {
/host/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
14 | /// - seealso: [Wikipedia page - List of HTTP status codes](http://en.wikipedia.org/wiki/List_of_HTTP_status_codes)
15 | /// - seealso: [HTTP protocol standard - Status Code Definitions](https://tools.ietf.org/html/rfc2616#section-10)
16 | @objc public enum HTTPStatusCode: Int {
| `- note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
17 |
18 | /// Continue: 100
/host/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:189:16: warning: static property 'checkpoint' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode?' may have shared mutable state; this is an error in the Swift 6 language mode
187 | /// - seealso: [Original proposal](https://web.archive.org/web/20151013212135/http://code.google.com/p/gears/wiki/ResumableHttpRequestsProposal)
188 | @available(*, unavailable, renamed: "earlyHints", message: "Replaced by RFC standard code with different meaning")
189 | static let checkpoint = __Unavailable
| |- warning: static property 'checkpoint' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode?' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'checkpoint' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
190 |
191 | /// Switch Proxy: 306
/host/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
14 | /// - seealso: [Wikipedia page - List of HTTP status codes](http://en.wikipedia.org/wiki/List_of_HTTP_status_codes)
15 | /// - seealso: [HTTP protocol standard - Status Code Definitions](https://tools.ietf.org/html/rfc2616#section-10)
16 | @objc public enum HTTPStatusCode: Int {
| `- note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
17 |
18 | /// Continue: 100
/host/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:197:16: warning: static property 'switchProxy' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode?' may have shared mutable state; this is an error in the Swift 6 language mode
195 | /// - seealso: [Original draft](https://tools.ietf.org/html/draft-cohen-http-305-306-responses-00)
196 | @available(*, unavailable, message: "No longer used")
197 | static let switchProxy = __Unavailable
| |- warning: static property 'switchProxy' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode?' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'switchProxy' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
198 |
199 | /// Authentication Timeout: 419
/host/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
14 | /// - seealso: [Wikipedia page - List of HTTP status codes](http://en.wikipedia.org/wiki/List_of_HTTP_status_codes)
15 | /// - seealso: [HTTP protocol standard - Status Code Definitions](https://tools.ietf.org/html/rfc2616#section-10)
16 | @objc public enum HTTPStatusCode: Int {
| `- note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
17 |
18 | /// Continue: 100
/host/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:203:16: warning: static property 'authenticationTimeout' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode?' may have shared mutable state; this is an error in the Swift 6 language mode
201 | /// Removed from Wikipedia page.
202 | @available(*, unavailable, message: "No longer available")
203 | static let authenticationTimeout = __Unavailable
| |- warning: static property 'authenticationTimeout' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode?' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'authenticationTimeout' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
204 |
205 | /// Method Failure: 419
/host/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
14 | /// - seealso: [Wikipedia page - List of HTTP status codes](http://en.wikipedia.org/wiki/List_of_HTTP_status_codes)
15 | /// - seealso: [HTTP protocol standard - Status Code Definitions](https://tools.ietf.org/html/rfc2616#section-10)
16 | @objc public enum HTTPStatusCode: Int {
| `- note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
17 |
18 | /// Continue: 100
/host/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:211:16: warning: static property 'springFrameworkMethodFailure' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode?' may have shared mutable state; this is an error in the Swift 6 language mode
209 | /// - seealso: [Spring Framework: HttpStatus enum documentation - `METHOD_FAILURE`](https://docs.spring.io/spring/docs/current/javadoc-api/org/springframework/http/HttpStatus.html#METHOD_FAILURE)
210 | @available(*, unavailable, message: "Deprecated")
211 | static let springFrameworkMethodFailure = __Unavailable
| |- warning: static property 'springFrameworkMethodFailure' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode?' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'springFrameworkMethodFailure' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
212 |
213 | /// Request Header Too Large: 494
/host/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
14 | /// - seealso: [Wikipedia page - List of HTTP status codes](http://en.wikipedia.org/wiki/List_of_HTTP_status_codes)
15 | /// - seealso: [HTTP protocol standard - Status Code Definitions](https://tools.ietf.org/html/rfc2616#section-10)
16 | @objc public enum HTTPStatusCode: Int {
| `- note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
17 |
18 | /// Continue: 100
/host/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:217:16: warning: static property 'requestHeaderTooLarge' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode?' may have shared mutable state; this is an error in the Swift 6 language mode
215 | /// Removed and replaced with `RequestHeaderFieldsTooLarge` - 431
216 | @available(*, unavailable, renamed: "requestHeaderFieldsTooLarge", message: "Changed to a 431 status code")
217 | static let requestHeaderTooLarge = __Unavailable
| |- warning: static property 'requestHeaderTooLarge' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode?' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'requestHeaderTooLarge' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
218 | }
219 |
/host/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
14 | /// - seealso: [Wikipedia page - List of HTTP status codes](http://en.wikipedia.org/wiki/List_of_HTTP_status_codes)
15 | /// - seealso: [HTTP protocol standard - Status Code Definitions](https://tools.ietf.org/html/rfc2616#section-10)
16 | @objc public enum HTTPStatusCode: Int {
| `- note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
17 |
18 | /// Continue: 100
/host/spi-builder-workspace/Sources/HTTPStatusCodes.swift:41:6: error: Objective-C interoperability is disabled
39 | ///
40 | /// - seealso: [RFC7231, Section 6.3.1](http://www.iana.org/go/rfc7231#section-6.3.1)
41 | @objc(HTTPStatusCodeOK)
| `- error: Objective-C interoperability is disabled
42 | case ok = 200
43 |
/host/spi-builder-workspace/Sources/HTTPStatusCodes.swift:87:6: error: Objective-C interoperability is disabled
85 | ///
86 | /// - seealso: [RFC3229](http://www.iana.org/go/rfc3229)
87 | @objc(HTTPStatusCodeIMUsed)
| `- error: Objective-C interoperability is disabled
88 | case imUsed = 226
89 |
/host/spi-builder-workspace/Sources/HTTPStatusCodes.swift:204:6: error: Objective-C interoperability is disabled
202 | ///
203 | /// - seealso: [RFC7231, Section 6.5.12](http://www.iana.org/go/rfc7231#section-6.5.12)
204 | @objc(HTTPStatusCodeURITooLong)
| `- error: Objective-C interoperability is disabled
205 | case uriTooLong = 414
206 |
/host/spi-builder-workspace/Sources/HTTPStatusCodes.swift:282:6: error: Objective-C interoperability is disabled
280 | ///
281 | /// - seealso: [Error message when you try to log on to Exchange 2007 by using Outlook Web Access: "440 Login Timeout"](http://support.microsoft.com/kb/941201/en-us)
282 | @objc(HTTPStatusCodeIISLoginTimeout)
| `- error: Objective-C interoperability is disabled
283 | case iisLoginTimeout = 440
284 |
/host/spi-builder-workspace/Sources/HTTPStatusCodes.swift:299:6: error: Objective-C interoperability is disabled
297 | ///
298 | /// - seealso: [2.2.6 449 Retry With Status Code](https://msdn.microsoft.com/en-us/library/dd891478.aspx)
299 | @objc(HTTPStatusCodeIISRetryWith)
| `- error: Objective-C interoperability is disabled
300 | case iisRetryWith = 449
301 |
/host/spi-builder-workspace/Sources/HTTPStatusCodes.swift:375:6: error: Objective-C interoperability is disabled
373 | ///
374 | /// - seealso: [RFC7231, Section 6.6.6](http://www.iana.org/go/rfc7231#section-6.6.6)
375 | @objc(HTTPStatusCodeHTTPVersionNotSupported)
| `- error: Objective-C interoperability is disabled
376 | case httpVersionNotSupported = 505
377 |
[4/5] Compiling HTTPStatusCodes HTTPStatusCodes+Extensions.swift
/host/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:62:25: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
60 |
61 | /// Obtains a possible status code from an optional HTTP URL response.
62 | init?(HTTPResponse: HTTPURLResponse?) {
| `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
63 | guard let statusCodeValue = HTTPResponse?.statusCode else {
64 | return nil
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/HTTPStatusCodes+Extensions.swift:78:8: error: non-nominal type 'HTTPURLResponse' (aka 'AnyObject') cannot be extended
76 | }
77 |
78 | public extension HTTPURLResponse {
| `- error: non-nominal type 'HTTPURLResponse' (aka 'AnyObject') cannot be extended
79 |
80 | /**
/host/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:117:16: warning: static property 'requestEntityTooLarge' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
115 | /// - deprecated: Renamed to `payloadTooLarge`
116 | @available(*, deprecated, renamed: "payloadTooLarge")
117 | static let requestEntityTooLarge = payloadTooLarge
| |- warning: static property 'requestEntityTooLarge' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'requestEntityTooLarge' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
118 |
119 | /// - deprecated: Renamed to `uriTooLong`
/host/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
14 | /// - seealso: [Wikipedia page - List of HTTP status codes](http://en.wikipedia.org/wiki/List_of_HTTP_status_codes)
15 | /// - seealso: [HTTP protocol standard - Status Code Definitions](https://tools.ietf.org/html/rfc2616#section-10)
16 | @objc public enum HTTPStatusCode: Int {
| `- note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
17 |
18 | /// Continue: 100
/host/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:121:16: warning: static property 'requestURITooLong' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
119 | /// - deprecated: Renamed to `uriTooLong`
120 | @available(*, deprecated, renamed: "uriTooLong")
121 | static let requestURITooLong = uriTooLong
| |- warning: static property 'requestURITooLong' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'requestURITooLong' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
122 |
123 | /// - deprecated: Renamed to `rangeNotSatisfiable`
/host/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
14 | /// - seealso: [Wikipedia page - List of HTTP status codes](http://en.wikipedia.org/wiki/List_of_HTTP_status_codes)
15 | /// - seealso: [HTTP protocol standard - Status Code Definitions](https://tools.ietf.org/html/rfc2616#section-10)
16 | @objc public enum HTTPStatusCode: Int {
| `- note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
17 |
18 | /// Continue: 100
/host/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:125:16: warning: static property 'requestedRangeNotSatisfiable' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
123 | /// - deprecated: Renamed to `rangeNotSatisfiable`
124 | @available(*, deprecated, renamed: "rangeNotSatisfiable")
125 | static let requestedRangeNotSatisfiable = rangeNotSatisfiable
| |- warning: static property 'requestedRangeNotSatisfiable' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'requestedRangeNotSatisfiable' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
126 |
127 | /// - deprecated: Renamed to `iisLoginTimeout`
/host/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
14 | /// - seealso: [Wikipedia page - List of HTTP status codes](http://en.wikipedia.org/wiki/List_of_HTTP_status_codes)
15 | /// - seealso: [HTTP protocol standard - Status Code Definitions](https://tools.ietf.org/html/rfc2616#section-10)
16 | @objc public enum HTTPStatusCode: Int {
| `- note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
17 |
18 | /// Continue: 100
/host/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:129:16: warning: static property 'loginTimeout' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
127 | /// - deprecated: Renamed to `iisLoginTimeout`
128 | @available(*, deprecated, renamed: "iisLoginTimeout")
129 | static let loginTimeout = iisLoginTimeout
| |- warning: static property 'loginTimeout' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'loginTimeout' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
130 |
131 | /// - deprecated: Renamed to `iisRetryWith`
/host/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
14 | /// - seealso: [Wikipedia page - List of HTTP status codes](http://en.wikipedia.org/wiki/List_of_HTTP_status_codes)
15 | /// - seealso: [HTTP protocol standard - Status Code Definitions](https://tools.ietf.org/html/rfc2616#section-10)
16 | @objc public enum HTTPStatusCode: Int {
| `- note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
17 |
18 | /// Continue: 100
/host/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:133:16: warning: static property 'retryWith' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
131 | /// - deprecated: Renamed to `iisRetryWith`
132 | @available(*, deprecated, renamed: "iisRetryWith")
133 | static let retryWith = iisRetryWith
| |- warning: static property 'retryWith' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'retryWith' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
134 |
135 | /// - deprecated: Renamed to `nginxNoResponse`
/host/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
14 | /// - seealso: [Wikipedia page - List of HTTP status codes](http://en.wikipedia.org/wiki/List_of_HTTP_status_codes)
15 | /// - seealso: [HTTP protocol standard - Status Code Definitions](https://tools.ietf.org/html/rfc2616#section-10)
16 | @objc public enum HTTPStatusCode: Int {
| `- note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
17 |
18 | /// Continue: 100
/host/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:137:16: warning: static property 'noResponse' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
135 | /// - deprecated: Renamed to `nginxNoResponse`
136 | @available(*, deprecated, renamed: "nginxNoResponse")
137 | static let noResponse = nginxNoResponse
| |- warning: static property 'noResponse' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'noResponse' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
138 |
139 | /// - deprecated: Renamed to `nginxSSLCertificateError`
/host/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
14 | /// - seealso: [Wikipedia page - List of HTTP status codes](http://en.wikipedia.org/wiki/List_of_HTTP_status_codes)
15 | /// - seealso: [HTTP protocol standard - Status Code Definitions](https://tools.ietf.org/html/rfc2616#section-10)
16 | @objc public enum HTTPStatusCode: Int {
| `- note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
17 |
18 | /// Continue: 100
/host/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:141:16: warning: static property 'certError' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
139 | /// - deprecated: Renamed to `nginxSSLCertificateError`
140 | @available(*, deprecated, renamed: "nginxSSLCertificateError")
141 | static let certError = nginxSSLCertificateError
| |- warning: static property 'certError' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'certError' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
142 |
143 | /// - deprecated: Renamed to `nginxSSLCertificateRequired`
/host/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
14 | /// - seealso: [Wikipedia page - List of HTTP status codes](http://en.wikipedia.org/wiki/List_of_HTTP_status_codes)
15 | /// - seealso: [HTTP protocol standard - Status Code Definitions](https://tools.ietf.org/html/rfc2616#section-10)
16 | @objc public enum HTTPStatusCode: Int {
| `- note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
17 |
18 | /// Continue: 100
/host/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:145:16: warning: static property 'noCert' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
143 | /// - deprecated: Renamed to `nginxSSLCertificateRequired`
144 | @available(*, deprecated, renamed: "nginxSSLCertificateRequired")
145 | static let noCert = nginxSSLCertificateRequired
| |- warning: static property 'noCert' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'noCert' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
146 |
147 | /// - deprecated: Renamed to `nginxHTTPToHTTPS`
/host/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
14 | /// - seealso: [Wikipedia page - List of HTTP status codes](http://en.wikipedia.org/wiki/List_of_HTTP_status_codes)
15 | /// - seealso: [HTTP protocol standard - Status Code Definitions](https://tools.ietf.org/html/rfc2616#section-10)
16 | @objc public enum HTTPStatusCode: Int {
| `- note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
17 |
18 | /// Continue: 100
/host/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:149:16: warning: static property 'httpToHTTPS' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
147 | /// - deprecated: Renamed to `nginxHTTPToHTTPS`
148 | @available(*, deprecated, renamed: "nginxHTTPToHTTPS")
149 | static let httpToHTTPS = nginxHTTPToHTTPS
| |- warning: static property 'httpToHTTPS' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'httpToHTTPS' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
150 |
151 | /// - deprecated: Renamed to `nginxClientClosedRequest`
/host/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
14 | /// - seealso: [Wikipedia page - List of HTTP status codes](http://en.wikipedia.org/wiki/List_of_HTTP_status_codes)
15 | /// - seealso: [HTTP protocol standard - Status Code Definitions](https://tools.ietf.org/html/rfc2616#section-10)
16 | @objc public enum HTTPStatusCode: Int {
| `- note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
17 |
18 | /// Continue: 100
/host/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:153:16: warning: static property 'clientClosedRequest' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
151 | /// - deprecated: Renamed to `nginxClientClosedRequest`
152 | @available(*, deprecated, renamed: "nginxClientClosedRequest")
153 | static let clientClosedRequest = nginxClientClosedRequest
| |- warning: static property 'clientClosedRequest' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'clientClosedRequest' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
154 |
155 | /// - deprecated: Renamed to `networkConnectTimeoutError`
/host/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
14 | /// - seealso: [Wikipedia page - List of HTTP status codes](http://en.wikipedia.org/wiki/List_of_HTTP_status_codes)
15 | /// - seealso: [HTTP protocol standard - Status Code Definitions](https://tools.ietf.org/html/rfc2616#section-10)
16 | @objc public enum HTTPStatusCode: Int {
| `- note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
17 |
18 | /// Continue: 100
/host/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:157:16: warning: static property 'networkTimeoutError' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
155 | /// - deprecated: Renamed to `networkConnectTimeoutError`
156 | @available(*, deprecated, renamed: "networkConnectTimeoutError")
157 | static let networkTimeoutError = networkConnectTimeoutError
| |- warning: static property 'networkTimeoutError' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'networkTimeoutError' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
158 |
159 | /// Returned by version 1 of the Twitter Search and Trends API when the client is being rate limited; versions 1.1 and later use the 429 Too Many Requests (`tooManyRequests`) response code instead.
/host/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
14 | /// - seealso: [Wikipedia page - List of HTTP status codes](http://en.wikipedia.org/wiki/List_of_HTTP_status_codes)
15 | /// - seealso: [HTTP protocol standard - Status Code Definitions](https://tools.ietf.org/html/rfc2616#section-10)
16 | @objc public enum HTTPStatusCode: Int {
| `- note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
17 |
18 | /// Continue: 100
/host/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:163:16: warning: static property 'twitterEnhanceYourCalm' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
161 | /// - seealso: [Twitter Error Codes & Responses](https://dev.twitter.com/docs/error-codes-responses)
162 | @available(*, deprecated, renamed: "tooManyRequests")
163 | static let twitterEnhanceYourCalm = tooManyRequests
| |- warning: static property 'twitterEnhanceYourCalm' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'twitterEnhanceYourCalm' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
164 | }
165 |
/host/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
14 | /// - seealso: [Wikipedia page - List of HTTP status codes](http://en.wikipedia.org/wiki/List_of_HTTP_status_codes)
15 | /// - seealso: [HTTP protocol standard - Status Code Definitions](https://tools.ietf.org/html/rfc2616#section-10)
16 | @objc public enum HTTPStatusCode: Int {
| `- note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
17 |
18 | /// Continue: 100
/host/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:166:8: error: non-nominal type 'HTTPURLResponse' (aka 'AnyObject') cannot be extended
164 | }
165 |
166 | public extension HTTPURLResponse {
| `- error: non-nominal type 'HTTPURLResponse' (aka 'AnyObject') cannot be extended
167 |
168 | /// - deprecated: Renamed to `init(url:statusCode:httpVersion:headerFields)` to correct Swift 3 naming convention.
/host/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:179:13: warning: let '__Unavailable' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode?' may have shared mutable state; this is an error in the Swift 6 language mode
177 |
178 | /// Declared here for a cleaner API with no `!` types.
179 | private let __Unavailable: HTTPStatusCode! = nil
| |- warning: let '__Unavailable' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode?' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate '__Unavailable' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
180 |
181 | public extension HTTPStatusCode {
/host/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
14 | /// - seealso: [Wikipedia page - List of HTTP status codes](http://en.wikipedia.org/wiki/List_of_HTTP_status_codes)
15 | /// - seealso: [HTTP protocol standard - Status Code Definitions](https://tools.ietf.org/html/rfc2616#section-10)
16 | @objc public enum HTTPStatusCode: Int {
| `- note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
17 |
18 | /// Continue: 100
/host/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:189:16: warning: static property 'checkpoint' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode?' may have shared mutable state; this is an error in the Swift 6 language mode
187 | /// - seealso: [Original proposal](https://web.archive.org/web/20151013212135/http://code.google.com/p/gears/wiki/ResumableHttpRequestsProposal)
188 | @available(*, unavailable, renamed: "earlyHints", message: "Replaced by RFC standard code with different meaning")
189 | static let checkpoint = __Unavailable
| |- warning: static property 'checkpoint' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode?' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'checkpoint' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
190 |
191 | /// Switch Proxy: 306
/host/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
14 | /// - seealso: [Wikipedia page - List of HTTP status codes](http://en.wikipedia.org/wiki/List_of_HTTP_status_codes)
15 | /// - seealso: [HTTP protocol standard - Status Code Definitions](https://tools.ietf.org/html/rfc2616#section-10)
16 | @objc public enum HTTPStatusCode: Int {
| `- note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
17 |
18 | /// Continue: 100
/host/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:197:16: warning: static property 'switchProxy' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode?' may have shared mutable state; this is an error in the Swift 6 language mode
195 | /// - seealso: [Original draft](https://tools.ietf.org/html/draft-cohen-http-305-306-responses-00)
196 | @available(*, unavailable, message: "No longer used")
197 | static let switchProxy = __Unavailable
| |- warning: static property 'switchProxy' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode?' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'switchProxy' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
198 |
199 | /// Authentication Timeout: 419
/host/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
14 | /// - seealso: [Wikipedia page - List of HTTP status codes](http://en.wikipedia.org/wiki/List_of_HTTP_status_codes)
15 | /// - seealso: [HTTP protocol standard - Status Code Definitions](https://tools.ietf.org/html/rfc2616#section-10)
16 | @objc public enum HTTPStatusCode: Int {
| `- note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
17 |
18 | /// Continue: 100
/host/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:203:16: warning: static property 'authenticationTimeout' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode?' may have shared mutable state; this is an error in the Swift 6 language mode
201 | /// Removed from Wikipedia page.
202 | @available(*, unavailable, message: "No longer available")
203 | static let authenticationTimeout = __Unavailable
| |- warning: static property 'authenticationTimeout' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode?' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'authenticationTimeout' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
204 |
205 | /// Method Failure: 419
/host/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
14 | /// - seealso: [Wikipedia page - List of HTTP status codes](http://en.wikipedia.org/wiki/List_of_HTTP_status_codes)
15 | /// - seealso: [HTTP protocol standard - Status Code Definitions](https://tools.ietf.org/html/rfc2616#section-10)
16 | @objc public enum HTTPStatusCode: Int {
| `- note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
17 |
18 | /// Continue: 100
/host/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:211:16: warning: static property 'springFrameworkMethodFailure' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode?' may have shared mutable state; this is an error in the Swift 6 language mode
209 | /// - seealso: [Spring Framework: HttpStatus enum documentation - `METHOD_FAILURE`](https://docs.spring.io/spring/docs/current/javadoc-api/org/springframework/http/HttpStatus.html#METHOD_FAILURE)
210 | @available(*, unavailable, message: "Deprecated")
211 | static let springFrameworkMethodFailure = __Unavailable
| |- warning: static property 'springFrameworkMethodFailure' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode?' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'springFrameworkMethodFailure' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
212 |
213 | /// Request Header Too Large: 494
/host/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
14 | /// - seealso: [Wikipedia page - List of HTTP status codes](http://en.wikipedia.org/wiki/List_of_HTTP_status_codes)
15 | /// - seealso: [HTTP protocol standard - Status Code Definitions](https://tools.ietf.org/html/rfc2616#section-10)
16 | @objc public enum HTTPStatusCode: Int {
| `- note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
17 |
18 | /// Continue: 100
/host/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:217:16: warning: static property 'requestHeaderTooLarge' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode?' may have shared mutable state; this is an error in the Swift 6 language mode
215 | /// Removed and replaced with `RequestHeaderFieldsTooLarge` - 431
216 | @available(*, unavailable, renamed: "requestHeaderFieldsTooLarge", message: "Changed to a 431 status code")
217 | static let requestHeaderTooLarge = __Unavailable
| |- warning: static property 'requestHeaderTooLarge' is not concurrency-safe because non-'Sendable' type 'HTTPStatusCode?' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'requestHeaderTooLarge' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
218 | }
219 |
/host/spi-builder-workspace/Sources/HTTPStatusCodes.swift:16:19: note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
14 | /// - seealso: [Wikipedia page - List of HTTP status codes](http://en.wikipedia.org/wiki/List_of_HTTP_status_codes)
15 | /// - seealso: [HTTP protocol standard - Status Code Definitions](https://tools.ietf.org/html/rfc2616#section-10)
16 | @objc public enum HTTPStatusCode: Int {
| `- note: consider making enum 'HTTPStatusCode' conform to the 'Sendable' protocol
17 |
18 | /// Continue: 100
/host/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:42:32: error: type 'HTTPURLResponse' (aka 'AnyObject') has no member 'localizedString'
40 | /// - returns: a localized string suitable for displaying to users that describes the specified status code.
41 | var localizedReasonPhrase: String {
42 | return HTTPURLResponse.localizedString(forStatusCode: rawValue)
| `- error: type 'HTTPURLResponse' (aka 'AnyObject') has no member 'localizedString'
43 | }
44 | }
/host/spi-builder-workspace/Sources/HTTPStatusCodes+Extensions.swift:63:51: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
61 | /// Obtains a possible status code from an optional HTTP URL response.
62 | init?(HTTPResponse: HTTPURLResponse?) {
63 | guard let statusCodeValue = HTTPResponse?.statusCode else {
| `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
64 | return nil
65 | }
[5/5] Compiling HTTPStatusCodes HTTPStatusCodes.swift
/host/spi-builder-workspace/Sources/HTTPStatusCodes.swift:41:6: error: Objective-C interoperability is disabled
39 | ///
40 | /// - seealso: [RFC7231, Section 6.3.1](http://www.iana.org/go/rfc7231#section-6.3.1)
41 | @objc(HTTPStatusCodeOK)
| `- error: Objective-C interoperability is disabled
42 | case ok = 200
43 |
/host/spi-builder-workspace/Sources/HTTPStatusCodes.swift:87:6: error: Objective-C interoperability is disabled
85 | ///
86 | /// - seealso: [RFC3229](http://www.iana.org/go/rfc3229)
87 | @objc(HTTPStatusCodeIMUsed)
| `- error: Objective-C interoperability is disabled
88 | case imUsed = 226
89 |
/host/spi-builder-workspace/Sources/HTTPStatusCodes.swift:204:6: error: Objective-C interoperability is disabled
202 | ///
203 | /// - seealso: [RFC7231, Section 6.5.12](http://www.iana.org/go/rfc7231#section-6.5.12)
204 | @objc(HTTPStatusCodeURITooLong)
| `- error: Objective-C interoperability is disabled
205 | case uriTooLong = 414
206 |
/host/spi-builder-workspace/Sources/HTTPStatusCodes.swift:282:6: error: Objective-C interoperability is disabled
280 | ///
281 | /// - seealso: [Error message when you try to log on to Exchange 2007 by using Outlook Web Access: "440 Login Timeout"](http://support.microsoft.com/kb/941201/en-us)
282 | @objc(HTTPStatusCodeIISLoginTimeout)
| `- error: Objective-C interoperability is disabled
283 | case iisLoginTimeout = 440
284 |
/host/spi-builder-workspace/Sources/HTTPStatusCodes.swift:299:6: error: Objective-C interoperability is disabled
297 | ///
298 | /// - seealso: [2.2.6 449 Retry With Status Code](https://msdn.microsoft.com/en-us/library/dd891478.aspx)
299 | @objc(HTTPStatusCodeIISRetryWith)
| `- error: Objective-C interoperability is disabled
300 | case iisRetryWith = 449
301 |
/host/spi-builder-workspace/Sources/HTTPStatusCodes.swift:375:6: error: Objective-C interoperability is disabled
373 | ///
374 | /// - seealso: [RFC7231, Section 6.6.6](http://www.iana.org/go/rfc7231#section-6.6.6)
375 | @objc(HTTPStatusCodeHTTPVersionNotSupported)
| `- error: Objective-C interoperability is disabled
376 | case httpVersionNotSupported = 505
377 |
BUILD FAILURE 6.0 linux