Build Information
Successful build of OpenAPIKit, reference 4.0.0-beta.1 (bc1d33
), with Swift 6.0 for Linux on 1 Nov 2024 21:29:49 UTC.
Swift 6 data race errors: 63
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4606859-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
13 | public let context: Context
14 | internal let relativeCodingPath: [CodingKey]
/host/spi-builder-workspace/Sources/OpenAPIKitCore/Shared/HttpMethod.swift:15:17: note: enum 'HttpMethod' does not conform to the 'Sendable' protocol
13 | /// HTTP methods are enumerated as properties on that
14 | /// object.
15 | public enum HttpMethod: String, CaseIterable {
| `- note: enum 'HttpMethod' does not conform to the 'Sendable' protocol
16 | case get = "GET"
17 | case post = "POST"
/host/spi-builder-workspace/Sources/OpenAPIKit30/Encoding and Decoding Errors/OperationDecodingError.swift:8:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'OpenAPIKitCore'
6 | //
7 |
8 | import OpenAPIKitCore
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'OpenAPIKitCore'
9 |
10 | extension OpenAPI.Error.Decoding {
/host/spi-builder-workspace/Sources/OpenAPIKit30/Encoding and Decoding Errors/OperationDecodingError.swift:13:20: warning: stored property 'context' of 'Sendable'-conforming struct 'Operation' has non-sendable type 'Error.Decoding.Operation.Context'; this is an error in the Swift 6 language mode
11 | public struct Operation: OpenAPIError {
12 | public let endpoint: OpenAPI.HttpMethod
13 | public let context: Context
| `- warning: stored property 'context' of 'Sendable'-conforming struct 'Operation' has non-sendable type 'Error.Decoding.Operation.Context'; this is an error in the Swift 6 language mode
14 | internal let relativeCodingPath: [CodingKey]
15 |
16 | public enum Context {
| `- note: consider making enum 'Context' conform to the 'Sendable' protocol
17 | case request(Request)
18 | case response(Response)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Encoding and Decoding Errors/PathDecodingError.swift:12:20: warning: stored property 'path' of 'Sendable'-conforming struct 'Path' has non-sendable type 'OpenAPI.Path' (aka 'Shared.Path'); this is an error in the Swift 6 language mode
10 | extension OpenAPI.Error.Decoding {
11 | public struct Path: OpenAPIError {
12 | public let path: OpenAPI.Path
| `- warning: stored property 'path' of 'Sendable'-conforming struct 'Path' has non-sendable type 'OpenAPI.Path' (aka 'Shared.Path'); this is an error in the Swift 6 language mode
13 | public let context: Context
14 | internal let relativeCodingPath: [CodingKey]
/host/spi-builder-workspace/Sources/OpenAPIKitCore/Shared/Path.swift:13:19: note: struct 'Path' does not conform to the 'Sendable' protocol
11 | /// See [OpenAPI Paths Object](https://spec.openapis.org/oas/v3.0.4.html#paths-object)
12 | /// and [OpenAPI Patterned Fields](https://spec.openapis.org/oas/v3.0.4.html#patterned-fields).
13 | public struct Path: RawRepresentable, Equatable, Hashable {
| `- note: struct 'Path' does not conform to the 'Sendable' protocol
14 | public let components: [String]
15 | public let trailingSlash: Bool
/host/spi-builder-workspace/Sources/OpenAPIKit30/Encoding and Decoding Errors/PathDecodingError.swift:8:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'OpenAPIKitCore'
6 | //
7 |
8 | import OpenAPIKitCore
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'OpenAPIKitCore'
9 |
10 | extension OpenAPI.Error.Decoding {
/host/spi-builder-workspace/Sources/OpenAPIKit30/Encoding and Decoding Errors/PathDecodingError.swift:13:20: warning: stored property 'context' of 'Sendable'-conforming struct 'Path' has non-sendable type 'Error.Decoding.Path.Context'; this is an error in the Swift 6 language mode
11 | public struct Path: OpenAPIError {
12 | public let path: OpenAPI.Path
13 | public let context: Context
| `- warning: stored property 'context' of 'Sendable'-conforming struct 'Path' has non-sendable type 'Error.Decoding.Path.Context'; this is an error in the Swift 6 language mode
14 | internal let relativeCodingPath: [CodingKey]
15 |
16 | public enum Context {
| `- note: consider making enum 'Context' conform to the 'Sendable' protocol
17 | case endpoint(Operation)
18 | case inconsistency(InconsistencyError)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Encoding and Decoding Errors/ResponseDecodingError.swift:12:20: warning: stored property 'statusCode' of 'Sendable'-conforming struct 'Response' has non-sendable type 'OpenAPI.Response.StatusCode' (aka 'Shared.ResponseStatusCode'); this is an error in the Swift 6 language mode
10 | extension OpenAPI.Error.Decoding {
11 | public struct Response: OpenAPIError {
12 | public let statusCode: OpenAPI.Response.StatusCode
| `- warning: stored property 'statusCode' of 'Sendable'-conforming struct 'Response' has non-sendable type 'OpenAPI.Response.StatusCode' (aka 'Shared.ResponseStatusCode'); this is an error in the Swift 6 language mode
13 | public let context: Context
14 | internal let relativeCodingPath: [CodingKey]
/host/spi-builder-workspace/Sources/OpenAPIKitCore/Shared/ResponseStatusCode.swift:21:19: note: struct 'ResponseStatusCode' does not conform to the 'Sendable' protocol
19 | ///
20 | /// Status code ranges are named in the `StatusCode.Range` enum. For example, the "1XX" range (100-199) can be written as either `.range(.information)` or as `.range(.init(rawValue: "1XX"))`.
21 | public struct ResponseStatusCode: RawRepresentable, Equatable, Hashable, HasWarnings {
| `- note: struct 'ResponseStatusCode' does not conform to the 'Sendable' protocol
22 | public typealias RawValue = String
23 |
/host/spi-builder-workspace/Sources/OpenAPIKit30/Encoding and Decoding Errors/ResponseDecodingError.swift:8:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'OpenAPIKitCore'
6 | //
7 |
8 | import OpenAPIKitCore
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'OpenAPIKitCore'
9 |
10 | extension OpenAPI.Error.Decoding {
/host/spi-builder-workspace/Sources/OpenAPIKit30/Encoding and Decoding Errors/ResponseDecodingError.swift:13:20: warning: stored property 'context' of 'Sendable'-conforming struct 'Response' has non-sendable type 'Error.Decoding.Response.Context'; this is an error in the Swift 6 language mode
11 | public struct Response: OpenAPIError {
12 | public let statusCode: OpenAPI.Response.StatusCode
13 | public let context: Context
| `- warning: stored property 'context' of 'Sendable'-conforming struct 'Response' has non-sendable type 'Error.Decoding.Response.Context'; this is an error in the Swift 6 language mode
14 | internal let relativeCodingPath: [CodingKey]
15 |
16 | public enum Context {
| `- note: consider making enum 'Context' conform to the 'Sendable' protocol
17 | case inconsistency(InconsistencyError)
18 | case other(Swift.DecodingError)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Encoding and Decoding Errors/DocumentDecodingError.swift:12:20: warning: stored property 'context' of 'Sendable'-conforming struct 'Document' has non-sendable type 'Error.Decoding.Document.Context'; this is an error in the Swift 6 language mode
10 | extension OpenAPI.Error.Decoding {
11 | public struct Document: OpenAPIError {
12 | public let context: Context
| `- warning: stored property 'context' of 'Sendable'-conforming struct 'Document' has non-sendable type 'Error.Decoding.Document.Context'; this is an error in the Swift 6 language mode
13 | public let codingPath: [CodingKey]
14 |
15 | public enum Context {
| `- note: consider making enum 'Context' conform to the 'Sendable' protocol
16 | case path(Path)
17 | case inconsistency(InconsistencyError)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Encoding and Decoding Errors/OperationDecodingError.swift:12:20: warning: stored property 'endpoint' of 'Sendable'-conforming struct 'Operation' has non-sendable type 'OpenAPI.HttpMethod' (aka 'Shared.HttpMethod'); this is an error in the Swift 6 language mode
10 | extension OpenAPI.Error.Decoding {
11 | public struct Operation: OpenAPIError {
12 | public let endpoint: OpenAPI.HttpMethod
| `- warning: stored property 'endpoint' of 'Sendable'-conforming struct 'Operation' has non-sendable type 'OpenAPI.HttpMethod' (aka 'Shared.HttpMethod'); this is an error in the Swift 6 language mode
13 | public let context: Context
14 | internal let relativeCodingPath: [CodingKey]
/host/spi-builder-workspace/Sources/OpenAPIKitCore/Shared/HttpMethod.swift:15:17: note: enum 'HttpMethod' does not conform to the 'Sendable' protocol
13 | /// HTTP methods are enumerated as properties on that
14 | /// object.
15 | public enum HttpMethod: String, CaseIterable {
| `- note: enum 'HttpMethod' does not conform to the 'Sendable' protocol
16 | case get = "GET"
17 | case post = "POST"
/host/spi-builder-workspace/Sources/OpenAPIKit30/Encoding and Decoding Errors/OperationDecodingError.swift:8:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'OpenAPIKitCore'
6 | //
7 |
8 | import OpenAPIKitCore
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'OpenAPIKitCore'
9 |
10 | extension OpenAPI.Error.Decoding {
/host/spi-builder-workspace/Sources/OpenAPIKit30/Encoding and Decoding Errors/OperationDecodingError.swift:13:20: warning: stored property 'context' of 'Sendable'-conforming struct 'Operation' has non-sendable type 'Error.Decoding.Operation.Context'; this is an error in the Swift 6 language mode
11 | public struct Operation: OpenAPIError {
12 | public let endpoint: OpenAPI.HttpMethod
13 | public let context: Context
| `- warning: stored property 'context' of 'Sendable'-conforming struct 'Operation' has non-sendable type 'Error.Decoding.Operation.Context'; this is an error in the Swift 6 language mode
14 | internal let relativeCodingPath: [CodingKey]
15 |
16 | public enum Context {
| `- note: consider making enum 'Context' conform to the 'Sendable' protocol
17 | case request(Request)
18 | case response(Response)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Encoding and Decoding Errors/PathDecodingError.swift:12:20: warning: stored property 'path' of 'Sendable'-conforming struct 'Path' has non-sendable type 'OpenAPI.Path' (aka 'Shared.Path'); this is an error in the Swift 6 language mode
10 | extension OpenAPI.Error.Decoding {
11 | public struct Path: OpenAPIError {
12 | public let path: OpenAPI.Path
| `- warning: stored property 'path' of 'Sendable'-conforming struct 'Path' has non-sendable type 'OpenAPI.Path' (aka 'Shared.Path'); this is an error in the Swift 6 language mode
13 | public let context: Context
14 | internal let relativeCodingPath: [CodingKey]
/host/spi-builder-workspace/Sources/OpenAPIKitCore/Shared/Path.swift:13:19: note: struct 'Path' does not conform to the 'Sendable' protocol
11 | /// See [OpenAPI Paths Object](https://spec.openapis.org/oas/v3.0.4.html#paths-object)
12 | /// and [OpenAPI Patterned Fields](https://spec.openapis.org/oas/v3.0.4.html#patterned-fields).
13 | public struct Path: RawRepresentable, Equatable, Hashable {
| `- note: struct 'Path' does not conform to the 'Sendable' protocol
14 | public let components: [String]
15 | public let trailingSlash: Bool
/host/spi-builder-workspace/Sources/OpenAPIKit30/Encoding and Decoding Errors/PathDecodingError.swift:8:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'OpenAPIKitCore'
6 | //
7 |
8 | import OpenAPIKitCore
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'OpenAPIKitCore'
9 |
10 | extension OpenAPI.Error.Decoding {
/host/spi-builder-workspace/Sources/OpenAPIKit30/Encoding and Decoding Errors/PathDecodingError.swift:13:20: warning: stored property 'context' of 'Sendable'-conforming struct 'Path' has non-sendable type 'Error.Decoding.Path.Context'; this is an error in the Swift 6 language mode
11 | public struct Path: OpenAPIError {
12 | public let path: OpenAPI.Path
13 | public let context: Context
| `- warning: stored property 'context' of 'Sendable'-conforming struct 'Path' has non-sendable type 'Error.Decoding.Path.Context'; this is an error in the Swift 6 language mode
14 | internal let relativeCodingPath: [CodingKey]
15 |
16 | public enum Context {
| `- note: consider making enum 'Context' conform to the 'Sendable' protocol
17 | case endpoint(Operation)
18 | case inconsistency(InconsistencyError)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Encoding and Decoding Errors/ResponseDecodingError.swift:12:20: warning: stored property 'statusCode' of 'Sendable'-conforming struct 'Response' has non-sendable type 'OpenAPI.Response.StatusCode' (aka 'Shared.ResponseStatusCode'); this is an error in the Swift 6 language mode
10 | extension OpenAPI.Error.Decoding {
11 | public struct Response: OpenAPIError {
12 | public let statusCode: OpenAPI.Response.StatusCode
| `- warning: stored property 'statusCode' of 'Sendable'-conforming struct 'Response' has non-sendable type 'OpenAPI.Response.StatusCode' (aka 'Shared.ResponseStatusCode'); this is an error in the Swift 6 language mode
13 | public let context: Context
14 | internal let relativeCodingPath: [CodingKey]
/host/spi-builder-workspace/Sources/OpenAPIKitCore/Shared/ResponseStatusCode.swift:21:19: note: struct 'ResponseStatusCode' does not conform to the 'Sendable' protocol
19 | ///
20 | /// Status code ranges are named in the `StatusCode.Range` enum. For example, the "1XX" range (100-199) can be written as either `.range(.information)` or as `.range(.init(rawValue: "1XX"))`.
21 | public struct ResponseStatusCode: RawRepresentable, Equatable, Hashable, HasWarnings {
| `- note: struct 'ResponseStatusCode' does not conform to the 'Sendable' protocol
22 | public typealias RawValue = String
23 |
/host/spi-builder-workspace/Sources/OpenAPIKit30/Encoding and Decoding Errors/ResponseDecodingError.swift:8:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'OpenAPIKitCore'
6 | //
7 |
8 | import OpenAPIKitCore
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'OpenAPIKitCore'
9 |
10 | extension OpenAPI.Error.Decoding {
/host/spi-builder-workspace/Sources/OpenAPIKit30/Encoding and Decoding Errors/ResponseDecodingError.swift:13:20: warning: stored property 'context' of 'Sendable'-conforming struct 'Response' has non-sendable type 'Error.Decoding.Response.Context'; this is an error in the Swift 6 language mode
11 | public struct Response: OpenAPIError {
12 | public let statusCode: OpenAPI.Response.StatusCode
13 | public let context: Context
| `- warning: stored property 'context' of 'Sendable'-conforming struct 'Response' has non-sendable type 'Error.Decoding.Response.Context'; this is an error in the Swift 6 language mode
14 | internal let relativeCodingPath: [CodingKey]
15 |
16 | public enum Context {
| `- note: consider making enum 'Context' conform to the 'Sendable' protocol
17 | case inconsistency(InconsistencyError)
18 | case other(Swift.DecodingError)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Encoding and Decoding Errors/DocumentDecodingError.swift:12:20: warning: stored property 'context' of 'Sendable'-conforming struct 'Document' has non-sendable type 'Error.Decoding.Document.Context'; this is an error in the Swift 6 language mode
10 | extension OpenAPI.Error.Decoding {
11 | public struct Document: OpenAPIError {
12 | public let context: Context
| `- warning: stored property 'context' of 'Sendable'-conforming struct 'Document' has non-sendable type 'Error.Decoding.Document.Context'; this is an error in the Swift 6 language mode
13 | public let codingPath: [CodingKey]
14 |
15 | public enum Context {
| `- note: consider making enum 'Context' conform to the 'Sendable' protocol
16 | case path(Path)
17 | case inconsistency(InconsistencyError)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Encoding and Decoding Errors/OperationDecodingError.swift:12:20: warning: stored property 'endpoint' of 'Sendable'-conforming struct 'Operation' has non-sendable type 'OpenAPI.HttpMethod' (aka 'Shared.HttpMethod'); this is an error in the Swift 6 language mode
10 | extension OpenAPI.Error.Decoding {
11 | public struct Operation: OpenAPIError {
12 | public let endpoint: OpenAPI.HttpMethod
| `- warning: stored property 'endpoint' of 'Sendable'-conforming struct 'Operation' has non-sendable type 'OpenAPI.HttpMethod' (aka 'Shared.HttpMethod'); this is an error in the Swift 6 language mode
13 | public let context: Context
14 | internal let relativeCodingPath: [CodingKey]
/host/spi-builder-workspace/Sources/OpenAPIKitCore/Shared/HttpMethod.swift:15:17: note: enum 'HttpMethod' does not conform to the 'Sendable' protocol
13 | /// HTTP methods are enumerated as properties on that
14 | /// object.
15 | public enum HttpMethod: String, CaseIterable {
| `- note: enum 'HttpMethod' does not conform to the 'Sendable' protocol
16 | case get = "GET"
17 | case post = "POST"
/host/spi-builder-workspace/Sources/OpenAPIKit30/Encoding and Decoding Errors/OperationDecodingError.swift:8:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'OpenAPIKitCore'
6 | //
7 |
8 | import OpenAPIKitCore
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'OpenAPIKitCore'
9 |
10 | extension OpenAPI.Error.Decoding {
/host/spi-builder-workspace/Sources/OpenAPIKit30/Encoding and Decoding Errors/OperationDecodingError.swift:13:20: warning: stored property 'context' of 'Sendable'-conforming struct 'Operation' has non-sendable type 'Error.Decoding.Operation.Context'; this is an error in the Swift 6 language mode
11 | public struct Operation: OpenAPIError {
12 | public let endpoint: OpenAPI.HttpMethod
13 | public let context: Context
| `- warning: stored property 'context' of 'Sendable'-conforming struct 'Operation' has non-sendable type 'Error.Decoding.Operation.Context'; this is an error in the Swift 6 language mode
14 | internal let relativeCodingPath: [CodingKey]
15 |
16 | public enum Context {
| `- note: consider making enum 'Context' conform to the 'Sendable' protocol
17 | case request(Request)
18 | case response(Response)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Encoding and Decoding Errors/PathDecodingError.swift:12:20: warning: stored property 'path' of 'Sendable'-conforming struct 'Path' has non-sendable type 'OpenAPI.Path' (aka 'Shared.Path'); this is an error in the Swift 6 language mode
10 | extension OpenAPI.Error.Decoding {
11 | public struct Path: OpenAPIError {
12 | public let path: OpenAPI.Path
| `- warning: stored property 'path' of 'Sendable'-conforming struct 'Path' has non-sendable type 'OpenAPI.Path' (aka 'Shared.Path'); this is an error in the Swift 6 language mode
13 | public let context: Context
14 | internal let relativeCodingPath: [CodingKey]
/host/spi-builder-workspace/Sources/OpenAPIKitCore/Shared/Path.swift:13:19: note: struct 'Path' does not conform to the 'Sendable' protocol
11 | /// See [OpenAPI Paths Object](https://spec.openapis.org/oas/v3.0.4.html#paths-object)
12 | /// and [OpenAPI Patterned Fields](https://spec.openapis.org/oas/v3.0.4.html#patterned-fields).
13 | public struct Path: RawRepresentable, Equatable, Hashable {
| `- note: struct 'Path' does not conform to the 'Sendable' protocol
14 | public let components: [String]
15 | public let trailingSlash: Bool
/host/spi-builder-workspace/Sources/OpenAPIKit30/Encoding and Decoding Errors/PathDecodingError.swift:8:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'OpenAPIKitCore'
6 | //
7 |
8 | import OpenAPIKitCore
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'OpenAPIKitCore'
9 |
10 | extension OpenAPI.Error.Decoding {
/host/spi-builder-workspace/Sources/OpenAPIKit30/Encoding and Decoding Errors/PathDecodingError.swift:13:20: warning: stored property 'context' of 'Sendable'-conforming struct 'Path' has non-sendable type 'Error.Decoding.Path.Context'; this is an error in the Swift 6 language mode
11 | public struct Path: OpenAPIError {
12 | public let path: OpenAPI.Path
13 | public let context: Context
| `- warning: stored property 'context' of 'Sendable'-conforming struct 'Path' has non-sendable type 'Error.Decoding.Path.Context'; this is an error in the Swift 6 language mode
14 | internal let relativeCodingPath: [CodingKey]
15 |
16 | public enum Context {
| `- note: consider making enum 'Context' conform to the 'Sendable' protocol
17 | case endpoint(Operation)
18 | case inconsistency(InconsistencyError)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Encoding and Decoding Errors/ResponseDecodingError.swift:12:20: warning: stored property 'statusCode' of 'Sendable'-conforming struct 'Response' has non-sendable type 'OpenAPI.Response.StatusCode' (aka 'Shared.ResponseStatusCode'); this is an error in the Swift 6 language mode
10 | extension OpenAPI.Error.Decoding {
11 | public struct Response: OpenAPIError {
12 | public let statusCode: OpenAPI.Response.StatusCode
| `- warning: stored property 'statusCode' of 'Sendable'-conforming struct 'Response' has non-sendable type 'OpenAPI.Response.StatusCode' (aka 'Shared.ResponseStatusCode'); this is an error in the Swift 6 language mode
13 | public let context: Context
14 | internal let relativeCodingPath: [CodingKey]
/host/spi-builder-workspace/Sources/OpenAPIKitCore/Shared/ResponseStatusCode.swift:21:19: note: struct 'ResponseStatusCode' does not conform to the 'Sendable' protocol
19 | ///
20 | /// Status code ranges are named in the `StatusCode.Range` enum. For example, the "1XX" range (100-199) can be written as either `.range(.information)` or as `.range(.init(rawValue: "1XX"))`.
21 | public struct ResponseStatusCode: RawRepresentable, Equatable, Hashable, HasWarnings {
| `- note: struct 'ResponseStatusCode' does not conform to the 'Sendable' protocol
22 | public typealias RawValue = String
23 |
/host/spi-builder-workspace/Sources/OpenAPIKit30/Encoding and Decoding Errors/ResponseDecodingError.swift:8:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'OpenAPIKitCore'
6 | //
7 |
8 | import OpenAPIKitCore
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'OpenAPIKitCore'
9 |
10 | extension OpenAPI.Error.Decoding {
/host/spi-builder-workspace/Sources/OpenAPIKit30/Encoding and Decoding Errors/ResponseDecodingError.swift:13:20: warning: stored property 'context' of 'Sendable'-conforming struct 'Response' has non-sendable type 'Error.Decoding.Response.Context'; this is an error in the Swift 6 language mode
11 | public struct Response: OpenAPIError {
12 | public let statusCode: OpenAPI.Response.StatusCode
13 | public let context: Context
| `- warning: stored property 'context' of 'Sendable'-conforming struct 'Response' has non-sendable type 'Error.Decoding.Response.Context'; this is an error in the Swift 6 language mode
14 | internal let relativeCodingPath: [CodingKey]
15 |
16 | public enum Context {
| `- note: consider making enum 'Context' conform to the 'Sendable' protocol
17 | case inconsistency(InconsistencyError)
18 | case other(Swift.DecodingError)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Encoding and Decoding Errors/DocumentDecodingError.swift:12:20: warning: stored property 'context' of 'Sendable'-conforming struct 'Document' has non-sendable type 'Error.Decoding.Document.Context'; this is an error in the Swift 6 language mode
10 | extension OpenAPI.Error.Decoding {
11 | public struct Document: OpenAPIError {
12 | public let context: Context
| `- warning: stored property 'context' of 'Sendable'-conforming struct 'Document' has non-sendable type 'Error.Decoding.Document.Context'; this is an error in the Swift 6 language mode
13 | public let codingPath: [CodingKey]
14 |
15 | public enum Context {
| `- note: consider making enum 'Context' conform to the 'Sendable' protocol
16 | case path(Path)
17 | case inconsistency(InconsistencyError)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Encoding and Decoding Errors/OperationDecodingError.swift:12:20: warning: stored property 'endpoint' of 'Sendable'-conforming struct 'Operation' has non-sendable type 'OpenAPI.HttpMethod' (aka 'Shared.HttpMethod'); this is an error in the Swift 6 language mode
10 | extension OpenAPI.Error.Decoding {
11 | public struct Operation: OpenAPIError {
12 | public let endpoint: OpenAPI.HttpMethod
| `- warning: stored property 'endpoint' of 'Sendable'-conforming struct 'Operation' has non-sendable type 'OpenAPI.HttpMethod' (aka 'Shared.HttpMethod'); this is an error in the Swift 6 language mode
13 | public let context: Context
14 | internal let relativeCodingPath: [CodingKey]
/host/spi-builder-workspace/Sources/OpenAPIKitCore/Shared/HttpMethod.swift:15:17: note: enum 'HttpMethod' does not conform to the 'Sendable' protocol
13 | /// HTTP methods are enumerated as properties on that
14 | /// object.
15 | public enum HttpMethod: String, CaseIterable {
| `- note: enum 'HttpMethod' does not conform to the 'Sendable' protocol
16 | case get = "GET"
17 | case post = "POST"
/host/spi-builder-workspace/Sources/OpenAPIKit30/Encoding and Decoding Errors/OperationDecodingError.swift:8:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'OpenAPIKitCore'
6 | //
7 |
8 | import OpenAPIKitCore
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'OpenAPIKitCore'
9 |
10 | extension OpenAPI.Error.Decoding {
/host/spi-builder-workspace/Sources/OpenAPIKit30/Encoding and Decoding Errors/OperationDecodingError.swift:13:20: warning: stored property 'context' of 'Sendable'-conforming struct 'Operation' has non-sendable type 'Error.Decoding.Operation.Context'; this is an error in the Swift 6 language mode
11 | public struct Operation: OpenAPIError {
12 | public let endpoint: OpenAPI.HttpMethod
13 | public let context: Context
| `- warning: stored property 'context' of 'Sendable'-conforming struct 'Operation' has non-sendable type 'Error.Decoding.Operation.Context'; this is an error in the Swift 6 language mode
14 | internal let relativeCodingPath: [CodingKey]
15 |
16 | public enum Context {
| `- note: consider making enum 'Context' conform to the 'Sendable' protocol
17 | case request(Request)
18 | case response(Response)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Encoding and Decoding Errors/PathDecodingError.swift:12:20: warning: stored property 'path' of 'Sendable'-conforming struct 'Path' has non-sendable type 'OpenAPI.Path' (aka 'Shared.Path'); this is an error in the Swift 6 language mode
10 | extension OpenAPI.Error.Decoding {
11 | public struct Path: OpenAPIError {
12 | public let path: OpenAPI.Path
| `- warning: stored property 'path' of 'Sendable'-conforming struct 'Path' has non-sendable type 'OpenAPI.Path' (aka 'Shared.Path'); this is an error in the Swift 6 language mode
13 | public let context: Context
14 | internal let relativeCodingPath: [CodingKey]
/host/spi-builder-workspace/Sources/OpenAPIKitCore/Shared/Path.swift:13:19: note: struct 'Path' does not conform to the 'Sendable' protocol
11 | /// See [OpenAPI Paths Object](https://spec.openapis.org/oas/v3.0.4.html#paths-object)
12 | /// and [OpenAPI Patterned Fields](https://spec.openapis.org/oas/v3.0.4.html#patterned-fields).
13 | public struct Path: RawRepresentable, Equatable, Hashable {
| `- note: struct 'Path' does not conform to the 'Sendable' protocol
14 | public let components: [String]
15 | public let trailingSlash: Bool
/host/spi-builder-workspace/Sources/OpenAPIKit30/Encoding and Decoding Errors/PathDecodingError.swift:8:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'OpenAPIKitCore'
6 | //
7 |
8 | import OpenAPIKitCore
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'OpenAPIKitCore'
9 |
10 | extension OpenAPI.Error.Decoding {
/host/spi-builder-workspace/Sources/OpenAPIKit30/Encoding and Decoding Errors/PathDecodingError.swift:13:20: warning: stored property 'context' of 'Sendable'-conforming struct 'Path' has non-sendable type 'Error.Decoding.Path.Context'; this is an error in the Swift 6 language mode
11 | public struct Path: OpenAPIError {
12 | public let path: OpenAPI.Path
13 | public let context: Context
| `- warning: stored property 'context' of 'Sendable'-conforming struct 'Path' has non-sendable type 'Error.Decoding.Path.Context'; this is an error in the Swift 6 language mode
14 | internal let relativeCodingPath: [CodingKey]
15 |
16 | public enum Context {
| `- note: consider making enum 'Context' conform to the 'Sendable' protocol
17 | case endpoint(Operation)
18 | case inconsistency(InconsistencyError)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Encoding and Decoding Errors/ResponseDecodingError.swift:12:20: warning: stored property 'statusCode' of 'Sendable'-conforming struct 'Response' has non-sendable type 'OpenAPI.Response.StatusCode' (aka 'Shared.ResponseStatusCode'); this is an error in the Swift 6 language mode
10 | extension OpenAPI.Error.Decoding {
11 | public struct Response: OpenAPIError {
12 | public let statusCode: OpenAPI.Response.StatusCode
| `- warning: stored property 'statusCode' of 'Sendable'-conforming struct 'Response' has non-sendable type 'OpenAPI.Response.StatusCode' (aka 'Shared.ResponseStatusCode'); this is an error in the Swift 6 language mode
13 | public let context: Context
14 | internal let relativeCodingPath: [CodingKey]
/host/spi-builder-workspace/Sources/OpenAPIKitCore/Shared/ResponseStatusCode.swift:21:19: note: struct 'ResponseStatusCode' does not conform to the 'Sendable' protocol
19 | ///
20 | /// Status code ranges are named in the `StatusCode.Range` enum. For example, the "1XX" range (100-199) can be written as either `.range(.information)` or as `.range(.init(rawValue: "1XX"))`.
21 | public struct ResponseStatusCode: RawRepresentable, Equatable, Hashable, HasWarnings {
| `- note: struct 'ResponseStatusCode' does not conform to the 'Sendable' protocol
22 | public typealias RawValue = String
23 |
/host/spi-builder-workspace/Sources/OpenAPIKit30/Encoding and Decoding Errors/ResponseDecodingError.swift:8:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'OpenAPIKitCore'
6 | //
7 |
8 | import OpenAPIKitCore
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'OpenAPIKitCore'
9 |
10 | extension OpenAPI.Error.Decoding {
/host/spi-builder-workspace/Sources/OpenAPIKit30/Encoding and Decoding Errors/ResponseDecodingError.swift:13:20: warning: stored property 'context' of 'Sendable'-conforming struct 'Response' has non-sendable type 'Error.Decoding.Response.Context'; this is an error in the Swift 6 language mode
11 | public struct Response: OpenAPIError {
12 | public let statusCode: OpenAPI.Response.StatusCode
13 | public let context: Context
| `- warning: stored property 'context' of 'Sendable'-conforming struct 'Response' has non-sendable type 'Error.Decoding.Response.Context'; this is an error in the Swift 6 language mode
14 | internal let relativeCodingPath: [CodingKey]
15 |
16 | public enum Context {
| `- note: consider making enum 'Context' conform to the 'Sendable' protocol
17 | case inconsistency(InconsistencyError)
18 | case other(Swift.DecodingError)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Encoding and Decoding Errors/DocumentDecodingError.swift:12:20: warning: stored property 'context' of 'Sendable'-conforming struct 'Document' has non-sendable type 'Error.Decoding.Document.Context'; this is an error in the Swift 6 language mode
10 | extension OpenAPI.Error.Decoding {
11 | public struct Document: OpenAPIError {
12 | public let context: Context
| `- warning: stored property 'context' of 'Sendable'-conforming struct 'Document' has non-sendable type 'Error.Decoding.Document.Context'; this is an error in the Swift 6 language mode
13 | public let codingPath: [CodingKey]
14 |
15 | public enum Context {
| `- note: consider making enum 'Context' conform to the 'Sendable' protocol
16 | case path(Path)
17 | case inconsistency(InconsistencyError)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Encoding and Decoding Errors/OperationDecodingError.swift:12:20: warning: stored property 'endpoint' of 'Sendable'-conforming struct 'Operation' has non-sendable type 'OpenAPI.HttpMethod' (aka 'Shared.HttpMethod'); this is an error in the Swift 6 language mode
10 | extension OpenAPI.Error.Decoding {
11 | public struct Operation: OpenAPIError {
12 | public let endpoint: OpenAPI.HttpMethod
| `- warning: stored property 'endpoint' of 'Sendable'-conforming struct 'Operation' has non-sendable type 'OpenAPI.HttpMethod' (aka 'Shared.HttpMethod'); this is an error in the Swift 6 language mode
13 | public let context: Context
14 | internal let relativeCodingPath: [CodingKey]
/host/spi-builder-workspace/Sources/OpenAPIKitCore/Shared/HttpMethod.swift:15:17: note: enum 'HttpMethod' does not conform to the 'Sendable' protocol
13 | /// HTTP methods are enumerated as properties on that
14 | /// object.
15 | public enum HttpMethod: String, CaseIterable {
| `- note: enum 'HttpMethod' does not conform to the 'Sendable' protocol
16 | case get = "GET"
17 | case post = "POST"
/host/spi-builder-workspace/Sources/OpenAPIKit30/Encoding and Decoding Errors/OperationDecodingError.swift:8:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'OpenAPIKitCore'
6 | //
7 |
8 | import OpenAPIKitCore
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'OpenAPIKitCore'
9 |
10 | extension OpenAPI.Error.Decoding {
/host/spi-builder-workspace/Sources/OpenAPIKit30/Encoding and Decoding Errors/OperationDecodingError.swift:13:20: warning: stored property 'context' of 'Sendable'-conforming struct 'Operation' has non-sendable type 'Error.Decoding.Operation.Context'; this is an error in the Swift 6 language mode
11 | public struct Operation: OpenAPIError {
12 | public let endpoint: OpenAPI.HttpMethod
13 | public let context: Context
| `- warning: stored property 'context' of 'Sendable'-conforming struct 'Operation' has non-sendable type 'Error.Decoding.Operation.Context'; this is an error in the Swift 6 language mode
14 | internal let relativeCodingPath: [CodingKey]
15 |
16 | public enum Context {
| `- note: consider making enum 'Context' conform to the 'Sendable' protocol
17 | case request(Request)
18 | case response(Response)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Encoding and Decoding Errors/PathDecodingError.swift:12:20: warning: stored property 'path' of 'Sendable'-conforming struct 'Path' has non-sendable type 'OpenAPI.Path' (aka 'Shared.Path'); this is an error in the Swift 6 language mode
10 | extension OpenAPI.Error.Decoding {
11 | public struct Path: OpenAPIError {
12 | public let path: OpenAPI.Path
| `- warning: stored property 'path' of 'Sendable'-conforming struct 'Path' has non-sendable type 'OpenAPI.Path' (aka 'Shared.Path'); this is an error in the Swift 6 language mode
13 | public let context: Context
14 | internal let relativeCodingPath: [CodingKey]
/host/spi-builder-workspace/Sources/OpenAPIKitCore/Shared/Path.swift:13:19: note: struct 'Path' does not conform to the 'Sendable' protocol
11 | /// See [OpenAPI Paths Object](https://spec.openapis.org/oas/v3.0.4.html#paths-object)
12 | /// and [OpenAPI Patterned Fields](https://spec.openapis.org/oas/v3.0.4.html#patterned-fields).
13 | public struct Path: RawRepresentable, Equatable, Hashable {
| `- note: struct 'Path' does not conform to the 'Sendable' protocol
14 | public let components: [String]
15 | public let trailingSlash: Bool
/host/spi-builder-workspace/Sources/OpenAPIKit30/Encoding and Decoding Errors/PathDecodingError.swift:8:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'OpenAPIKitCore'
6 | //
7 |
8 | import OpenAPIKitCore
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'OpenAPIKitCore'
9 |
10 | extension OpenAPI.Error.Decoding {
/host/spi-builder-workspace/Sources/OpenAPIKit30/Encoding and Decoding Errors/PathDecodingError.swift:13:20: warning: stored property 'context' of 'Sendable'-conforming struct 'Path' has non-sendable type 'Error.Decoding.Path.Context'; this is an error in the Swift 6 language mode
11 | public struct Path: OpenAPIError {
12 | public let path: OpenAPI.Path
13 | public let context: Context
| `- warning: stored property 'context' of 'Sendable'-conforming struct 'Path' has non-sendable type 'Error.Decoding.Path.Context'; this is an error in the Swift 6 language mode
14 | internal let relativeCodingPath: [CodingKey]
15 |
16 | public enum Context {
| `- note: consider making enum 'Context' conform to the 'Sendable' protocol
17 | case endpoint(Operation)
18 | case inconsistency(InconsistencyError)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Encoding and Decoding Errors/ResponseDecodingError.swift:12:20: warning: stored property 'statusCode' of 'Sendable'-conforming struct 'Response' has non-sendable type 'OpenAPI.Response.StatusCode' (aka 'Shared.ResponseStatusCode'); this is an error in the Swift 6 language mode
10 | extension OpenAPI.Error.Decoding {
11 | public struct Response: OpenAPIError {
12 | public let statusCode: OpenAPI.Response.StatusCode
| `- warning: stored property 'statusCode' of 'Sendable'-conforming struct 'Response' has non-sendable type 'OpenAPI.Response.StatusCode' (aka 'Shared.ResponseStatusCode'); this is an error in the Swift 6 language mode
13 | public let context: Context
14 | internal let relativeCodingPath: [CodingKey]
/host/spi-builder-workspace/Sources/OpenAPIKitCore/Shared/ResponseStatusCode.swift:21:19: note: struct 'ResponseStatusCode' does not conform to the 'Sendable' protocol
19 | ///
20 | /// Status code ranges are named in the `StatusCode.Range` enum. For example, the "1XX" range (100-199) can be written as either `.range(.information)` or as `.range(.init(rawValue: "1XX"))`.
21 | public struct ResponseStatusCode: RawRepresentable, Equatable, Hashable, HasWarnings {
| `- note: struct 'ResponseStatusCode' does not conform to the 'Sendable' protocol
22 | public typealias RawValue = String
23 |
/host/spi-builder-workspace/Sources/OpenAPIKit30/Encoding and Decoding Errors/ResponseDecodingError.swift:8:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'OpenAPIKitCore'
6 | //
7 |
8 | import OpenAPIKitCore
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'OpenAPIKitCore'
9 |
10 | extension OpenAPI.Error.Decoding {
/host/spi-builder-workspace/Sources/OpenAPIKit30/Encoding and Decoding Errors/ResponseDecodingError.swift:13:20: warning: stored property 'context' of 'Sendable'-conforming struct 'Response' has non-sendable type 'Error.Decoding.Response.Context'; this is an error in the Swift 6 language mode
11 | public struct Response: OpenAPIError {
12 | public let statusCode: OpenAPI.Response.StatusCode
13 | public let context: Context
| `- warning: stored property 'context' of 'Sendable'-conforming struct 'Response' has non-sendable type 'Error.Decoding.Response.Context'; this is an error in the Swift 6 language mode
14 | internal let relativeCodingPath: [CodingKey]
15 |
16 | public enum Context {
| `- note: consider making enum 'Context' conform to the 'Sendable' protocol
17 | case inconsistency(InconsistencyError)
18 | case other(Swift.DecodingError)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Encoding and Decoding Errors/DocumentDecodingError.swift:12:20: warning: stored property 'context' of 'Sendable'-conforming struct 'Document' has non-sendable type 'Error.Decoding.Document.Context'; this is an error in the Swift 6 language mode
10 | extension OpenAPI.Error.Decoding {
11 | public struct Document: OpenAPIError {
12 | public let context: Context
| `- warning: stored property 'context' of 'Sendable'-conforming struct 'Document' has non-sendable type 'Error.Decoding.Document.Context'; this is an error in the Swift 6 language mode
13 | public let codingPath: [CodingKey]
14 |
15 | public enum Context {
| `- note: consider making enum 'Context' conform to the 'Sendable' protocol
16 | case path(Path)
17 | case inconsistency(InconsistencyError)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Encoding and Decoding Errors/OperationDecodingError.swift:12:20: warning: stored property 'endpoint' of 'Sendable'-conforming struct 'Operation' has non-sendable type 'OpenAPI.HttpMethod' (aka 'Shared.HttpMethod'); this is an error in the Swift 6 language mode
10 | extension OpenAPI.Error.Decoding {
11 | public struct Operation: OpenAPIError {
12 | public let endpoint: OpenAPI.HttpMethod
| `- warning: stored property 'endpoint' of 'Sendable'-conforming struct 'Operation' has non-sendable type 'OpenAPI.HttpMethod' (aka 'Shared.HttpMethod'); this is an error in the Swift 6 language mode
13 | public let context: Context
14 | internal let relativeCodingPath: [CodingKey]
/host/spi-builder-workspace/Sources/OpenAPIKitCore/Shared/HttpMethod.swift:15:17: note: enum 'HttpMethod' does not conform to the 'Sendable' protocol
13 | /// HTTP methods are enumerated as properties on that
14 | /// object.
15 | public enum HttpMethod: String, CaseIterable {
| `- note: enum 'HttpMethod' does not conform to the 'Sendable' protocol
16 | case get = "GET"
17 | case post = "POST"
/host/spi-builder-workspace/Sources/OpenAPIKit30/Encoding and Decoding Errors/OperationDecodingError.swift:8:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'OpenAPIKitCore'
6 | //
7 |
8 | import OpenAPIKitCore
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'OpenAPIKitCore'
9 |
10 | extension OpenAPI.Error.Decoding {
/host/spi-builder-workspace/Sources/OpenAPIKit30/Encoding and Decoding Errors/OperationDecodingError.swift:13:20: warning: stored property 'context' of 'Sendable'-conforming struct 'Operation' has non-sendable type 'Error.Decoding.Operation.Context'; this is an error in the Swift 6 language mode
11 | public struct Operation: OpenAPIError {
12 | public let endpoint: OpenAPI.HttpMethod
13 | public let context: Context
| `- warning: stored property 'context' of 'Sendable'-conforming struct 'Operation' has non-sendable type 'Error.Decoding.Operation.Context'; this is an error in the Swift 6 language mode
14 | internal let relativeCodingPath: [CodingKey]
15 |
16 | public enum Context {
| `- note: consider making enum 'Context' conform to the 'Sendable' protocol
17 | case request(Request)
18 | case response(Response)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Encoding and Decoding Errors/PathDecodingError.swift:12:20: warning: stored property 'path' of 'Sendable'-conforming struct 'Path' has non-sendable type 'OpenAPI.Path' (aka 'Shared.Path'); this is an error in the Swift 6 language mode
10 | extension OpenAPI.Error.Decoding {
11 | public struct Path: OpenAPIError {
12 | public let path: OpenAPI.Path
| `- warning: stored property 'path' of 'Sendable'-conforming struct 'Path' has non-sendable type 'OpenAPI.Path' (aka 'Shared.Path'); this is an error in the Swift 6 language mode
13 | public let context: Context
14 | internal let relativeCodingPath: [CodingKey]
/host/spi-builder-workspace/Sources/OpenAPIKitCore/Shared/Path.swift:13:19: note: struct 'Path' does not conform to the 'Sendable' protocol
11 | /// See [OpenAPI Paths Object](https://spec.openapis.org/oas/v3.0.4.html#paths-object)
12 | /// and [OpenAPI Patterned Fields](https://spec.openapis.org/oas/v3.0.4.html#patterned-fields).
13 | public struct Path: RawRepresentable, Equatable, Hashable {
| `- note: struct 'Path' does not conform to the 'Sendable' protocol
14 | public let components: [String]
15 | public let trailingSlash: Bool
/host/spi-builder-workspace/Sources/OpenAPIKit30/Encoding and Decoding Errors/PathDecodingError.swift:8:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'OpenAPIKitCore'
6 | //
7 |
8 | import OpenAPIKitCore
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'OpenAPIKitCore'
9 |
10 | extension OpenAPI.Error.Decoding {
/host/spi-builder-workspace/Sources/OpenAPIKit30/Encoding and Decoding Errors/PathDecodingError.swift:13:20: warning: stored property 'context' of 'Sendable'-conforming struct 'Path' has non-sendable type 'Error.Decoding.Path.Context'; this is an error in the Swift 6 language mode
11 | public struct Path: OpenAPIError {
12 | public let path: OpenAPI.Path
13 | public let context: Context
| `- warning: stored property 'context' of 'Sendable'-conforming struct 'Path' has non-sendable type 'Error.Decoding.Path.Context'; this is an error in the Swift 6 language mode
14 | internal let relativeCodingPath: [CodingKey]
15 |
16 | public enum Context {
| `- note: consider making enum 'Context' conform to the 'Sendable' protocol
17 | case endpoint(Operation)
18 | case inconsistency(InconsistencyError)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Encoding and Decoding Errors/ResponseDecodingError.swift:12:20: warning: stored property 'statusCode' of 'Sendable'-conforming struct 'Response' has non-sendable type 'OpenAPI.Response.StatusCode' (aka 'Shared.ResponseStatusCode'); this is an error in the Swift 6 language mode
10 | extension OpenAPI.Error.Decoding {
11 | public struct Response: OpenAPIError {
12 | public let statusCode: OpenAPI.Response.StatusCode
| `- warning: stored property 'statusCode' of 'Sendable'-conforming struct 'Response' has non-sendable type 'OpenAPI.Response.StatusCode' (aka 'Shared.ResponseStatusCode'); this is an error in the Swift 6 language mode
13 | public let context: Context
14 | internal let relativeCodingPath: [CodingKey]
/host/spi-builder-workspace/Sources/OpenAPIKitCore/Shared/ResponseStatusCode.swift:21:19: note: struct 'ResponseStatusCode' does not conform to the 'Sendable' protocol
19 | ///
20 | /// Status code ranges are named in the `StatusCode.Range` enum. For example, the "1XX" range (100-199) can be written as either `.range(.information)` or as `.range(.init(rawValue: "1XX"))`.
21 | public struct ResponseStatusCode: RawRepresentable, Equatable, Hashable, HasWarnings {
| `- note: struct 'ResponseStatusCode' does not conform to the 'Sendable' protocol
22 | public typealias RawValue = String
23 |
/host/spi-builder-workspace/Sources/OpenAPIKit30/Encoding and Decoding Errors/ResponseDecodingError.swift:8:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'OpenAPIKitCore'
6 | //
7 |
8 | import OpenAPIKitCore
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'OpenAPIKitCore'
9 |
10 | extension OpenAPI.Error.Decoding {
/host/spi-builder-workspace/Sources/OpenAPIKit30/Encoding and Decoding Errors/ResponseDecodingError.swift:13:20: warning: stored property 'context' of 'Sendable'-conforming struct 'Response' has non-sendable type 'Error.Decoding.Response.Context'; this is an error in the Swift 6 language mode
11 | public struct Response: OpenAPIError {
12 | public let statusCode: OpenAPI.Response.StatusCode
13 | public let context: Context
| `- warning: stored property 'context' of 'Sendable'-conforming struct 'Response' has non-sendable type 'Error.Decoding.Response.Context'; this is an error in the Swift 6 language mode
14 | internal let relativeCodingPath: [CodingKey]
15 |
16 | public enum Context {
| `- note: consider making enum 'Context' conform to the 'Sendable' protocol
17 | case inconsistency(InconsistencyError)
18 | case other(Swift.DecodingError)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Encoding and Decoding Errors/DocumentDecodingError.swift:12:20: warning: stored property 'context' of 'Sendable'-conforming struct 'Document' has non-sendable type 'Error.Decoding.Document.Context'; this is an error in the Swift 6 language mode
10 | extension OpenAPI.Error.Decoding {
11 | public struct Document: OpenAPIError {
12 | public let context: Context
| `- warning: stored property 'context' of 'Sendable'-conforming struct 'Document' has non-sendable type 'Error.Decoding.Document.Context'; this is an error in the Swift 6 language mode
13 | public let codingPath: [CodingKey]
14 |
15 | public enum Context {
| `- note: consider making enum 'Context' conform to the 'Sendable' protocol
16 | case path(Path)
17 | case inconsistency(InconsistencyError)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Encoding and Decoding Errors/OperationDecodingError.swift:12:20: warning: stored property 'endpoint' of 'Sendable'-conforming struct 'Operation' has non-sendable type 'OpenAPI.HttpMethod' (aka 'Shared.HttpMethod'); this is an error in the Swift 6 language mode
10 | extension OpenAPI.Error.Decoding {
11 | public struct Operation: OpenAPIError {
12 | public let endpoint: OpenAPI.HttpMethod
| `- warning: stored property 'endpoint' of 'Sendable'-conforming struct 'Operation' has non-sendable type 'OpenAPI.HttpMethod' (aka 'Shared.HttpMethod'); this is an error in the Swift 6 language mode
13 | public let context: Context
14 | internal let relativeCodingPath: [CodingKey]
/host/spi-builder-workspace/Sources/OpenAPIKitCore/Shared/HttpMethod.swift:15:17: note: enum 'HttpMethod' does not conform to the 'Sendable' protocol
13 | /// HTTP methods are enumerated as properties on that
14 | /// object.
15 | public enum HttpMethod: String, CaseIterable {
| `- note: enum 'HttpMethod' does not conform to the 'Sendable' protocol
16 | case get = "GET"
17 | case post = "POST"
/host/spi-builder-workspace/Sources/OpenAPIKit30/Encoding and Decoding Errors/OperationDecodingError.swift:8:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'OpenAPIKitCore'
6 | //
7 |
8 | import OpenAPIKitCore
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'OpenAPIKitCore'
9 |
10 | extension OpenAPI.Error.Decoding {
/host/spi-builder-workspace/Sources/OpenAPIKit30/Encoding and Decoding Errors/OperationDecodingError.swift:13:20: warning: stored property 'context' of 'Sendable'-conforming struct 'Operation' has non-sendable type 'Error.Decoding.Operation.Context'; this is an error in the Swift 6 language mode
11 | public struct Operation: OpenAPIError {
12 | public let endpoint: OpenAPI.HttpMethod
13 | public let context: Context
| `- warning: stored property 'context' of 'Sendable'-conforming struct 'Operation' has non-sendable type 'Error.Decoding.Operation.Context'; this is an error in the Swift 6 language mode
14 | internal let relativeCodingPath: [CodingKey]
15 |
16 | public enum Context {
| `- note: consider making enum 'Context' conform to the 'Sendable' protocol
17 | case request(Request)
18 | case response(Response)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Encoding and Decoding Errors/PathDecodingError.swift:12:20: warning: stored property 'path' of 'Sendable'-conforming struct 'Path' has non-sendable type 'OpenAPI.Path' (aka 'Shared.Path'); this is an error in the Swift 6 language mode
10 | extension OpenAPI.Error.Decoding {
11 | public struct Path: OpenAPIError {
12 | public let path: OpenAPI.Path
| `- warning: stored property 'path' of 'Sendable'-conforming struct 'Path' has non-sendable type 'OpenAPI.Path' (aka 'Shared.Path'); this is an error in the Swift 6 language mode
13 | public let context: Context
14 | internal let relativeCodingPath: [CodingKey]
/host/spi-builder-workspace/Sources/OpenAPIKitCore/Shared/Path.swift:13:19: note: struct 'Path' does not conform to the 'Sendable' protocol
11 | /// See [OpenAPI Paths Object](https://spec.openapis.org/oas/v3.0.4.html#paths-object)
12 | /// and [OpenAPI Patterned Fields](https://spec.openapis.org/oas/v3.0.4.html#patterned-fields).
13 | public struct Path: RawRepresentable, Equatable, Hashable {
| `- note: struct 'Path' does not conform to the 'Sendable' protocol
14 | public let components: [String]
15 | public let trailingSlash: Bool
/host/spi-builder-workspace/Sources/OpenAPIKit30/Encoding and Decoding Errors/PathDecodingError.swift:8:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'OpenAPIKitCore'
6 | //
7 |
8 | import OpenAPIKitCore
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'OpenAPIKitCore'
9 |
10 | extension OpenAPI.Error.Decoding {
/host/spi-builder-workspace/Sources/OpenAPIKit30/Encoding and Decoding Errors/PathDecodingError.swift:13:20: warning: stored property 'context' of 'Sendable'-conforming struct 'Path' has non-sendable type 'Error.Decoding.Path.Context'; this is an error in the Swift 6 language mode
11 | public struct Path: OpenAPIError {
12 | public let path: OpenAPI.Path
13 | public let context: Context
| `- warning: stored property 'context' of 'Sendable'-conforming struct 'Path' has non-sendable type 'Error.Decoding.Path.Context'; this is an error in the Swift 6 language mode
14 | internal let relativeCodingPath: [CodingKey]
15 |
16 | public enum Context {
| `- note: consider making enum 'Context' conform to the 'Sendable' protocol
17 | case endpoint(Operation)
18 | case inconsistency(InconsistencyError)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Encoding and Decoding Errors/ResponseDecodingError.swift:12:20: warning: stored property 'statusCode' of 'Sendable'-conforming struct 'Response' has non-sendable type 'OpenAPI.Response.StatusCode' (aka 'Shared.ResponseStatusCode'); this is an error in the Swift 6 language mode
10 | extension OpenAPI.Error.Decoding {
11 | public struct Response: OpenAPIError {
12 | public let statusCode: OpenAPI.Response.StatusCode
| `- warning: stored property 'statusCode' of 'Sendable'-conforming struct 'Response' has non-sendable type 'OpenAPI.Response.StatusCode' (aka 'Shared.ResponseStatusCode'); this is an error in the Swift 6 language mode
13 | public let context: Context
14 | internal let relativeCodingPath: [CodingKey]
/host/spi-builder-workspace/Sources/OpenAPIKitCore/Shared/ResponseStatusCode.swift:21:19: note: struct 'ResponseStatusCode' does not conform to the 'Sendable' protocol
19 | ///
20 | /// Status code ranges are named in the `StatusCode.Range` enum. For example, the "1XX" range (100-199) can be written as either `.range(.information)` or as `.range(.init(rawValue: "1XX"))`.
21 | public struct ResponseStatusCode: RawRepresentable, Equatable, Hashable, HasWarnings {
| `- note: struct 'ResponseStatusCode' does not conform to the 'Sendable' protocol
22 | public typealias RawValue = String
23 |
/host/spi-builder-workspace/Sources/OpenAPIKit30/Encoding and Decoding Errors/ResponseDecodingError.swift:8:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'OpenAPIKitCore'
6 | //
7 |
8 | import OpenAPIKitCore
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'OpenAPIKitCore'
9 |
10 | extension OpenAPI.Error.Decoding {
/host/spi-builder-workspace/Sources/OpenAPIKit30/Encoding and Decoding Errors/ResponseDecodingError.swift:13:20: warning: stored property 'context' of 'Sendable'-conforming struct 'Response' has non-sendable type 'Error.Decoding.Response.Context'; this is an error in the Swift 6 language mode
11 | public struct Response: OpenAPIError {
12 | public let statusCode: OpenAPI.Response.StatusCode
13 | public let context: Context
| `- warning: stored property 'context' of 'Sendable'-conforming struct 'Response' has non-sendable type 'Error.Decoding.Response.Context'; this is an error in the Swift 6 language mode
14 | internal let relativeCodingPath: [CodingKey]
15 |
16 | public enum Context {
| `- note: consider making enum 'Context' conform to the 'Sendable' protocol
17 | case inconsistency(InconsistencyError)
18 | case other(Swift.DecodingError)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Parameter/ParameterSchemaContext.swift:224:1: warning: extension declares a conformance of imported type 'ParameterSchemaContextStyle' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
222 | }
223 |
224 | extension OpenAPI.Parameter.SchemaContext.Style: Validatable {}
| |- warning: extension declares a conformance of imported type 'ParameterSchemaContextStyle' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
225 |
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/PathItem.swift:221:1: warning: extension declares a conformance of imported type 'Path' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
219 | // MARK: - Codable
220 |
221 | extension OpenAPI.Path: Encodable {
| |- warning: extension declares a conformance of imported type 'Path' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
222 | public func encode(to encoder: Encoder) throws {
223 | var container = encoder.singleValueContainer()
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/PathItem.swift:229:1: warning: extension declares a conformance of imported type 'Path' to imported protocol 'Decodable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
227 | }
228 |
229 | extension OpenAPI.Path: Decodable {
| |- warning: extension declares a conformance of imported type 'Path' to imported protocol 'Decodable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
230 | public init(from decoder: Decoder) throws {
231 | let container = try decoder.singleValueContainer()
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:154:45: warning: sending 'oldParameters' risks causing data races; this is an error in the Swift 6 language mode
152 | let oldTrace = trace
153 |
154 | async let (newParameters, c1, m1) = oldParameters.externallyDereferenced(with: loader)
| |- warning: sending 'oldParameters' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldParameters' into async let risks causing data races between nonisolated and task-isolated uses
155 | // async let (newServers, c2, m2) = oldServers.externallyDereferenced(with: loader)
156 | async let (newGet, c3, m3) = oldGet.externallyDereferenced(with: loader)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:156:38: warning: sending 'oldGet' risks causing data races; this is an error in the Swift 6 language mode
154 | async let (newParameters, c1, m1) = oldParameters.externallyDereferenced(with: loader)
155 | // async let (newServers, c2, m2) = oldServers.externallyDereferenced(with: loader)
156 | async let (newGet, c3, m3) = oldGet.externallyDereferenced(with: loader)
| |- warning: sending 'oldGet' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldGet' into async let risks causing data races between nonisolated and task-isolated uses
157 | async let (newPut, c4, m4) = oldPut.externallyDereferenced(with: loader)
158 | async let (newPost, c5, m5) = oldPost.externallyDereferenced(with: loader)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:157:38: warning: sending 'oldPut' risks causing data races; this is an error in the Swift 6 language mode
155 | // async let (newServers, c2, m2) = oldServers.externallyDereferenced(with: loader)
156 | async let (newGet, c3, m3) = oldGet.externallyDereferenced(with: loader)
157 | async let (newPut, c4, m4) = oldPut.externallyDereferenced(with: loader)
| |- warning: sending 'oldPut' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldPut' into async let risks causing data races between nonisolated and task-isolated uses
158 | async let (newPost, c5, m5) = oldPost.externallyDereferenced(with: loader)
159 | async let (newDelete, c6, m6) = oldDelete.externallyDereferenced(with: loader)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:158:39: warning: sending 'oldPost' risks causing data races; this is an error in the Swift 6 language mode
156 | async let (newGet, c3, m3) = oldGet.externallyDereferenced(with: loader)
157 | async let (newPut, c4, m4) = oldPut.externallyDereferenced(with: loader)
158 | async let (newPost, c5, m5) = oldPost.externallyDereferenced(with: loader)
| |- warning: sending 'oldPost' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldPost' into async let risks causing data races between nonisolated and task-isolated uses
159 | async let (newDelete, c6, m6) = oldDelete.externallyDereferenced(with: loader)
160 | async let (newOptions, c7, m7) = oldOptions.externallyDereferenced(with: loader)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:159:41: warning: sending 'oldDelete' risks causing data races; this is an error in the Swift 6 language mode
157 | async let (newPut, c4, m4) = oldPut.externallyDereferenced(with: loader)
158 | async let (newPost, c5, m5) = oldPost.externallyDereferenced(with: loader)
159 | async let (newDelete, c6, m6) = oldDelete.externallyDereferenced(with: loader)
| |- warning: sending 'oldDelete' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldDelete' into async let risks causing data races between nonisolated and task-isolated uses
160 | async let (newOptions, c7, m7) = oldOptions.externallyDereferenced(with: loader)
161 | async let (newHead, c8, m8) = oldHead.externallyDereferenced(with: loader)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:160:42: warning: sending 'oldOptions' risks causing data races; this is an error in the Swift 6 language mode
158 | async let (newPost, c5, m5) = oldPost.externallyDereferenced(with: loader)
159 | async let (newDelete, c6, m6) = oldDelete.externallyDereferenced(with: loader)
160 | async let (newOptions, c7, m7) = oldOptions.externallyDereferenced(with: loader)
| |- warning: sending 'oldOptions' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldOptions' into async let risks causing data races between nonisolated and task-isolated uses
161 | async let (newHead, c8, m8) = oldHead.externallyDereferenced(with: loader)
162 | async let (newPatch, c9, m9) = oldPatch.externallyDereferenced(with: loader)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:161:39: warning: sending 'oldHead' risks causing data races; this is an error in the Swift 6 language mode
159 | async let (newDelete, c6, m6) = oldDelete.externallyDereferenced(with: loader)
160 | async let (newOptions, c7, m7) = oldOptions.externallyDereferenced(with: loader)
161 | async let (newHead, c8, m8) = oldHead.externallyDereferenced(with: loader)
| |- warning: sending 'oldHead' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldHead' into async let risks causing data races between nonisolated and task-isolated uses
162 | async let (newPatch, c9, m9) = oldPatch.externallyDereferenced(with: loader)
163 | async let (newTrace, c10, m10) = oldTrace.externallyDereferenced(with: loader)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:162:40: warning: sending 'oldPatch' risks causing data races; this is an error in the Swift 6 language mode
160 | async let (newOptions, c7, m7) = oldOptions.externallyDereferenced(with: loader)
161 | async let (newHead, c8, m8) = oldHead.externallyDereferenced(with: loader)
162 | async let (newPatch, c9, m9) = oldPatch.externallyDereferenced(with: loader)
| |- warning: sending 'oldPatch' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldPatch' into async let risks causing data races between nonisolated and task-isolated uses
163 | async let (newTrace, c10, m10) = oldTrace.externallyDereferenced(with: loader)
164 |
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:163:42: warning: sending 'oldTrace' risks causing data races; this is an error in the Swift 6 language mode
161 | async let (newHead, c8, m8) = oldHead.externallyDereferenced(with: loader)
162 | async let (newPatch, c9, m9) = oldPatch.externallyDereferenced(with: loader)
163 | async let (newTrace, c10, m10) = oldTrace.externallyDereferenced(with: loader)
| |- warning: sending 'oldTrace' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldTrace' into async let risks causing data races between nonisolated and task-isolated uses
164 |
165 | var pathItem = self
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:201:46: warning: sending 'oldServers' risks causing data races; this is an error in the Swift 6 language mode
199 |
200 | if let oldServers {
201 | async let (newServers, c2, m2) = oldServers.externallyDereferenced(with: loader)
| |- warning: sending 'oldServers' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldServers' into async let risks causing data races between nonisolated and task-isolated uses
202 | pathItem.servers = try await newServers
203 | try await newComponents.merge(c2)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Response/DereferencedResponse.swift:86:42: warning: sending 'oldContent' risks causing data races; this is an error in the Swift 6 language mode
84 | let oldHeaders = headers
85 |
86 | async let (newContent, c1, m1) = oldContent.externallyDereferenced(with: loader)
| |- warning: sending 'oldContent' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldContent' into async let risks causing data races between nonisolated and task-isolated uses
87 | async let (newLinks, c2, m2) = oldLinks.externallyDereferenced(with: loader)
88 | // async let (newHeaders, c3, m3) = oldHeaders.externallyDereferenced(with: loader)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Response/DereferencedResponse.swift:87:40: warning: sending 'oldLinks' risks causing data races; this is an error in the Swift 6 language mode
85 |
86 | async let (newContent, c1, m1) = oldContent.externallyDereferenced(with: loader)
87 | async let (newLinks, c2, m2) = oldLinks.externallyDereferenced(with: loader)
| |- warning: sending 'oldLinks' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldLinks' into async let risks causing data races between nonisolated and task-isolated uses
88 | // async let (newHeaders, c3, m3) = oldHeaders.externallyDereferenced(with: loader)
89 |
/host/spi-builder-workspace/Sources/OpenAPIKit30/Parameter/ParameterSchemaContext.swift:224:1: warning: extension declares a conformance of imported type 'ParameterSchemaContextStyle' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
222 | }
223 |
224 | extension OpenAPI.Parameter.SchemaContext.Style: Validatable {}
| |- warning: extension declares a conformance of imported type 'ParameterSchemaContextStyle' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
225 |
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/PathItem.swift:221:1: warning: extension declares a conformance of imported type 'Path' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
219 | // MARK: - Codable
220 |
221 | extension OpenAPI.Path: Encodable {
| |- warning: extension declares a conformance of imported type 'Path' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
222 | public func encode(to encoder: Encoder) throws {
223 | var container = encoder.singleValueContainer()
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/PathItem.swift:229:1: warning: extension declares a conformance of imported type 'Path' to imported protocol 'Decodable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
227 | }
228 |
229 | extension OpenAPI.Path: Decodable {
| |- warning: extension declares a conformance of imported type 'Path' to imported protocol 'Decodable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
230 | public init(from decoder: Decoder) throws {
231 | let container = try decoder.singleValueContainer()
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:154:45: warning: sending 'oldParameters' risks causing data races; this is an error in the Swift 6 language mode
152 | let oldTrace = trace
153 |
154 | async let (newParameters, c1, m1) = oldParameters.externallyDereferenced(with: loader)
| |- warning: sending 'oldParameters' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldParameters' into async let risks causing data races between nonisolated and task-isolated uses
155 | // async let (newServers, c2, m2) = oldServers.externallyDereferenced(with: loader)
156 | async let (newGet, c3, m3) = oldGet.externallyDereferenced(with: loader)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:156:38: warning: sending 'oldGet' risks causing data races; this is an error in the Swift 6 language mode
154 | async let (newParameters, c1, m1) = oldParameters.externallyDereferenced(with: loader)
155 | // async let (newServers, c2, m2) = oldServers.externallyDereferenced(with: loader)
156 | async let (newGet, c3, m3) = oldGet.externallyDereferenced(with: loader)
| |- warning: sending 'oldGet' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldGet' into async let risks causing data races between nonisolated and task-isolated uses
157 | async let (newPut, c4, m4) = oldPut.externallyDereferenced(with: loader)
158 | async let (newPost, c5, m5) = oldPost.externallyDereferenced(with: loader)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:157:38: warning: sending 'oldPut' risks causing data races; this is an error in the Swift 6 language mode
155 | // async let (newServers, c2, m2) = oldServers.externallyDereferenced(with: loader)
156 | async let (newGet, c3, m3) = oldGet.externallyDereferenced(with: loader)
157 | async let (newPut, c4, m4) = oldPut.externallyDereferenced(with: loader)
| |- warning: sending 'oldPut' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldPut' into async let risks causing data races between nonisolated and task-isolated uses
158 | async let (newPost, c5, m5) = oldPost.externallyDereferenced(with: loader)
159 | async let (newDelete, c6, m6) = oldDelete.externallyDereferenced(with: loader)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:158:39: warning: sending 'oldPost' risks causing data races; this is an error in the Swift 6 language mode
156 | async let (newGet, c3, m3) = oldGet.externallyDereferenced(with: loader)
157 | async let (newPut, c4, m4) = oldPut.externallyDereferenced(with: loader)
158 | async let (newPost, c5, m5) = oldPost.externallyDereferenced(with: loader)
| |- warning: sending 'oldPost' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldPost' into async let risks causing data races between nonisolated and task-isolated uses
159 | async let (newDelete, c6, m6) = oldDelete.externallyDereferenced(with: loader)
160 | async let (newOptions, c7, m7) = oldOptions.externallyDereferenced(with: loader)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:159:41: warning: sending 'oldDelete' risks causing data races; this is an error in the Swift 6 language mode
157 | async let (newPut, c4, m4) = oldPut.externallyDereferenced(with: loader)
158 | async let (newPost, c5, m5) = oldPost.externallyDereferenced(with: loader)
159 | async let (newDelete, c6, m6) = oldDelete.externallyDereferenced(with: loader)
| |- warning: sending 'oldDelete' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldDelete' into async let risks causing data races between nonisolated and task-isolated uses
160 | async let (newOptions, c7, m7) = oldOptions.externallyDereferenced(with: loader)
161 | async let (newHead, c8, m8) = oldHead.externallyDereferenced(with: loader)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:160:42: warning: sending 'oldOptions' risks causing data races; this is an error in the Swift 6 language mode
158 | async let (newPost, c5, m5) = oldPost.externallyDereferenced(with: loader)
159 | async let (newDelete, c6, m6) = oldDelete.externallyDereferenced(with: loader)
160 | async let (newOptions, c7, m7) = oldOptions.externallyDereferenced(with: loader)
| |- warning: sending 'oldOptions' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldOptions' into async let risks causing data races between nonisolated and task-isolated uses
161 | async let (newHead, c8, m8) = oldHead.externallyDereferenced(with: loader)
162 | async let (newPatch, c9, m9) = oldPatch.externallyDereferenced(with: loader)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:161:39: warning: sending 'oldHead' risks causing data races; this is an error in the Swift 6 language mode
159 | async let (newDelete, c6, m6) = oldDelete.externallyDereferenced(with: loader)
160 | async let (newOptions, c7, m7) = oldOptions.externallyDereferenced(with: loader)
161 | async let (newHead, c8, m8) = oldHead.externallyDereferenced(with: loader)
| |- warning: sending 'oldHead' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldHead' into async let risks causing data races between nonisolated and task-isolated uses
162 | async let (newPatch, c9, m9) = oldPatch.externallyDereferenced(with: loader)
163 | async let (newTrace, c10, m10) = oldTrace.externallyDereferenced(with: loader)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:162:40: warning: sending 'oldPatch' risks causing data races; this is an error in the Swift 6 language mode
160 | async let (newOptions, c7, m7) = oldOptions.externallyDereferenced(with: loader)
161 | async let (newHead, c8, m8) = oldHead.externallyDereferenced(with: loader)
162 | async let (newPatch, c9, m9) = oldPatch.externallyDereferenced(with: loader)
| |- warning: sending 'oldPatch' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldPatch' into async let risks causing data races between nonisolated and task-isolated uses
163 | async let (newTrace, c10, m10) = oldTrace.externallyDereferenced(with: loader)
164 |
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:163:42: warning: sending 'oldTrace' risks causing data races; this is an error in the Swift 6 language mode
161 | async let (newHead, c8, m8) = oldHead.externallyDereferenced(with: loader)
162 | async let (newPatch, c9, m9) = oldPatch.externallyDereferenced(with: loader)
163 | async let (newTrace, c10, m10) = oldTrace.externallyDereferenced(with: loader)
| |- warning: sending 'oldTrace' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldTrace' into async let risks causing data races between nonisolated and task-isolated uses
164 |
165 | var pathItem = self
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:201:46: warning: sending 'oldServers' risks causing data races; this is an error in the Swift 6 language mode
199 |
200 | if let oldServers {
201 | async let (newServers, c2, m2) = oldServers.externallyDereferenced(with: loader)
| |- warning: sending 'oldServers' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldServers' into async let risks causing data races between nonisolated and task-isolated uses
202 | pathItem.servers = try await newServers
203 | try await newComponents.merge(c2)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Response/DereferencedResponse.swift:86:42: warning: sending 'oldContent' risks causing data races; this is an error in the Swift 6 language mode
84 | let oldHeaders = headers
85 |
86 | async let (newContent, c1, m1) = oldContent.externallyDereferenced(with: loader)
| |- warning: sending 'oldContent' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldContent' into async let risks causing data races between nonisolated and task-isolated uses
87 | async let (newLinks, c2, m2) = oldLinks.externallyDereferenced(with: loader)
88 | // async let (newHeaders, c3, m3) = oldHeaders.externallyDereferenced(with: loader)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Response/DereferencedResponse.swift:87:40: warning: sending 'oldLinks' risks causing data races; this is an error in the Swift 6 language mode
85 |
86 | async let (newContent, c1, m1) = oldContent.externallyDereferenced(with: loader)
87 | async let (newLinks, c2, m2) = oldLinks.externallyDereferenced(with: loader)
| |- warning: sending 'oldLinks' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldLinks' into async let risks causing data races between nonisolated and task-isolated uses
88 | // async let (newHeaders, c3, m3) = oldHeaders.externallyDereferenced(with: loader)
89 |
/host/spi-builder-workspace/Sources/OpenAPIKit30/Parameter/ParameterSchemaContext.swift:224:1: warning: extension declares a conformance of imported type 'ParameterSchemaContextStyle' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
222 | }
223 |
224 | extension OpenAPI.Parameter.SchemaContext.Style: Validatable {}
| |- warning: extension declares a conformance of imported type 'ParameterSchemaContextStyle' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
225 |
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/PathItem.swift:221:1: warning: extension declares a conformance of imported type 'Path' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
219 | // MARK: - Codable
220 |
221 | extension OpenAPI.Path: Encodable {
| |- warning: extension declares a conformance of imported type 'Path' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
222 | public func encode(to encoder: Encoder) throws {
223 | var container = encoder.singleValueContainer()
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/PathItem.swift:229:1: warning: extension declares a conformance of imported type 'Path' to imported protocol 'Decodable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
227 | }
228 |
229 | extension OpenAPI.Path: Decodable {
| |- warning: extension declares a conformance of imported type 'Path' to imported protocol 'Decodable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
230 | public init(from decoder: Decoder) throws {
231 | let container = try decoder.singleValueContainer()
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:154:45: warning: sending 'oldParameters' risks causing data races; this is an error in the Swift 6 language mode
152 | let oldTrace = trace
153 |
154 | async let (newParameters, c1, m1) = oldParameters.externallyDereferenced(with: loader)
| |- warning: sending 'oldParameters' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldParameters' into async let risks causing data races between nonisolated and task-isolated uses
155 | // async let (newServers, c2, m2) = oldServers.externallyDereferenced(with: loader)
156 | async let (newGet, c3, m3) = oldGet.externallyDereferenced(with: loader)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:156:38: warning: sending 'oldGet' risks causing data races; this is an error in the Swift 6 language mode
154 | async let (newParameters, c1, m1) = oldParameters.externallyDereferenced(with: loader)
155 | // async let (newServers, c2, m2) = oldServers.externallyDereferenced(with: loader)
156 | async let (newGet, c3, m3) = oldGet.externallyDereferenced(with: loader)
| |- warning: sending 'oldGet' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldGet' into async let risks causing data races between nonisolated and task-isolated uses
157 | async let (newPut, c4, m4) = oldPut.externallyDereferenced(with: loader)
158 | async let (newPost, c5, m5) = oldPost.externallyDereferenced(with: loader)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:157:38: warning: sending 'oldPut' risks causing data races; this is an error in the Swift 6 language mode
155 | // async let (newServers, c2, m2) = oldServers.externallyDereferenced(with: loader)
156 | async let (newGet, c3, m3) = oldGet.externallyDereferenced(with: loader)
157 | async let (newPut, c4, m4) = oldPut.externallyDereferenced(with: loader)
| |- warning: sending 'oldPut' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldPut' into async let risks causing data races between nonisolated and task-isolated uses
158 | async let (newPost, c5, m5) = oldPost.externallyDereferenced(with: loader)
159 | async let (newDelete, c6, m6) = oldDelete.externallyDereferenced(with: loader)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:158:39: warning: sending 'oldPost' risks causing data races; this is an error in the Swift 6 language mode
156 | async let (newGet, c3, m3) = oldGet.externallyDereferenced(with: loader)
157 | async let (newPut, c4, m4) = oldPut.externallyDereferenced(with: loader)
158 | async let (newPost, c5, m5) = oldPost.externallyDereferenced(with: loader)
| |- warning: sending 'oldPost' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldPost' into async let risks causing data races between nonisolated and task-isolated uses
159 | async let (newDelete, c6, m6) = oldDelete.externallyDereferenced(with: loader)
160 | async let (newOptions, c7, m7) = oldOptions.externallyDereferenced(with: loader)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:159:41: warning: sending 'oldDelete' risks causing data races; this is an error in the Swift 6 language mode
157 | async let (newPut, c4, m4) = oldPut.externallyDereferenced(with: loader)
158 | async let (newPost, c5, m5) = oldPost.externallyDereferenced(with: loader)
159 | async let (newDelete, c6, m6) = oldDelete.externallyDereferenced(with: loader)
| |- warning: sending 'oldDelete' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldDelete' into async let risks causing data races between nonisolated and task-isolated uses
160 | async let (newOptions, c7, m7) = oldOptions.externallyDereferenced(with: loader)
161 | async let (newHead, c8, m8) = oldHead.externallyDereferenced(with: loader)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:160:42: warning: sending 'oldOptions' risks causing data races; this is an error in the Swift 6 language mode
158 | async let (newPost, c5, m5) = oldPost.externallyDereferenced(with: loader)
159 | async let (newDelete, c6, m6) = oldDelete.externallyDereferenced(with: loader)
160 | async let (newOptions, c7, m7) = oldOptions.externallyDereferenced(with: loader)
| |- warning: sending 'oldOptions' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldOptions' into async let risks causing data races between nonisolated and task-isolated uses
161 | async let (newHead, c8, m8) = oldHead.externallyDereferenced(with: loader)
162 | async let (newPatch, c9, m9) = oldPatch.externallyDereferenced(with: loader)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:161:39: warning: sending 'oldHead' risks causing data races; this is an error in the Swift 6 language mode
159 | async let (newDelete, c6, m6) = oldDelete.externallyDereferenced(with: loader)
160 | async let (newOptions, c7, m7) = oldOptions.externallyDereferenced(with: loader)
161 | async let (newHead, c8, m8) = oldHead.externallyDereferenced(with: loader)
| |- warning: sending 'oldHead' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldHead' into async let risks causing data races between nonisolated and task-isolated uses
162 | async let (newPatch, c9, m9) = oldPatch.externallyDereferenced(with: loader)
163 | async let (newTrace, c10, m10) = oldTrace.externallyDereferenced(with: loader)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:162:40: warning: sending 'oldPatch' risks causing data races; this is an error in the Swift 6 language mode
160 | async let (newOptions, c7, m7) = oldOptions.externallyDereferenced(with: loader)
161 | async let (newHead, c8, m8) = oldHead.externallyDereferenced(with: loader)
162 | async let (newPatch, c9, m9) = oldPatch.externallyDereferenced(with: loader)
| |- warning: sending 'oldPatch' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldPatch' into async let risks causing data races between nonisolated and task-isolated uses
163 | async let (newTrace, c10, m10) = oldTrace.externallyDereferenced(with: loader)
164 |
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:163:42: warning: sending 'oldTrace' risks causing data races; this is an error in the Swift 6 language mode
161 | async let (newHead, c8, m8) = oldHead.externallyDereferenced(with: loader)
162 | async let (newPatch, c9, m9) = oldPatch.externallyDereferenced(with: loader)
163 | async let (newTrace, c10, m10) = oldTrace.externallyDereferenced(with: loader)
| |- warning: sending 'oldTrace' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldTrace' into async let risks causing data races between nonisolated and task-isolated uses
164 |
165 | var pathItem = self
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:201:46: warning: sending 'oldServers' risks causing data races; this is an error in the Swift 6 language mode
199 |
200 | if let oldServers {
201 | async let (newServers, c2, m2) = oldServers.externallyDereferenced(with: loader)
| |- warning: sending 'oldServers' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldServers' into async let risks causing data races between nonisolated and task-isolated uses
202 | pathItem.servers = try await newServers
203 | try await newComponents.merge(c2)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Response/DereferencedResponse.swift:86:42: warning: sending 'oldContent' risks causing data races; this is an error in the Swift 6 language mode
84 | let oldHeaders = headers
85 |
86 | async let (newContent, c1, m1) = oldContent.externallyDereferenced(with: loader)
| |- warning: sending 'oldContent' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldContent' into async let risks causing data races between nonisolated and task-isolated uses
87 | async let (newLinks, c2, m2) = oldLinks.externallyDereferenced(with: loader)
88 | // async let (newHeaders, c3, m3) = oldHeaders.externallyDereferenced(with: loader)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Response/DereferencedResponse.swift:87:40: warning: sending 'oldLinks' risks causing data races; this is an error in the Swift 6 language mode
85 |
86 | async let (newContent, c1, m1) = oldContent.externallyDereferenced(with: loader)
87 | async let (newLinks, c2, m2) = oldLinks.externallyDereferenced(with: loader)
| |- warning: sending 'oldLinks' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldLinks' into async let risks causing data races between nonisolated and task-isolated uses
88 | // async let (newHeaders, c3, m3) = oldHeaders.externallyDereferenced(with: loader)
89 |
/host/spi-builder-workspace/Sources/OpenAPIKit30/Parameter/ParameterSchemaContext.swift:224:1: warning: extension declares a conformance of imported type 'ParameterSchemaContextStyle' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
222 | }
223 |
224 | extension OpenAPI.Parameter.SchemaContext.Style: Validatable {}
| |- warning: extension declares a conformance of imported type 'ParameterSchemaContextStyle' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
225 |
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/PathItem.swift:221:1: warning: extension declares a conformance of imported type 'Path' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
219 | // MARK: - Codable
220 |
221 | extension OpenAPI.Path: Encodable {
| |- warning: extension declares a conformance of imported type 'Path' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
222 | public func encode(to encoder: Encoder) throws {
223 | var container = encoder.singleValueContainer()
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/PathItem.swift:229:1: warning: extension declares a conformance of imported type 'Path' to imported protocol 'Decodable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
227 | }
228 |
229 | extension OpenAPI.Path: Decodable {
| |- warning: extension declares a conformance of imported type 'Path' to imported protocol 'Decodable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
230 | public init(from decoder: Decoder) throws {
231 | let container = try decoder.singleValueContainer()
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:154:45: warning: sending 'oldParameters' risks causing data races; this is an error in the Swift 6 language mode
152 | let oldTrace = trace
153 |
154 | async let (newParameters, c1, m1) = oldParameters.externallyDereferenced(with: loader)
| |- warning: sending 'oldParameters' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldParameters' into async let risks causing data races between nonisolated and task-isolated uses
155 | // async let (newServers, c2, m2) = oldServers.externallyDereferenced(with: loader)
156 | async let (newGet, c3, m3) = oldGet.externallyDereferenced(with: loader)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:156:38: warning: sending 'oldGet' risks causing data races; this is an error in the Swift 6 language mode
154 | async let (newParameters, c1, m1) = oldParameters.externallyDereferenced(with: loader)
155 | // async let (newServers, c2, m2) = oldServers.externallyDereferenced(with: loader)
156 | async let (newGet, c3, m3) = oldGet.externallyDereferenced(with: loader)
| |- warning: sending 'oldGet' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldGet' into async let risks causing data races between nonisolated and task-isolated uses
157 | async let (newPut, c4, m4) = oldPut.externallyDereferenced(with: loader)
158 | async let (newPost, c5, m5) = oldPost.externallyDereferenced(with: loader)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:157:38: warning: sending 'oldPut' risks causing data races; this is an error in the Swift 6 language mode
155 | // async let (newServers, c2, m2) = oldServers.externallyDereferenced(with: loader)
156 | async let (newGet, c3, m3) = oldGet.externallyDereferenced(with: loader)
157 | async let (newPut, c4, m4) = oldPut.externallyDereferenced(with: loader)
| |- warning: sending 'oldPut' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldPut' into async let risks causing data races between nonisolated and task-isolated uses
158 | async let (newPost, c5, m5) = oldPost.externallyDereferenced(with: loader)
159 | async let (newDelete, c6, m6) = oldDelete.externallyDereferenced(with: loader)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:158:39: warning: sending 'oldPost' risks causing data races; this is an error in the Swift 6 language mode
156 | async let (newGet, c3, m3) = oldGet.externallyDereferenced(with: loader)
157 | async let (newPut, c4, m4) = oldPut.externallyDereferenced(with: loader)
158 | async let (newPost, c5, m5) = oldPost.externallyDereferenced(with: loader)
| |- warning: sending 'oldPost' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldPost' into async let risks causing data races between nonisolated and task-isolated uses
159 | async let (newDelete, c6, m6) = oldDelete.externallyDereferenced(with: loader)
160 | async let (newOptions, c7, m7) = oldOptions.externallyDereferenced(with: loader)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:159:41: warning: sending 'oldDelete' risks causing data races; this is an error in the Swift 6 language mode
157 | async let (newPut, c4, m4) = oldPut.externallyDereferenced(with: loader)
158 | async let (newPost, c5, m5) = oldPost.externallyDereferenced(with: loader)
159 | async let (newDelete, c6, m6) = oldDelete.externallyDereferenced(with: loader)
| |- warning: sending 'oldDelete' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldDelete' into async let risks causing data races between nonisolated and task-isolated uses
160 | async let (newOptions, c7, m7) = oldOptions.externallyDereferenced(with: loader)
161 | async let (newHead, c8, m8) = oldHead.externallyDereferenced(with: loader)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:160:42: warning: sending 'oldOptions' risks causing data races; this is an error in the Swift 6 language mode
158 | async let (newPost, c5, m5) = oldPost.externallyDereferenced(with: loader)
159 | async let (newDelete, c6, m6) = oldDelete.externallyDereferenced(with: loader)
160 | async let (newOptions, c7, m7) = oldOptions.externallyDereferenced(with: loader)
| |- warning: sending 'oldOptions' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldOptions' into async let risks causing data races between nonisolated and task-isolated uses
161 | async let (newHead, c8, m8) = oldHead.externallyDereferenced(with: loader)
162 | async let (newPatch, c9, m9) = oldPatch.externallyDereferenced(with: loader)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:161:39: warning: sending 'oldHead' risks causing data races; this is an error in the Swift 6 language mode
159 | async let (newDelete, c6, m6) = oldDelete.externallyDereferenced(with: loader)
160 | async let (newOptions, c7, m7) = oldOptions.externallyDereferenced(with: loader)
161 | async let (newHead, c8, m8) = oldHead.externallyDereferenced(with: loader)
| |- warning: sending 'oldHead' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldHead' into async let risks causing data races between nonisolated and task-isolated uses
162 | async let (newPatch, c9, m9) = oldPatch.externallyDereferenced(with: loader)
163 | async let (newTrace, c10, m10) = oldTrace.externallyDereferenced(with: loader)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:162:40: warning: sending 'oldPatch' risks causing data races; this is an error in the Swift 6 language mode
160 | async let (newOptions, c7, m7) = oldOptions.externallyDereferenced(with: loader)
161 | async let (newHead, c8, m8) = oldHead.externallyDereferenced(with: loader)
162 | async let (newPatch, c9, m9) = oldPatch.externallyDereferenced(with: loader)
| |- warning: sending 'oldPatch' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldPatch' into async let risks causing data races between nonisolated and task-isolated uses
163 | async let (newTrace, c10, m10) = oldTrace.externallyDereferenced(with: loader)
164 |
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:163:42: warning: sending 'oldTrace' risks causing data races; this is an error in the Swift 6 language mode
161 | async let (newHead, c8, m8) = oldHead.externallyDereferenced(with: loader)
162 | async let (newPatch, c9, m9) = oldPatch.externallyDereferenced(with: loader)
163 | async let (newTrace, c10, m10) = oldTrace.externallyDereferenced(with: loader)
| |- warning: sending 'oldTrace' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldTrace' into async let risks causing data races between nonisolated and task-isolated uses
164 |
165 | var pathItem = self
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:201:46: warning: sending 'oldServers' risks causing data races; this is an error in the Swift 6 language mode
199 |
200 | if let oldServers {
201 | async let (newServers, c2, m2) = oldServers.externallyDereferenced(with: loader)
| |- warning: sending 'oldServers' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldServers' into async let risks causing data races between nonisolated and task-isolated uses
202 | pathItem.servers = try await newServers
203 | try await newComponents.merge(c2)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Response/DereferencedResponse.swift:86:42: warning: sending 'oldContent' risks causing data races; this is an error in the Swift 6 language mode
84 | let oldHeaders = headers
85 |
86 | async let (newContent, c1, m1) = oldContent.externallyDereferenced(with: loader)
| |- warning: sending 'oldContent' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldContent' into async let risks causing data races between nonisolated and task-isolated uses
87 | async let (newLinks, c2, m2) = oldLinks.externallyDereferenced(with: loader)
88 | // async let (newHeaders, c3, m3) = oldHeaders.externallyDereferenced(with: loader)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Response/DereferencedResponse.swift:87:40: warning: sending 'oldLinks' risks causing data races; this is an error in the Swift 6 language mode
85 |
86 | async let (newContent, c1, m1) = oldContent.externallyDereferenced(with: loader)
87 | async let (newLinks, c2, m2) = oldLinks.externallyDereferenced(with: loader)
| |- warning: sending 'oldLinks' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldLinks' into async let risks causing data races between nonisolated and task-isolated uses
88 | // async let (newHeaders, c3, m3) = oldHeaders.externallyDereferenced(with: loader)
89 |
/host/spi-builder-workspace/Sources/OpenAPIKit30/Parameter/ParameterSchemaContext.swift:224:1: warning: extension declares a conformance of imported type 'ParameterSchemaContextStyle' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
222 | }
223 |
224 | extension OpenAPI.Parameter.SchemaContext.Style: Validatable {}
| |- warning: extension declares a conformance of imported type 'ParameterSchemaContextStyle' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
225 |
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/PathItem.swift:221:1: warning: extension declares a conformance of imported type 'Path' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
219 | // MARK: - Codable
220 |
221 | extension OpenAPI.Path: Encodable {
| |- warning: extension declares a conformance of imported type 'Path' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
222 | public func encode(to encoder: Encoder) throws {
223 | var container = encoder.singleValueContainer()
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/PathItem.swift:229:1: warning: extension declares a conformance of imported type 'Path' to imported protocol 'Decodable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
227 | }
228 |
229 | extension OpenAPI.Path: Decodable {
| |- warning: extension declares a conformance of imported type 'Path' to imported protocol 'Decodable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
230 | public init(from decoder: Decoder) throws {
231 | let container = try decoder.singleValueContainer()
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:154:45: warning: sending 'oldParameters' risks causing data races; this is an error in the Swift 6 language mode
152 | let oldTrace = trace
153 |
154 | async let (newParameters, c1, m1) = oldParameters.externallyDereferenced(with: loader)
| |- warning: sending 'oldParameters' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldParameters' into async let risks causing data races between nonisolated and task-isolated uses
155 | // async let (newServers, c2, m2) = oldServers.externallyDereferenced(with: loader)
156 | async let (newGet, c3, m3) = oldGet.externallyDereferenced(with: loader)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:156:38: warning: sending 'oldGet' risks causing data races; this is an error in the Swift 6 language mode
154 | async let (newParameters, c1, m1) = oldParameters.externallyDereferenced(with: loader)
155 | // async let (newServers, c2, m2) = oldServers.externallyDereferenced(with: loader)
156 | async let (newGet, c3, m3) = oldGet.externallyDereferenced(with: loader)
| |- warning: sending 'oldGet' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldGet' into async let risks causing data races between nonisolated and task-isolated uses
157 | async let (newPut, c4, m4) = oldPut.externallyDereferenced(with: loader)
158 | async let (newPost, c5, m5) = oldPost.externallyDereferenced(with: loader)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:157:38: warning: sending 'oldPut' risks causing data races; this is an error in the Swift 6 language mode
155 | // async let (newServers, c2, m2) = oldServers.externallyDereferenced(with: loader)
156 | async let (newGet, c3, m3) = oldGet.externallyDereferenced(with: loader)
157 | async let (newPut, c4, m4) = oldPut.externallyDereferenced(with: loader)
| |- warning: sending 'oldPut' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldPut' into async let risks causing data races between nonisolated and task-isolated uses
158 | async let (newPost, c5, m5) = oldPost.externallyDereferenced(with: loader)
159 | async let (newDelete, c6, m6) = oldDelete.externallyDereferenced(with: loader)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:158:39: warning: sending 'oldPost' risks causing data races; this is an error in the Swift 6 language mode
156 | async let (newGet, c3, m3) = oldGet.externallyDereferenced(with: loader)
157 | async let (newPut, c4, m4) = oldPut.externallyDereferenced(with: loader)
158 | async let (newPost, c5, m5) = oldPost.externallyDereferenced(with: loader)
| |- warning: sending 'oldPost' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldPost' into async let risks causing data races between nonisolated and task-isolated uses
159 | async let (newDelete, c6, m6) = oldDelete.externallyDereferenced(with: loader)
160 | async let (newOptions, c7, m7) = oldOptions.externallyDereferenced(with: loader)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:159:41: warning: sending 'oldDelete' risks causing data races; this is an error in the Swift 6 language mode
157 | async let (newPut, c4, m4) = oldPut.externallyDereferenced(with: loader)
158 | async let (newPost, c5, m5) = oldPost.externallyDereferenced(with: loader)
159 | async let (newDelete, c6, m6) = oldDelete.externallyDereferenced(with: loader)
| |- warning: sending 'oldDelete' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldDelete' into async let risks causing data races between nonisolated and task-isolated uses
160 | async let (newOptions, c7, m7) = oldOptions.externallyDereferenced(with: loader)
161 | async let (newHead, c8, m8) = oldHead.externallyDereferenced(with: loader)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:160:42: warning: sending 'oldOptions' risks causing data races; this is an error in the Swift 6 language mode
158 | async let (newPost, c5, m5) = oldPost.externallyDereferenced(with: loader)
159 | async let (newDelete, c6, m6) = oldDelete.externallyDereferenced(with: loader)
160 | async let (newOptions, c7, m7) = oldOptions.externallyDereferenced(with: loader)
| |- warning: sending 'oldOptions' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldOptions' into async let risks causing data races between nonisolated and task-isolated uses
161 | async let (newHead, c8, m8) = oldHead.externallyDereferenced(with: loader)
162 | async let (newPatch, c9, m9) = oldPatch.externallyDereferenced(with: loader)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:161:39: warning: sending 'oldHead' risks causing data races; this is an error in the Swift 6 language mode
159 | async let (newDelete, c6, m6) = oldDelete.externallyDereferenced(with: loader)
160 | async let (newOptions, c7, m7) = oldOptions.externallyDereferenced(with: loader)
161 | async let (newHead, c8, m8) = oldHead.externallyDereferenced(with: loader)
| |- warning: sending 'oldHead' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldHead' into async let risks causing data races between nonisolated and task-isolated uses
162 | async let (newPatch, c9, m9) = oldPatch.externallyDereferenced(with: loader)
163 | async let (newTrace, c10, m10) = oldTrace.externallyDereferenced(with: loader)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:162:40: warning: sending 'oldPatch' risks causing data races; this is an error in the Swift 6 language mode
160 | async let (newOptions, c7, m7) = oldOptions.externallyDereferenced(with: loader)
161 | async let (newHead, c8, m8) = oldHead.externallyDereferenced(with: loader)
162 | async let (newPatch, c9, m9) = oldPatch.externallyDereferenced(with: loader)
| |- warning: sending 'oldPatch' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldPatch' into async let risks causing data races between nonisolated and task-isolated uses
163 | async let (newTrace, c10, m10) = oldTrace.externallyDereferenced(with: loader)
164 |
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:163:42: warning: sending 'oldTrace' risks causing data races; this is an error in the Swift 6 language mode
161 | async let (newHead, c8, m8) = oldHead.externallyDereferenced(with: loader)
162 | async let (newPatch, c9, m9) = oldPatch.externallyDereferenced(with: loader)
163 | async let (newTrace, c10, m10) = oldTrace.externallyDereferenced(with: loader)
| |- warning: sending 'oldTrace' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldTrace' into async let risks causing data races between nonisolated and task-isolated uses
164 |
165 | var pathItem = self
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:201:46: warning: sending 'oldServers' risks causing data races; this is an error in the Swift 6 language mode
199 |
200 | if let oldServers {
201 | async let (newServers, c2, m2) = oldServers.externallyDereferenced(with: loader)
| |- warning: sending 'oldServers' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldServers' into async let risks causing data races between nonisolated and task-isolated uses
202 | pathItem.servers = try await newServers
203 | try await newComponents.merge(c2)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Response/DereferencedResponse.swift:86:42: warning: sending 'oldContent' risks causing data races; this is an error in the Swift 6 language mode
84 | let oldHeaders = headers
85 |
86 | async let (newContent, c1, m1) = oldContent.externallyDereferenced(with: loader)
| |- warning: sending 'oldContent' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldContent' into async let risks causing data races between nonisolated and task-isolated uses
87 | async let (newLinks, c2, m2) = oldLinks.externallyDereferenced(with: loader)
88 | // async let (newHeaders, c3, m3) = oldHeaders.externallyDereferenced(with: loader)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Response/DereferencedResponse.swift:87:40: warning: sending 'oldLinks' risks causing data races; this is an error in the Swift 6 language mode
85 |
86 | async let (newContent, c1, m1) = oldContent.externallyDereferenced(with: loader)
87 | async let (newLinks, c2, m2) = oldLinks.externallyDereferenced(with: loader)
| |- warning: sending 'oldLinks' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldLinks' into async let risks causing data races between nonisolated and task-isolated uses
88 | // async let (newHeaders, c3, m3) = oldHeaders.externallyDereferenced(with: loader)
89 |
/host/spi-builder-workspace/Sources/OpenAPIKit30/Parameter/ParameterSchemaContext.swift:224:1: warning: extension declares a conformance of imported type 'ParameterSchemaContextStyle' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
222 | }
223 |
224 | extension OpenAPI.Parameter.SchemaContext.Style: Validatable {}
| |- warning: extension declares a conformance of imported type 'ParameterSchemaContextStyle' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
225 |
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/PathItem.swift:221:1: warning: extension declares a conformance of imported type 'Path' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
219 | // MARK: - Codable
220 |
221 | extension OpenAPI.Path: Encodable {
| |- warning: extension declares a conformance of imported type 'Path' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
222 | public func encode(to encoder: Encoder) throws {
223 | var container = encoder.singleValueContainer()
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/PathItem.swift:229:1: warning: extension declares a conformance of imported type 'Path' to imported protocol 'Decodable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
227 | }
228 |
229 | extension OpenAPI.Path: Decodable {
| |- warning: extension declares a conformance of imported type 'Path' to imported protocol 'Decodable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
230 | public init(from decoder: Decoder) throws {
231 | let container = try decoder.singleValueContainer()
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:154:45: warning: sending 'oldParameters' risks causing data races; this is an error in the Swift 6 language mode
152 | let oldTrace = trace
153 |
154 | async let (newParameters, c1, m1) = oldParameters.externallyDereferenced(with: loader)
| |- warning: sending 'oldParameters' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldParameters' into async let risks causing data races between nonisolated and task-isolated uses
155 | // async let (newServers, c2, m2) = oldServers.externallyDereferenced(with: loader)
156 | async let (newGet, c3, m3) = oldGet.externallyDereferenced(with: loader)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:156:38: warning: sending 'oldGet' risks causing data races; this is an error in the Swift 6 language mode
154 | async let (newParameters, c1, m1) = oldParameters.externallyDereferenced(with: loader)
155 | // async let (newServers, c2, m2) = oldServers.externallyDereferenced(with: loader)
156 | async let (newGet, c3, m3) = oldGet.externallyDereferenced(with: loader)
| |- warning: sending 'oldGet' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldGet' into async let risks causing data races between nonisolated and task-isolated uses
157 | async let (newPut, c4, m4) = oldPut.externallyDereferenced(with: loader)
158 | async let (newPost, c5, m5) = oldPost.externallyDereferenced(with: loader)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:157:38: warning: sending 'oldPut' risks causing data races; this is an error in the Swift 6 language mode
155 | // async let (newServers, c2, m2) = oldServers.externallyDereferenced(with: loader)
156 | async let (newGet, c3, m3) = oldGet.externallyDereferenced(with: loader)
157 | async let (newPut, c4, m4) = oldPut.externallyDereferenced(with: loader)
| |- warning: sending 'oldPut' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldPut' into async let risks causing data races between nonisolated and task-isolated uses
158 | async let (newPost, c5, m5) = oldPost.externallyDereferenced(with: loader)
159 | async let (newDelete, c6, m6) = oldDelete.externallyDereferenced(with: loader)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:158:39: warning: sending 'oldPost' risks causing data races; this is an error in the Swift 6 language mode
156 | async let (newGet, c3, m3) = oldGet.externallyDereferenced(with: loader)
157 | async let (newPut, c4, m4) = oldPut.externallyDereferenced(with: loader)
158 | async let (newPost, c5, m5) = oldPost.externallyDereferenced(with: loader)
| |- warning: sending 'oldPost' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldPost' into async let risks causing data races between nonisolated and task-isolated uses
159 | async let (newDelete, c6, m6) = oldDelete.externallyDereferenced(with: loader)
160 | async let (newOptions, c7, m7) = oldOptions.externallyDereferenced(with: loader)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:159:41: warning: sending 'oldDelete' risks causing data races; this is an error in the Swift 6 language mode
157 | async let (newPut, c4, m4) = oldPut.externallyDereferenced(with: loader)
158 | async let (newPost, c5, m5) = oldPost.externallyDereferenced(with: loader)
159 | async let (newDelete, c6, m6) = oldDelete.externallyDereferenced(with: loader)
| |- warning: sending 'oldDelete' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldDelete' into async let risks causing data races between nonisolated and task-isolated uses
160 | async let (newOptions, c7, m7) = oldOptions.externallyDereferenced(with: loader)
161 | async let (newHead, c8, m8) = oldHead.externallyDereferenced(with: loader)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:160:42: warning: sending 'oldOptions' risks causing data races; this is an error in the Swift 6 language mode
158 | async let (newPost, c5, m5) = oldPost.externallyDereferenced(with: loader)
159 | async let (newDelete, c6, m6) = oldDelete.externallyDereferenced(with: loader)
160 | async let (newOptions, c7, m7) = oldOptions.externallyDereferenced(with: loader)
| |- warning: sending 'oldOptions' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldOptions' into async let risks causing data races between nonisolated and task-isolated uses
161 | async let (newHead, c8, m8) = oldHead.externallyDereferenced(with: loader)
162 | async let (newPatch, c9, m9) = oldPatch.externallyDereferenced(with: loader)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:161:39: warning: sending 'oldHead' risks causing data races; this is an error in the Swift 6 language mode
159 | async let (newDelete, c6, m6) = oldDelete.externallyDereferenced(with: loader)
160 | async let (newOptions, c7, m7) = oldOptions.externallyDereferenced(with: loader)
161 | async let (newHead, c8, m8) = oldHead.externallyDereferenced(with: loader)
| |- warning: sending 'oldHead' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldHead' into async let risks causing data races between nonisolated and task-isolated uses
162 | async let (newPatch, c9, m9) = oldPatch.externallyDereferenced(with: loader)
163 | async let (newTrace, c10, m10) = oldTrace.externallyDereferenced(with: loader)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:162:40: warning: sending 'oldPatch' risks causing data races; this is an error in the Swift 6 language mode
160 | async let (newOptions, c7, m7) = oldOptions.externallyDereferenced(with: loader)
161 | async let (newHead, c8, m8) = oldHead.externallyDereferenced(with: loader)
162 | async let (newPatch, c9, m9) = oldPatch.externallyDereferenced(with: loader)
| |- warning: sending 'oldPatch' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldPatch' into async let risks causing data races between nonisolated and task-isolated uses
163 | async let (newTrace, c10, m10) = oldTrace.externallyDereferenced(with: loader)
164 |
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:163:42: warning: sending 'oldTrace' risks causing data races; this is an error in the Swift 6 language mode
161 | async let (newHead, c8, m8) = oldHead.externallyDereferenced(with: loader)
162 | async let (newPatch, c9, m9) = oldPatch.externallyDereferenced(with: loader)
163 | async let (newTrace, c10, m10) = oldTrace.externallyDereferenced(with: loader)
| |- warning: sending 'oldTrace' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldTrace' into async let risks causing data races between nonisolated and task-isolated uses
164 |
165 | var pathItem = self
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:201:46: warning: sending 'oldServers' risks causing data races; this is an error in the Swift 6 language mode
199 |
200 | if let oldServers {
201 | async let (newServers, c2, m2) = oldServers.externallyDereferenced(with: loader)
| |- warning: sending 'oldServers' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldServers' into async let risks causing data races between nonisolated and task-isolated uses
202 | pathItem.servers = try await newServers
203 | try await newComponents.merge(c2)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Response/DereferencedResponse.swift:86:42: warning: sending 'oldContent' risks causing data races; this is an error in the Swift 6 language mode
84 | let oldHeaders = headers
85 |
86 | async let (newContent, c1, m1) = oldContent.externallyDereferenced(with: loader)
| |- warning: sending 'oldContent' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldContent' into async let risks causing data races between nonisolated and task-isolated uses
87 | async let (newLinks, c2, m2) = oldLinks.externallyDereferenced(with: loader)
88 | // async let (newHeaders, c3, m3) = oldHeaders.externallyDereferenced(with: loader)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Response/DereferencedResponse.swift:87:40: warning: sending 'oldLinks' risks causing data races; this is an error in the Swift 6 language mode
85 |
86 | async let (newContent, c1, m1) = oldContent.externallyDereferenced(with: loader)
87 | async let (newLinks, c2, m2) = oldLinks.externallyDereferenced(with: loader)
| |- warning: sending 'oldLinks' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldLinks' into async let risks causing data races between nonisolated and task-isolated uses
88 | // async let (newHeaders, c3, m3) = oldHeaders.externallyDereferenced(with: loader)
89 |
/host/spi-builder-workspace/Sources/OpenAPIKit30/Parameter/ParameterSchemaContext.swift:224:1: warning: extension declares a conformance of imported type 'ParameterSchemaContextStyle' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
222 | }
223 |
224 | extension OpenAPI.Parameter.SchemaContext.Style: Validatable {}
| |- warning: extension declares a conformance of imported type 'ParameterSchemaContextStyle' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
225 |
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/PathItem.swift:221:1: warning: extension declares a conformance of imported type 'Path' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
219 | // MARK: - Codable
220 |
221 | extension OpenAPI.Path: Encodable {
| |- warning: extension declares a conformance of imported type 'Path' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
222 | public func encode(to encoder: Encoder) throws {
223 | var container = encoder.singleValueContainer()
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/PathItem.swift:229:1: warning: extension declares a conformance of imported type 'Path' to imported protocol 'Decodable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
227 | }
228 |
229 | extension OpenAPI.Path: Decodable {
| |- warning: extension declares a conformance of imported type 'Path' to imported protocol 'Decodable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
230 | public init(from decoder: Decoder) throws {
231 | let container = try decoder.singleValueContainer()
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:154:45: warning: sending 'oldParameters' risks causing data races; this is an error in the Swift 6 language mode
152 | let oldTrace = trace
153 |
154 | async let (newParameters, c1, m1) = oldParameters.externallyDereferenced(with: loader)
| |- warning: sending 'oldParameters' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldParameters' into async let risks causing data races between nonisolated and task-isolated uses
155 | // async let (newServers, c2, m2) = oldServers.externallyDereferenced(with: loader)
156 | async let (newGet, c3, m3) = oldGet.externallyDereferenced(with: loader)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:156:38: warning: sending 'oldGet' risks causing data races; this is an error in the Swift 6 language mode
154 | async let (newParameters, c1, m1) = oldParameters.externallyDereferenced(with: loader)
155 | // async let (newServers, c2, m2) = oldServers.externallyDereferenced(with: loader)
156 | async let (newGet, c3, m3) = oldGet.externallyDereferenced(with: loader)
| |- warning: sending 'oldGet' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldGet' into async let risks causing data races between nonisolated and task-isolated uses
157 | async let (newPut, c4, m4) = oldPut.externallyDereferenced(with: loader)
158 | async let (newPost, c5, m5) = oldPost.externallyDereferenced(with: loader)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:157:38: warning: sending 'oldPut' risks causing data races; this is an error in the Swift 6 language mode
155 | // async let (newServers, c2, m2) = oldServers.externallyDereferenced(with: loader)
156 | async let (newGet, c3, m3) = oldGet.externallyDereferenced(with: loader)
157 | async let (newPut, c4, m4) = oldPut.externallyDereferenced(with: loader)
| |- warning: sending 'oldPut' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldPut' into async let risks causing data races between nonisolated and task-isolated uses
158 | async let (newPost, c5, m5) = oldPost.externallyDereferenced(with: loader)
159 | async let (newDelete, c6, m6) = oldDelete.externallyDereferenced(with: loader)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:158:39: warning: sending 'oldPost' risks causing data races; this is an error in the Swift 6 language mode
156 | async let (newGet, c3, m3) = oldGet.externallyDereferenced(with: loader)
157 | async let (newPut, c4, m4) = oldPut.externallyDereferenced(with: loader)
158 | async let (newPost, c5, m5) = oldPost.externallyDereferenced(with: loader)
| |- warning: sending 'oldPost' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldPost' into async let risks causing data races between nonisolated and task-isolated uses
159 | async let (newDelete, c6, m6) = oldDelete.externallyDereferenced(with: loader)
160 | async let (newOptions, c7, m7) = oldOptions.externallyDereferenced(with: loader)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:159:41: warning: sending 'oldDelete' risks causing data races; this is an error in the Swift 6 language mode
157 | async let (newPut, c4, m4) = oldPut.externallyDereferenced(with: loader)
158 | async let (newPost, c5, m5) = oldPost.externallyDereferenced(with: loader)
159 | async let (newDelete, c6, m6) = oldDelete.externallyDereferenced(with: loader)
| |- warning: sending 'oldDelete' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldDelete' into async let risks causing data races between nonisolated and task-isolated uses
160 | async let (newOptions, c7, m7) = oldOptions.externallyDereferenced(with: loader)
161 | async let (newHead, c8, m8) = oldHead.externallyDereferenced(with: loader)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:160:42: warning: sending 'oldOptions' risks causing data races; this is an error in the Swift 6 language mode
158 | async let (newPost, c5, m5) = oldPost.externallyDereferenced(with: loader)
159 | async let (newDelete, c6, m6) = oldDelete.externallyDereferenced(with: loader)
160 | async let (newOptions, c7, m7) = oldOptions.externallyDereferenced(with: loader)
| |- warning: sending 'oldOptions' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldOptions' into async let risks causing data races between nonisolated and task-isolated uses
161 | async let (newHead, c8, m8) = oldHead.externallyDereferenced(with: loader)
162 | async let (newPatch, c9, m9) = oldPatch.externallyDereferenced(with: loader)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:161:39: warning: sending 'oldHead' risks causing data races; this is an error in the Swift 6 language mode
159 | async let (newDelete, c6, m6) = oldDelete.externallyDereferenced(with: loader)
160 | async let (newOptions, c7, m7) = oldOptions.externallyDereferenced(with: loader)
161 | async let (newHead, c8, m8) = oldHead.externallyDereferenced(with: loader)
| |- warning: sending 'oldHead' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldHead' into async let risks causing data races between nonisolated and task-isolated uses
162 | async let (newPatch, c9, m9) = oldPatch.externallyDereferenced(with: loader)
163 | async let (newTrace, c10, m10) = oldTrace.externallyDereferenced(with: loader)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:162:40: warning: sending 'oldPatch' risks causing data races; this is an error in the Swift 6 language mode
160 | async let (newOptions, c7, m7) = oldOptions.externallyDereferenced(with: loader)
161 | async let (newHead, c8, m8) = oldHead.externallyDereferenced(with: loader)
162 | async let (newPatch, c9, m9) = oldPatch.externallyDereferenced(with: loader)
| |- warning: sending 'oldPatch' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldPatch' into async let risks causing data races between nonisolated and task-isolated uses
163 | async let (newTrace, c10, m10) = oldTrace.externallyDereferenced(with: loader)
164 |
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:163:42: warning: sending 'oldTrace' risks causing data races; this is an error in the Swift 6 language mode
161 | async let (newHead, c8, m8) = oldHead.externallyDereferenced(with: loader)
162 | async let (newPatch, c9, m9) = oldPatch.externallyDereferenced(with: loader)
163 | async let (newTrace, c10, m10) = oldTrace.externallyDereferenced(with: loader)
| |- warning: sending 'oldTrace' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldTrace' into async let risks causing data races between nonisolated and task-isolated uses
164 |
165 | var pathItem = self
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:201:46: warning: sending 'oldServers' risks causing data races; this is an error in the Swift 6 language mode
199 |
200 | if let oldServers {
201 | async let (newServers, c2, m2) = oldServers.externallyDereferenced(with: loader)
| |- warning: sending 'oldServers' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldServers' into async let risks causing data races between nonisolated and task-isolated uses
202 | pathItem.servers = try await newServers
203 | try await newComponents.merge(c2)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Response/DereferencedResponse.swift:86:42: warning: sending 'oldContent' risks causing data races; this is an error in the Swift 6 language mode
84 | let oldHeaders = headers
85 |
86 | async let (newContent, c1, m1) = oldContent.externallyDereferenced(with: loader)
| |- warning: sending 'oldContent' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldContent' into async let risks causing data races between nonisolated and task-isolated uses
87 | async let (newLinks, c2, m2) = oldLinks.externallyDereferenced(with: loader)
88 | // async let (newHeaders, c3, m3) = oldHeaders.externallyDereferenced(with: loader)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Response/DereferencedResponse.swift:87:40: warning: sending 'oldLinks' risks causing data races; this is an error in the Swift 6 language mode
85 |
86 | async let (newContent, c1, m1) = oldContent.externallyDereferenced(with: loader)
87 | async let (newLinks, c2, m2) = oldLinks.externallyDereferenced(with: loader)
| |- warning: sending 'oldLinks' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldLinks' into async let risks causing data races between nonisolated and task-isolated uses
88 | // async let (newHeaders, c3, m3) = oldHeaders.externallyDereferenced(with: loader)
89 |
/host/spi-builder-workspace/Sources/OpenAPIKit30/Parameter/ParameterSchemaContext.swift:224:1: warning: extension declares a conformance of imported type 'ParameterSchemaContextStyle' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
222 | }
223 |
224 | extension OpenAPI.Parameter.SchemaContext.Style: Validatable {}
| |- warning: extension declares a conformance of imported type 'ParameterSchemaContextStyle' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
225 |
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/PathItem.swift:221:1: warning: extension declares a conformance of imported type 'Path' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
219 | // MARK: - Codable
220 |
221 | extension OpenAPI.Path: Encodable {
| |- warning: extension declares a conformance of imported type 'Path' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
222 | public func encode(to encoder: Encoder) throws {
223 | var container = encoder.singleValueContainer()
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/PathItem.swift:229:1: warning: extension declares a conformance of imported type 'Path' to imported protocol 'Decodable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
227 | }
228 |
229 | extension OpenAPI.Path: Decodable {
| |- warning: extension declares a conformance of imported type 'Path' to imported protocol 'Decodable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
230 | public init(from decoder: Decoder) throws {
231 | let container = try decoder.singleValueContainer()
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:154:45: warning: sending 'oldParameters' risks causing data races; this is an error in the Swift 6 language mode
152 | let oldTrace = trace
153 |
154 | async let (newParameters, c1, m1) = oldParameters.externallyDereferenced(with: loader)
| |- warning: sending 'oldParameters' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldParameters' into async let risks causing data races between nonisolated and task-isolated uses
155 | // async let (newServers, c2, m2) = oldServers.externallyDereferenced(with: loader)
156 | async let (newGet, c3, m3) = oldGet.externallyDereferenced(with: loader)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:156:38: warning: sending 'oldGet' risks causing data races; this is an error in the Swift 6 language mode
154 | async let (newParameters, c1, m1) = oldParameters.externallyDereferenced(with: loader)
155 | // async let (newServers, c2, m2) = oldServers.externallyDereferenced(with: loader)
156 | async let (newGet, c3, m3) = oldGet.externallyDereferenced(with: loader)
| |- warning: sending 'oldGet' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldGet' into async let risks causing data races between nonisolated and task-isolated uses
157 | async let (newPut, c4, m4) = oldPut.externallyDereferenced(with: loader)
158 | async let (newPost, c5, m5) = oldPost.externallyDereferenced(with: loader)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:157:38: warning: sending 'oldPut' risks causing data races; this is an error in the Swift 6 language mode
155 | // async let (newServers, c2, m2) = oldServers.externallyDereferenced(with: loader)
156 | async let (newGet, c3, m3) = oldGet.externallyDereferenced(with: loader)
157 | async let (newPut, c4, m4) = oldPut.externallyDereferenced(with: loader)
| |- warning: sending 'oldPut' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldPut' into async let risks causing data races between nonisolated and task-isolated uses
158 | async let (newPost, c5, m5) = oldPost.externallyDereferenced(with: loader)
159 | async let (newDelete, c6, m6) = oldDelete.externallyDereferenced(with: loader)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:158:39: warning: sending 'oldPost' risks causing data races; this is an error in the Swift 6 language mode
156 | async let (newGet, c3, m3) = oldGet.externallyDereferenced(with: loader)
157 | async let (newPut, c4, m4) = oldPut.externallyDereferenced(with: loader)
158 | async let (newPost, c5, m5) = oldPost.externallyDereferenced(with: loader)
| |- warning: sending 'oldPost' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldPost' into async let risks causing data races between nonisolated and task-isolated uses
159 | async let (newDelete, c6, m6) = oldDelete.externallyDereferenced(with: loader)
160 | async let (newOptions, c7, m7) = oldOptions.externallyDereferenced(with: loader)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:159:41: warning: sending 'oldDelete' risks causing data races; this is an error in the Swift 6 language mode
157 | async let (newPut, c4, m4) = oldPut.externallyDereferenced(with: loader)
158 | async let (newPost, c5, m5) = oldPost.externallyDereferenced(with: loader)
159 | async let (newDelete, c6, m6) = oldDelete.externallyDereferenced(with: loader)
| |- warning: sending 'oldDelete' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldDelete' into async let risks causing data races between nonisolated and task-isolated uses
160 | async let (newOptions, c7, m7) = oldOptions.externallyDereferenced(with: loader)
161 | async let (newHead, c8, m8) = oldHead.externallyDereferenced(with: loader)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:160:42: warning: sending 'oldOptions' risks causing data races; this is an error in the Swift 6 language mode
158 | async let (newPost, c5, m5) = oldPost.externallyDereferenced(with: loader)
159 | async let (newDelete, c6, m6) = oldDelete.externallyDereferenced(with: loader)
160 | async let (newOptions, c7, m7) = oldOptions.externallyDereferenced(with: loader)
| |- warning: sending 'oldOptions' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldOptions' into async let risks causing data races between nonisolated and task-isolated uses
161 | async let (newHead, c8, m8) = oldHead.externallyDereferenced(with: loader)
162 | async let (newPatch, c9, m9) = oldPatch.externallyDereferenced(with: loader)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:161:39: warning: sending 'oldHead' risks causing data races; this is an error in the Swift 6 language mode
159 | async let (newDelete, c6, m6) = oldDelete.externallyDereferenced(with: loader)
160 | async let (newOptions, c7, m7) = oldOptions.externallyDereferenced(with: loader)
161 | async let (newHead, c8, m8) = oldHead.externallyDereferenced(with: loader)
| |- warning: sending 'oldHead' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldHead' into async let risks causing data races between nonisolated and task-isolated uses
162 | async let (newPatch, c9, m9) = oldPatch.externallyDereferenced(with: loader)
163 | async let (newTrace, c10, m10) = oldTrace.externallyDereferenced(with: loader)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:162:40: warning: sending 'oldPatch' risks causing data races; this is an error in the Swift 6 language mode
160 | async let (newOptions, c7, m7) = oldOptions.externallyDereferenced(with: loader)
161 | async let (newHead, c8, m8) = oldHead.externallyDereferenced(with: loader)
162 | async let (newPatch, c9, m9) = oldPatch.externallyDereferenced(with: loader)
| |- warning: sending 'oldPatch' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldPatch' into async let risks causing data races between nonisolated and task-isolated uses
163 | async let (newTrace, c10, m10) = oldTrace.externallyDereferenced(with: loader)
164 |
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:163:42: warning: sending 'oldTrace' risks causing data races; this is an error in the Swift 6 language mode
161 | async let (newHead, c8, m8) = oldHead.externallyDereferenced(with: loader)
162 | async let (newPatch, c9, m9) = oldPatch.externallyDereferenced(with: loader)
163 | async let (newTrace, c10, m10) = oldTrace.externallyDereferenced(with: loader)
| |- warning: sending 'oldTrace' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldTrace' into async let risks causing data races between nonisolated and task-isolated uses
164 |
165 | var pathItem = self
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:201:46: warning: sending 'oldServers' risks causing data races; this is an error in the Swift 6 language mode
199 |
200 | if let oldServers {
201 | async let (newServers, c2, m2) = oldServers.externallyDereferenced(with: loader)
| |- warning: sending 'oldServers' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldServers' into async let risks causing data races between nonisolated and task-isolated uses
202 | pathItem.servers = try await newServers
203 | try await newComponents.merge(c2)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Response/DereferencedResponse.swift:86:42: warning: sending 'oldContent' risks causing data races; this is an error in the Swift 6 language mode
84 | let oldHeaders = headers
85 |
86 | async let (newContent, c1, m1) = oldContent.externallyDereferenced(with: loader)
| |- warning: sending 'oldContent' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldContent' into async let risks causing data races between nonisolated and task-isolated uses
87 | async let (newLinks, c2, m2) = oldLinks.externallyDereferenced(with: loader)
88 | // async let (newHeaders, c3, m3) = oldHeaders.externallyDereferenced(with: loader)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Response/DereferencedResponse.swift:87:40: warning: sending 'oldLinks' risks causing data races; this is an error in the Swift 6 language mode
85 |
86 | async let (newContent, c1, m1) = oldContent.externallyDereferenced(with: loader)
87 | async let (newLinks, c2, m2) = oldLinks.externallyDereferenced(with: loader)
| |- warning: sending 'oldLinks' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldLinks' into async let risks causing data races between nonisolated and task-isolated uses
88 | // async let (newHeaders, c3, m3) = oldHeaders.externallyDereferenced(with: loader)
89 |
/host/spi-builder-workspace/Sources/OpenAPIKit30/Parameter/ParameterSchemaContext.swift:224:1: warning: extension declares a conformance of imported type 'ParameterSchemaContextStyle' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
222 | }
223 |
224 | extension OpenAPI.Parameter.SchemaContext.Style: Validatable {}
| |- warning: extension declares a conformance of imported type 'ParameterSchemaContextStyle' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
225 |
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/PathItem.swift:221:1: warning: extension declares a conformance of imported type 'Path' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
219 | // MARK: - Codable
220 |
221 | extension OpenAPI.Path: Encodable {
| |- warning: extension declares a conformance of imported type 'Path' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
222 | public func encode(to encoder: Encoder) throws {
223 | var container = encoder.singleValueContainer()
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/PathItem.swift:229:1: warning: extension declares a conformance of imported type 'Path' to imported protocol 'Decodable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
227 | }
228 |
229 | extension OpenAPI.Path: Decodable {
| |- warning: extension declares a conformance of imported type 'Path' to imported protocol 'Decodable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
230 | public init(from decoder: Decoder) throws {
231 | let container = try decoder.singleValueContainer()
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:154:45: warning: sending 'oldParameters' risks causing data races; this is an error in the Swift 6 language mode
152 | let oldTrace = trace
153 |
154 | async let (newParameters, c1, m1) = oldParameters.externallyDereferenced(with: loader)
| |- warning: sending 'oldParameters' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldParameters' into async let risks causing data races between nonisolated and task-isolated uses
155 | // async let (newServers, c2, m2) = oldServers.externallyDereferenced(with: loader)
156 | async let (newGet, c3, m3) = oldGet.externallyDereferenced(with: loader)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:156:38: warning: sending 'oldGet' risks causing data races; this is an error in the Swift 6 language mode
154 | async let (newParameters, c1, m1) = oldParameters.externallyDereferenced(with: loader)
155 | // async let (newServers, c2, m2) = oldServers.externallyDereferenced(with: loader)
156 | async let (newGet, c3, m3) = oldGet.externallyDereferenced(with: loader)
| |- warning: sending 'oldGet' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldGet' into async let risks causing data races between nonisolated and task-isolated uses
157 | async let (newPut, c4, m4) = oldPut.externallyDereferenced(with: loader)
158 | async let (newPost, c5, m5) = oldPost.externallyDereferenced(with: loader)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:157:38: warning: sending 'oldPut' risks causing data races; this is an error in the Swift 6 language mode
155 | // async let (newServers, c2, m2) = oldServers.externallyDereferenced(with: loader)
156 | async let (newGet, c3, m3) = oldGet.externallyDereferenced(with: loader)
157 | async let (newPut, c4, m4) = oldPut.externallyDereferenced(with: loader)
| |- warning: sending 'oldPut' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldPut' into async let risks causing data races between nonisolated and task-isolated uses
158 | async let (newPost, c5, m5) = oldPost.externallyDereferenced(with: loader)
159 | async let (newDelete, c6, m6) = oldDelete.externallyDereferenced(with: loader)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:158:39: warning: sending 'oldPost' risks causing data races; this is an error in the Swift 6 language mode
156 | async let (newGet, c3, m3) = oldGet.externallyDereferenced(with: loader)
157 | async let (newPut, c4, m4) = oldPut.externallyDereferenced(with: loader)
158 | async let (newPost, c5, m5) = oldPost.externallyDereferenced(with: loader)
| |- warning: sending 'oldPost' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldPost' into async let risks causing data races between nonisolated and task-isolated uses
159 | async let (newDelete, c6, m6) = oldDelete.externallyDereferenced(with: loader)
160 | async let (newOptions, c7, m7) = oldOptions.externallyDereferenced(with: loader)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:159:41: warning: sending 'oldDelete' risks causing data races; this is an error in the Swift 6 language mode
157 | async let (newPut, c4, m4) = oldPut.externallyDereferenced(with: loader)
158 | async let (newPost, c5, m5) = oldPost.externallyDereferenced(with: loader)
159 | async let (newDelete, c6, m6) = oldDelete.externallyDereferenced(with: loader)
| |- warning: sending 'oldDelete' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldDelete' into async let risks causing data races between nonisolated and task-isolated uses
160 | async let (newOptions, c7, m7) = oldOptions.externallyDereferenced(with: loader)
161 | async let (newHead, c8, m8) = oldHead.externallyDereferenced(with: loader)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:160:42: warning: sending 'oldOptions' risks causing data races; this is an error in the Swift 6 language mode
158 | async let (newPost, c5, m5) = oldPost.externallyDereferenced(with: loader)
159 | async let (newDelete, c6, m6) = oldDelete.externallyDereferenced(with: loader)
160 | async let (newOptions, c7, m7) = oldOptions.externallyDereferenced(with: loader)
| |- warning: sending 'oldOptions' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldOptions' into async let risks causing data races between nonisolated and task-isolated uses
161 | async let (newHead, c8, m8) = oldHead.externallyDereferenced(with: loader)
162 | async let (newPatch, c9, m9) = oldPatch.externallyDereferenced(with: loader)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:161:39: warning: sending 'oldHead' risks causing data races; this is an error in the Swift 6 language mode
159 | async let (newDelete, c6, m6) = oldDelete.externallyDereferenced(with: loader)
160 | async let (newOptions, c7, m7) = oldOptions.externallyDereferenced(with: loader)
161 | async let (newHead, c8, m8) = oldHead.externallyDereferenced(with: loader)
| |- warning: sending 'oldHead' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldHead' into async let risks causing data races between nonisolated and task-isolated uses
162 | async let (newPatch, c9, m9) = oldPatch.externallyDereferenced(with: loader)
163 | async let (newTrace, c10, m10) = oldTrace.externallyDereferenced(with: loader)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:162:40: warning: sending 'oldPatch' risks causing data races; this is an error in the Swift 6 language mode
160 | async let (newOptions, c7, m7) = oldOptions.externallyDereferenced(with: loader)
161 | async let (newHead, c8, m8) = oldHead.externallyDereferenced(with: loader)
162 | async let (newPatch, c9, m9) = oldPatch.externallyDereferenced(with: loader)
| |- warning: sending 'oldPatch' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldPatch' into async let risks causing data races between nonisolated and task-isolated uses
163 | async let (newTrace, c10, m10) = oldTrace.externallyDereferenced(with: loader)
164 |
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:163:42: warning: sending 'oldTrace' risks causing data races; this is an error in the Swift 6 language mode
161 | async let (newHead, c8, m8) = oldHead.externallyDereferenced(with: loader)
162 | async let (newPatch, c9, m9) = oldPatch.externallyDereferenced(with: loader)
163 | async let (newTrace, c10, m10) = oldTrace.externallyDereferenced(with: loader)
| |- warning: sending 'oldTrace' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldTrace' into async let risks causing data races between nonisolated and task-isolated uses
164 |
165 | var pathItem = self
/host/spi-builder-workspace/Sources/OpenAPIKit30/Path Item/DereferencedPathItem.swift:201:46: warning: sending 'oldServers' risks causing data races; this is an error in the Swift 6 language mode
199 |
200 | if let oldServers {
201 | async let (newServers, c2, m2) = oldServers.externallyDereferenced(with: loader)
| |- warning: sending 'oldServers' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldServers' into async let risks causing data races between nonisolated and task-isolated uses
202 | pathItem.servers = try await newServers
203 | try await newComponents.merge(c2)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Response/DereferencedResponse.swift:86:42: warning: sending 'oldContent' risks causing data races; this is an error in the Swift 6 language mode
84 | let oldHeaders = headers
85 |
86 | async let (newContent, c1, m1) = oldContent.externallyDereferenced(with: loader)
| |- warning: sending 'oldContent' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldContent' into async let risks causing data races between nonisolated and task-isolated uses
87 | async let (newLinks, c2, m2) = oldLinks.externallyDereferenced(with: loader)
88 | // async let (newHeaders, c3, m3) = oldHeaders.externallyDereferenced(with: loader)
/host/spi-builder-workspace/Sources/OpenAPIKit30/Response/DereferencedResponse.swift:87:40: warning: sending 'oldLinks' risks causing data races; this is an error in the Swift 6 language mode
85 |
86 | async let (newContent, c1, m1) = oldContent.externallyDereferenced(with: loader)
87 | async let (newLinks, c2, m2) = oldLinks.externallyDereferenced(with: loader)
| |- warning: sending 'oldLinks' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'oldLinks' into async let risks causing data races between nonisolated and task-isolated uses
88 | // async let (newHeaders, c3, m3) = oldHeaders.externallyDereferenced(with: loader)
89 |
[195/197] Compiling OpenAPIKitCompat Either+Map.swift
[196/197] Compiling OpenAPIKitCompat Compat30To31.swift
[197/197] Emitting module OpenAPIKitCompat
Build complete! (78.49s)
Build complete.
{
"dependencies" : [
{
"identity" : "swift-docc-plugin",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-docc-plugin"
},
{
"identity" : "yams",
"requirement" : {
"range" : [
{
"lower_bound" : "5.1.0",
"upper_bound" : "6.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/jpsim/Yams.git"
}
],
"manifest_display_name" : "OpenAPIKit",
"name" : "OpenAPIKit",
"path" : "/host/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "10.15"
},
{
"name" : "ios",
"version" : "11.0"
}
],
"products" : [
{
"name" : "OpenAPIKit30",
"targets" : [
"OpenAPIKit30"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "OpenAPIKit",
"targets" : [
"OpenAPIKit"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "OpenAPIKitCompat",
"targets" : [
"OpenAPIKitCompat"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"swift_languages_versions" : [
"5"
],
"targets" : [
{
"c99name" : "OrderedDictionaryTests",
"module_type" : "SwiftTarget",
"name" : "OrderedDictionaryTests",
"path" : "Tests/OrderedDictionaryTests",
"product_dependencies" : [
"Yams"
],
"sources" : [
"OrderedDictionaryTests.swift"
],
"target_dependencies" : [
"OpenAPIKitCore"
],
"type" : "test"
},
{
"c99name" : "OpenAPIKitTests",
"module_type" : "SwiftTarget",
"name" : "OpenAPIKitTests",
"path" : "Tests/OpenAPIKitTests",
"product_dependencies" : [
"Yams"
],
"sources" : [
"ComponentsTests.swift",
"Content/ContentTests.swift",
"Content/DereferencedContentTests.swift",
"DiscriminatorTests.swift",
"Document/DereferencedDocumentTests.swift",
"Document/DocumentInfoTests.swift",
"Document/DocumentTests.swift",
"Document/ExternalDereferencingDocumentTests.swift",
"Document/ResolvedDocumentTests.swift",
"EaseOfUseTests.swift",
"ExampleTests.swift",
"ExternalDocumentationTests.swift",
"Header/DereferencedHeaderTests.swift",
"Header/HeaderTests.swift",
"JSONReferenceTests.swift",
"LinkTests.swift",
"OpenAPIReferenceTests.swift",
"Operation/DereferencedOperationTests.swift",
"Operation/OperationTests.swift",
"Operation/ResolvedEndpointTests.swift",
"Parameter/DereferencedParameterTests.swift",
"Parameter/DereferencedSchemaContextTests.swift",
"Parameter/ParameterContextTests.swift",
"Parameter/ParameterSchemaTests.swift",
"Parameter/ParameterTests.swift",
"Path Item/DereferencedPathItemTests.swift",
"Path Item/PathItemTests.swift",
"Path Item/ResolvedRouteTests.swift",
"Request/DereferencedRequestTests.swift",
"Request/RequestTests.swift",
"Response/DereferencedResponseTests.swift",
"Response/ResponseTests.swift",
"Result+ValueTests.swift",
"RuntimeExpressionTests.swift",
"Schema Conformances/SwiftPrimitiveTypes+OpenAPITests.swift",
"Schema Object/DereferencedSchemaObjectTests.swift",
"Schema Object/JSONSchemaTests.swift",
"Schema Object/SchemaFragmentCombiningTests.swift",
"Schema Object/SchemaFragmentTests.swift",
"Schema Object/SchemaObjectInternalTests.swift",
"Schema Object/SchemaObjectYamsTests.swift",
"Security/OauthFlowsTests.swift",
"Security/SecuritySchemeTests.swift",
"ServerTests.swift",
"TagTests.swift",
"TestHelpers.swift",
"Validator/BuiltinValidationTests.swift",
"Validator/Validation+ConvenienceTests.swift",
"Validator/ValidationTests.swift",
"Validator/ValidatorTests.swift",
"VendorExtendableTests.swift",
"XMLTests.swift"
],
"target_dependencies" : [
"OpenAPIKit"
],
"type" : "test"
},
{
"c99name" : "OpenAPIKitRealSpecSuite",
"module_type" : "SwiftTarget",
"name" : "OpenAPIKitRealSpecSuite",
"path" : "Tests/OpenAPIKitRealSpecSuite",
"product_dependencies" : [
"Yams"
],
"sources" : [
"TemplateAPITests.swift"
],
"target_dependencies" : [
"OpenAPIKit"
],
"type" : "test"
},
{
"c99name" : "OpenAPIKitErrorReportingTests",
"module_type" : "SwiftTarget",
"name" : "OpenAPIKitErrorReportingTests",
"path" : "Tests/OpenAPIKitErrorReportingTests",
"product_dependencies" : [
"Yams"
],
"sources" : [
"ComponentErrorTests.swift",
"DocumentErrorTests.swift",
"Helpers.swift",
"JSONReferenceErrorTests.swift",
"OperationErrorTests.swift",
"PathsErrorTests.swift",
"RequestContentMapErrorTests.swift",
"RequestContentSchemaErrorTests.swift",
"RequestErrorTests.swift",
"ResponseErrorTests.swift",
"SchemaErrorTests.swift",
"SecuritySchemeErrorTests.swift"
],
"target_dependencies" : [
"OpenAPIKit"
],
"type" : "test"
},
{
"c99name" : "OpenAPIKitCoreTests",
"module_type" : "SwiftTarget",
"name" : "OpenAPIKitCoreTests",
"path" : "Tests/OpenAPIKitCoreTests",
"sources" : [
"ContentTypeTests.swift",
"Either+CustomStringConvertibleTests.swift",
"InconsistencyErrorTests.swift",
"TestHelpers.swift",
"URLTemplate/URLTemplateTests.swift"
],
"target_dependencies" : [
"OpenAPIKitCore"
],
"type" : "test"
},
{
"c99name" : "OpenAPIKitCore",
"module_type" : "SwiftTarget",
"name" : "OpenAPIKitCore",
"path" : "Sources/OpenAPIKitCore",
"product_memberships" : [
"OpenAPIKit30",
"OpenAPIKit",
"OpenAPIKitCompat"
],
"sources" : [
"AnyCodable/AnyCodable.swift",
"Either/Either+Codable.swift",
"Either/Either+CustomStringConvertible.swift",
"Either/Either.swift",
"Encoding and Decoding Errors And Warnings/CodingPathError.swift",
"Encoding and Decoding Errors And Warnings/DecodingErrorExtensions.swift",
"Encoding and Decoding Errors And Warnings/DiggingError.swift",
"Encoding and Decoding Errors And Warnings/EitherDecodeNoTypesMatchedErrorExtensions.swift",
"Encoding and Decoding Errors And Warnings/InconsistencyError.swift",
"Encoding and Decoding Errors And Warnings/OpenAPIDecodingErrors.swift",
"Encoding and Decoding Errors And Warnings/OpenAPIError.swift",
"Encoding and Decoding Errors And Warnings/OpenAPIWarning.swift",
"Encoding and Decoding Errors And Warnings/RequestDecodingError.swift",
"OpenAPIReference.swift",
"OrderedDictionary/OrderedDictionary.swift",
"OrderedDictionary/StringConvertibleHintProvider.swift",
"Shared.swift",
"Shared/CallbackURL.swift",
"Shared/ComponentKey.swift",
"Shared/ContentType.swift",
"Shared/Discriminator.swift",
"Shared/HttpMethod.swift",
"Shared/JSONSchemaPermissions.swift",
"Shared/JSONTypeFormat.swift",
"Shared/OAuthFlows.swift",
"Shared/ParameterContextLocation.swift",
"Shared/ParameterSchemaContextStyle.swift",
"Shared/Path.swift",
"Shared/ResponseStatusCode.swift",
"Shared/SecurityScheme.swift",
"URLTemplate/URLTemplate+Parsing.swift",
"URLTemplate/URLTemplate.swift",
"Utility/Container+DecodeURLAsString.swift",
"Utility/Optional+Zip.swift",
"Utility/Result+Value.swift",
"Validatable.swift"
],
"type" : "library"
},
{
"c99name" : "OpenAPIKitCompatTests",
"module_type" : "SwiftTarget",
"name" : "OpenAPIKitCompatTests",
"path" : "Tests/OpenAPIKitCompatTests",
"sources" : [
"DocumentConversionTests.swift"
],
"target_dependencies" : [
"OpenAPIKitCompat"
],
"type" : "test"
},
{
"c99name" : "OpenAPIKitCompat",
"module_type" : "SwiftTarget",
"name" : "OpenAPIKitCompat",
"path" : "Sources/OpenAPIKitCompat",
"product_memberships" : [
"OpenAPIKitCompat"
],
"sources" : [
"Compat30To31.swift",
"Either+Map.swift"
],
"target_dependencies" : [
"OpenAPIKit30",
"OpenAPIKit"
],
"type" : "library"
},
{
"c99name" : "OpenAPIKit30Tests",
"module_type" : "SwiftTarget",
"name" : "OpenAPIKit30Tests",
"path" : "Tests/OpenAPIKit30Tests",
"product_dependencies" : [
"Yams"
],
"sources" : [
"ComponentsTests.swift",
"Content/ContentTests.swift",
"Content/DereferencedContentTests.swift",
"DiscriminatorTests.swift",
"Document/DereferencedDocumentTests.swift",
"Document/DocumentInfoTests.swift",
"Document/DocumentTests.swift",
"Document/ExternalDereferencingDocumentTests.swift",
"Document/ResolvedDocumentTests.swift",
"EaseOfUseTests.swift",
"ExampleTests.swift",
"ExternalDocumentationTests.swift",
"Header/DereferencedHeaderTests.swift",
"Header/HeaderTests.swift",
"JSONReferenceTests.swift",
"LinkTests.swift",
"Operation/DereferencedOperationTests.swift",
"Operation/OperationTests.swift",
"Operation/ResolvedEndpointTests.swift",
"Parameter/DereferencedParameterTests.swift",
"Parameter/DereferencedSchemaContextTests.swift",
"Parameter/ParameterContextTests.swift",
"Parameter/ParameterSchemaTests.swift",
"Parameter/ParameterTests.swift",
"Path Item/DereferencedPathItemTests.swift",
"Path Item/PathItemTests.swift",
"Path Item/ResolvedRouteTests.swift",
"Request/DereferencedRequestTests.swift",
"Request/RequestTests.swift",
"Response/DereferencedResponseTests.swift",
"Response/ResponseTests.swift",
"Result+ValueTests.swift",
"RuntimeExpressionTests.swift",
"Schema Conformances/SwiftPrimitiveTypes+OpenAPITests.swift",
"Schema Object/DereferencedSchemaObjectTests.swift",
"Schema Object/JSONSchemaTests.swift",
"Schema Object/SchemaFragmentCombiningTests.swift",
"Schema Object/SchemaFragmentTests.swift",
"Schema Object/SchemaObjectInternalTests.swift",
"Schema Object/SchemaObjectYamsTests.swift",
"Security/OauthFlowsTests.swift",
"Security/SecuritySchemeTests.swift",
"ServerTests.swift",
"TagTests.swift",
"TestHelpers.swift",
"Validator/BuiltinValidationTests.swift",
"Validator/Validation+ConvenienceTests.swift",
"Validator/ValidationTests.swift",
"Validator/ValidatorTests.swift",
"VendorExtendableTests.swift",
"XMLTests.swift"
],
"target_dependencies" : [
"OpenAPIKit30"
],
"type" : "test"
},
{
"c99name" : "OpenAPIKit30RealSpecSuite",
"module_type" : "SwiftTarget",
"name" : "OpenAPIKit30RealSpecSuite",
"path" : "Tests/OpenAPIKit30RealSpecSuite",
"product_dependencies" : [
"Yams"
],
"sources" : [
"GitHubAPITests.swift",
"GoogleBooksAPITests.swift",
"PetStoreAPITests.swift",
"SwaggerDocSamplesTests.swift",
"TomTomAPITests.swift"
],
"target_dependencies" : [
"OpenAPIKit30"
],
"type" : "test"
},
{
"c99name" : "OpenAPIKit30ErrorReportingTests",
"module_type" : "SwiftTarget",
"name" : "OpenAPIKit30ErrorReportingTests",
"path" : "Tests/OpenAPIKit30ErrorReportingTests",
"product_dependencies" : [
"Yams"
],
"sources" : [
"ComponentErrorTests.swift",
"DocumentErrorTests.swift",
"Helpers.swift",
"JSONReferenceErrorTests.swift",
"OperationErrorTests.swift",
"PathsErrorTests.swift",
"RequestContentMapErrorTests.swift",
"RequestContentSchemaErrorTests.swift",
"RequestErrorTests.swift",
"ResponseErrorTests.swift",
"SchemaErrorTests.swift",
"SecuritySchemeErrorTests.swift"
],
"target_dependencies" : [
"OpenAPIKit30"
],
"type" : "test"
},
{
"c99name" : "OpenAPIKit30",
"module_type" : "SwiftTarget",
"name" : "OpenAPIKit30",
"path" : "Sources/OpenAPIKit30",
"product_memberships" : [
"OpenAPIKit30",
"OpenAPIKitCompat"
],
"sources" : [
"AnyCodable+Validatable.swift",
"Callbacks.swift",
"CodableVendorExtendable.swift",
"Components Object/Components+JSONReference.swift",
"Components Object/Components+Locatable.swift",
"Components Object/Components.swift",
"Content/Content.swift",
"Content/ContentEncoding.swift",
"Content/DereferencedContent.swift",
"Content/DereferencedContentEncoding.swift",
"Document/DereferencedDocument.swift",
"Document/Document.swift",
"Document/DocumentInfo.swift",
"Document/ResolvedDocument.swift",
"Either/Either+Convenience.swift",
"Either/Either+ExternallyDereferenceable.swift",
"Either/Either+LocallyDereferenceable.swift",
"Either/Either+Validatable.swift",
"Encoding and Decoding Errors/DocumentDecodingError.swift",
"Encoding and Decoding Errors/OperationDecodingError.swift",
"Encoding and Decoding Errors/PathDecodingError.swift",
"Encoding and Decoding Errors/ResponseDecodingError.swift",
"Example.swift",
"ExternalDocumentation.swift",
"ExternalLoader.swift",
"Header/DereferencedHeader.swift",
"Header/Header.swift",
"JSONReference.swift",
"Link.swift",
"OpenAPI.swift",
"Operation/DereferencedOperation.swift",
"Operation/Operation.swift",
"Operation/ResolvedEndpoint.swift",
"OrderedDictionary+Validatable.swift",
"Parameter/DereferencedParameter.swift",
"Parameter/DereferencedSchemaContext.swift",
"Parameter/Parameter.swift",
"Parameter/ParameterContext.swift",
"Parameter/ParameterSchemaContext.swift",
"Path Item/DereferencedPathItem.swift",
"Path Item/PathItem.swift",
"Path Item/ResolvedRoute.swift",
"Request/DereferencedRequest.swift",
"Request/Request.swift",
"Response/DereferencedResponse.swift",
"Response/Response.swift",
"RuntimeExpression.swift",
"Schema Conformances/SchemaProtocols.swift",
"Schema Conformances/SwiftPrimitiveTypes+OpenAPI.swift",
"Schema Object/DereferencedJSONSchema.swift",
"Schema Object/JSONSchema+Combining.swift",
"Schema Object/JSONSchema.swift",
"Schema Object/JSONSchemaContext.swift",
"Schema Object/SimplifiedJSONSchema.swift",
"Schema Object/TypesAndFormats.swift",
"Security/DereferencedSecurityRequirement.swift",
"Security/SecurityScheme.swift",
"Server.swift",
"Tag.swift",
"URLTemplate+Validatable.swift",
"Utility/Array+ExternallyDereferenceable.swift",
"Utility/Container+DecodeURLAsString.swift",
"Utility/Dictionary+ExternallyDereferenceable.swift",
"Utility/Optional+ExternallyDereferenceable.swift",
"Utility/OrderedDictionary+ExternallyDereferenceable.swift",
"Utility/OrderedDictionry+LocallyDereferenceable.swift",
"Validator/Validation+Builtins.swift",
"Validator/Validation.swift",
"Validator/Validator+Convenience.swift",
"Validator/Validator.swift",
"XML.swift",
"_CoreReExport.swift"
],
"target_dependencies" : [
"OpenAPIKitCore"
],
"type" : "library"
},
{
"c99name" : "OpenAPIKit",
"module_type" : "SwiftTarget",
"name" : "OpenAPIKit",
"path" : "Sources/OpenAPIKit",
"product_memberships" : [
"OpenAPIKit",
"OpenAPIKitCompat"
],
"sources" : [
"AnyCodable+Validatable.swift",
"Callbacks.swift",
"CodableVendorExtendable.swift",
"Components Object/Components+JSONReference.swift",
"Components Object/Components+Locatable.swift",
"Components Object/Components.swift",
"Content/Content.swift",
"Content/ContentEncoding.swift",
"Content/DereferencedContent.swift",
"Content/DereferencedContentEncoding.swift",
"Document/DereferencedDocument.swift",
"Document/Document.swift",
"Document/DocumentInfo.swift",
"Document/ResolvedDocument.swift",
"Either/Either+Convenience.swift",
"Either/Either+ExternallyDereferenceable.swift",
"Either/Either+LocallyDereferenceable.swift",
"Either/Either+Summarizable.swift",
"Either/Either+Validatable.swift",
"Encoding and Decoding Errors/DocumentDecodingError.swift",
"Encoding and Decoding Errors/OperationDecodingError.swift",
"Encoding and Decoding Errors/PathDecodingError.swift",
"Encoding and Decoding Errors/ResponseDecodingError.swift",
"Example.swift",
"ExternalDocumentation.swift",
"ExternalLoader.swift",
"Header/DereferencedHeader.swift",
"Header/Header.swift",
"JSONReference.swift",
"Link.swift",
"OpenAPI.swift",
"Operation/DereferencedOperation.swift",
"Operation/Operation.swift",
"Operation/ResolvedEndpoint.swift",
"OrderedDictionary+Validatable.swift",
"Parameter/DereferencedParameter.swift",
"Parameter/DereferencedSchemaContext.swift",
"Parameter/Parameter.swift",
"Parameter/ParameterContext.swift",
"Parameter/ParameterSchemaContext.swift",
"Path Item/DereferencedPathItem.swift",
"Path Item/PathItem.swift",
"Path Item/ResolvedRoute.swift",
"Request/DereferencedRequest.swift",
"Request/Request.swift",
"Response/DereferencedResponse.swift",
"Response/Response.swift",
"RuntimeExpression.swift",
"Schema Conformances/SchemaProtocols.swift",
"Schema Conformances/SwiftPrimitiveTypes+OpenAPI.swift",
"Schema Object/DereferencedJSONSchema.swift",
"Schema Object/JSONSchema+Combining.swift",
"Schema Object/JSONSchema.swift",
"Schema Object/JSONSchemaContext.swift",
"Schema Object/SimplifiedJSONSchema.swift",
"Schema Object/TypesAndFormats.swift",
"Security/DereferencedSecurityRequirement.swift",
"Security/SecurityScheme.swift",
"Server.swift",
"Tag.swift",
"URLTemplate+Validatable.swift",
"Utility/Array+ExternallyDereferenceable.swift",
"Utility/Container+DecodeURLAsString.swift",
"Utility/Dictionary+ExternallyDereferenceable.swift",
"Utility/Optional+ExternallyDereferenceable.swift",
"Utility/OrderedDictionary+ExternallyDereferenceable.swift",
"Utility/OrderedDictionry+LocallyDereferenceable.swift",
"Validator/Validation+Builtins.swift",
"Validator/Validation.swift",
"Validator/Validator+Convenience.swift",
"Validator/Validator.swift",
"XML.swift",
"_CoreReExport.swift"
],
"target_dependencies" : [
"OpenAPIKitCore"
],
"type" : "library"
},
{
"c99name" : "EitherTests",
"module_type" : "SwiftTarget",
"name" : "EitherTests",
"path" : "Tests/EitherTests",
"sources" : [
"EitherTests.swift",
"EitherTypeErasedValueTests.swift"
],
"target_dependencies" : [
"OpenAPIKitCore"
],
"type" : "test"
},
{
"c99name" : "AnyCodableTests",
"module_type" : "SwiftTarget",
"name" : "AnyCodableTests",
"path" : "Tests/AnyCodableTests",
"sources" : [
"AnyCodableTests.swift",
"TestHelpers.swift"
],
"target_dependencies" : [
"OpenAPIKitCore"
],
"type" : "test"
}
],
"tools_version" : "5.8"
}
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
Done.