Build Information
Successful build of SwiftOpenAPI, reference main (ed87ce), with Swift 6.1 for Linux on 26 Sep 2025 00:27:31 UTC.
Swift 6 data race errors: 112
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/finestructure/spi-images:basic-6.1-latest swift build --triple x86_64-unknown-linux-gnu 2>&1Build Log
29 | public extension DataFormat {
30 |
31 | static var email: DataFormat = "email"
| |- warning: static property 'email' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'email' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'email' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | static var uuid: DataFormat = "uuid"
33 | static var uri: DataFormat = "uri"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:32:13: warning: static property 'uuid' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
30 |
31 | static var email: DataFormat = "email"
32 | static var uuid: DataFormat = "uuid"
| |- warning: static property 'uuid' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'uuid' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'uuid' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 | static var uri: DataFormat = "uri"
34 | static var hostname: DataFormat = "hostname"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:33:13: warning: static property 'uri' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
31 | static var email: DataFormat = "email"
32 | static var uuid: DataFormat = "uuid"
33 | static var uri: DataFormat = "uri"
| |- warning: static property 'uri' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'uri' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'uri' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 | static var hostname: DataFormat = "hostname"
35 | static var ipv4: DataFormat = "ipv4"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:34:13: warning: static property 'hostname' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
32 | static var uuid: DataFormat = "uuid"
33 | static var uri: DataFormat = "uri"
34 | static var hostname: DataFormat = "hostname"
| |- warning: static property 'hostname' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'hostname' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'hostname' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 | static var ipv4: DataFormat = "ipv4"
36 | static var ipv6: DataFormat = "ipv6"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:35:13: warning: static property 'ipv4' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
33 | static var uri: DataFormat = "uri"
34 | static var hostname: DataFormat = "hostname"
35 | static var ipv4: DataFormat = "ipv4"
| |- warning: static property 'ipv4' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'ipv4' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'ipv4' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 | static var ipv6: DataFormat = "ipv6"
37 | static var int64: DataFormat = "int64"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:36:13: warning: static property 'ipv6' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
34 | static var hostname: DataFormat = "hostname"
35 | static var ipv4: DataFormat = "ipv4"
36 | static var ipv6: DataFormat = "ipv6"
| |- warning: static property 'ipv6' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'ipv6' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'ipv6' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | static var int64: DataFormat = "int64"
38 | static var int32: DataFormat = "int32"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:37:13: warning: static property 'int64' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
35 | static var ipv4: DataFormat = "ipv4"
36 | static var ipv6: DataFormat = "ipv6"
37 | static var int64: DataFormat = "int64"
| |- warning: static property 'int64' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'int64' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'int64' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 | static var int32: DataFormat = "int32"
39 | static var double: DataFormat = "double"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:38:13: warning: static property 'int32' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
36 | static var ipv6: DataFormat = "ipv6"
37 | static var int64: DataFormat = "int64"
38 | static var int32: DataFormat = "int32"
| |- warning: static property 'int32' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'int32' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'int32' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 | static var double: DataFormat = "double"
40 | static var float: DataFormat = "float"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:39:13: warning: static property 'double' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
37 | static var int64: DataFormat = "int64"
38 | static var int32: DataFormat = "int32"
39 | static var double: DataFormat = "double"
| |- warning: static property 'double' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'double' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'double' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 | static var float: DataFormat = "float"
41 | static var decimal: DataFormat = "decimal"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:40:13: warning: static property 'float' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
38 | static var int32: DataFormat = "int32"
39 | static var double: DataFormat = "double"
40 | static var float: DataFormat = "float"
| |- warning: static property 'float' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'float' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'float' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
41 | static var decimal: DataFormat = "decimal"
42 |
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:41:13: warning: static property 'decimal' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
39 | static var double: DataFormat = "double"
40 | static var float: DataFormat = "float"
41 | static var decimal: DataFormat = "decimal"
| |- warning: static property 'decimal' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'decimal' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'decimal' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |
43 | /// full-date notation as defined by RFC 3339, section 5.6, for example, 2017-07-21
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:44:13: warning: static property 'date' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
42 |
43 | /// full-date notation as defined by RFC 3339, section 5.6, for example, 2017-07-21
44 | static var date: DataFormat = "date"
| |- warning: static property 'date' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'date' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'date' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |
46 | /// the date-time notation as defined by RFC 3339, section 5.6, for example, 2017-07-21T17:32:28Z
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:47:13: warning: static property 'dateTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
45 |
46 | /// the date-time notation as defined by RFC 3339, section 5.6, for example, 2017-07-21T17:32:28Z
47 | static var dateTime: DataFormat = "date-time"
| |- warning: static property 'dateTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'dateTime' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'dateTime' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 | /// a hint to UIs to mask the input
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:50:13: warning: static property 'password' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
48 |
49 | /// a hint to UIs to mask the input
50 | static var password: DataFormat = "password"
| |- warning: static property 'password' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'password' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'password' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 |
52 | /// base64-encoded characters, for example, U3dhZ2dlciByb2Nrcw==
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:53:13: warning: static property 'byte' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
51 |
52 | /// base64-encoded characters, for example, U3dhZ2dlciByb2Nrcw==
53 | static var byte: DataFormat = "byte"
| |- warning: static property 'byte' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'byte' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'byte' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |
55 | /// binary data, used to describe files
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:56:13: warning: static property 'binary' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
54 |
55 | /// binary data, used to describe files
56 | static var binary: DataFormat = "binary"
| |- warning: static property 'binary' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'binary' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'binary' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
57 | }
58 |
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:31:13: warning: static property 'email' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 | public extension DataFormat {
30 |
31 | static var email: DataFormat = "email"
| |- warning: static property 'email' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'email' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'email' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | static var uuid: DataFormat = "uuid"
33 | static var uri: DataFormat = "uri"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:32:13: warning: static property 'uuid' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
30 |
31 | static var email: DataFormat = "email"
32 | static var uuid: DataFormat = "uuid"
| |- warning: static property 'uuid' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'uuid' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'uuid' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 | static var uri: DataFormat = "uri"
34 | static var hostname: DataFormat = "hostname"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:33:13: warning: static property 'uri' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
31 | static var email: DataFormat = "email"
32 | static var uuid: DataFormat = "uuid"
33 | static var uri: DataFormat = "uri"
| |- warning: static property 'uri' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'uri' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'uri' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 | static var hostname: DataFormat = "hostname"
35 | static var ipv4: DataFormat = "ipv4"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:34:13: warning: static property 'hostname' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
32 | static var uuid: DataFormat = "uuid"
33 | static var uri: DataFormat = "uri"
34 | static var hostname: DataFormat = "hostname"
| |- warning: static property 'hostname' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'hostname' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'hostname' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 | static var ipv4: DataFormat = "ipv4"
36 | static var ipv6: DataFormat = "ipv6"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:35:13: warning: static property 'ipv4' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
33 | static var uri: DataFormat = "uri"
34 | static var hostname: DataFormat = "hostname"
35 | static var ipv4: DataFormat = "ipv4"
| |- warning: static property 'ipv4' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'ipv4' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'ipv4' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 | static var ipv6: DataFormat = "ipv6"
37 | static var int64: DataFormat = "int64"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:36:13: warning: static property 'ipv6' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
34 | static var hostname: DataFormat = "hostname"
35 | static var ipv4: DataFormat = "ipv4"
36 | static var ipv6: DataFormat = "ipv6"
| |- warning: static property 'ipv6' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'ipv6' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'ipv6' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | static var int64: DataFormat = "int64"
38 | static var int32: DataFormat = "int32"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:37:13: warning: static property 'int64' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
35 | static var ipv4: DataFormat = "ipv4"
36 | static var ipv6: DataFormat = "ipv6"
37 | static var int64: DataFormat = "int64"
| |- warning: static property 'int64' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'int64' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'int64' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 | static var int32: DataFormat = "int32"
39 | static var double: DataFormat = "double"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:38:13: warning: static property 'int32' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
36 | static var ipv6: DataFormat = "ipv6"
37 | static var int64: DataFormat = "int64"
38 | static var int32: DataFormat = "int32"
| |- warning: static property 'int32' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'int32' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'int32' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 | static var double: DataFormat = "double"
40 | static var float: DataFormat = "float"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:39:13: warning: static property 'double' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
37 | static var int64: DataFormat = "int64"
38 | static var int32: DataFormat = "int32"
39 | static var double: DataFormat = "double"
| |- warning: static property 'double' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'double' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'double' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 | static var float: DataFormat = "float"
41 | static var decimal: DataFormat = "decimal"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:40:13: warning: static property 'float' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
38 | static var int32: DataFormat = "int32"
39 | static var double: DataFormat = "double"
40 | static var float: DataFormat = "float"
| |- warning: static property 'float' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'float' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'float' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
41 | static var decimal: DataFormat = "decimal"
42 |
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:41:13: warning: static property 'decimal' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
39 | static var double: DataFormat = "double"
40 | static var float: DataFormat = "float"
41 | static var decimal: DataFormat = "decimal"
| |- warning: static property 'decimal' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'decimal' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'decimal' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |
43 | /// full-date notation as defined by RFC 3339, section 5.6, for example, 2017-07-21
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:44:13: warning: static property 'date' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
42 |
43 | /// full-date notation as defined by RFC 3339, section 5.6, for example, 2017-07-21
44 | static var date: DataFormat = "date"
| |- warning: static property 'date' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'date' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'date' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |
46 | /// the date-time notation as defined by RFC 3339, section 5.6, for example, 2017-07-21T17:32:28Z
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:47:13: warning: static property 'dateTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
45 |
46 | /// the date-time notation as defined by RFC 3339, section 5.6, for example, 2017-07-21T17:32:28Z
47 | static var dateTime: DataFormat = "date-time"
| |- warning: static property 'dateTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'dateTime' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'dateTime' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 | /// a hint to UIs to mask the input
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:50:13: warning: static property 'password' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
48 |
49 | /// a hint to UIs to mask the input
50 | static var password: DataFormat = "password"
| |- warning: static property 'password' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'password' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'password' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 |
52 | /// base64-encoded characters, for example, U3dhZ2dlciByb2Nrcw==
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:53:13: warning: static property 'byte' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
51 |
52 | /// base64-encoded characters, for example, U3dhZ2dlciByb2Nrcw==
53 | static var byte: DataFormat = "byte"
| |- warning: static property 'byte' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'byte' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'byte' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |
55 | /// binary data, used to describe files
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:56:13: warning: static property 'binary' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
54 |
55 | /// binary data, used to describe files
56 | static var binary: DataFormat = "binary"
| |- warning: static property 'binary' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'binary' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'binary' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
57 | }
58 |
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:31:13: warning: static property 'email' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 | public extension DataFormat {
30 |
31 | static var email: DataFormat = "email"
| |- warning: static property 'email' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'email' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'email' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | static var uuid: DataFormat = "uuid"
33 | static var uri: DataFormat = "uri"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:32:13: warning: static property 'uuid' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
30 |
31 | static var email: DataFormat = "email"
32 | static var uuid: DataFormat = "uuid"
| |- warning: static property 'uuid' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'uuid' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'uuid' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 | static var uri: DataFormat = "uri"
34 | static var hostname: DataFormat = "hostname"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:33:13: warning: static property 'uri' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
31 | static var email: DataFormat = "email"
32 | static var uuid: DataFormat = "uuid"
33 | static var uri: DataFormat = "uri"
| |- warning: static property 'uri' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'uri' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'uri' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 | static var hostname: DataFormat = "hostname"
35 | static var ipv4: DataFormat = "ipv4"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:34:13: warning: static property 'hostname' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
32 | static var uuid: DataFormat = "uuid"
33 | static var uri: DataFormat = "uri"
34 | static var hostname: DataFormat = "hostname"
| |- warning: static property 'hostname' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'hostname' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'hostname' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 | static var ipv4: DataFormat = "ipv4"
36 | static var ipv6: DataFormat = "ipv6"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:35:13: warning: static property 'ipv4' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
33 | static var uri: DataFormat = "uri"
34 | static var hostname: DataFormat = "hostname"
35 | static var ipv4: DataFormat = "ipv4"
| |- warning: static property 'ipv4' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'ipv4' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'ipv4' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 | static var ipv6: DataFormat = "ipv6"
37 | static var int64: DataFormat = "int64"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:36:13: warning: static property 'ipv6' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
34 | static var hostname: DataFormat = "hostname"
35 | static var ipv4: DataFormat = "ipv4"
36 | static var ipv6: DataFormat = "ipv6"
| |- warning: static property 'ipv6' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'ipv6' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'ipv6' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | static var int64: DataFormat = "int64"
38 | static var int32: DataFormat = "int32"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:37:13: warning: static property 'int64' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
35 | static var ipv4: DataFormat = "ipv4"
36 | static var ipv6: DataFormat = "ipv6"
37 | static var int64: DataFormat = "int64"
| |- warning: static property 'int64' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'int64' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'int64' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 | static var int32: DataFormat = "int32"
39 | static var double: DataFormat = "double"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:38:13: warning: static property 'int32' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
36 | static var ipv6: DataFormat = "ipv6"
37 | static var int64: DataFormat = "int64"
38 | static var int32: DataFormat = "int32"
| |- warning: static property 'int32' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'int32' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'int32' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 | static var double: DataFormat = "double"
40 | static var float: DataFormat = "float"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:39:13: warning: static property 'double' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
37 | static var int64: DataFormat = "int64"
38 | static var int32: DataFormat = "int32"
39 | static var double: DataFormat = "double"
| |- warning: static property 'double' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'double' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'double' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 | static var float: DataFormat = "float"
41 | static var decimal: DataFormat = "decimal"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:40:13: warning: static property 'float' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
38 | static var int32: DataFormat = "int32"
39 | static var double: DataFormat = "double"
40 | static var float: DataFormat = "float"
| |- warning: static property 'float' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'float' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'float' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
41 | static var decimal: DataFormat = "decimal"
42 |
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:41:13: warning: static property 'decimal' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
39 | static var double: DataFormat = "double"
40 | static var float: DataFormat = "float"
41 | static var decimal: DataFormat = "decimal"
| |- warning: static property 'decimal' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'decimal' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'decimal' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |
43 | /// full-date notation as defined by RFC 3339, section 5.6, for example, 2017-07-21
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:44:13: warning: static property 'date' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
42 |
43 | /// full-date notation as defined by RFC 3339, section 5.6, for example, 2017-07-21
44 | static var date: DataFormat = "date"
| |- warning: static property 'date' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'date' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'date' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |
46 | /// the date-time notation as defined by RFC 3339, section 5.6, for example, 2017-07-21T17:32:28Z
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:47:13: warning: static property 'dateTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
45 |
46 | /// the date-time notation as defined by RFC 3339, section 5.6, for example, 2017-07-21T17:32:28Z
47 | static var dateTime: DataFormat = "date-time"
| |- warning: static property 'dateTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'dateTime' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'dateTime' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 | /// a hint to UIs to mask the input
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:50:13: warning: static property 'password' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
48 |
49 | /// a hint to UIs to mask the input
50 | static var password: DataFormat = "password"
| |- warning: static property 'password' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'password' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'password' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 |
52 | /// base64-encoded characters, for example, U3dhZ2dlciByb2Nrcw==
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:53:13: warning: static property 'byte' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
51 |
52 | /// base64-encoded characters, for example, U3dhZ2dlciByb2Nrcw==
53 | static var byte: DataFormat = "byte"
| |- warning: static property 'byte' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'byte' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'byte' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |
55 | /// binary data, used to describe files
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:56:13: warning: static property 'binary' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
54 |
55 | /// binary data, used to describe files
56 | static var binary: DataFormat = "binary"
| |- warning: static property 'binary' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'binary' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'binary' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
57 | }
58 |
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:31:13: warning: static property 'email' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 | public extension DataFormat {
30 |
31 | static var email: DataFormat = "email"
| |- warning: static property 'email' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'email' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'email' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | static var uuid: DataFormat = "uuid"
33 | static var uri: DataFormat = "uri"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:32:13: warning: static property 'uuid' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
30 |
31 | static var email: DataFormat = "email"
32 | static var uuid: DataFormat = "uuid"
| |- warning: static property 'uuid' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'uuid' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'uuid' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 | static var uri: DataFormat = "uri"
34 | static var hostname: DataFormat = "hostname"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:33:13: warning: static property 'uri' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
31 | static var email: DataFormat = "email"
32 | static var uuid: DataFormat = "uuid"
33 | static var uri: DataFormat = "uri"
| |- warning: static property 'uri' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'uri' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'uri' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 | static var hostname: DataFormat = "hostname"
35 | static var ipv4: DataFormat = "ipv4"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:34:13: warning: static property 'hostname' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
32 | static var uuid: DataFormat = "uuid"
33 | static var uri: DataFormat = "uri"
34 | static var hostname: DataFormat = "hostname"
| |- warning: static property 'hostname' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'hostname' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'hostname' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 | static var ipv4: DataFormat = "ipv4"
36 | static var ipv6: DataFormat = "ipv6"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:35:13: warning: static property 'ipv4' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
33 | static var uri: DataFormat = "uri"
34 | static var hostname: DataFormat = "hostname"
35 | static var ipv4: DataFormat = "ipv4"
| |- warning: static property 'ipv4' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'ipv4' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'ipv4' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 | static var ipv6: DataFormat = "ipv6"
37 | static var int64: DataFormat = "int64"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:36:13: warning: static property 'ipv6' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
34 | static var hostname: DataFormat = "hostname"
35 | static var ipv4: DataFormat = "ipv4"
36 | static var ipv6: DataFormat = "ipv6"
| |- warning: static property 'ipv6' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'ipv6' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'ipv6' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | static var int64: DataFormat = "int64"
38 | static var int32: DataFormat = "int32"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:37:13: warning: static property 'int64' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
35 | static var ipv4: DataFormat = "ipv4"
36 | static var ipv6: DataFormat = "ipv6"
37 | static var int64: DataFormat = "int64"
| |- warning: static property 'int64' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'int64' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'int64' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 | static var int32: DataFormat = "int32"
39 | static var double: DataFormat = "double"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:38:13: warning: static property 'int32' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
36 | static var ipv6: DataFormat = "ipv6"
37 | static var int64: DataFormat = "int64"
38 | static var int32: DataFormat = "int32"
| |- warning: static property 'int32' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'int32' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'int32' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 | static var double: DataFormat = "double"
40 | static var float: DataFormat = "float"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:39:13: warning: static property 'double' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
37 | static var int64: DataFormat = "int64"
38 | static var int32: DataFormat = "int32"
39 | static var double: DataFormat = "double"
| |- warning: static property 'double' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'double' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'double' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 | static var float: DataFormat = "float"
41 | static var decimal: DataFormat = "decimal"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:40:13: warning: static property 'float' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
38 | static var int32: DataFormat = "int32"
39 | static var double: DataFormat = "double"
40 | static var float: DataFormat = "float"
| |- warning: static property 'float' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'float' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'float' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
41 | static var decimal: DataFormat = "decimal"
42 |
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:41:13: warning: static property 'decimal' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
39 | static var double: DataFormat = "double"
40 | static var float: DataFormat = "float"
41 | static var decimal: DataFormat = "decimal"
| |- warning: static property 'decimal' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'decimal' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'decimal' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |
43 | /// full-date notation as defined by RFC 3339, section 5.6, for example, 2017-07-21
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:44:13: warning: static property 'date' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
42 |
43 | /// full-date notation as defined by RFC 3339, section 5.6, for example, 2017-07-21
44 | static var date: DataFormat = "date"
| |- warning: static property 'date' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'date' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'date' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |
46 | /// the date-time notation as defined by RFC 3339, section 5.6, for example, 2017-07-21T17:32:28Z
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:47:13: warning: static property 'dateTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
45 |
46 | /// the date-time notation as defined by RFC 3339, section 5.6, for example, 2017-07-21T17:32:28Z
47 | static var dateTime: DataFormat = "date-time"
| |- warning: static property 'dateTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'dateTime' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'dateTime' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 | /// a hint to UIs to mask the input
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:50:13: warning: static property 'password' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
48 |
49 | /// a hint to UIs to mask the input
50 | static var password: DataFormat = "password"
| |- warning: static property 'password' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'password' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'password' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 |
52 | /// base64-encoded characters, for example, U3dhZ2dlciByb2Nrcw==
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:53:13: warning: static property 'byte' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
51 |
52 | /// base64-encoded characters, for example, U3dhZ2dlciByb2Nrcw==
53 | static var byte: DataFormat = "byte"
| |- warning: static property 'byte' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'byte' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'byte' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |
55 | /// binary data, used to describe files
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:56:13: warning: static property 'binary' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
54 |
55 | /// binary data, used to describe files
56 | static var binary: DataFormat = "binary"
| |- warning: static property 'binary' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'binary' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'binary' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
57 | }
58 |
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:31:13: warning: static property 'email' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 | public extension DataFormat {
30 |
31 | static var email: DataFormat = "email"
| |- warning: static property 'email' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'email' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'email' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | static var uuid: DataFormat = "uuid"
33 | static var uri: DataFormat = "uri"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:32:13: warning: static property 'uuid' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
30 |
31 | static var email: DataFormat = "email"
32 | static var uuid: DataFormat = "uuid"
| |- warning: static property 'uuid' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'uuid' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'uuid' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 | static var uri: DataFormat = "uri"
34 | static var hostname: DataFormat = "hostname"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:33:13: warning: static property 'uri' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
31 | static var email: DataFormat = "email"
32 | static var uuid: DataFormat = "uuid"
33 | static var uri: DataFormat = "uri"
| |- warning: static property 'uri' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'uri' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'uri' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 | static var hostname: DataFormat = "hostname"
35 | static var ipv4: DataFormat = "ipv4"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:34:13: warning: static property 'hostname' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
32 | static var uuid: DataFormat = "uuid"
33 | static var uri: DataFormat = "uri"
34 | static var hostname: DataFormat = "hostname"
| |- warning: static property 'hostname' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'hostname' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'hostname' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 | static var ipv4: DataFormat = "ipv4"
36 | static var ipv6: DataFormat = "ipv6"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:35:13: warning: static property 'ipv4' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
33 | static var uri: DataFormat = "uri"
34 | static var hostname: DataFormat = "hostname"
35 | static var ipv4: DataFormat = "ipv4"
| |- warning: static property 'ipv4' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'ipv4' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'ipv4' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 | static var ipv6: DataFormat = "ipv6"
37 | static var int64: DataFormat = "int64"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:36:13: warning: static property 'ipv6' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
34 | static var hostname: DataFormat = "hostname"
35 | static var ipv4: DataFormat = "ipv4"
36 | static var ipv6: DataFormat = "ipv6"
| |- warning: static property 'ipv6' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'ipv6' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'ipv6' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | static var int64: DataFormat = "int64"
38 | static var int32: DataFormat = "int32"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:37:13: warning: static property 'int64' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
35 | static var ipv4: DataFormat = "ipv4"
36 | static var ipv6: DataFormat = "ipv6"
37 | static var int64: DataFormat = "int64"
| |- warning: static property 'int64' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'int64' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'int64' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 | static var int32: DataFormat = "int32"
39 | static var double: DataFormat = "double"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:38:13: warning: static property 'int32' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
36 | static var ipv6: DataFormat = "ipv6"
37 | static var int64: DataFormat = "int64"
38 | static var int32: DataFormat = "int32"
| |- warning: static property 'int32' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'int32' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'int32' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 | static var double: DataFormat = "double"
40 | static var float: DataFormat = "float"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:39:13: warning: static property 'double' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
37 | static var int64: DataFormat = "int64"
38 | static var int32: DataFormat = "int32"
39 | static var double: DataFormat = "double"
| |- warning: static property 'double' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'double' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'double' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 | static var float: DataFormat = "float"
41 | static var decimal: DataFormat = "decimal"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:40:13: warning: static property 'float' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
38 | static var int32: DataFormat = "int32"
39 | static var double: DataFormat = "double"
40 | static var float: DataFormat = "float"
| |- warning: static property 'float' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'float' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'float' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
41 | static var decimal: DataFormat = "decimal"
42 |
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:41:13: warning: static property 'decimal' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
39 | static var double: DataFormat = "double"
40 | static var float: DataFormat = "float"
41 | static var decimal: DataFormat = "decimal"
| |- warning: static property 'decimal' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'decimal' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'decimal' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |
43 | /// full-date notation as defined by RFC 3339, section 5.6, for example, 2017-07-21
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:44:13: warning: static property 'date' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
42 |
43 | /// full-date notation as defined by RFC 3339, section 5.6, for example, 2017-07-21
44 | static var date: DataFormat = "date"
| |- warning: static property 'date' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'date' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'date' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |
46 | /// the date-time notation as defined by RFC 3339, section 5.6, for example, 2017-07-21T17:32:28Z
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:47:13: warning: static property 'dateTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
45 |
46 | /// the date-time notation as defined by RFC 3339, section 5.6, for example, 2017-07-21T17:32:28Z
47 | static var dateTime: DataFormat = "date-time"
| |- warning: static property 'dateTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'dateTime' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'dateTime' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 | /// a hint to UIs to mask the input
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:50:13: warning: static property 'password' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
48 |
49 | /// a hint to UIs to mask the input
50 | static var password: DataFormat = "password"
| |- warning: static property 'password' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'password' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'password' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 |
52 | /// base64-encoded characters, for example, U3dhZ2dlciByb2Nrcw==
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:53:13: warning: static property 'byte' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
51 |
52 | /// base64-encoded characters, for example, U3dhZ2dlciByb2Nrcw==
53 | static var byte: DataFormat = "byte"
| |- warning: static property 'byte' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'byte' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'byte' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |
55 | /// binary data, used to describe files
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:56:13: warning: static property 'binary' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
54 |
55 | /// binary data, used to describe files
56 | static var binary: DataFormat = "binary"
| |- warning: static property 'binary' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'binary' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'binary' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
57 | }
58 |
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:31:13: warning: static property 'email' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 | public extension DataFormat {
30 |
31 | static var email: DataFormat = "email"
| |- warning: static property 'email' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'email' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'email' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | static var uuid: DataFormat = "uuid"
33 | static var uri: DataFormat = "uri"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:32:13: warning: static property 'uuid' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
30 |
31 | static var email: DataFormat = "email"
32 | static var uuid: DataFormat = "uuid"
| |- warning: static property 'uuid' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'uuid' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'uuid' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 | static var uri: DataFormat = "uri"
34 | static var hostname: DataFormat = "hostname"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:33:13: warning: static property 'uri' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
31 | static var email: DataFormat = "email"
32 | static var uuid: DataFormat = "uuid"
33 | static var uri: DataFormat = "uri"
| |- warning: static property 'uri' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'uri' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'uri' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 | static var hostname: DataFormat = "hostname"
35 | static var ipv4: DataFormat = "ipv4"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:34:13: warning: static property 'hostname' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
32 | static var uuid: DataFormat = "uuid"
33 | static var uri: DataFormat = "uri"
34 | static var hostname: DataFormat = "hostname"
| |- warning: static property 'hostname' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'hostname' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'hostname' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 | static var ipv4: DataFormat = "ipv4"
36 | static var ipv6: DataFormat = "ipv6"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:35:13: warning: static property 'ipv4' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
33 | static var uri: DataFormat = "uri"
34 | static var hostname: DataFormat = "hostname"
35 | static var ipv4: DataFormat = "ipv4"
| |- warning: static property 'ipv4' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'ipv4' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'ipv4' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 | static var ipv6: DataFormat = "ipv6"
37 | static var int64: DataFormat = "int64"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:36:13: warning: static property 'ipv6' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
34 | static var hostname: DataFormat = "hostname"
35 | static var ipv4: DataFormat = "ipv4"
36 | static var ipv6: DataFormat = "ipv6"
| |- warning: static property 'ipv6' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'ipv6' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'ipv6' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | static var int64: DataFormat = "int64"
38 | static var int32: DataFormat = "int32"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:37:13: warning: static property 'int64' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
35 | static var ipv4: DataFormat = "ipv4"
36 | static var ipv6: DataFormat = "ipv6"
37 | static var int64: DataFormat = "int64"
| |- warning: static property 'int64' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'int64' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'int64' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 | static var int32: DataFormat = "int32"
39 | static var double: DataFormat = "double"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:38:13: warning: static property 'int32' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
36 | static var ipv6: DataFormat = "ipv6"
37 | static var int64: DataFormat = "int64"
38 | static var int32: DataFormat = "int32"
| |- warning: static property 'int32' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'int32' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'int32' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 | static var double: DataFormat = "double"
40 | static var float: DataFormat = "float"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:39:13: warning: static property 'double' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
37 | static var int64: DataFormat = "int64"
38 | static var int32: DataFormat = "int32"
39 | static var double: DataFormat = "double"
| |- warning: static property 'double' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'double' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'double' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 | static var float: DataFormat = "float"
41 | static var decimal: DataFormat = "decimal"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:40:13: warning: static property 'float' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
38 | static var int32: DataFormat = "int32"
39 | static var double: DataFormat = "double"
40 | static var float: DataFormat = "float"
| |- warning: static property 'float' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'float' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'float' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
41 | static var decimal: DataFormat = "decimal"
42 |
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:41:13: warning: static property 'decimal' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
39 | static var double: DataFormat = "double"
40 | static var float: DataFormat = "float"
41 | static var decimal: DataFormat = "decimal"
| |- warning: static property 'decimal' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'decimal' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'decimal' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |
43 | /// full-date notation as defined by RFC 3339, section 5.6, for example, 2017-07-21
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:44:13: warning: static property 'date' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
42 |
43 | /// full-date notation as defined by RFC 3339, section 5.6, for example, 2017-07-21
44 | static var date: DataFormat = "date"
| |- warning: static property 'date' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'date' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'date' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |
46 | /// the date-time notation as defined by RFC 3339, section 5.6, for example, 2017-07-21T17:32:28Z
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:47:13: warning: static property 'dateTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
45 |
46 | /// the date-time notation as defined by RFC 3339, section 5.6, for example, 2017-07-21T17:32:28Z
47 | static var dateTime: DataFormat = "date-time"
| |- warning: static property 'dateTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'dateTime' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'dateTime' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 | /// a hint to UIs to mask the input
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:50:13: warning: static property 'password' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
48 |
49 | /// a hint to UIs to mask the input
50 | static var password: DataFormat = "password"
| |- warning: static property 'password' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'password' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'password' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 |
52 | /// base64-encoded characters, for example, U3dhZ2dlciByb2Nrcw==
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:53:13: warning: static property 'byte' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
51 |
52 | /// base64-encoded characters, for example, U3dhZ2dlciByb2Nrcw==
53 | static var byte: DataFormat = "byte"
| |- warning: static property 'byte' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'byte' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'byte' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |
55 | /// binary data, used to describe files
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:56:13: warning: static property 'binary' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
54 |
55 | /// binary data, used to describe files
56 | static var binary: DataFormat = "binary"
| |- warning: static property 'binary' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'binary' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'binary' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
57 | }
58 |
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:31:13: warning: static property 'email' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 | public extension DataFormat {
30 |
31 | static var email: DataFormat = "email"
| |- warning: static property 'email' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'email' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'email' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | static var uuid: DataFormat = "uuid"
33 | static var uri: DataFormat = "uri"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:32:13: warning: static property 'uuid' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
30 |
31 | static var email: DataFormat = "email"
32 | static var uuid: DataFormat = "uuid"
| |- warning: static property 'uuid' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'uuid' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'uuid' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 | static var uri: DataFormat = "uri"
34 | static var hostname: DataFormat = "hostname"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:33:13: warning: static property 'uri' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
31 | static var email: DataFormat = "email"
32 | static var uuid: DataFormat = "uuid"
33 | static var uri: DataFormat = "uri"
| |- warning: static property 'uri' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'uri' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'uri' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 | static var hostname: DataFormat = "hostname"
35 | static var ipv4: DataFormat = "ipv4"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:34:13: warning: static property 'hostname' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
32 | static var uuid: DataFormat = "uuid"
33 | static var uri: DataFormat = "uri"
34 | static var hostname: DataFormat = "hostname"
| |- warning: static property 'hostname' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'hostname' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'hostname' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 | static var ipv4: DataFormat = "ipv4"
36 | static var ipv6: DataFormat = "ipv6"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:35:13: warning: static property 'ipv4' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
33 | static var uri: DataFormat = "uri"
34 | static var hostname: DataFormat = "hostname"
35 | static var ipv4: DataFormat = "ipv4"
| |- warning: static property 'ipv4' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'ipv4' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'ipv4' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 | static var ipv6: DataFormat = "ipv6"
37 | static var int64: DataFormat = "int64"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:36:13: warning: static property 'ipv6' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
34 | static var hostname: DataFormat = "hostname"
35 | static var ipv4: DataFormat = "ipv4"
36 | static var ipv6: DataFormat = "ipv6"
| |- warning: static property 'ipv6' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'ipv6' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'ipv6' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | static var int64: DataFormat = "int64"
38 | static var int32: DataFormat = "int32"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:37:13: warning: static property 'int64' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
35 | static var ipv4: DataFormat = "ipv4"
36 | static var ipv6: DataFormat = "ipv6"
37 | static var int64: DataFormat = "int64"
| |- warning: static property 'int64' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'int64' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'int64' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 | static var int32: DataFormat = "int32"
39 | static var double: DataFormat = "double"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:38:13: warning: static property 'int32' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
36 | static var ipv6: DataFormat = "ipv6"
37 | static var int64: DataFormat = "int64"
38 | static var int32: DataFormat = "int32"
| |- warning: static property 'int32' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'int32' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'int32' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 | static var double: DataFormat = "double"
40 | static var float: DataFormat = "float"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:39:13: warning: static property 'double' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
37 | static var int64: DataFormat = "int64"
38 | static var int32: DataFormat = "int32"
39 | static var double: DataFormat = "double"
| |- warning: static property 'double' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'double' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'double' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 | static var float: DataFormat = "float"
41 | static var decimal: DataFormat = "decimal"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:40:13: warning: static property 'float' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
38 | static var int32: DataFormat = "int32"
39 | static var double: DataFormat = "double"
40 | static var float: DataFormat = "float"
| |- warning: static property 'float' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'float' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'float' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
41 | static var decimal: DataFormat = "decimal"
42 |
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:41:13: warning: static property 'decimal' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
39 | static var double: DataFormat = "double"
40 | static var float: DataFormat = "float"
41 | static var decimal: DataFormat = "decimal"
| |- warning: static property 'decimal' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'decimal' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'decimal' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |
43 | /// full-date notation as defined by RFC 3339, section 5.6, for example, 2017-07-21
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:44:13: warning: static property 'date' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
42 |
43 | /// full-date notation as defined by RFC 3339, section 5.6, for example, 2017-07-21
44 | static var date: DataFormat = "date"
| |- warning: static property 'date' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'date' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'date' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |
46 | /// the date-time notation as defined by RFC 3339, section 5.6, for example, 2017-07-21T17:32:28Z
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:47:13: warning: static property 'dateTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
45 |
46 | /// the date-time notation as defined by RFC 3339, section 5.6, for example, 2017-07-21T17:32:28Z
47 | static var dateTime: DataFormat = "date-time"
| |- warning: static property 'dateTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'dateTime' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'dateTime' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 | /// a hint to UIs to mask the input
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:50:13: warning: static property 'password' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
48 |
49 | /// a hint to UIs to mask the input
50 | static var password: DataFormat = "password"
| |- warning: static property 'password' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'password' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'password' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 |
52 | /// base64-encoded characters, for example, U3dhZ2dlciByb2Nrcw==
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:53:13: warning: static property 'byte' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
51 |
52 | /// base64-encoded characters, for example, U3dhZ2dlciByb2Nrcw==
53 | static var byte: DataFormat = "byte"
| |- warning: static property 'byte' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'byte' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'byte' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |
55 | /// binary data, used to describe files
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:56:13: warning: static property 'binary' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
54 |
55 | /// binary data, used to describe files
56 | static var binary: DataFormat = "binary"
| |- warning: static property 'binary' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'binary' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'binary' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
57 | }
58 |
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:31:13: warning: static property 'email' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 | public extension DataFormat {
30 |
31 | static var email: DataFormat = "email"
| |- warning: static property 'email' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'email' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'email' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | static var uuid: DataFormat = "uuid"
33 | static var uri: DataFormat = "uri"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:32:13: warning: static property 'uuid' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
30 |
31 | static var email: DataFormat = "email"
32 | static var uuid: DataFormat = "uuid"
| |- warning: static property 'uuid' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'uuid' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'uuid' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 | static var uri: DataFormat = "uri"
34 | static var hostname: DataFormat = "hostname"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:33:13: warning: static property 'uri' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
31 | static var email: DataFormat = "email"
32 | static var uuid: DataFormat = "uuid"
33 | static var uri: DataFormat = "uri"
| |- warning: static property 'uri' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'uri' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'uri' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 | static var hostname: DataFormat = "hostname"
35 | static var ipv4: DataFormat = "ipv4"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:34:13: warning: static property 'hostname' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
32 | static var uuid: DataFormat = "uuid"
33 | static var uri: DataFormat = "uri"
34 | static var hostname: DataFormat = "hostname"
| |- warning: static property 'hostname' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'hostname' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'hostname' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 | static var ipv4: DataFormat = "ipv4"
36 | static var ipv6: DataFormat = "ipv6"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:35:13: warning: static property 'ipv4' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
33 | static var uri: DataFormat = "uri"
34 | static var hostname: DataFormat = "hostname"
35 | static var ipv4: DataFormat = "ipv4"
| |- warning: static property 'ipv4' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'ipv4' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'ipv4' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 | static var ipv6: DataFormat = "ipv6"
37 | static var int64: DataFormat = "int64"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:36:13: warning: static property 'ipv6' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
34 | static var hostname: DataFormat = "hostname"
35 | static var ipv4: DataFormat = "ipv4"
36 | static var ipv6: DataFormat = "ipv6"
| |- warning: static property 'ipv6' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'ipv6' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'ipv6' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | static var int64: DataFormat = "int64"
38 | static var int32: DataFormat = "int32"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:37:13: warning: static property 'int64' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
35 | static var ipv4: DataFormat = "ipv4"
36 | static var ipv6: DataFormat = "ipv6"
37 | static var int64: DataFormat = "int64"
| |- warning: static property 'int64' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'int64' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'int64' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 | static var int32: DataFormat = "int32"
39 | static var double: DataFormat = "double"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:38:13: warning: static property 'int32' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
36 | static var ipv6: DataFormat = "ipv6"
37 | static var int64: DataFormat = "int64"
38 | static var int32: DataFormat = "int32"
| |- warning: static property 'int32' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'int32' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'int32' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 | static var double: DataFormat = "double"
40 | static var float: DataFormat = "float"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:39:13: warning: static property 'double' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
37 | static var int64: DataFormat = "int64"
38 | static var int32: DataFormat = "int32"
39 | static var double: DataFormat = "double"
| |- warning: static property 'double' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'double' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'double' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 | static var float: DataFormat = "float"
41 | static var decimal: DataFormat = "decimal"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:40:13: warning: static property 'float' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
38 | static var int32: DataFormat = "int32"
39 | static var double: DataFormat = "double"
40 | static var float: DataFormat = "float"
| |- warning: static property 'float' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'float' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'float' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
41 | static var decimal: DataFormat = "decimal"
42 |
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:41:13: warning: static property 'decimal' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
39 | static var double: DataFormat = "double"
40 | static var float: DataFormat = "float"
41 | static var decimal: DataFormat = "decimal"
| |- warning: static property 'decimal' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'decimal' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'decimal' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |
43 | /// full-date notation as defined by RFC 3339, section 5.6, for example, 2017-07-21
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:44:13: warning: static property 'date' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
42 |
43 | /// full-date notation as defined by RFC 3339, section 5.6, for example, 2017-07-21
44 | static var date: DataFormat = "date"
| |- warning: static property 'date' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'date' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'date' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |
46 | /// the date-time notation as defined by RFC 3339, section 5.6, for example, 2017-07-21T17:32:28Z
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:47:13: warning: static property 'dateTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
45 |
46 | /// the date-time notation as defined by RFC 3339, section 5.6, for example, 2017-07-21T17:32:28Z
47 | static var dateTime: DataFormat = "date-time"
| |- warning: static property 'dateTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'dateTime' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'dateTime' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 | /// a hint to UIs to mask the input
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:50:13: warning: static property 'password' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
48 |
49 | /// a hint to UIs to mask the input
50 | static var password: DataFormat = "password"
| |- warning: static property 'password' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'password' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'password' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 |
52 | /// base64-encoded characters, for example, U3dhZ2dlciByb2Nrcw==
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:53:13: warning: static property 'byte' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
51 |
52 | /// base64-encoded characters, for example, U3dhZ2dlciByb2Nrcw==
53 | static var byte: DataFormat = "byte"
| |- warning: static property 'byte' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'byte' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'byte' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |
55 | /// binary data, used to describe files
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:56:13: warning: static property 'binary' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
54 |
55 | /// binary data, used to describe files
56 | static var binary: DataFormat = "binary"
| |- warning: static property 'binary' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'binary' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'binary' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
57 | }
58 |
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:31:13: warning: static property 'email' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 | public extension DataFormat {
30 |
31 | static var email: DataFormat = "email"
| |- warning: static property 'email' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'email' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'email' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | static var uuid: DataFormat = "uuid"
33 | static var uri: DataFormat = "uri"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:32:13: warning: static property 'uuid' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
30 |
31 | static var email: DataFormat = "email"
32 | static var uuid: DataFormat = "uuid"
| |- warning: static property 'uuid' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'uuid' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'uuid' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 | static var uri: DataFormat = "uri"
34 | static var hostname: DataFormat = "hostname"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:33:13: warning: static property 'uri' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
31 | static var email: DataFormat = "email"
32 | static var uuid: DataFormat = "uuid"
33 | static var uri: DataFormat = "uri"
| |- warning: static property 'uri' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'uri' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'uri' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 | static var hostname: DataFormat = "hostname"
35 | static var ipv4: DataFormat = "ipv4"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:34:13: warning: static property 'hostname' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
32 | static var uuid: DataFormat = "uuid"
33 | static var uri: DataFormat = "uri"
34 | static var hostname: DataFormat = "hostname"
| |- warning: static property 'hostname' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'hostname' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'hostname' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 | static var ipv4: DataFormat = "ipv4"
36 | static var ipv6: DataFormat = "ipv6"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:35:13: warning: static property 'ipv4' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
33 | static var uri: DataFormat = "uri"
34 | static var hostname: DataFormat = "hostname"
35 | static var ipv4: DataFormat = "ipv4"
| |- warning: static property 'ipv4' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'ipv4' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'ipv4' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 | static var ipv6: DataFormat = "ipv6"
37 | static var int64: DataFormat = "int64"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:36:13: warning: static property 'ipv6' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
34 | static var hostname: DataFormat = "hostname"
35 | static var ipv4: DataFormat = "ipv4"
36 | static var ipv6: DataFormat = "ipv6"
| |- warning: static property 'ipv6' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'ipv6' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'ipv6' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | static var int64: DataFormat = "int64"
38 | static var int32: DataFormat = "int32"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:37:13: warning: static property 'int64' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
35 | static var ipv4: DataFormat = "ipv4"
36 | static var ipv6: DataFormat = "ipv6"
37 | static var int64: DataFormat = "int64"
| |- warning: static property 'int64' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'int64' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'int64' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 | static var int32: DataFormat = "int32"
39 | static var double: DataFormat = "double"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:38:13: warning: static property 'int32' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
36 | static var ipv6: DataFormat = "ipv6"
37 | static var int64: DataFormat = "int64"
38 | static var int32: DataFormat = "int32"
| |- warning: static property 'int32' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'int32' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'int32' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 | static var double: DataFormat = "double"
40 | static var float: DataFormat = "float"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:39:13: warning: static property 'double' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
37 | static var int64: DataFormat = "int64"
38 | static var int32: DataFormat = "int32"
39 | static var double: DataFormat = "double"
| |- warning: static property 'double' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'double' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'double' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 | static var float: DataFormat = "float"
41 | static var decimal: DataFormat = "decimal"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:40:13: warning: static property 'float' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
38 | static var int32: DataFormat = "int32"
39 | static var double: DataFormat = "double"
40 | static var float: DataFormat = "float"
| |- warning: static property 'float' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'float' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'float' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
41 | static var decimal: DataFormat = "decimal"
42 |
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:41:13: warning: static property 'decimal' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
39 | static var double: DataFormat = "double"
40 | static var float: DataFormat = "float"
41 | static var decimal: DataFormat = "decimal"
| |- warning: static property 'decimal' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'decimal' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'decimal' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |
43 | /// full-date notation as defined by RFC 3339, section 5.6, for example, 2017-07-21
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:44:13: warning: static property 'date' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
42 |
43 | /// full-date notation as defined by RFC 3339, section 5.6, for example, 2017-07-21
44 | static var date: DataFormat = "date"
| |- warning: static property 'date' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'date' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'date' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |
46 | /// the date-time notation as defined by RFC 3339, section 5.6, for example, 2017-07-21T17:32:28Z
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:47:13: warning: static property 'dateTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
45 |
46 | /// the date-time notation as defined by RFC 3339, section 5.6, for example, 2017-07-21T17:32:28Z
47 | static var dateTime: DataFormat = "date-time"
| |- warning: static property 'dateTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'dateTime' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'dateTime' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 | /// a hint to UIs to mask the input
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:50:13: warning: static property 'password' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
48 |
49 | /// a hint to UIs to mask the input
50 | static var password: DataFormat = "password"
| |- warning: static property 'password' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'password' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'password' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 |
52 | /// base64-encoded characters, for example, U3dhZ2dlciByb2Nrcw==
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:53:13: warning: static property 'byte' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
51 |
52 | /// base64-encoded characters, for example, U3dhZ2dlciByb2Nrcw==
53 | static var byte: DataFormat = "byte"
| |- warning: static property 'byte' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'byte' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'byte' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |
55 | /// binary data, used to describe files
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:56:13: warning: static property 'binary' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
54 |
55 | /// binary data, used to describe files
56 | static var binary: DataFormat = "binary"
| |- warning: static property 'binary' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'binary' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'binary' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
57 | }
58 |
[329/431] Compiling SwiftOpenAPI TypeRevision.swift
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/DateEncodingFormat.swift:77:13: warning: let 'defaultDateEncodingFormat' is not concurrency-safe because non-'Sendable' type 'Lock<DateEncodingFormat>' may have shared mutable state; this is an error in the Swift 6 language mode
75 | }
76 |
77 | private let defaultDateEncodingFormat = Lock(DateEncodingFormat.dateTime)
| |- warning: let 'defaultDateEncodingFormat' is not concurrency-safe because non-'Sendable' type 'Lock<DateEncodingFormat>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'defaultDateEncodingFormat' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
78 |
79 | private let isoFormatter = ISO8601DateFormatter()
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:189:13: note: generic class 'Lock' does not conform to the 'Sendable' protocol
187 |
188 | @propertyWrapper
189 | final class Lock<T> {
| `- note: generic class 'Lock' does not conform to the 'Sendable' protocol
190 |
191 | private let lock = ReadWriteLock()
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/DateEncodingFormat.swift:79:13: warning: let 'isoFormatter' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
77 | private let defaultDateEncodingFormat = Lock(DateEncodingFormat.dateTime)
78 |
79 | private let isoFormatter = ISO8601DateFormatter()
| |- warning: let 'isoFormatter' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'isoFormatter' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
80 | private let dateFormatter = DateFormatter()
81 |
Foundation.ISO8601DateFormatter:1:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
1 | open class ISO8601DateFormatter : Formatter, NSSecureCoding {
| `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
2 | open var timeZone: TimeZone! { get set }
3 | open var formatOptions: ISO8601DateFormatter.Options { get set }
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/KeyEncodingStrategy.swift:19:13: warning: static property 'useDefaultKeys' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
17 | }
18 |
19 | static var useDefaultKeys: KeyEncodingStrategy = .custom { $0 }
| |- warning: static property 'useDefaultKeys' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'useDefaultKeys' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'useDefaultKeys' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 | static func custom(_ encode: @escaping (String) -> String) -> KeyEncodingStrategy {
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/KeyEncodingStrategy.swift:36:13: warning: let 'defaultKeyEncodingStrategy' is not concurrency-safe because non-'Sendable' type 'Lock<KeyEncodingStrategy>' may have shared mutable state; this is an error in the Swift 6 language mode
34 | }
35 |
36 | private let defaultKeyEncodingStrategy = Lock(KeyEncodingStrategy.useDefaultKeys)
| |- warning: let 'defaultKeyEncodingStrategy' is not concurrency-safe because non-'Sendable' type 'Lock<KeyEncodingStrategy>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'defaultKeyEncodingStrategy' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:189:13: note: generic class 'Lock' does not conform to the 'Sendable' protocol
187 |
188 | @propertyWrapper
189 | final class Lock<T> {
| `- note: generic class 'Lock' does not conform to the 'Sendable' protocol
190 |
191 | private let lock = ReadWriteLock()
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/TypeRevision/CodableTypes.swift:5:13: warning: static property 'any' is not concurrency-safe because non-'Sendable' type 'TypeInfo' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | struct TypeInfo {
| `- note: consider making struct 'TypeInfo' conform to the 'Sendable' protocol
4 |
5 | static let any = TypeInfo(type: Any.self, container: .single(.null))
| |- warning: static property 'any' is not concurrency-safe because non-'Sendable' type 'TypeInfo' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'any' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
6 |
7 | var type: Any.Type
[330/431] Compiling SwiftOpenAPI TypeRevisionDecoder.swift
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/DateEncodingFormat.swift:77:13: warning: let 'defaultDateEncodingFormat' is not concurrency-safe because non-'Sendable' type 'Lock<DateEncodingFormat>' may have shared mutable state; this is an error in the Swift 6 language mode
75 | }
76 |
77 | private let defaultDateEncodingFormat = Lock(DateEncodingFormat.dateTime)
| |- warning: let 'defaultDateEncodingFormat' is not concurrency-safe because non-'Sendable' type 'Lock<DateEncodingFormat>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'defaultDateEncodingFormat' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
78 |
79 | private let isoFormatter = ISO8601DateFormatter()
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:189:13: note: generic class 'Lock' does not conform to the 'Sendable' protocol
187 |
188 | @propertyWrapper
189 | final class Lock<T> {
| `- note: generic class 'Lock' does not conform to the 'Sendable' protocol
190 |
191 | private let lock = ReadWriteLock()
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/DateEncodingFormat.swift:79:13: warning: let 'isoFormatter' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
77 | private let defaultDateEncodingFormat = Lock(DateEncodingFormat.dateTime)
78 |
79 | private let isoFormatter = ISO8601DateFormatter()
| |- warning: let 'isoFormatter' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'isoFormatter' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
80 | private let dateFormatter = DateFormatter()
81 |
Foundation.ISO8601DateFormatter:1:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
1 | open class ISO8601DateFormatter : Formatter, NSSecureCoding {
| `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
2 | open var timeZone: TimeZone! { get set }
3 | open var formatOptions: ISO8601DateFormatter.Options { get set }
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/KeyEncodingStrategy.swift:19:13: warning: static property 'useDefaultKeys' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
17 | }
18 |
19 | static var useDefaultKeys: KeyEncodingStrategy = .custom { $0 }
| |- warning: static property 'useDefaultKeys' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'useDefaultKeys' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'useDefaultKeys' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 | static func custom(_ encode: @escaping (String) -> String) -> KeyEncodingStrategy {
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/KeyEncodingStrategy.swift:36:13: warning: let 'defaultKeyEncodingStrategy' is not concurrency-safe because non-'Sendable' type 'Lock<KeyEncodingStrategy>' may have shared mutable state; this is an error in the Swift 6 language mode
34 | }
35 |
36 | private let defaultKeyEncodingStrategy = Lock(KeyEncodingStrategy.useDefaultKeys)
| |- warning: let 'defaultKeyEncodingStrategy' is not concurrency-safe because non-'Sendable' type 'Lock<KeyEncodingStrategy>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'defaultKeyEncodingStrategy' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:189:13: note: generic class 'Lock' does not conform to the 'Sendable' protocol
187 |
188 | @propertyWrapper
189 | final class Lock<T> {
| `- note: generic class 'Lock' does not conform to the 'Sendable' protocol
190 |
191 | private let lock = ReadWriteLock()
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/TypeRevision/CodableTypes.swift:5:13: warning: static property 'any' is not concurrency-safe because non-'Sendable' type 'TypeInfo' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | struct TypeInfo {
| `- note: consider making struct 'TypeInfo' conform to the 'Sendable' protocol
4 |
5 | static let any = TypeInfo(type: Any.self, container: .single(.null))
| |- warning: static property 'any' is not concurrency-safe because non-'Sendable' type 'TypeInfo' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'any' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
6 |
7 | var type: Any.Type
[331/431] Compiling SwiftOpenAPI TypeRevisionEncoder.swift
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/DateEncodingFormat.swift:77:13: warning: let 'defaultDateEncodingFormat' is not concurrency-safe because non-'Sendable' type 'Lock<DateEncodingFormat>' may have shared mutable state; this is an error in the Swift 6 language mode
75 | }
76 |
77 | private let defaultDateEncodingFormat = Lock(DateEncodingFormat.dateTime)
| |- warning: let 'defaultDateEncodingFormat' is not concurrency-safe because non-'Sendable' type 'Lock<DateEncodingFormat>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'defaultDateEncodingFormat' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
78 |
79 | private let isoFormatter = ISO8601DateFormatter()
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:189:13: note: generic class 'Lock' does not conform to the 'Sendable' protocol
187 |
188 | @propertyWrapper
189 | final class Lock<T> {
| `- note: generic class 'Lock' does not conform to the 'Sendable' protocol
190 |
191 | private let lock = ReadWriteLock()
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/DateEncodingFormat.swift:79:13: warning: let 'isoFormatter' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
77 | private let defaultDateEncodingFormat = Lock(DateEncodingFormat.dateTime)
78 |
79 | private let isoFormatter = ISO8601DateFormatter()
| |- warning: let 'isoFormatter' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'isoFormatter' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
80 | private let dateFormatter = DateFormatter()
81 |
Foundation.ISO8601DateFormatter:1:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
1 | open class ISO8601DateFormatter : Formatter, NSSecureCoding {
| `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
2 | open var timeZone: TimeZone! { get set }
3 | open var formatOptions: ISO8601DateFormatter.Options { get set }
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/KeyEncodingStrategy.swift:19:13: warning: static property 'useDefaultKeys' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
17 | }
18 |
19 | static var useDefaultKeys: KeyEncodingStrategy = .custom { $0 }
| |- warning: static property 'useDefaultKeys' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'useDefaultKeys' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'useDefaultKeys' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 | static func custom(_ encode: @escaping (String) -> String) -> KeyEncodingStrategy {
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/KeyEncodingStrategy.swift:36:13: warning: let 'defaultKeyEncodingStrategy' is not concurrency-safe because non-'Sendable' type 'Lock<KeyEncodingStrategy>' may have shared mutable state; this is an error in the Swift 6 language mode
34 | }
35 |
36 | private let defaultKeyEncodingStrategy = Lock(KeyEncodingStrategy.useDefaultKeys)
| |- warning: let 'defaultKeyEncodingStrategy' is not concurrency-safe because non-'Sendable' type 'Lock<KeyEncodingStrategy>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'defaultKeyEncodingStrategy' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:189:13: note: generic class 'Lock' does not conform to the 'Sendable' protocol
187 |
188 | @propertyWrapper
189 | final class Lock<T> {
| `- note: generic class 'Lock' does not conform to the 'Sendable' protocol
190 |
191 | private let lock = ReadWriteLock()
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/TypeRevision/CodableTypes.swift:5:13: warning: static property 'any' is not concurrency-safe because non-'Sendable' type 'TypeInfo' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | struct TypeInfo {
| `- note: consider making struct 'TypeInfo' conform to the 'Sendable' protocol
4 |
5 | static let any = TypeInfo(type: Any.self, container: .single(.null))
| |- warning: static property 'any' is not concurrency-safe because non-'Sendable' type 'TypeInfo' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'any' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
6 |
7 | var type: Any.Type
[332/431] Compiling SwiftOpenAPI AnyValue.swift
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/DateEncodingFormat.swift:77:13: warning: let 'defaultDateEncodingFormat' is not concurrency-safe because non-'Sendable' type 'Lock<DateEncodingFormat>' may have shared mutable state; this is an error in the Swift 6 language mode
75 | }
76 |
77 | private let defaultDateEncodingFormat = Lock(DateEncodingFormat.dateTime)
| |- warning: let 'defaultDateEncodingFormat' is not concurrency-safe because non-'Sendable' type 'Lock<DateEncodingFormat>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'defaultDateEncodingFormat' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
78 |
79 | private let isoFormatter = ISO8601DateFormatter()
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:189:13: note: generic class 'Lock' does not conform to the 'Sendable' protocol
187 |
188 | @propertyWrapper
189 | final class Lock<T> {
| `- note: generic class 'Lock' does not conform to the 'Sendable' protocol
190 |
191 | private let lock = ReadWriteLock()
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/DateEncodingFormat.swift:79:13: warning: let 'isoFormatter' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
77 | private let defaultDateEncodingFormat = Lock(DateEncodingFormat.dateTime)
78 |
79 | private let isoFormatter = ISO8601DateFormatter()
| |- warning: let 'isoFormatter' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'isoFormatter' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
80 | private let dateFormatter = DateFormatter()
81 |
Foundation.ISO8601DateFormatter:1:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
1 | open class ISO8601DateFormatter : Formatter, NSSecureCoding {
| `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
2 | open var timeZone: TimeZone! { get set }
3 | open var formatOptions: ISO8601DateFormatter.Options { get set }
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/KeyEncodingStrategy.swift:19:13: warning: static property 'useDefaultKeys' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
17 | }
18 |
19 | static var useDefaultKeys: KeyEncodingStrategy = .custom { $0 }
| |- warning: static property 'useDefaultKeys' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'useDefaultKeys' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'useDefaultKeys' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 | static func custom(_ encode: @escaping (String) -> String) -> KeyEncodingStrategy {
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/KeyEncodingStrategy.swift:36:13: warning: let 'defaultKeyEncodingStrategy' is not concurrency-safe because non-'Sendable' type 'Lock<KeyEncodingStrategy>' may have shared mutable state; this is an error in the Swift 6 language mode
34 | }
35 |
36 | private let defaultKeyEncodingStrategy = Lock(KeyEncodingStrategy.useDefaultKeys)
| |- warning: let 'defaultKeyEncodingStrategy' is not concurrency-safe because non-'Sendable' type 'Lock<KeyEncodingStrategy>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'defaultKeyEncodingStrategy' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:189:13: note: generic class 'Lock' does not conform to the 'Sendable' protocol
187 |
188 | @propertyWrapper
189 | final class Lock<T> {
| `- note: generic class 'Lock' does not conform to the 'Sendable' protocol
190 |
191 | private let lock = ReadWriteLock()
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/TypeRevision/CodableTypes.swift:5:13: warning: static property 'any' is not concurrency-safe because non-'Sendable' type 'TypeInfo' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | struct TypeInfo {
| `- note: consider making struct 'TypeInfo' conform to the 'Sendable' protocol
4 |
5 | static let any = TypeInfo(type: Any.self, container: .single(.null))
| |- warning: static property 'any' is not concurrency-safe because non-'Sendable' type 'TypeInfo' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'any' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
6 |
7 | var type: Any.Type
[333/431] Compiling SwiftOpenAPI CallbackObject.swift
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/DateEncodingFormat.swift:77:13: warning: let 'defaultDateEncodingFormat' is not concurrency-safe because non-'Sendable' type 'Lock<DateEncodingFormat>' may have shared mutable state; this is an error in the Swift 6 language mode
75 | }
76 |
77 | private let defaultDateEncodingFormat = Lock(DateEncodingFormat.dateTime)
| |- warning: let 'defaultDateEncodingFormat' is not concurrency-safe because non-'Sendable' type 'Lock<DateEncodingFormat>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'defaultDateEncodingFormat' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
78 |
79 | private let isoFormatter = ISO8601DateFormatter()
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:189:13: note: generic class 'Lock' does not conform to the 'Sendable' protocol
187 |
188 | @propertyWrapper
189 | final class Lock<T> {
| `- note: generic class 'Lock' does not conform to the 'Sendable' protocol
190 |
191 | private let lock = ReadWriteLock()
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/DateEncodingFormat.swift:79:13: warning: let 'isoFormatter' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
77 | private let defaultDateEncodingFormat = Lock(DateEncodingFormat.dateTime)
78 |
79 | private let isoFormatter = ISO8601DateFormatter()
| |- warning: let 'isoFormatter' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'isoFormatter' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
80 | private let dateFormatter = DateFormatter()
81 |
Foundation.ISO8601DateFormatter:1:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
1 | open class ISO8601DateFormatter : Formatter, NSSecureCoding {
| `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
2 | open var timeZone: TimeZone! { get set }
3 | open var formatOptions: ISO8601DateFormatter.Options { get set }
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/KeyEncodingStrategy.swift:19:13: warning: static property 'useDefaultKeys' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
17 | }
18 |
19 | static var useDefaultKeys: KeyEncodingStrategy = .custom { $0 }
| |- warning: static property 'useDefaultKeys' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'useDefaultKeys' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'useDefaultKeys' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 | static func custom(_ encode: @escaping (String) -> String) -> KeyEncodingStrategy {
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/KeyEncodingStrategy.swift:36:13: warning: let 'defaultKeyEncodingStrategy' is not concurrency-safe because non-'Sendable' type 'Lock<KeyEncodingStrategy>' may have shared mutable state; this is an error in the Swift 6 language mode
34 | }
35 |
36 | private let defaultKeyEncodingStrategy = Lock(KeyEncodingStrategy.useDefaultKeys)
| |- warning: let 'defaultKeyEncodingStrategy' is not concurrency-safe because non-'Sendable' type 'Lock<KeyEncodingStrategy>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'defaultKeyEncodingStrategy' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:189:13: note: generic class 'Lock' does not conform to the 'Sendable' protocol
187 |
188 | @propertyWrapper
189 | final class Lock<T> {
| `- note: generic class 'Lock' does not conform to the 'Sendable' protocol
190 |
191 | private let lock = ReadWriteLock()
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/TypeRevision/CodableTypes.swift:5:13: warning: static property 'any' is not concurrency-safe because non-'Sendable' type 'TypeInfo' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | struct TypeInfo {
| `- note: consider making struct 'TypeInfo' conform to the 'Sendable' protocol
4 |
5 | static let any = TypeInfo(type: Any.self, container: .single(.null))
| |- warning: static property 'any' is not concurrency-safe because non-'Sendable' type 'TypeInfo' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'any' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
6 |
7 | var type: Any.Type
[334/431] Compiling SwiftOpenAPI ComponentsObject.swift
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/DateEncodingFormat.swift:77:13: warning: let 'defaultDateEncodingFormat' is not concurrency-safe because non-'Sendable' type 'Lock<DateEncodingFormat>' may have shared mutable state; this is an error in the Swift 6 language mode
75 | }
76 |
77 | private let defaultDateEncodingFormat = Lock(DateEncodingFormat.dateTime)
| |- warning: let 'defaultDateEncodingFormat' is not concurrency-safe because non-'Sendable' type 'Lock<DateEncodingFormat>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'defaultDateEncodingFormat' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
78 |
79 | private let isoFormatter = ISO8601DateFormatter()
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:189:13: note: generic class 'Lock' does not conform to the 'Sendable' protocol
187 |
188 | @propertyWrapper
189 | final class Lock<T> {
| `- note: generic class 'Lock' does not conform to the 'Sendable' protocol
190 |
191 | private let lock = ReadWriteLock()
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/DateEncodingFormat.swift:79:13: warning: let 'isoFormatter' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
77 | private let defaultDateEncodingFormat = Lock(DateEncodingFormat.dateTime)
78 |
79 | private let isoFormatter = ISO8601DateFormatter()
| |- warning: let 'isoFormatter' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'isoFormatter' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
80 | private let dateFormatter = DateFormatter()
81 |
Foundation.ISO8601DateFormatter:1:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
1 | open class ISO8601DateFormatter : Formatter, NSSecureCoding {
| `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
2 | open var timeZone: TimeZone! { get set }
3 | open var formatOptions: ISO8601DateFormatter.Options { get set }
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/KeyEncodingStrategy.swift:19:13: warning: static property 'useDefaultKeys' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
17 | }
18 |
19 | static var useDefaultKeys: KeyEncodingStrategy = .custom { $0 }
| |- warning: static property 'useDefaultKeys' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'useDefaultKeys' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'useDefaultKeys' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 | static func custom(_ encode: @escaping (String) -> String) -> KeyEncodingStrategy {
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/KeyEncodingStrategy.swift:36:13: warning: let 'defaultKeyEncodingStrategy' is not concurrency-safe because non-'Sendable' type 'Lock<KeyEncodingStrategy>' may have shared mutable state; this is an error in the Swift 6 language mode
34 | }
35 |
36 | private let defaultKeyEncodingStrategy = Lock(KeyEncodingStrategy.useDefaultKeys)
| |- warning: let 'defaultKeyEncodingStrategy' is not concurrency-safe because non-'Sendable' type 'Lock<KeyEncodingStrategy>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'defaultKeyEncodingStrategy' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:189:13: note: generic class 'Lock' does not conform to the 'Sendable' protocol
187 |
188 | @propertyWrapper
189 | final class Lock<T> {
| `- note: generic class 'Lock' does not conform to the 'Sendable' protocol
190 |
191 | private let lock = ReadWriteLock()
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/TypeRevision/CodableTypes.swift:5:13: warning: static property 'any' is not concurrency-safe because non-'Sendable' type 'TypeInfo' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | struct TypeInfo {
| `- note: consider making struct 'TypeInfo' conform to the 'Sendable' protocol
4 |
5 | static let any = TypeInfo(type: Any.self, container: .single(.null))
| |- warning: static property 'any' is not concurrency-safe because non-'Sendable' type 'TypeInfo' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'any' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
6 |
7 | var type: Any.Type
swift-build: /home/build-user/llbuild/lib/Core/SQLiteBuildDB.cpp:703: virtual void (anonymous namespace)::SQLiteBuildDB::buildComplete(): Assertion `result == SQLITE_OK' failed.
*** Signal 6: Backtracing from 0x7f7dd9fc29fc... done ***
*** Program crashed: Aborted at 0x0000000000000001 ***
Thread 0 "swift-build":
0 0x00007f7dd9f6e80a <unknown> in libc.so.6
Thread 1:
0 0x00007f7dda051e2e <unknown> in libc.so.6
Thread 2 crashed:
0 0x00007f7dd9fc29fc <unknown> in libc.so.6
Thread 3:
0 0x00007f7dd7e45aed icu::RegexMatcher::MatchChunkAt(int, signed char, UErrorCode&) + 461 in lib_FoundationICU.so
Registers:
rax 0x0000000000000000 0
rdx 0x00007f7dcf7fe640 40 e6 7f cf 7d 7f 00 00 20 27 00 d0 7d 7f 00 00 @æ·Ï}··· '·Ð}···
rcx 0x00007f7dd9fc29fc 41 89 c5 41 f7 dd 3d 00 f0 ff ff b8 00 00 00 00 A·ÅA÷Ý=·ðÿÿ¸····
rbx 0x0000000000000006 6
rsi 0x0000000000000001 1
rdi 0x000000000000005b 91
rbp 0x000000000000005b 91
rsp 0x00007f7dcf7fd310 dc 17 07 b8 7d 7f 00 00 b0 16 07 b8 7d 7f 00 00 Ü··¸}···°··¸}···
r8 0x00007f7dcf7fd3e0 20 00 00 00 00 00 00 00 a0 76 14 da 7d 7f 00 00 ······· v·Ú}···
r9 0x0000000000000000 0
r10 0x0000000000000008 8
r11 0x0000000000000246 582
r12 0x0000000000000006 6
r13 0x0000000000000016 22
r14 0x000055dd00d15554 72 65 73 75 6c 74 20 3d 3d 20 53 51 4c 49 54 45 result == SQLITE
r15 0x00007f7db8006ea0 d8 6a c4 00 dd 55 00 00 d8 f0 08 b8 7d 7f 00 00 ØjÄ·ÝU··Øð·¸}···
rip 0x00007f7dd9fc29fc 41 89 c5 41 f7 dd 3d 00 f0 ff ff b8 00 00 00 00 A·ÅA÷Ý=·ðÿÿ¸····
rflags 0x0000000000000246 ZF PF
cs 0x0033 fs 0x0000 gs 0x0000
Images (70 omitted):
0x00007f7dd7b37000–0x00007f7dd9efd860 <no build ID> lib_FoundationICU.so /usr/lib/swift/linux/lib_FoundationICU.so
0x00007f7dd9f2c000–0x00007f7dda0e8341 cd410b710f0f094c6832edd95931006d883af48e libc.so.6 /usr/lib/x86_64-linux-gnu/libc.so.6
Backtrace took 0.05s
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/finestructure/spi-images:basic-6.1-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
basic-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:808cb2b2a6cec76654a3acbd283c6c2205bc60d2b29562c95b9f5147612f6d32
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.1-latest
[0/1] Planning build
Building for debugging...
[0/18] Write swift-version-24593BA9C3E375BF.txt
[2/21] Compiling SwiftSyntax600 Empty.swift
[3/24] Emitting module SwiftSyntax600
[4/25] Compiling SwiftSyntax510 Empty.swift
[5/25] Emitting module SwiftSyntax510
[6/26] Emitting module SwiftSyntax509
[7/26] Compiling SwiftSyntax509 Empty.swift
[11/88] Compiling SwiftSyntax SyntaxNodeFactory.swift
[12/88] Compiling SwiftSyntax SyntaxNodeStructure.swift
[13/88] Compiling SwiftSyntax SyntaxProtocol.swift
[14/88] Compiling SwiftSyntax SyntaxText.swift
[15/88] Compiling SwiftSyntax SyntaxTreeViewMode.swift
[16/88] Compiling SwiftSyntax TokenDiagnostic.swift
[17/88] Compiling SwiftSyntax TokenSequence.swift
[18/88] Compiling SwiftSyntax TokenSyntax.swift
[19/88] Compiling SwiftSyntax Trivia.swift
[20/96] Compiling SwiftSyntax MemoryLayout.swift
[21/96] Compiling SwiftSyntax MissingNodeInitializers.swift
[22/96] Compiling SwiftSyntax RawSyntax.swift
[23/96] Compiling SwiftSyntax RawSyntaxLayoutView.swift
[24/96] Compiling SwiftSyntax RawSyntaxNodeProtocol.swift
[25/96] Compiling SwiftSyntax RawSyntaxTokenView.swift
[26/96] Compiling SwiftSyntax SourceEdit.swift
[27/96] Compiling SwiftSyntax SourceLength.swift
[28/96] Compiling SwiftSyntax SourceLocation.swift
[29/96] Compiling SwiftSyntax AbsolutePosition.swift
[30/96] Compiling SwiftSyntax AbsoluteRawSyntax.swift
[31/96] Compiling SwiftSyntax AbsoluteSyntaxInfo.swift
[32/96] Compiling SwiftSyntax Assert.swift
[33/96] Compiling SwiftSyntax BumpPtrAllocator.swift
[34/96] Compiling SwiftSyntax CommonAncestor.swift
[35/96] Compiling SwiftSyntax Convenience.swift
[36/96] Compiling SwiftSyntax CustomTraits.swift
[37/96] Compiling SwiftSyntax Identifier.swift
[38/96] Emitting module SwiftSyntax
[39/96] Compiling SwiftSyntax SyntaxKind.swift
[40/96] Compiling SwiftSyntax SyntaxRewriter.swift
[41/96] Compiling SwiftSyntax SyntaxTraits.swift
[42/96] Compiling SwiftSyntax SyntaxVisitor.swift
[43/96] Compiling SwiftSyntax TokenKind.swift
[44/96] Compiling SwiftSyntax Tokens.swift
[45/96] Compiling SwiftSyntax TriviaPieces.swift
[46/96] Compiling SwiftSyntax RawSyntaxNodesAB.swift
[47/96] Compiling SwiftSyntax RawSyntaxNodesC.swift
[48/96] Compiling SwiftSyntax RawSyntaxNodesD.swift
[49/96] Compiling SwiftSyntax RawSyntaxNodesEF.swift
[50/96] Compiling SwiftSyntax RawSyntaxNodesGHI.swift
[51/96] Compiling SwiftSyntax RawSyntaxNodesJKLMN.swift
[52/96] Compiling SwiftSyntax RawSyntaxNodesOP.swift
[53/96] Compiling SwiftSyntax RawSyntaxNodesQRS.swift
[54/96] Compiling SwiftSyntax RawSyntaxNodesTUVWXYZ.swift
[55/96] Compiling SwiftSyntax RawSyntaxValidation.swift
[56/96] Compiling SwiftSyntax SyntaxNodesAB.swift
[57/96] Compiling SwiftSyntax SyntaxNodesC.swift
[58/96] Compiling SwiftSyntax SyntaxNodesD.swift
[59/96] Compiling SwiftSyntax SyntaxNodesEF.swift
[60/96] Compiling SwiftSyntax SyntaxNodesGHI.swift
[61/96] Compiling SwiftSyntax SyntaxNodesJKLMN.swift
[62/96] Compiling SwiftSyntax SyntaxNodesOP.swift
[63/96] Compiling SwiftSyntax SyntaxNodesQRS.swift
[64/96] Compiling SwiftSyntax SyntaxNodesTUVWXYZ.swift
[65/96] Compiling SwiftSyntax Utils.swift
[66/96] Compiling SwiftSyntax ChildNameForKeyPath.swift
[67/96] Compiling SwiftSyntax Keyword.swift
[68/96] Compiling SwiftSyntax RenamedChildrenCompatibility.swift
[69/96] Compiling SwiftSyntax RenamedNodesCompatibility.swift
[70/96] Compiling SwiftSyntax SyntaxAnyVisitor.swift
[71/96] Compiling SwiftSyntax SyntaxBaseNodes.swift
[72/96] Compiling SwiftSyntax SyntaxCollections.swift
[73/96] Compiling SwiftSyntax SyntaxEnum.swift
[74/96] Compiling SwiftSyntax SourcePresence.swift
[75/96] Compiling SwiftSyntax SwiftSyntaxCompatibility.swift
[76/96] Compiling SwiftSyntax Syntax.swift
[77/96] Compiling SwiftSyntax SyntaxArena.swift
[78/96] Compiling SwiftSyntax SyntaxArenaAllocatedBuffer.swift
[79/96] Compiling SwiftSyntax SyntaxChildren.swift
[80/96] Compiling SwiftSyntax SyntaxCollection.swift
[81/96] Compiling SwiftSyntax SyntaxHashable.swift
[82/96] Compiling SwiftSyntax SyntaxIdentifier.swift
[84/153] Compiling SwiftParser Attributes.swift
[85/153] Compiling SwiftParser Availability.swift
[86/153] Emitting module SwiftDiagnostics
[87/153] Compiling SwiftParser CharacterInfo.swift
[88/153] Compiling SwiftParser CollectionNodes+Parsable.swift
[89/153] Compiling SwiftDiagnostics Message.swift
[90/154] Compiling SwiftBasicFormat Syntax+Extensions.swift
[91/154] Compiling SwiftDiagnostics Note.swift
[92/154] Compiling SwiftBasicFormat SyntaxProtocol+Formatted.swift
[93/154] Compiling SwiftBasicFormat Trivia+FormatExtensions.swift
[94/154] Compiling SwiftDiagnostics FixIt.swift
[95/154] Compiling SwiftDiagnostics GroupedDiagnostics.swift
[96/154] Compiling SwiftBasicFormat InferIndentation.swift
[97/154] Compiling SwiftDiagnostics DiagnosticDecorator.swift
[98/154] Compiling SwiftDiagnostics DiagnosticsFormatter.swift
[100/155] Compiling SwiftParser SwiftParserCompatibility.swift
[101/155] Compiling SwiftParser SwiftVersion.swift
[102/155] Compiling SwiftParser SyntaxUtils.swift
[103/155] Compiling SwiftParser TokenConsumer.swift
[104/155] Compiling SwiftParser TokenPrecedence.swift
[105/159] Compiling SwiftBasicFormat BasicFormat.swift
[106/159] Emitting module SwiftBasicFormat
[108/159] Compiling SwiftParser TokenSpec.swift
[109/159] Compiling SwiftParser TokenSpecSet.swift
[110/159] Compiling SwiftParser TopLevel.swift
[111/159] Compiling SwiftParser TriviaParser.swift
[112/159] Compiling SwiftParser Types.swift
[113/159] Compiling SwiftParser Modifiers.swift
[114/159] Compiling SwiftParser Names.swift
[115/159] Compiling SwiftParser Nominals.swift
[116/159] Compiling SwiftParser Parameters.swift
[117/159] Compiling SwiftParser ParseSourceFile.swift
[118/159] Compiling SwiftParser Parser.swift
[119/159] Compiling SwiftParser Patterns.swift
[120/159] Compiling SwiftParser Recovery.swift
[121/159] Compiling SwiftParser Specifiers.swift
[122/159] Compiling SwiftParser Statements.swift
[123/159] Compiling SwiftParser StringLiteralRepresentedLiteralValue.swift
[124/159] Compiling SwiftParser StringLiterals.swift
[125/159] Compiling SwiftParser LexemeSequence.swift
[126/159] Compiling SwiftParser Lexer.swift
[127/159] Compiling SwiftParser RegexLiteralLexer.swift
[128/159] Compiling SwiftParser UnicodeScalarExtensions.swift
[129/159] Compiling SwiftParser Lookahead.swift
[130/159] Compiling SwiftParser LoopProgressCondition.swift
[131/159] Compiling SwiftParser ExperimentalFeatures.swift
[132/159] Compiling SwiftParser IsLexerClassified.swift
[133/159] Compiling SwiftParser LayoutNodes+Parsable.swift
[134/159] Compiling SwiftParser Parser+TokenSpecSet.swift
[135/159] Compiling SwiftParser TokenSpecStaticMembers.swift
[140/159] Compiling SwiftParser Declarations.swift
[141/159] Compiling SwiftParser Directives.swift
[142/159] Emitting module SwiftParser
[143/159] Compiling SwiftParser ExpressionInterpretedAsVersionTuple.swift
[144/159] Compiling SwiftParser Expressions.swift
[145/159] Compiling SwiftParser IncrementalParseTransition.swift
[146/159] Compiling SwiftParser IsValidIdentifier.swift
[147/159] Compiling SwiftParser Cursor.swift
[148/159] Compiling SwiftParser Lexeme.swift
[150/182] Compiling SwiftOperators PrecedenceGraph.swift
[151/183] Compiling SwiftOperators PrecedenceGroup.swift
[152/183] Compiling SwiftParserDiagnostics SyntaxKindNameForDiagnostics.swift
[153/184] Compiling SwiftOperators OperatorError.swift
[154/184] Compiling SwiftOperators OperatorTable+Defaults.swift
[155/184] Compiling SwiftOperators Operator.swift
[156/184] Compiling SwiftOperators OperatorError+Diagnostics.swift
[157/184] Compiling SwiftOperators OperatorTable.swift
[158/184] Emitting module SwiftOperators
[159/184] Compiling SwiftParserDiagnostics TokenNameForDiagnostics.swift
[160/184] Compiling SwiftOperators SyntaxSynthesis.swift
[161/184] Compiling SwiftOperators OperatorTable+Semantics.swift
[162/184] Compiling SwiftParserDiagnostics SyntaxExtensions.swift
[163/184] Compiling SwiftParserDiagnostics Utils.swift
[164/184] Compiling SwiftParserDiagnostics ChildNameForDiagnostics.swift
[165/184] Compiling SwiftOperators OperatorTable+Folding.swift
[167/185] Compiling SwiftParserDiagnostics ParserDiagnosticMessages.swift
[168/185] Compiling SwiftParserDiagnostics PresenceUtils.swift
[171/185] Emitting module SwiftParserDiagnostics
[174/185] Compiling SwiftParserDiagnostics MultiLineStringLiteralDiagnosticsGenerator.swift
[175/185] Compiling SwiftParserDiagnostics ParseDiagnosticsGenerator.swift
[177/199] Compiling SwiftSyntaxBuilder ConvenienceInitializers.swift
[178/199] Compiling SwiftSyntaxBuilder DeclSyntaxParseable.swift
[179/199] Compiling SwiftSyntaxBuilder ResultBuilderExtensions.swift
[180/199] Compiling SwiftSyntaxBuilder SwiftSyntaxBuilderCompatibility.swift
[181/199] Compiling SwiftSyntaxBuilder Indenter.swift
[182/199] Compiling SwiftSyntaxBuilder ListBuilder.swift
[183/199] Emitting module SwiftSyntaxBuilder
[184/199] Compiling SwiftSyntaxBuilder Syntax+StringInterpolation.swift
[185/199] Compiling SwiftSyntaxBuilder SyntaxNodeWithBody.swift
[186/200] Compiling SwiftSyntaxBuilder WithTrailingCommaSyntax+EnsuringTrailingComma.swift
[187/200] Compiling SwiftSyntaxBuilder BuildableNodes.swift
[188/200] Compiling SwiftSyntaxBuilder SyntaxParsable+ExpressibleByStringInterpolation.swift
[189/200] Compiling SwiftSyntaxBuilder ValidatingSyntaxNodes.swift
[190/200] Compiling SwiftSyntaxBuilder RenamedChildrenBuilderCompatibility.swift
[191/200] Compiling SwiftSyntaxBuilder ResultBuilders.swift
[192/200] Compiling SwiftSyntaxBuilder SyntaxExpressibleByStringInterpolationConformances.swift
[194/217] Compiling SwiftSyntaxMacros CodeItemMacro.swift
[195/217] Compiling SwiftSyntaxMacros DeclarationMacro.swift
[196/217] Compiling SwiftSyntaxMacros ExpressionMacro.swift
[197/217] Compiling SwiftSyntaxMacros ExtensionMacro.swift
[198/219] Compiling SwiftSyntaxMacros AccessorMacro.swift
[199/219] Compiling SwiftSyntaxMacros AttachedMacro.swift
[200/219] Compiling SwiftSyntaxMacros BodyMacro.swift
[201/219] Compiling SwiftSyntaxMacros FreestandingMacro.swift
[202/219] Compiling SwiftSyntaxMacros Macro+Format.swift
[203/219] Compiling SwiftSyntaxMacros Macro.swift
[204/219] Compiling SwiftSyntaxMacros MemberAttributeMacro.swift
[205/219] Compiling SwiftSyntaxMacros MemberMacro.swift
[206/219] Compiling SwiftSyntaxMacros PeerMacro.swift
[207/219] Emitting module SwiftSyntaxMacros
[208/219] Compiling SwiftSyntaxMacros AbstractSourceLocation.swift
[209/219] Compiling SwiftSyntaxMacros MacroExpansionContext.swift
[210/219] Compiling SwiftSyntaxMacros MacroExpansionDiagnosticMessages.swift
[211/219] Compiling SwiftSyntaxMacros PreambleMacro.swift
[212/219] Compiling SwiftSyntaxMacros Syntax+LexicalContext.swift
[214/228] Compiling SwiftSyntaxMacroExpansion MacroExpansion.swift
[215/228] Compiling SwiftSyntaxMacroExpansion MacroSpec.swift
[216/228] Compiling SwiftSyntaxMacroExpansion MacroArgument.swift
[217/228] Compiling SwiftSyntaxMacroExpansion IndentationUtils.swift
[218/229] Compiling SwiftSyntaxMacroExpansion BasicMacroExpansionContext.swift
[219/229] Compiling SwiftSyntaxMacroExpansion FunctionParameterUtils.swift
[220/229] Emitting module SwiftSyntaxMacroExpansion
[221/229] Compiling SwiftSyntaxMacroExpansion MacroExpansionDiagnosticMessages.swift
[222/229] Compiling SwiftSyntaxMacroExpansion MacroReplacement.swift
[223/229] Compiling SwiftSyntaxMacroExpansion MacroSystem.swift
[225/241] Compiling SwiftCompilerPluginMessageHandling PluginMessageCompatibility.swift
[226/242] Compiling SwiftCompilerPluginMessageHandling CompilerPluginMessageHandler.swift
[227/242] Compiling SwiftCompilerPluginMessageHandling Diagnostics.swift
[228/242] Compiling SwiftCompilerPluginMessageHandling LRUCache.swift
[229/242] Compiling SwiftCompilerPluginMessageHandling Macros.swift
[230/242] Compiling SwiftCompilerPluginMessageHandling StandardIOMessageConnection.swift
[231/242] Emitting module SwiftCompilerPluginMessageHandling
[232/242] Compiling SwiftCompilerPluginMessageHandling PluginMacroExpansionContext.swift
[233/242] Compiling SwiftCompilerPluginMessageHandling PluginMessages.swift
[234/242] Compiling SwiftCompilerPluginMessageHandling CodingUtilities.swift
[235/242] Compiling SwiftCompilerPluginMessageHandling JSON.swift
[236/242] Compiling SwiftCompilerPluginMessageHandling JSONDecoding.swift
[237/242] Compiling SwiftCompilerPluginMessageHandling JSONEncoding.swift
[239/244] Emitting module SwiftCompilerPlugin
[240/244] Compiling SwiftCompilerPlugin CompilerPlugin.swift
[242/248] Compiling SwiftOpenAPIMacros StringError.swift
[243/248] Compiling SwiftOpenAPIMacros SyntaxExt.swift
[244/248] Emitting module SwiftOpenAPIMacros
[245/248] Compiling SwiftOpenAPIMacros OpenAPIDescriptionMacro.swift
[246/248] Write Objects.LinkFileList
[247/248] Linking SwiftOpenAPIMacros-tool
[249/380] Compiling SwiftOpenAPI EncodingObject.swift
[250/380] Compiling SwiftOpenAPI ExampleObject.swift
[251/380] Compiling SwiftOpenAPI ExternalDocumentationObject.swift
[252/380] Compiling SwiftOpenAPI HeaderObject.swift
[253/380] Compiling SwiftOpenAPI InfoObject.swift
[254/380] Compiling SwiftOpenAPI AdditionalProperties.swift
[255/380] Compiling SwiftOpenAPI DataFormat.swift
[256/380] Compiling SwiftOpenAPI DataType.swift
[257/380] Compiling SwiftOpenAPI DiscriminatorObject.swift
[258/380] Compiling SwiftOpenAPI TypeRevision.swift
[259/389] Emitting module SwiftOpenAPI
[261/398] Compiling SwiftOpenAPI ReferenceOr.swift
[262/398] Compiling SwiftOpenAPI RequestBodyObject.swift
[263/398] Compiling SwiftOpenAPI ResponseObject.swift
[264/398] Compiling SwiftOpenAPI ResponsesObject.swift
[265/398] Compiling SwiftOpenAPI RuntimeExpression.swift
[266/398] Compiling SwiftOpenAPI RuntimeExpressionOr.swift
[267/398] Compiling SwiftOpenAPI SecurityRequirementObject.swift
[268/398] Compiling SwiftOpenAPI SecuritySchemeObject.swift
[269/398] Compiling SwiftOpenAPI ServerObject.swift
[279/398] Compiling SwiftOpenAPI OAuthFlowObject.swift
[280/398] Compiling SwiftOpenAPI OAuthFlowsObject.swift
[281/398] Compiling SwiftOpenAPI OpenAPIObject.swift
[282/398] Compiling SwiftOpenAPI OperationObject.swift
[283/398] Compiling SwiftOpenAPI ParameterObject.swift
[284/398] Compiling SwiftOpenAPI Path.swift
[285/398] Compiling SwiftOpenAPI PathItemObject.swift
[286/398] Compiling SwiftOpenAPI PathsObject.swift
[287/398] Compiling SwiftOpenAPI ReferenceObject.swift
[288/398] Compiling SwiftOpenAPI ServerVariableObject.swift
[289/398] Compiling SwiftOpenAPI SpecificationExtendable.swift
[290/398] Compiling SwiftOpenAPI TagObject.swift
[291/398] Compiling SwiftOpenAPI Version.swift
[292/398] Compiling SwiftOpenAPI XMLObject.swift
[293/398] Compiling SwiftOpenAPI OpenAPIDescriptable.swift
[294/398] Compiling SwiftOpenAPI OpenAPIDescription.swift
[295/398] Compiling SwiftOpenAPI OpenAPIType.swift
[296/398] Compiling SwiftOpenAPI refactor.swift
[306/398] Compiling SwiftOpenAPI ExpressibleBySchemaObject.swift
[307/398] Compiling SwiftOpenAPI SchemaContexts.swift
[308/398] Compiling SwiftOpenAPI SchemaObjec+deprecated.swift
[309/398] Compiling SwiftOpenAPI SchemaObject++.swift
[310/398] Compiling SwiftOpenAPI SchemaObject.swift
[311/398] Compiling SwiftOpenAPI LicenseObject.swift
[312/398] Compiling SwiftOpenAPI LinkObject.swift
[313/398] Compiling SwiftOpenAPI MediaType.swift
[314/398] Compiling SwiftOpenAPI MediaTypeObject.swift
[315/398] Compiling SwiftOpenAPI String++.swift
[316/398] Compiling SwiftOpenAPI AnyValueEncoder.swift
[317/398] Compiling SwiftOpenAPI CheckAllKeysDecoder.swift
[318/398] Compiling SwiftOpenAPI DateEncodingFormat.swift
[319/398] Compiling SwiftOpenAPI HeadersEncoder.swift
[320/398] Compiling SwiftOpenAPI KeyEncodingStrategy.swift
[321/398] Compiling SwiftOpenAPI ParametersEncoder.swift
[322/398] Compiling SwiftOpenAPI Ref.swift
[323/398] Compiling SwiftOpenAPI SchemeEncoder.swift
[324/398] Compiling SwiftOpenAPI CodableTypes.swift
[325/398] Compiling SwiftOpenAPI TypeRevisionDecoder.swift
[326/398] Compiling SwiftOpenAPI TypeRevisionEncoder.swift
[327/398] Compiling SwiftOpenAPI AnyValue.swift
[328/398] Compiling SwiftOpenAPI CallbackObject.swift
[329/398] Compiling SwiftOpenAPI ComponentsObject.swift
[330/398] Compiling SwiftOpenAPI CompositeType.swift
[331/398] Compiling SwiftOpenAPI ContactObject.swift
[332/398] Compiling SwiftOpenAPI ContentObject.swift
[333/398] Compiling SwiftOpenAPI AnyRange.swift
[334/398] Compiling SwiftOpenAPI Bool++.swift
[335/398] Compiling SwiftOpenAPI Codable++.swift
[336/398] Compiling SwiftOpenAPI CodingKeys.swift
[337/398] Compiling SwiftOpenAPI Collection++.swift
[338/398] Compiling SwiftOpenAPI Decimal++.swift
[339/398] Compiling SwiftOpenAPI ExpressibleBy.swift
[340/398] Compiling SwiftOpenAPI Locks.swift
[341/398] Compiling SwiftOpenAPI OrderedDictionary.swift
[342/398] Compiling SwiftOpenAPI StringConvertibleHintProvider.swift
Build complete! (117.78s)
Build complete.
{
"dependencies" : [
{
"identity" : "swift-syntax",
"requirement" : {
"range" : [
{
"lower_bound" : "600.0.0",
"upper_bound" : "601.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/swiftlang/swift-syntax.git"
}
],
"manifest_display_name" : "SwiftOpenAPI",
"name" : "SwiftOpenAPI",
"path" : "/host/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "10.15"
},
{
"name" : "ios",
"version" : "13.0"
},
{
"name" : "tvos",
"version" : "13.0"
},
{
"name" : "watchos",
"version" : "6.0"
}
],
"products" : [
{
"name" : "SwiftOpenAPI",
"targets" : [
"SwiftOpenAPI"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "SwiftOpenAPIMacros",
"targets" : [
"SwiftOpenAPIMacros"
],
"type" : {
"macro" : null
}
}
],
"targets" : [
{
"c99name" : "SwiftOpenAPITests",
"module_type" : "SwiftTarget",
"name" : "SwiftOpenAPITests",
"path" : "Tests/SwiftOpenAPITests",
"sources" : [
"AnyValueTests/AnyValueTests.swift",
"AnyValueTests/TestHelpers.swift",
"ArrayDecodingTests.swift",
"Mocks.swift",
"SwiftOpenAPITests.swift"
],
"target_dependencies" : [
"SwiftOpenAPI"
],
"type" : "test"
},
{
"c99name" : "SwiftOpenAPIMacrosTests",
"module_type" : "SwiftTarget",
"name" : "SwiftOpenAPIMacrosTests",
"path" : "Tests/SwiftOpenAPIMacrosTests",
"product_dependencies" : [
"SwiftSyntaxMacrosTestSupport"
],
"sources" : [
"SwiftOpenAPIMacrosTests.swift"
],
"target_dependencies" : [
"SwiftOpenAPI",
"SwiftOpenAPIMacros"
],
"type" : "test"
},
{
"c99name" : "SwiftOpenAPIMacros",
"module_type" : "SwiftTarget",
"name" : "SwiftOpenAPIMacros",
"path" : "Sources/SwiftOpenAPIMacros",
"product_dependencies" : [
"SwiftSyntaxMacros",
"SwiftCompilerPlugin"
],
"product_memberships" : [
"SwiftOpenAPI",
"SwiftOpenAPIMacros"
],
"sources" : [
"OpenAPIDescriptionMacro.swift",
"StringError.swift",
"SyntaxExt.swift"
],
"type" : "macro"
},
{
"c99name" : "SwiftOpenAPI",
"module_type" : "SwiftTarget",
"name" : "SwiftOpenAPI",
"path" : "Sources/SwiftOpenAPI",
"product_memberships" : [
"SwiftOpenAPI"
],
"sources" : [
"Common/AnyRange.swift",
"Common/Bool++.swift",
"Common/Codable++.swift",
"Common/CodingKeys.swift",
"Common/Collection++.swift",
"Common/Decimal++.swift",
"Common/ExpressibleBy.swift",
"Common/Locks.swift",
"Common/OrderedDictionary/OrderedDictionary.swift",
"Common/OrderedDictionary/StringConvertibleHintProvider.swift",
"Common/String++.swift",
"Encoders/AnyValueEncoder.swift",
"Encoders/CheckAllKeysDecoder.swift",
"Encoders/DateEncodingFormat.swift",
"Encoders/HeadersEncoder.swift",
"Encoders/KeyEncodingStrategy.swift",
"Encoders/ParametersEncoder.swift",
"Encoders/Ref.swift",
"Encoders/SchemeEncoder.swift",
"Encoders/TypeRevision/CodableTypes.swift",
"Encoders/TypeRevision/TypeRevision.swift",
"Encoders/TypeRevision/TypeRevisionDecoder.swift",
"Encoders/TypeRevision/TypeRevisionEncoder.swift",
"Objects/AnyValue.swift",
"Objects/CallbackObject.swift",
"Objects/ComponentsObject.swift",
"Objects/CompositeType.swift",
"Objects/ContactObject.swift",
"Objects/ContentObject.swift",
"Objects/EncodingObject.swift",
"Objects/ExampleObject.swift",
"Objects/ExternalDocumentationObject.swift",
"Objects/HeaderObject.swift",
"Objects/InfoObject.swift",
"Objects/JSONSchema/AdditionalProperties.swift",
"Objects/JSONSchema/DataFormat.swift",
"Objects/JSONSchema/DataType.swift",
"Objects/JSONSchema/DiscriminatorObject.swift",
"Objects/JSONSchema/ExpressibleBySchemaObject.swift",
"Objects/JSONSchema/SchemaContexts.swift",
"Objects/JSONSchema/SchemaObjec+deprecated.swift",
"Objects/JSONSchema/SchemaObject++.swift",
"Objects/JSONSchema/SchemaObject.swift",
"Objects/LicenseObject.swift",
"Objects/LinkObject.swift",
"Objects/MediaType.swift",
"Objects/MediaTypeObject.swift",
"Objects/OAuthFlowObject.swift",
"Objects/OAuthFlowsObject.swift",
"Objects/OpenAPIObject.swift",
"Objects/OperationObject.swift",
"Objects/ParameterObject.swift",
"Objects/Path.swift",
"Objects/PathItemObject.swift",
"Objects/PathsObject.swift",
"Objects/ReferenceObject.swift",
"Objects/ReferenceOr.swift",
"Objects/RequestBodyObject.swift",
"Objects/ResponseObject.swift",
"Objects/ResponsesObject.swift",
"Objects/RuntimeExpression.swift",
"Objects/RuntimeExpressionOr.swift",
"Objects/SecurityRequirementObject.swift",
"Objects/SecuritySchemeObject.swift",
"Objects/ServerObject.swift",
"Objects/ServerVariableObject.swift",
"Objects/SpecificationExtendable.swift",
"Objects/TagObject.swift",
"Objects/Version.swift",
"Objects/XMLObject.swift",
"OpenAPIDescriptable.swift",
"OpenAPIDescription.swift",
"OpenAPIType.swift",
"refactor.swift"
],
"target_dependencies" : [
"SwiftOpenAPIMacros"
],
"type" : "library"
}
],
"tools_version" : "5.9"
}
basic-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:808cb2b2a6cec76654a3acbd283c6c2205bc60d2b29562c95b9f5147612f6d32
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.1-latest
Done.