Build Information
Successful build of ZeeQL3, reference 0.9.58 (62215c), with Swift 6.1 for macOS (SPM) on 23 Feb 2026 19:38:27 UTC.
Swift 6 data race errors: 35
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCapturesBuild Log
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
61 | #if DEBUG
62 | let defaultLevel = ZeeQLLoggerLogLevel.log
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/Logger.swift:90:17: warning: let 'stderrLogLevel' is not concurrency-safe because non-'Sendable' type 'ZeeQLLoggerLogLevel' may have shared mutable state; this is an error in the Swift 6 language mode
40 | }
41 |
42 | public enum ZeeQLLoggerLogLevel : Int8 { // cannot nest types in generics
| `- note: consider making enum 'ZeeQLLoggerLogLevel' conform to the 'Sendable' protocol
43 | case error
44 | case warn
:
88 | #endif
89 |
90 | fileprivate let stderrLogLevel : ZeeQLLoggerLogLevel = .error
| |- warning: let 'stderrLogLevel' is not concurrency-safe because non-'Sendable' type 'ZeeQLLoggerLogLevel' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'stderrLogLevel' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
91 |
92 | public struct ZeeQLPrintLogger : ZeeQLLogger {
[53/97] Compiling ZeeQL SQLQualifier.swift
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/SortOrdering.swift:32:23: warning: static property 'CompareAscending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
20 | {
21 |
22 | public enum Selector: RawRepresentable, Equatable {
| `- note: consider making enum 'Selector' conform to the 'Sendable' protocol
23 |
24 | case ascending
:
30 | // backwards compat
31 | @available(*, deprecated, message: "Use `.ascending` instead.")
32 | public static let CompareAscending = Selector.ascending
| |- warning: static property 'CompareAscending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'CompareAscending' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 | @available(*, deprecated, message: "Use `.descending` instead.")
34 | public static let CompareDescending = Selector.descending
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/SortOrdering.swift:34:23: warning: static property 'CompareDescending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
20 | {
21 |
22 | public enum Selector: RawRepresentable, Equatable {
| `- note: consider making enum 'Selector' conform to the 'Sendable' protocol
23 |
24 | case ascending
:
32 | public static let CompareAscending = Selector.ascending
33 | @available(*, deprecated, message: "Use `.descending` instead.")
34 | public static let CompareDescending = Selector.descending
| |- warning: static property 'CompareDescending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'CompareDescending' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 | @available(*, deprecated,
36 | message: "Use `.caseInsensitiveAscending` instead.")
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/SortOrdering.swift:37:23: warning: static property 'CompareCaseInsensitiveAscending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
20 | {
21 |
22 | public enum Selector: RawRepresentable, Equatable {
| `- note: consider making enum 'Selector' conform to the 'Sendable' protocol
23 |
24 | case ascending
:
35 | @available(*, deprecated,
36 | message: "Use `.caseInsensitiveAscending` instead.")
37 | public static let CompareCaseInsensitiveAscending =
| |- warning: static property 'CompareCaseInsensitiveAscending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'CompareCaseInsensitiveAscending' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 | Selector.caseInsensitiveAscending
39 | @available(*, deprecated,
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/SortOrdering.swift:41:23: warning: static property 'CompareCaseInsensitiveDescending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
20 | {
21 |
22 | public enum Selector: RawRepresentable, Equatable {
| `- note: consider making enum 'Selector' conform to the 'Sendable' protocol
23 |
24 | case ascending
:
39 | @available(*, deprecated,
40 | message: "Use `.caseInsensitiveDescending` instead.")
41 | public static let CompareCaseInsensitiveDescending =
| |- warning: static property 'CompareCaseInsensitiveDescending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'CompareCaseInsensitiveDescending' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 | Selector.caseInsensitiveDescending
43 | @available(*, deprecated, message: "Use `.other(value)` instead.")
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/Logger.swift:60:12: warning: var 'globalZeeQLLogger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
58 | * Log-level can be set using the `ZEEQL_LOGLEVEL` global.
59 | */
60 | public var globalZeeQLLogger : ZeeQLLogger = {
| |- warning: var 'globalZeeQLLogger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'globalZeeQLLogger' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'globalZeeQLLogger' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
61 | #if DEBUG
62 | let defaultLevel = ZeeQLLoggerLogLevel.log
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/Logger.swift:90:17: warning: let 'stderrLogLevel' is not concurrency-safe because non-'Sendable' type 'ZeeQLLoggerLogLevel' may have shared mutable state; this is an error in the Swift 6 language mode
40 | }
41 |
42 | public enum ZeeQLLoggerLogLevel : Int8 { // cannot nest types in generics
| `- note: consider making enum 'ZeeQLLoggerLogLevel' conform to the 'Sendable' protocol
43 | case error
44 | case warn
:
88 | #endif
89 |
90 | fileprivate let stderrLogLevel : ZeeQLLoggerLogLevel = .error
| |- warning: let 'stderrLogLevel' is not concurrency-safe because non-'Sendable' type 'ZeeQLLoggerLogLevel' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'stderrLogLevel' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
91 |
92 | public struct ZeeQLPrintLogger : ZeeQLLogger {
[54/97] Compiling ZeeQL SortOrdering.swift
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/SortOrdering.swift:32:23: warning: static property 'CompareAscending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
20 | {
21 |
22 | public enum Selector: RawRepresentable, Equatable {
| `- note: consider making enum 'Selector' conform to the 'Sendable' protocol
23 |
24 | case ascending
:
30 | // backwards compat
31 | @available(*, deprecated, message: "Use `.ascending` instead.")
32 | public static let CompareAscending = Selector.ascending
| |- warning: static property 'CompareAscending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'CompareAscending' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 | @available(*, deprecated, message: "Use `.descending` instead.")
34 | public static let CompareDescending = Selector.descending
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/SortOrdering.swift:34:23: warning: static property 'CompareDescending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
20 | {
21 |
22 | public enum Selector: RawRepresentable, Equatable {
| `- note: consider making enum 'Selector' conform to the 'Sendable' protocol
23 |
24 | case ascending
:
32 | public static let CompareAscending = Selector.ascending
33 | @available(*, deprecated, message: "Use `.descending` instead.")
34 | public static let CompareDescending = Selector.descending
| |- warning: static property 'CompareDescending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'CompareDescending' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 | @available(*, deprecated,
36 | message: "Use `.caseInsensitiveAscending` instead.")
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/SortOrdering.swift:37:23: warning: static property 'CompareCaseInsensitiveAscending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
20 | {
21 |
22 | public enum Selector: RawRepresentable, Equatable {
| `- note: consider making enum 'Selector' conform to the 'Sendable' protocol
23 |
24 | case ascending
:
35 | @available(*, deprecated,
36 | message: "Use `.caseInsensitiveAscending` instead.")
37 | public static let CompareCaseInsensitiveAscending =
| |- warning: static property 'CompareCaseInsensitiveAscending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'CompareCaseInsensitiveAscending' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 | Selector.caseInsensitiveAscending
39 | @available(*, deprecated,
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/SortOrdering.swift:41:23: warning: static property 'CompareCaseInsensitiveDescending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
20 | {
21 |
22 | public enum Selector: RawRepresentable, Equatable {
| `- note: consider making enum 'Selector' conform to the 'Sendable' protocol
23 |
24 | case ascending
:
39 | @available(*, deprecated,
40 | message: "Use `.caseInsensitiveDescending` instead.")
41 | public static let CompareCaseInsensitiveDescending =
| |- warning: static property 'CompareCaseInsensitiveDescending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'CompareCaseInsensitiveDescending' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 | Selector.caseInsensitiveDescending
43 | @available(*, deprecated, message: "Use `.other(value)` instead.")
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/Logger.swift:60:12: warning: var 'globalZeeQLLogger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
58 | * Log-level can be set using the `ZEEQL_LOGLEVEL` global.
59 | */
60 | public var globalZeeQLLogger : ZeeQLLogger = {
| |- warning: var 'globalZeeQLLogger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'globalZeeQLLogger' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'globalZeeQLLogger' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
61 | #if DEBUG
62 | let defaultLevel = ZeeQLLoggerLogLevel.log
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/Logger.swift:90:17: warning: let 'stderrLogLevel' is not concurrency-safe because non-'Sendable' type 'ZeeQLLoggerLogLevel' may have shared mutable state; this is an error in the Swift 6 language mode
40 | }
41 |
42 | public enum ZeeQLLoggerLogLevel : Int8 { // cannot nest types in generics
| `- note: consider making enum 'ZeeQLLoggerLogLevel' conform to the 'Sendable' protocol
43 | case error
44 | case warn
:
88 | #endif
89 |
90 | fileprivate let stderrLogLevel : ZeeQLLoggerLogLevel = .error
| |- warning: let 'stderrLogLevel' is not concurrency-safe because non-'Sendable' type 'ZeeQLLoggerLogLevel' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'stderrLogLevel' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
91 |
92 | public struct ZeeQLPrintLogger : ZeeQLLogger {
[55/97] Compiling ZeeQL StoreKeyValueCoding.swift
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/SortOrdering.swift:32:23: warning: static property 'CompareAscending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
20 | {
21 |
22 | public enum Selector: RawRepresentable, Equatable {
| `- note: consider making enum 'Selector' conform to the 'Sendable' protocol
23 |
24 | case ascending
:
30 | // backwards compat
31 | @available(*, deprecated, message: "Use `.ascending` instead.")
32 | public static let CompareAscending = Selector.ascending
| |- warning: static property 'CompareAscending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'CompareAscending' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 | @available(*, deprecated, message: "Use `.descending` instead.")
34 | public static let CompareDescending = Selector.descending
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/SortOrdering.swift:34:23: warning: static property 'CompareDescending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
20 | {
21 |
22 | public enum Selector: RawRepresentable, Equatable {
| `- note: consider making enum 'Selector' conform to the 'Sendable' protocol
23 |
24 | case ascending
:
32 | public static let CompareAscending = Selector.ascending
33 | @available(*, deprecated, message: "Use `.descending` instead.")
34 | public static let CompareDescending = Selector.descending
| |- warning: static property 'CompareDescending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'CompareDescending' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 | @available(*, deprecated,
36 | message: "Use `.caseInsensitiveAscending` instead.")
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/SortOrdering.swift:37:23: warning: static property 'CompareCaseInsensitiveAscending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
20 | {
21 |
22 | public enum Selector: RawRepresentable, Equatable {
| `- note: consider making enum 'Selector' conform to the 'Sendable' protocol
23 |
24 | case ascending
:
35 | @available(*, deprecated,
36 | message: "Use `.caseInsensitiveAscending` instead.")
37 | public static let CompareCaseInsensitiveAscending =
| |- warning: static property 'CompareCaseInsensitiveAscending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'CompareCaseInsensitiveAscending' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 | Selector.caseInsensitiveAscending
39 | @available(*, deprecated,
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/SortOrdering.swift:41:23: warning: static property 'CompareCaseInsensitiveDescending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
20 | {
21 |
22 | public enum Selector: RawRepresentable, Equatable {
| `- note: consider making enum 'Selector' conform to the 'Sendable' protocol
23 |
24 | case ascending
:
39 | @available(*, deprecated,
40 | message: "Use `.caseInsensitiveDescending` instead.")
41 | public static let CompareCaseInsensitiveDescending =
| |- warning: static property 'CompareCaseInsensitiveDescending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'CompareCaseInsensitiveDescending' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 | Selector.caseInsensitiveDescending
43 | @available(*, deprecated, message: "Use `.other(value)` instead.")
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/Logger.swift:60:12: warning: var 'globalZeeQLLogger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
58 | * Log-level can be set using the `ZEEQL_LOGLEVEL` global.
59 | */
60 | public var globalZeeQLLogger : ZeeQLLogger = {
| |- warning: var 'globalZeeQLLogger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'globalZeeQLLogger' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'globalZeeQLLogger' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
61 | #if DEBUG
62 | let defaultLevel = ZeeQLLoggerLogLevel.log
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/Logger.swift:90:17: warning: let 'stderrLogLevel' is not concurrency-safe because non-'Sendable' type 'ZeeQLLoggerLogLevel' may have shared mutable state; this is an error in the Swift 6 language mode
40 | }
41 |
42 | public enum ZeeQLLoggerLogLevel : Int8 { // cannot nest types in generics
| `- note: consider making enum 'ZeeQLLoggerLogLevel' conform to the 'Sendable' protocol
43 | case error
44 | case warn
:
88 | #endif
89 |
90 | fileprivate let stderrLogLevel : ZeeQLLoggerLogLevel = .error
| |- warning: let 'stderrLogLevel' is not concurrency-safe because non-'Sendable' type 'ZeeQLLoggerLogLevel' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'stderrLogLevel' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
91 |
92 | public struct ZeeQLPrintLogger : ZeeQLLogger {
[56/97] Compiling ZeeQL AnyOptional.swift
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/SortOrdering.swift:32:23: warning: static property 'CompareAscending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
20 | {
21 |
22 | public enum Selector: RawRepresentable, Equatable {
| `- note: consider making enum 'Selector' conform to the 'Sendable' protocol
23 |
24 | case ascending
:
30 | // backwards compat
31 | @available(*, deprecated, message: "Use `.ascending` instead.")
32 | public static let CompareAscending = Selector.ascending
| |- warning: static property 'CompareAscending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'CompareAscending' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 | @available(*, deprecated, message: "Use `.descending` instead.")
34 | public static let CompareDescending = Selector.descending
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/SortOrdering.swift:34:23: warning: static property 'CompareDescending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
20 | {
21 |
22 | public enum Selector: RawRepresentable, Equatable {
| `- note: consider making enum 'Selector' conform to the 'Sendable' protocol
23 |
24 | case ascending
:
32 | public static let CompareAscending = Selector.ascending
33 | @available(*, deprecated, message: "Use `.descending` instead.")
34 | public static let CompareDescending = Selector.descending
| |- warning: static property 'CompareDescending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'CompareDescending' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 | @available(*, deprecated,
36 | message: "Use `.caseInsensitiveAscending` instead.")
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/SortOrdering.swift:37:23: warning: static property 'CompareCaseInsensitiveAscending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
20 | {
21 |
22 | public enum Selector: RawRepresentable, Equatable {
| `- note: consider making enum 'Selector' conform to the 'Sendable' protocol
23 |
24 | case ascending
:
35 | @available(*, deprecated,
36 | message: "Use `.caseInsensitiveAscending` instead.")
37 | public static let CompareCaseInsensitiveAscending =
| |- warning: static property 'CompareCaseInsensitiveAscending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'CompareCaseInsensitiveAscending' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 | Selector.caseInsensitiveAscending
39 | @available(*, deprecated,
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/SortOrdering.swift:41:23: warning: static property 'CompareCaseInsensitiveDescending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
20 | {
21 |
22 | public enum Selector: RawRepresentable, Equatable {
| `- note: consider making enum 'Selector' conform to the 'Sendable' protocol
23 |
24 | case ascending
:
39 | @available(*, deprecated,
40 | message: "Use `.caseInsensitiveDescending` instead.")
41 | public static let CompareCaseInsensitiveDescending =
| |- warning: static property 'CompareCaseInsensitiveDescending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'CompareCaseInsensitiveDescending' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 | Selector.caseInsensitiveDescending
43 | @available(*, deprecated, message: "Use `.other(value)` instead.")
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/Logger.swift:60:12: warning: var 'globalZeeQLLogger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
58 | * Log-level can be set using the `ZEEQL_LOGLEVEL` global.
59 | */
60 | public var globalZeeQLLogger : ZeeQLLogger = {
| |- warning: var 'globalZeeQLLogger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'globalZeeQLLogger' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'globalZeeQLLogger' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
61 | #if DEBUG
62 | let defaultLevel = ZeeQLLoggerLogLevel.log
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/Logger.swift:90:17: warning: let 'stderrLogLevel' is not concurrency-safe because non-'Sendable' type 'ZeeQLLoggerLogLevel' may have shared mutable state; this is an error in the Swift 6 language mode
40 | }
41 |
42 | public enum ZeeQLLoggerLogLevel : Int8 { // cannot nest types in generics
| `- note: consider making enum 'ZeeQLLoggerLogLevel' conform to the 'Sendable' protocol
43 | case error
44 | case warn
:
88 | #endif
89 |
90 | fileprivate let stderrLogLevel : ZeeQLLoggerLogLevel = .error
| |- warning: let 'stderrLogLevel' is not concurrency-safe because non-'Sendable' type 'ZeeQLLoggerLogLevel' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'stderrLogLevel' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
91 |
92 | public struct ZeeQLPrintLogger : ZeeQLLogger {
[57/97] Compiling ZeeQL Dictionary+Extensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/SortOrdering.swift:32:23: warning: static property 'CompareAscending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
20 | {
21 |
22 | public enum Selector: RawRepresentable, Equatable {
| `- note: consider making enum 'Selector' conform to the 'Sendable' protocol
23 |
24 | case ascending
:
30 | // backwards compat
31 | @available(*, deprecated, message: "Use `.ascending` instead.")
32 | public static let CompareAscending = Selector.ascending
| |- warning: static property 'CompareAscending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'CompareAscending' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 | @available(*, deprecated, message: "Use `.descending` instead.")
34 | public static let CompareDescending = Selector.descending
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/SortOrdering.swift:34:23: warning: static property 'CompareDescending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
20 | {
21 |
22 | public enum Selector: RawRepresentable, Equatable {
| `- note: consider making enum 'Selector' conform to the 'Sendable' protocol
23 |
24 | case ascending
:
32 | public static let CompareAscending = Selector.ascending
33 | @available(*, deprecated, message: "Use `.descending` instead.")
34 | public static let CompareDescending = Selector.descending
| |- warning: static property 'CompareDescending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'CompareDescending' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 | @available(*, deprecated,
36 | message: "Use `.caseInsensitiveAscending` instead.")
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/SortOrdering.swift:37:23: warning: static property 'CompareCaseInsensitiveAscending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
20 | {
21 |
22 | public enum Selector: RawRepresentable, Equatable {
| `- note: consider making enum 'Selector' conform to the 'Sendable' protocol
23 |
24 | case ascending
:
35 | @available(*, deprecated,
36 | message: "Use `.caseInsensitiveAscending` instead.")
37 | public static let CompareCaseInsensitiveAscending =
| |- warning: static property 'CompareCaseInsensitiveAscending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'CompareCaseInsensitiveAscending' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 | Selector.caseInsensitiveAscending
39 | @available(*, deprecated,
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/SortOrdering.swift:41:23: warning: static property 'CompareCaseInsensitiveDescending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
20 | {
21 |
22 | public enum Selector: RawRepresentable, Equatable {
| `- note: consider making enum 'Selector' conform to the 'Sendable' protocol
23 |
24 | case ascending
:
39 | @available(*, deprecated,
40 | message: "Use `.caseInsensitiveDescending` instead.")
41 | public static let CompareCaseInsensitiveDescending =
| |- warning: static property 'CompareCaseInsensitiveDescending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'CompareCaseInsensitiveDescending' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 | Selector.caseInsensitiveDescending
43 | @available(*, deprecated, message: "Use `.other(value)` instead.")
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/Logger.swift:60:12: warning: var 'globalZeeQLLogger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
58 | * Log-level can be set using the `ZEEQL_LOGLEVEL` global.
59 | */
60 | public var globalZeeQLLogger : ZeeQLLogger = {
| |- warning: var 'globalZeeQLLogger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'globalZeeQLLogger' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'globalZeeQLLogger' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
61 | #if DEBUG
62 | let defaultLevel = ZeeQLLoggerLogLevel.log
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/Logger.swift:90:17: warning: let 'stderrLogLevel' is not concurrency-safe because non-'Sendable' type 'ZeeQLLoggerLogLevel' may have shared mutable state; this is an error in the Swift 6 language mode
40 | }
41 |
42 | public enum ZeeQLLoggerLogLevel : Int8 { // cannot nest types in generics
| `- note: consider making enum 'ZeeQLLoggerLogLevel' conform to the 'Sendable' protocol
43 | case error
44 | case warn
:
88 | #endif
89 |
90 | fileprivate let stderrLogLevel : ZeeQLLoggerLogLevel = .error
| |- warning: let 'stderrLogLevel' is not concurrency-safe because non-'Sendable' type 'ZeeQLLoggerLogLevel' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'stderrLogLevel' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
91 |
92 | public struct ZeeQLPrintLogger : ZeeQLLogger {
[58/97] Compiling ZeeQL EquatableType.swift
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/SortOrdering.swift:32:23: warning: static property 'CompareAscending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
20 | {
21 |
22 | public enum Selector: RawRepresentable, Equatable {
| `- note: consider making enum 'Selector' conform to the 'Sendable' protocol
23 |
24 | case ascending
:
30 | // backwards compat
31 | @available(*, deprecated, message: "Use `.ascending` instead.")
32 | public static let CompareAscending = Selector.ascending
| |- warning: static property 'CompareAscending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'CompareAscending' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 | @available(*, deprecated, message: "Use `.descending` instead.")
34 | public static let CompareDescending = Selector.descending
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/SortOrdering.swift:34:23: warning: static property 'CompareDescending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
20 | {
21 |
22 | public enum Selector: RawRepresentable, Equatable {
| `- note: consider making enum 'Selector' conform to the 'Sendable' protocol
23 |
24 | case ascending
:
32 | public static let CompareAscending = Selector.ascending
33 | @available(*, deprecated, message: "Use `.descending` instead.")
34 | public static let CompareDescending = Selector.descending
| |- warning: static property 'CompareDescending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'CompareDescending' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 | @available(*, deprecated,
36 | message: "Use `.caseInsensitiveAscending` instead.")
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/SortOrdering.swift:37:23: warning: static property 'CompareCaseInsensitiveAscending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
20 | {
21 |
22 | public enum Selector: RawRepresentable, Equatable {
| `- note: consider making enum 'Selector' conform to the 'Sendable' protocol
23 |
24 | case ascending
:
35 | @available(*, deprecated,
36 | message: "Use `.caseInsensitiveAscending` instead.")
37 | public static let CompareCaseInsensitiveAscending =
| |- warning: static property 'CompareCaseInsensitiveAscending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'CompareCaseInsensitiveAscending' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 | Selector.caseInsensitiveAscending
39 | @available(*, deprecated,
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/SortOrdering.swift:41:23: warning: static property 'CompareCaseInsensitiveDescending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
20 | {
21 |
22 | public enum Selector: RawRepresentable, Equatable {
| `- note: consider making enum 'Selector' conform to the 'Sendable' protocol
23 |
24 | case ascending
:
39 | @available(*, deprecated,
40 | message: "Use `.caseInsensitiveDescending` instead.")
41 | public static let CompareCaseInsensitiveDescending =
| |- warning: static property 'CompareCaseInsensitiveDescending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'CompareCaseInsensitiveDescending' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 | Selector.caseInsensitiveDescending
43 | @available(*, deprecated, message: "Use `.other(value)` instead.")
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/Logger.swift:60:12: warning: var 'globalZeeQLLogger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
58 | * Log-level can be set using the `ZEEQL_LOGLEVEL` global.
59 | */
60 | public var globalZeeQLLogger : ZeeQLLogger = {
| |- warning: var 'globalZeeQLLogger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'globalZeeQLLogger' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'globalZeeQLLogger' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
61 | #if DEBUG
62 | let defaultLevel = ZeeQLLoggerLogLevel.log
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/Logger.swift:90:17: warning: let 'stderrLogLevel' is not concurrency-safe because non-'Sendable' type 'ZeeQLLoggerLogLevel' may have shared mutable state; this is an error in the Swift 6 language mode
40 | }
41 |
42 | public enum ZeeQLLoggerLogLevel : Int8 { // cannot nest types in generics
| `- note: consider making enum 'ZeeQLLoggerLogLevel' conform to the 'Sendable' protocol
43 | case error
44 | case warn
:
88 | #endif
89 |
90 | fileprivate let stderrLogLevel : ZeeQLLoggerLogLevel = .error
| |- warning: let 'stderrLogLevel' is not concurrency-safe because non-'Sendable' type 'ZeeQLLoggerLogLevel' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'stderrLogLevel' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
91 |
92 | public struct ZeeQLPrintLogger : ZeeQLLogger {
[59/97] Compiling ZeeQL KeyValueStringFormatter.swift
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/SortOrdering.swift:32:23: warning: static property 'CompareAscending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
20 | {
21 |
22 | public enum Selector: RawRepresentable, Equatable {
| `- note: consider making enum 'Selector' conform to the 'Sendable' protocol
23 |
24 | case ascending
:
30 | // backwards compat
31 | @available(*, deprecated, message: "Use `.ascending` instead.")
32 | public static let CompareAscending = Selector.ascending
| |- warning: static property 'CompareAscending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'CompareAscending' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 | @available(*, deprecated, message: "Use `.descending` instead.")
34 | public static let CompareDescending = Selector.descending
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/SortOrdering.swift:34:23: warning: static property 'CompareDescending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
20 | {
21 |
22 | public enum Selector: RawRepresentable, Equatable {
| `- note: consider making enum 'Selector' conform to the 'Sendable' protocol
23 |
24 | case ascending
:
32 | public static let CompareAscending = Selector.ascending
33 | @available(*, deprecated, message: "Use `.descending` instead.")
34 | public static let CompareDescending = Selector.descending
| |- warning: static property 'CompareDescending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'CompareDescending' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 | @available(*, deprecated,
36 | message: "Use `.caseInsensitiveAscending` instead.")
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/SortOrdering.swift:37:23: warning: static property 'CompareCaseInsensitiveAscending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
20 | {
21 |
22 | public enum Selector: RawRepresentable, Equatable {
| `- note: consider making enum 'Selector' conform to the 'Sendable' protocol
23 |
24 | case ascending
:
35 | @available(*, deprecated,
36 | message: "Use `.caseInsensitiveAscending` instead.")
37 | public static let CompareCaseInsensitiveAscending =
| |- warning: static property 'CompareCaseInsensitiveAscending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'CompareCaseInsensitiveAscending' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 | Selector.caseInsensitiveAscending
39 | @available(*, deprecated,
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/SortOrdering.swift:41:23: warning: static property 'CompareCaseInsensitiveDescending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
20 | {
21 |
22 | public enum Selector: RawRepresentable, Equatable {
| `- note: consider making enum 'Selector' conform to the 'Sendable' protocol
23 |
24 | case ascending
:
39 | @available(*, deprecated,
40 | message: "Use `.caseInsensitiveDescending` instead.")
41 | public static let CompareCaseInsensitiveDescending =
| |- warning: static property 'CompareCaseInsensitiveDescending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'CompareCaseInsensitiveDescending' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 | Selector.caseInsensitiveDescending
43 | @available(*, deprecated, message: "Use `.other(value)` instead.")
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/Logger.swift:60:12: warning: var 'globalZeeQLLogger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
58 | * Log-level can be set using the `ZEEQL_LOGLEVEL` global.
59 | */
60 | public var globalZeeQLLogger : ZeeQLLogger = {
| |- warning: var 'globalZeeQLLogger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'globalZeeQLLogger' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'globalZeeQLLogger' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
61 | #if DEBUG
62 | let defaultLevel = ZeeQLLoggerLogLevel.log
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/Logger.swift:90:17: warning: let 'stderrLogLevel' is not concurrency-safe because non-'Sendable' type 'ZeeQLLoggerLogLevel' may have shared mutable state; this is an error in the Swift 6 language mode
40 | }
41 |
42 | public enum ZeeQLLoggerLogLevel : Int8 { // cannot nest types in generics
| `- note: consider making enum 'ZeeQLLoggerLogLevel' conform to the 'Sendable' protocol
43 | case error
44 | case warn
:
88 | #endif
89 |
90 | fileprivate let stderrLogLevel : ZeeQLLoggerLogLevel = .error
| |- warning: let 'stderrLogLevel' is not concurrency-safe because non-'Sendable' type 'ZeeQLLoggerLogLevel' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'stderrLogLevel' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
91 |
92 | public struct ZeeQLPrintLogger : ZeeQLLogger {
[60/97] Compiling ZeeQL Logger.swift
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/SortOrdering.swift:32:23: warning: static property 'CompareAscending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
20 | {
21 |
22 | public enum Selector: RawRepresentable, Equatable {
| `- note: consider making enum 'Selector' conform to the 'Sendable' protocol
23 |
24 | case ascending
:
30 | // backwards compat
31 | @available(*, deprecated, message: "Use `.ascending` instead.")
32 | public static let CompareAscending = Selector.ascending
| |- warning: static property 'CompareAscending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'CompareAscending' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 | @available(*, deprecated, message: "Use `.descending` instead.")
34 | public static let CompareDescending = Selector.descending
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/SortOrdering.swift:34:23: warning: static property 'CompareDescending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
20 | {
21 |
22 | public enum Selector: RawRepresentable, Equatable {
| `- note: consider making enum 'Selector' conform to the 'Sendable' protocol
23 |
24 | case ascending
:
32 | public static let CompareAscending = Selector.ascending
33 | @available(*, deprecated, message: "Use `.descending` instead.")
34 | public static let CompareDescending = Selector.descending
| |- warning: static property 'CompareDescending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'CompareDescending' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 | @available(*, deprecated,
36 | message: "Use `.caseInsensitiveAscending` instead.")
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/SortOrdering.swift:37:23: warning: static property 'CompareCaseInsensitiveAscending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
20 | {
21 |
22 | public enum Selector: RawRepresentable, Equatable {
| `- note: consider making enum 'Selector' conform to the 'Sendable' protocol
23 |
24 | case ascending
:
35 | @available(*, deprecated,
36 | message: "Use `.caseInsensitiveAscending` instead.")
37 | public static let CompareCaseInsensitiveAscending =
| |- warning: static property 'CompareCaseInsensitiveAscending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'CompareCaseInsensitiveAscending' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 | Selector.caseInsensitiveAscending
39 | @available(*, deprecated,
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/SortOrdering.swift:41:23: warning: static property 'CompareCaseInsensitiveDescending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
20 | {
21 |
22 | public enum Selector: RawRepresentable, Equatable {
| `- note: consider making enum 'Selector' conform to the 'Sendable' protocol
23 |
24 | case ascending
:
39 | @available(*, deprecated,
40 | message: "Use `.caseInsensitiveDescending` instead.")
41 | public static let CompareCaseInsensitiveDescending =
| |- warning: static property 'CompareCaseInsensitiveDescending' is not concurrency-safe because non-'Sendable' type 'SortOrdering.Selector' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'CompareCaseInsensitiveDescending' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 | Selector.caseInsensitiveDescending
43 | @available(*, deprecated, message: "Use `.other(value)` instead.")
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/Logger.swift:60:12: warning: var 'globalZeeQLLogger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
58 | * Log-level can be set using the `ZEEQL_LOGLEVEL` global.
59 | */
60 | public var globalZeeQLLogger : ZeeQLLogger = {
| |- warning: var 'globalZeeQLLogger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'globalZeeQLLogger' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'globalZeeQLLogger' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
61 | #if DEBUG
62 | let defaultLevel = ZeeQLLoggerLogLevel.log
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/Logger.swift:90:17: warning: let 'stderrLogLevel' is not concurrency-safe because non-'Sendable' type 'ZeeQLLoggerLogLevel' may have shared mutable state; this is an error in the Swift 6 language mode
40 | }
41 |
42 | public enum ZeeQLLoggerLogLevel : Int8 { // cannot nest types in generics
| `- note: consider making enum 'ZeeQLLoggerLogLevel' conform to the 'Sendable' protocol
43 | case error
44 | case warn
:
88 | #endif
89 |
90 | fileprivate let stderrLogLevel : ZeeQLLoggerLogLevel = .error
| |- warning: let 'stderrLogLevel' is not concurrency-safe because non-'Sendable' type 'ZeeQLLoggerLogLevel' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'stderrLogLevel' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
91 |
92 | public struct ZeeQLPrintLogger : ZeeQLLogger {
[61/97] Compiling ZeeQL DataSource.swift
[62/97] Compiling ZeeQL EntityType+Builder.swift
[63/97] Compiling ZeeQL EntityType.swift
[64/97] Compiling ZeeQL Expression.swift
[65/97] Compiling ZeeQL ExpressionEvaluation.swift
[66/97] Compiling ZeeQL FetchSpecification+Builder.swift
[67/97] Compiling ZeeQL FetchSpecification.swift
[68/97] Compiling ZeeQL GlobalID.swift
[69/97] Compiling ZeeQL Key.swift
[70/97] Compiling ZeeQL KeyComparisonQualifier.swift
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/ObjectTrackingContext.swift:11:8: warning: associated value 'fetchSpecificationHasUnresolvedBindings' of 'Sendable'-conforming enum 'ObjectTrackingContextError' has non-sendable type 'any FetchSpecification'; this is an error in the Swift 6 language mode
9 | public enum ObjectTrackingContextError: Swift.Error {
10 |
11 | case fetchSpecificationHasUnresolvedBindings(FetchSpecification)
| `- warning: associated value 'fetchSpecificationHasUnresolvedBindings' of 'Sendable'-conforming enum 'ObjectTrackingContextError' has non-sendable type 'any FetchSpecification'; this is an error in the Swift 6 language mode
12 | }
13 |
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/FetchSpecification.swift:18:17: note: protocol 'FetchSpecification' does not conform to the 'Sendable' protocol
16 | * Also check out the QueryBuilder extension.
17 | */
18 | public protocol FetchSpecification : SmartDescription {
| `- note: protocol 'FetchSpecification' does not conform to the 'Sendable' protocol
19 | // TODO: This is a little funky now because we refer to Entity. It should be
20 | // a protocol.
[71/97] Compiling ZeeQL KeyValueQualifier.swift
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/ObjectTrackingContext.swift:11:8: warning: associated value 'fetchSpecificationHasUnresolvedBindings' of 'Sendable'-conforming enum 'ObjectTrackingContextError' has non-sendable type 'any FetchSpecification'; this is an error in the Swift 6 language mode
9 | public enum ObjectTrackingContextError: Swift.Error {
10 |
11 | case fetchSpecificationHasUnresolvedBindings(FetchSpecification)
| `- warning: associated value 'fetchSpecificationHasUnresolvedBindings' of 'Sendable'-conforming enum 'ObjectTrackingContextError' has non-sendable type 'any FetchSpecification'; this is an error in the Swift 6 language mode
12 | }
13 |
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/FetchSpecification.swift:18:17: note: protocol 'FetchSpecification' does not conform to the 'Sendable' protocol
16 | * Also check out the QueryBuilder extension.
17 | */
18 | public protocol FetchSpecification : SmartDescription {
| `- note: protocol 'FetchSpecification' does not conform to the 'Sendable' protocol
19 | // TODO: This is a little funky now because we refer to Entity. It should be
20 | // a protocol.
[72/97] Compiling ZeeQL ModelFetchSpecification.swift
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/ObjectTrackingContext.swift:11:8: warning: associated value 'fetchSpecificationHasUnresolvedBindings' of 'Sendable'-conforming enum 'ObjectTrackingContextError' has non-sendable type 'any FetchSpecification'; this is an error in the Swift 6 language mode
9 | public enum ObjectTrackingContextError: Swift.Error {
10 |
11 | case fetchSpecificationHasUnresolvedBindings(FetchSpecification)
| `- warning: associated value 'fetchSpecificationHasUnresolvedBindings' of 'Sendable'-conforming enum 'ObjectTrackingContextError' has non-sendable type 'any FetchSpecification'; this is an error in the Swift 6 language mode
12 | }
13 |
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/FetchSpecification.swift:18:17: note: protocol 'FetchSpecification' does not conform to the 'Sendable' protocol
16 | * Also check out the QueryBuilder extension.
17 | */
18 | public protocol FetchSpecification : SmartDescription {
| `- note: protocol 'FetchSpecification' does not conform to the 'Sendable' protocol
19 | // TODO: This is a little funky now because we refer to Entity. It should be
20 | // a protocol.
[73/97] Compiling ZeeQL NotQualifier.swift
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/ObjectTrackingContext.swift:11:8: warning: associated value 'fetchSpecificationHasUnresolvedBindings' of 'Sendable'-conforming enum 'ObjectTrackingContextError' has non-sendable type 'any FetchSpecification'; this is an error in the Swift 6 language mode
9 | public enum ObjectTrackingContextError: Swift.Error {
10 |
11 | case fetchSpecificationHasUnresolvedBindings(FetchSpecification)
| `- warning: associated value 'fetchSpecificationHasUnresolvedBindings' of 'Sendable'-conforming enum 'ObjectTrackingContextError' has non-sendable type 'any FetchSpecification'; this is an error in the Swift 6 language mode
12 | }
13 |
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/FetchSpecification.swift:18:17: note: protocol 'FetchSpecification' does not conform to the 'Sendable' protocol
16 | * Also check out the QueryBuilder extension.
17 | */
18 | public protocol FetchSpecification : SmartDescription {
| `- note: protocol 'FetchSpecification' does not conform to the 'Sendable' protocol
19 | // TODO: This is a little funky now because we refer to Entity. It should be
20 | // a protocol.
[74/97] Compiling ZeeQL ObjectStore.swift
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/ObjectTrackingContext.swift:11:8: warning: associated value 'fetchSpecificationHasUnresolvedBindings' of 'Sendable'-conforming enum 'ObjectTrackingContextError' has non-sendable type 'any FetchSpecification'; this is an error in the Swift 6 language mode
9 | public enum ObjectTrackingContextError: Swift.Error {
10 |
11 | case fetchSpecificationHasUnresolvedBindings(FetchSpecification)
| `- warning: associated value 'fetchSpecificationHasUnresolvedBindings' of 'Sendable'-conforming enum 'ObjectTrackingContextError' has non-sendable type 'any FetchSpecification'; this is an error in the Swift 6 language mode
12 | }
13 |
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/FetchSpecification.swift:18:17: note: protocol 'FetchSpecification' does not conform to the 'Sendable' protocol
16 | * Also check out the QueryBuilder extension.
17 | */
18 | public protocol FetchSpecification : SmartDescription {
| `- note: protocol 'FetchSpecification' does not conform to the 'Sendable' protocol
19 | // TODO: This is a little funky now because we refer to Entity. It should be
20 | // a protocol.
[75/97] Compiling ZeeQL ObjectTrackingContext.swift
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/ObjectTrackingContext.swift:11:8: warning: associated value 'fetchSpecificationHasUnresolvedBindings' of 'Sendable'-conforming enum 'ObjectTrackingContextError' has non-sendable type 'any FetchSpecification'; this is an error in the Swift 6 language mode
9 | public enum ObjectTrackingContextError: Swift.Error {
10 |
11 | case fetchSpecificationHasUnresolvedBindings(FetchSpecification)
| `- warning: associated value 'fetchSpecificationHasUnresolvedBindings' of 'Sendable'-conforming enum 'ObjectTrackingContextError' has non-sendable type 'any FetchSpecification'; this is an error in the Swift 6 language mode
12 | }
13 |
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/FetchSpecification.swift:18:17: note: protocol 'FetchSpecification' does not conform to the 'Sendable' protocol
16 | * Also check out the QueryBuilder extension.
17 | */
18 | public protocol FetchSpecification : SmartDescription {
| `- note: protocol 'FetchSpecification' does not conform to the 'Sendable' protocol
19 | // TODO: This is a little funky now because we refer to Entity. It should be
20 | // a protocol.
[76/97] Compiling ZeeQL Qualifier.swift
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/ObjectTrackingContext.swift:11:8: warning: associated value 'fetchSpecificationHasUnresolvedBindings' of 'Sendable'-conforming enum 'ObjectTrackingContextError' has non-sendable type 'any FetchSpecification'; this is an error in the Swift 6 language mode
9 | public enum ObjectTrackingContextError: Swift.Error {
10 |
11 | case fetchSpecificationHasUnresolvedBindings(FetchSpecification)
| `- warning: associated value 'fetchSpecificationHasUnresolvedBindings' of 'Sendable'-conforming enum 'ObjectTrackingContextError' has non-sendable type 'any FetchSpecification'; this is an error in the Swift 6 language mode
12 | }
13 |
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/FetchSpecification.swift:18:17: note: protocol 'FetchSpecification' does not conform to the 'Sendable' protocol
16 | * Also check out the QueryBuilder extension.
17 | */
18 | public protocol FetchSpecification : SmartDescription {
| `- note: protocol 'FetchSpecification' does not conform to the 'Sendable' protocol
19 | // TODO: This is a little funky now because we refer to Entity. It should be
20 | // a protocol.
[77/97] Compiling ZeeQL QualifierEvaluation.swift
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/ObjectTrackingContext.swift:11:8: warning: associated value 'fetchSpecificationHasUnresolvedBindings' of 'Sendable'-conforming enum 'ObjectTrackingContextError' has non-sendable type 'any FetchSpecification'; this is an error in the Swift 6 language mode
9 | public enum ObjectTrackingContextError: Swift.Error {
10 |
11 | case fetchSpecificationHasUnresolvedBindings(FetchSpecification)
| `- warning: associated value 'fetchSpecificationHasUnresolvedBindings' of 'Sendable'-conforming enum 'ObjectTrackingContextError' has non-sendable type 'any FetchSpecification'; this is an error in the Swift 6 language mode
12 | }
13 |
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/FetchSpecification.swift:18:17: note: protocol 'FetchSpecification' does not conform to the 'Sendable' protocol
16 | * Also check out the QueryBuilder extension.
17 | */
18 | public protocol FetchSpecification : SmartDescription {
| `- note: protocol 'FetchSpecification' does not conform to the 'Sendable' protocol
19 | // TODO: This is a little funky now because we refer to Entity. It should be
20 | // a protocol.
[78/97] Compiling ZeeQL QualifierParser.swift
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/ObjectTrackingContext.swift:11:8: warning: associated value 'fetchSpecificationHasUnresolvedBindings' of 'Sendable'-conforming enum 'ObjectTrackingContextError' has non-sendable type 'any FetchSpecification'; this is an error in the Swift 6 language mode
9 | public enum ObjectTrackingContextError: Swift.Error {
10 |
11 | case fetchSpecificationHasUnresolvedBindings(FetchSpecification)
| `- warning: associated value 'fetchSpecificationHasUnresolvedBindings' of 'Sendable'-conforming enum 'ObjectTrackingContextError' has non-sendable type 'any FetchSpecification'; this is an error in the Swift 6 language mode
12 | }
13 |
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/FetchSpecification.swift:18:17: note: protocol 'FetchSpecification' does not conform to the 'Sendable' protocol
16 | * Also check out the QueryBuilder extension.
17 | */
18 | public protocol FetchSpecification : SmartDescription {
| `- note: protocol 'FetchSpecification' does not conform to the 'Sendable' protocol
19 | // TODO: This is a little funky now because we refer to Entity. It should be
20 | // a protocol.
[79/97] Compiling ZeeQL AccessDataSource.swift
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:19:8: warning: associated value 'cannotConstructFetchSpecification' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'AccessDataSourceError.ConstructionErrorReason'; this is an error in the Swift 6 language mode
10 | // cannot nest in generic
11 |
12 | public enum ConstructionErrorReason: Equatable {
| `- note: consider making enum 'ConstructionErrorReason' conform to the 'Sendable' protocol
13 |
14 | case missingEntity
:
17 | }
18 |
19 | case cannotConstructFetchSpecification(ConstructionErrorReason)
| `- warning: associated value 'cannotConstructFetchSpecification' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'AccessDataSourceError.ConstructionErrorReason'; this is an error in the Swift 6 language mode
20 | case cannotConstructCountFetchSpecification
21 | case missingEntity
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:23:8: warning: associated value 'fetchReturnedMoreThanOneResult(fetchSpecification:firstObject:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any FetchSpecification'; this is an error in the Swift 6 language mode
21 | case missingEntity
22 | case countFetchReturnedNoResults
23 | case fetchReturnedMoreThanOneResult(fetchSpecification: FetchSpecification,
| `- warning: associated value 'fetchReturnedMoreThanOneResult(fetchSpecification:firstObject:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any FetchSpecification'; this is an error in the Swift 6 language mode
24 | firstObject: SwiftObject)
25 |
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/FetchSpecification.swift:18:17: note: protocol 'FetchSpecification' does not conform to the 'Sendable' protocol
16 | * Also check out the QueryBuilder extension.
17 | */
18 | public protocol FetchSpecification : SmartDescription {
| `- note: protocol 'FetchSpecification' does not conform to the 'Sendable' protocol
19 | // TODO: This is a little funky now because we refer to Entity. It should be
20 | // a protocol.
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:23:8: warning: associated value 'fetchReturnedMoreThanOneResult(fetchSpecification:firstObject:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any SwiftObject'; this is an error in the Swift 6 language mode
21 | case missingEntity
22 | case countFetchReturnedNoResults
23 | case fetchReturnedMoreThanOneResult(fetchSpecification: FetchSpecification,
| `- warning: associated value 'fetchReturnedMoreThanOneResult(fetchSpecification:firstObject:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any SwiftObject'; this is an error in the Swift 6 language mode
24 | firstObject: SwiftObject)
25 |
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/DataSource.swift:89:17: note: protocol 'SwiftObject' does not conform to the 'Sendable' protocol
87 | * Like `AnyObject` w/o the `@objc`.
88 | */
89 | public protocol SwiftObject: AnyObject {
| `- note: protocol 'SwiftObject' does not conform to the 'Sendable' protocol
90 | // is there a standard protocol for this? `AnyObject` also does @objc ...
91 | // hh(2025-04-03): I think AnyObject doesn't imply `@objc` anymore.
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:26:8: warning: associated value 'didNotFindFetchSpecification(name:entity:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any Entity'; this is an error in the Swift 6 language mode
24 | firstObject: SwiftObject)
25 |
26 | case didNotFindFetchSpecification(name: String, entity: Entity)
| `- warning: associated value 'didNotFindFetchSpecification(name:entity:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any Entity'; this is an error in the Swift 6 language mode
27 | case couldNotResolveBindings(fetchSpecification: FetchSpecification,
28 | bindings: Any)
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Entity.swift:20:17: note: protocol 'Entity' does not conform to the 'Sendable' protocol
18 | * involve incomplete attribute sets or a pattern name.
19 | */
20 | public protocol Entity: AnyObject, EquatableType, SmartDescription {
| `- note: protocol 'Entity' does not conform to the 'Sendable' protocol
21 |
22 | var name : String { get }
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:27:8: warning: associated value 'couldNotResolveBindings(fetchSpecification:bindings:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any FetchSpecification'; this is an error in the Swift 6 language mode
25 |
26 | case didNotFindFetchSpecification(name: String, entity: Entity)
27 | case couldNotResolveBindings(fetchSpecification: FetchSpecification,
| `- warning: associated value 'couldNotResolveBindings(fetchSpecification:bindings:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any FetchSpecification'; this is an error in the Swift 6 language mode
28 | bindings: Any)
29 | }
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/FetchSpecification.swift:18:17: note: protocol 'FetchSpecification' does not conform to the 'Sendable' protocol
16 | * Also check out the QueryBuilder extension.
17 | */
18 | public protocol FetchSpecification : SmartDescription {
| `- note: protocol 'FetchSpecification' does not conform to the 'Sendable' protocol
19 | // TODO: This is a little funky now because we refer to Entity. It should be
20 | // a protocol.
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:27:8: warning: associated value 'couldNotResolveBindings(fetchSpecification:bindings:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
25 |
26 | case didNotFindFetchSpecification(name: String, entity: Entity)
27 | case couldNotResolveBindings(fetchSpecification: FetchSpecification,
| `- warning: associated value 'couldNotResolveBindings(fetchSpecification:bindings:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
28 | bindings: Any)
29 | }
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/ActiveDataSource.swift:225:17: warning: let 'countAttr' is not concurrency-safe because non-'Sendable' type 'any Attribute' may have shared mutable state; this is an error in the Swift 6 language mode
223 |
224 | // Swift 3: static stored properties not supported in generic types
225 | fileprivate let countAttr : Attribute = {
| |- warning: let 'countAttr' is not concurrency-safe because non-'Sendable' type 'any Attribute' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'countAttr' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
226 | let countAttr = ModelAttribute(name: "count", externalType: "INT")
227 | countAttr.readFormat = "COUNT(*)"
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Attribute.swift:44:17: note: protocol 'Attribute' does not conform to the 'Sendable' protocol
42 | * - ``CodeValueAttribute``
43 | */
44 | public protocol Attribute : Property, SQLValue, ExpressionEvaluation,
| `- note: protocol 'Attribute' does not conform to the 'Sendable' protocol
45 | SmartDescription
46 | {
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorChannelPool.swift:95:10: warning: capture of 'self' with non-sendable type 'SingleConnectionPool' in a '@Sendable' closure
40 | *
41 | */
42 | public final class SingleConnectionPool: AdaptorChannelPool {
| `- note: class 'SingleConnectionPool' does not conform to the 'Sendable' protocol
43 |
44 | struct Entry {
:
93 |
94 | expirationQueue.async {
95 | if self.gc != nil { return } // already running
| `- warning: capture of 'self' with non-sendable type 'SingleConnectionPool' in a '@Sendable' closure
96 | self.gc = DispatchWorkItem(block: self.expire)
97 | self.expirationQueue.asyncAfter(deadline: .now() + .seconds(1),
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorChannelPool.swift:205:10: warning: capture of 'self' with non-sendable type 'SimpleAdaptorChannelPool' in a '@Sendable' closure
142 | *
143 | */
144 | public final class SimpleAdaptorChannelPool: AdaptorChannelPool {
| `- note: class 'SimpleAdaptorChannelPool' does not conform to the 'Sendable' protocol
145 |
146 | struct Entry {
:
203 |
204 | expirationQueue.async {
205 | if self.gc != nil { return } // already running
| `- warning: capture of 'self' with non-sendable type 'SimpleAdaptorChannelPool' in a '@Sendable' closure
206 |
207 | let now = Date()
[80/97] Compiling ZeeQL AccessDataSourceError.swift
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:19:8: warning: associated value 'cannotConstructFetchSpecification' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'AccessDataSourceError.ConstructionErrorReason'; this is an error in the Swift 6 language mode
10 | // cannot nest in generic
11 |
12 | public enum ConstructionErrorReason: Equatable {
| `- note: consider making enum 'ConstructionErrorReason' conform to the 'Sendable' protocol
13 |
14 | case missingEntity
:
17 | }
18 |
19 | case cannotConstructFetchSpecification(ConstructionErrorReason)
| `- warning: associated value 'cannotConstructFetchSpecification' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'AccessDataSourceError.ConstructionErrorReason'; this is an error in the Swift 6 language mode
20 | case cannotConstructCountFetchSpecification
21 | case missingEntity
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:23:8: warning: associated value 'fetchReturnedMoreThanOneResult(fetchSpecification:firstObject:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any FetchSpecification'; this is an error in the Swift 6 language mode
21 | case missingEntity
22 | case countFetchReturnedNoResults
23 | case fetchReturnedMoreThanOneResult(fetchSpecification: FetchSpecification,
| `- warning: associated value 'fetchReturnedMoreThanOneResult(fetchSpecification:firstObject:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any FetchSpecification'; this is an error in the Swift 6 language mode
24 | firstObject: SwiftObject)
25 |
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/FetchSpecification.swift:18:17: note: protocol 'FetchSpecification' does not conform to the 'Sendable' protocol
16 | * Also check out the QueryBuilder extension.
17 | */
18 | public protocol FetchSpecification : SmartDescription {
| `- note: protocol 'FetchSpecification' does not conform to the 'Sendable' protocol
19 | // TODO: This is a little funky now because we refer to Entity. It should be
20 | // a protocol.
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:23:8: warning: associated value 'fetchReturnedMoreThanOneResult(fetchSpecification:firstObject:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any SwiftObject'; this is an error in the Swift 6 language mode
21 | case missingEntity
22 | case countFetchReturnedNoResults
23 | case fetchReturnedMoreThanOneResult(fetchSpecification: FetchSpecification,
| `- warning: associated value 'fetchReturnedMoreThanOneResult(fetchSpecification:firstObject:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any SwiftObject'; this is an error in the Swift 6 language mode
24 | firstObject: SwiftObject)
25 |
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/DataSource.swift:89:17: note: protocol 'SwiftObject' does not conform to the 'Sendable' protocol
87 | * Like `AnyObject` w/o the `@objc`.
88 | */
89 | public protocol SwiftObject: AnyObject {
| `- note: protocol 'SwiftObject' does not conform to the 'Sendable' protocol
90 | // is there a standard protocol for this? `AnyObject` also does @objc ...
91 | // hh(2025-04-03): I think AnyObject doesn't imply `@objc` anymore.
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:26:8: warning: associated value 'didNotFindFetchSpecification(name:entity:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any Entity'; this is an error in the Swift 6 language mode
24 | firstObject: SwiftObject)
25 |
26 | case didNotFindFetchSpecification(name: String, entity: Entity)
| `- warning: associated value 'didNotFindFetchSpecification(name:entity:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any Entity'; this is an error in the Swift 6 language mode
27 | case couldNotResolveBindings(fetchSpecification: FetchSpecification,
28 | bindings: Any)
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Entity.swift:20:17: note: protocol 'Entity' does not conform to the 'Sendable' protocol
18 | * involve incomplete attribute sets or a pattern name.
19 | */
20 | public protocol Entity: AnyObject, EquatableType, SmartDescription {
| `- note: protocol 'Entity' does not conform to the 'Sendable' protocol
21 |
22 | var name : String { get }
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:27:8: warning: associated value 'couldNotResolveBindings(fetchSpecification:bindings:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any FetchSpecification'; this is an error in the Swift 6 language mode
25 |
26 | case didNotFindFetchSpecification(name: String, entity: Entity)
27 | case couldNotResolveBindings(fetchSpecification: FetchSpecification,
| `- warning: associated value 'couldNotResolveBindings(fetchSpecification:bindings:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any FetchSpecification'; this is an error in the Swift 6 language mode
28 | bindings: Any)
29 | }
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/FetchSpecification.swift:18:17: note: protocol 'FetchSpecification' does not conform to the 'Sendable' protocol
16 | * Also check out the QueryBuilder extension.
17 | */
18 | public protocol FetchSpecification : SmartDescription {
| `- note: protocol 'FetchSpecification' does not conform to the 'Sendable' protocol
19 | // TODO: This is a little funky now because we refer to Entity. It should be
20 | // a protocol.
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:27:8: warning: associated value 'couldNotResolveBindings(fetchSpecification:bindings:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
25 |
26 | case didNotFindFetchSpecification(name: String, entity: Entity)
27 | case couldNotResolveBindings(fetchSpecification: FetchSpecification,
| `- warning: associated value 'couldNotResolveBindings(fetchSpecification:bindings:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
28 | bindings: Any)
29 | }
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/ActiveDataSource.swift:225:17: warning: let 'countAttr' is not concurrency-safe because non-'Sendable' type 'any Attribute' may have shared mutable state; this is an error in the Swift 6 language mode
223 |
224 | // Swift 3: static stored properties not supported in generic types
225 | fileprivate let countAttr : Attribute = {
| |- warning: let 'countAttr' is not concurrency-safe because non-'Sendable' type 'any Attribute' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'countAttr' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
226 | let countAttr = ModelAttribute(name: "count", externalType: "INT")
227 | countAttr.readFormat = "COUNT(*)"
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Attribute.swift:44:17: note: protocol 'Attribute' does not conform to the 'Sendable' protocol
42 | * - ``CodeValueAttribute``
43 | */
44 | public protocol Attribute : Property, SQLValue, ExpressionEvaluation,
| `- note: protocol 'Attribute' does not conform to the 'Sendable' protocol
45 | SmartDescription
46 | {
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorChannelPool.swift:95:10: warning: capture of 'self' with non-sendable type 'SingleConnectionPool' in a '@Sendable' closure
40 | *
41 | */
42 | public final class SingleConnectionPool: AdaptorChannelPool {
| `- note: class 'SingleConnectionPool' does not conform to the 'Sendable' protocol
43 |
44 | struct Entry {
:
93 |
94 | expirationQueue.async {
95 | if self.gc != nil { return } // already running
| `- warning: capture of 'self' with non-sendable type 'SingleConnectionPool' in a '@Sendable' closure
96 | self.gc = DispatchWorkItem(block: self.expire)
97 | self.expirationQueue.asyncAfter(deadline: .now() + .seconds(1),
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorChannelPool.swift:205:10: warning: capture of 'self' with non-sendable type 'SimpleAdaptorChannelPool' in a '@Sendable' closure
142 | *
143 | */
144 | public final class SimpleAdaptorChannelPool: AdaptorChannelPool {
| `- note: class 'SimpleAdaptorChannelPool' does not conform to the 'Sendable' protocol
145 |
146 | struct Entry {
:
203 |
204 | expirationQueue.async {
205 | if self.gc != nil { return } // already running
| `- warning: capture of 'self' with non-sendable type 'SimpleAdaptorChannelPool' in a '@Sendable' closure
206 |
207 | let now = Date()
[81/97] Compiling ZeeQL AccessDataSourceFinders.swift
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:19:8: warning: associated value 'cannotConstructFetchSpecification' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'AccessDataSourceError.ConstructionErrorReason'; this is an error in the Swift 6 language mode
10 | // cannot nest in generic
11 |
12 | public enum ConstructionErrorReason: Equatable {
| `- note: consider making enum 'ConstructionErrorReason' conform to the 'Sendable' protocol
13 |
14 | case missingEntity
:
17 | }
18 |
19 | case cannotConstructFetchSpecification(ConstructionErrorReason)
| `- warning: associated value 'cannotConstructFetchSpecification' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'AccessDataSourceError.ConstructionErrorReason'; this is an error in the Swift 6 language mode
20 | case cannotConstructCountFetchSpecification
21 | case missingEntity
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:23:8: warning: associated value 'fetchReturnedMoreThanOneResult(fetchSpecification:firstObject:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any FetchSpecification'; this is an error in the Swift 6 language mode
21 | case missingEntity
22 | case countFetchReturnedNoResults
23 | case fetchReturnedMoreThanOneResult(fetchSpecification: FetchSpecification,
| `- warning: associated value 'fetchReturnedMoreThanOneResult(fetchSpecification:firstObject:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any FetchSpecification'; this is an error in the Swift 6 language mode
24 | firstObject: SwiftObject)
25 |
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/FetchSpecification.swift:18:17: note: protocol 'FetchSpecification' does not conform to the 'Sendable' protocol
16 | * Also check out the QueryBuilder extension.
17 | */
18 | public protocol FetchSpecification : SmartDescription {
| `- note: protocol 'FetchSpecification' does not conform to the 'Sendable' protocol
19 | // TODO: This is a little funky now because we refer to Entity. It should be
20 | // a protocol.
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:23:8: warning: associated value 'fetchReturnedMoreThanOneResult(fetchSpecification:firstObject:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any SwiftObject'; this is an error in the Swift 6 language mode
21 | case missingEntity
22 | case countFetchReturnedNoResults
23 | case fetchReturnedMoreThanOneResult(fetchSpecification: FetchSpecification,
| `- warning: associated value 'fetchReturnedMoreThanOneResult(fetchSpecification:firstObject:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any SwiftObject'; this is an error in the Swift 6 language mode
24 | firstObject: SwiftObject)
25 |
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/DataSource.swift:89:17: note: protocol 'SwiftObject' does not conform to the 'Sendable' protocol
87 | * Like `AnyObject` w/o the `@objc`.
88 | */
89 | public protocol SwiftObject: AnyObject {
| `- note: protocol 'SwiftObject' does not conform to the 'Sendable' protocol
90 | // is there a standard protocol for this? `AnyObject` also does @objc ...
91 | // hh(2025-04-03): I think AnyObject doesn't imply `@objc` anymore.
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:26:8: warning: associated value 'didNotFindFetchSpecification(name:entity:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any Entity'; this is an error in the Swift 6 language mode
24 | firstObject: SwiftObject)
25 |
26 | case didNotFindFetchSpecification(name: String, entity: Entity)
| `- warning: associated value 'didNotFindFetchSpecification(name:entity:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any Entity'; this is an error in the Swift 6 language mode
27 | case couldNotResolveBindings(fetchSpecification: FetchSpecification,
28 | bindings: Any)
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Entity.swift:20:17: note: protocol 'Entity' does not conform to the 'Sendable' protocol
18 | * involve incomplete attribute sets or a pattern name.
19 | */
20 | public protocol Entity: AnyObject, EquatableType, SmartDescription {
| `- note: protocol 'Entity' does not conform to the 'Sendable' protocol
21 |
22 | var name : String { get }
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:27:8: warning: associated value 'couldNotResolveBindings(fetchSpecification:bindings:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any FetchSpecification'; this is an error in the Swift 6 language mode
25 |
26 | case didNotFindFetchSpecification(name: String, entity: Entity)
27 | case couldNotResolveBindings(fetchSpecification: FetchSpecification,
| `- warning: associated value 'couldNotResolveBindings(fetchSpecification:bindings:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any FetchSpecification'; this is an error in the Swift 6 language mode
28 | bindings: Any)
29 | }
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/FetchSpecification.swift:18:17: note: protocol 'FetchSpecification' does not conform to the 'Sendable' protocol
16 | * Also check out the QueryBuilder extension.
17 | */
18 | public protocol FetchSpecification : SmartDescription {
| `- note: protocol 'FetchSpecification' does not conform to the 'Sendable' protocol
19 | // TODO: This is a little funky now because we refer to Entity. It should be
20 | // a protocol.
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:27:8: warning: associated value 'couldNotResolveBindings(fetchSpecification:bindings:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
25 |
26 | case didNotFindFetchSpecification(name: String, entity: Entity)
27 | case couldNotResolveBindings(fetchSpecification: FetchSpecification,
| `- warning: associated value 'couldNotResolveBindings(fetchSpecification:bindings:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
28 | bindings: Any)
29 | }
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/ActiveDataSource.swift:225:17: warning: let 'countAttr' is not concurrency-safe because non-'Sendable' type 'any Attribute' may have shared mutable state; this is an error in the Swift 6 language mode
223 |
224 | // Swift 3: static stored properties not supported in generic types
225 | fileprivate let countAttr : Attribute = {
| |- warning: let 'countAttr' is not concurrency-safe because non-'Sendable' type 'any Attribute' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'countAttr' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
226 | let countAttr = ModelAttribute(name: "count", externalType: "INT")
227 | countAttr.readFormat = "COUNT(*)"
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Attribute.swift:44:17: note: protocol 'Attribute' does not conform to the 'Sendable' protocol
42 | * - ``CodeValueAttribute``
43 | */
44 | public protocol Attribute : Property, SQLValue, ExpressionEvaluation,
| `- note: protocol 'Attribute' does not conform to the 'Sendable' protocol
45 | SmartDescription
46 | {
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorChannelPool.swift:95:10: warning: capture of 'self' with non-sendable type 'SingleConnectionPool' in a '@Sendable' closure
40 | *
41 | */
42 | public final class SingleConnectionPool: AdaptorChannelPool {
| `- note: class 'SingleConnectionPool' does not conform to the 'Sendable' protocol
43 |
44 | struct Entry {
:
93 |
94 | expirationQueue.async {
95 | if self.gc != nil { return } // already running
| `- warning: capture of 'self' with non-sendable type 'SingleConnectionPool' in a '@Sendable' closure
96 | self.gc = DispatchWorkItem(block: self.expire)
97 | self.expirationQueue.asyncAfter(deadline: .now() + .seconds(1),
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorChannelPool.swift:205:10: warning: capture of 'self' with non-sendable type 'SimpleAdaptorChannelPool' in a '@Sendable' closure
142 | *
143 | */
144 | public final class SimpleAdaptorChannelPool: AdaptorChannelPool {
| `- note: class 'SimpleAdaptorChannelPool' does not conform to the 'Sendable' protocol
145 |
146 | struct Entry {
:
203 |
204 | expirationQueue.async {
205 | if self.gc != nil { return } // already running
| `- warning: capture of 'self' with non-sendable type 'SimpleAdaptorChannelPool' in a '@Sendable' closure
206 |
207 | let now = Date()
[82/97] Compiling ZeeQL ActiveDataSource.swift
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:19:8: warning: associated value 'cannotConstructFetchSpecification' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'AccessDataSourceError.ConstructionErrorReason'; this is an error in the Swift 6 language mode
10 | // cannot nest in generic
11 |
12 | public enum ConstructionErrorReason: Equatable {
| `- note: consider making enum 'ConstructionErrorReason' conform to the 'Sendable' protocol
13 |
14 | case missingEntity
:
17 | }
18 |
19 | case cannotConstructFetchSpecification(ConstructionErrorReason)
| `- warning: associated value 'cannotConstructFetchSpecification' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'AccessDataSourceError.ConstructionErrorReason'; this is an error in the Swift 6 language mode
20 | case cannotConstructCountFetchSpecification
21 | case missingEntity
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:23:8: warning: associated value 'fetchReturnedMoreThanOneResult(fetchSpecification:firstObject:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any FetchSpecification'; this is an error in the Swift 6 language mode
21 | case missingEntity
22 | case countFetchReturnedNoResults
23 | case fetchReturnedMoreThanOneResult(fetchSpecification: FetchSpecification,
| `- warning: associated value 'fetchReturnedMoreThanOneResult(fetchSpecification:firstObject:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any FetchSpecification'; this is an error in the Swift 6 language mode
24 | firstObject: SwiftObject)
25 |
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/FetchSpecification.swift:18:17: note: protocol 'FetchSpecification' does not conform to the 'Sendable' protocol
16 | * Also check out the QueryBuilder extension.
17 | */
18 | public protocol FetchSpecification : SmartDescription {
| `- note: protocol 'FetchSpecification' does not conform to the 'Sendable' protocol
19 | // TODO: This is a little funky now because we refer to Entity. It should be
20 | // a protocol.
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:23:8: warning: associated value 'fetchReturnedMoreThanOneResult(fetchSpecification:firstObject:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any SwiftObject'; this is an error in the Swift 6 language mode
21 | case missingEntity
22 | case countFetchReturnedNoResults
23 | case fetchReturnedMoreThanOneResult(fetchSpecification: FetchSpecification,
| `- warning: associated value 'fetchReturnedMoreThanOneResult(fetchSpecification:firstObject:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any SwiftObject'; this is an error in the Swift 6 language mode
24 | firstObject: SwiftObject)
25 |
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/DataSource.swift:89:17: note: protocol 'SwiftObject' does not conform to the 'Sendable' protocol
87 | * Like `AnyObject` w/o the `@objc`.
88 | */
89 | public protocol SwiftObject: AnyObject {
| `- note: protocol 'SwiftObject' does not conform to the 'Sendable' protocol
90 | // is there a standard protocol for this? `AnyObject` also does @objc ...
91 | // hh(2025-04-03): I think AnyObject doesn't imply `@objc` anymore.
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:26:8: warning: associated value 'didNotFindFetchSpecification(name:entity:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any Entity'; this is an error in the Swift 6 language mode
24 | firstObject: SwiftObject)
25 |
26 | case didNotFindFetchSpecification(name: String, entity: Entity)
| `- warning: associated value 'didNotFindFetchSpecification(name:entity:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any Entity'; this is an error in the Swift 6 language mode
27 | case couldNotResolveBindings(fetchSpecification: FetchSpecification,
28 | bindings: Any)
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Entity.swift:20:17: note: protocol 'Entity' does not conform to the 'Sendable' protocol
18 | * involve incomplete attribute sets or a pattern name.
19 | */
20 | public protocol Entity: AnyObject, EquatableType, SmartDescription {
| `- note: protocol 'Entity' does not conform to the 'Sendable' protocol
21 |
22 | var name : String { get }
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:27:8: warning: associated value 'couldNotResolveBindings(fetchSpecification:bindings:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any FetchSpecification'; this is an error in the Swift 6 language mode
25 |
26 | case didNotFindFetchSpecification(name: String, entity: Entity)
27 | case couldNotResolveBindings(fetchSpecification: FetchSpecification,
| `- warning: associated value 'couldNotResolveBindings(fetchSpecification:bindings:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any FetchSpecification'; this is an error in the Swift 6 language mode
28 | bindings: Any)
29 | }
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/FetchSpecification.swift:18:17: note: protocol 'FetchSpecification' does not conform to the 'Sendable' protocol
16 | * Also check out the QueryBuilder extension.
17 | */
18 | public protocol FetchSpecification : SmartDescription {
| `- note: protocol 'FetchSpecification' does not conform to the 'Sendable' protocol
19 | // TODO: This is a little funky now because we refer to Entity. It should be
20 | // a protocol.
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:27:8: warning: associated value 'couldNotResolveBindings(fetchSpecification:bindings:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
25 |
26 | case didNotFindFetchSpecification(name: String, entity: Entity)
27 | case couldNotResolveBindings(fetchSpecification: FetchSpecification,
| `- warning: associated value 'couldNotResolveBindings(fetchSpecification:bindings:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
28 | bindings: Any)
29 | }
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/ActiveDataSource.swift:225:17: warning: let 'countAttr' is not concurrency-safe because non-'Sendable' type 'any Attribute' may have shared mutable state; this is an error in the Swift 6 language mode
223 |
224 | // Swift 3: static stored properties not supported in generic types
225 | fileprivate let countAttr : Attribute = {
| |- warning: let 'countAttr' is not concurrency-safe because non-'Sendable' type 'any Attribute' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'countAttr' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
226 | let countAttr = ModelAttribute(name: "count", externalType: "INT")
227 | countAttr.readFormat = "COUNT(*)"
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Attribute.swift:44:17: note: protocol 'Attribute' does not conform to the 'Sendable' protocol
42 | * - ``CodeValueAttribute``
43 | */
44 | public protocol Attribute : Property, SQLValue, ExpressionEvaluation,
| `- note: protocol 'Attribute' does not conform to the 'Sendable' protocol
45 | SmartDescription
46 | {
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorChannelPool.swift:95:10: warning: capture of 'self' with non-sendable type 'SingleConnectionPool' in a '@Sendable' closure
40 | *
41 | */
42 | public final class SingleConnectionPool: AdaptorChannelPool {
| `- note: class 'SingleConnectionPool' does not conform to the 'Sendable' protocol
43 |
44 | struct Entry {
:
93 |
94 | expirationQueue.async {
95 | if self.gc != nil { return } // already running
| `- warning: capture of 'self' with non-sendable type 'SingleConnectionPool' in a '@Sendable' closure
96 | self.gc = DispatchWorkItem(block: self.expire)
97 | self.expirationQueue.asyncAfter(deadline: .now() + .seconds(1),
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorChannelPool.swift:205:10: warning: capture of 'self' with non-sendable type 'SimpleAdaptorChannelPool' in a '@Sendable' closure
142 | *
143 | */
144 | public final class SimpleAdaptorChannelPool: AdaptorChannelPool {
| `- note: class 'SimpleAdaptorChannelPool' does not conform to the 'Sendable' protocol
145 |
146 | struct Entry {
:
203 |
204 | expirationQueue.async {
205 | if self.gc != nil { return } // already running
| `- warning: capture of 'self' with non-sendable type 'SimpleAdaptorChannelPool' in a '@Sendable' closure
206 |
207 | let now = Date()
[83/97] Compiling ZeeQL ActiveRecord.swift
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:19:8: warning: associated value 'cannotConstructFetchSpecification' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'AccessDataSourceError.ConstructionErrorReason'; this is an error in the Swift 6 language mode
10 | // cannot nest in generic
11 |
12 | public enum ConstructionErrorReason: Equatable {
| `- note: consider making enum 'ConstructionErrorReason' conform to the 'Sendable' protocol
13 |
14 | case missingEntity
:
17 | }
18 |
19 | case cannotConstructFetchSpecification(ConstructionErrorReason)
| `- warning: associated value 'cannotConstructFetchSpecification' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'AccessDataSourceError.ConstructionErrorReason'; this is an error in the Swift 6 language mode
20 | case cannotConstructCountFetchSpecification
21 | case missingEntity
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:23:8: warning: associated value 'fetchReturnedMoreThanOneResult(fetchSpecification:firstObject:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any FetchSpecification'; this is an error in the Swift 6 language mode
21 | case missingEntity
22 | case countFetchReturnedNoResults
23 | case fetchReturnedMoreThanOneResult(fetchSpecification: FetchSpecification,
| `- warning: associated value 'fetchReturnedMoreThanOneResult(fetchSpecification:firstObject:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any FetchSpecification'; this is an error in the Swift 6 language mode
24 | firstObject: SwiftObject)
25 |
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/FetchSpecification.swift:18:17: note: protocol 'FetchSpecification' does not conform to the 'Sendable' protocol
16 | * Also check out the QueryBuilder extension.
17 | */
18 | public protocol FetchSpecification : SmartDescription {
| `- note: protocol 'FetchSpecification' does not conform to the 'Sendable' protocol
19 | // TODO: This is a little funky now because we refer to Entity. It should be
20 | // a protocol.
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:23:8: warning: associated value 'fetchReturnedMoreThanOneResult(fetchSpecification:firstObject:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any SwiftObject'; this is an error in the Swift 6 language mode
21 | case missingEntity
22 | case countFetchReturnedNoResults
23 | case fetchReturnedMoreThanOneResult(fetchSpecification: FetchSpecification,
| `- warning: associated value 'fetchReturnedMoreThanOneResult(fetchSpecification:firstObject:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any SwiftObject'; this is an error in the Swift 6 language mode
24 | firstObject: SwiftObject)
25 |
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/DataSource.swift:89:17: note: protocol 'SwiftObject' does not conform to the 'Sendable' protocol
87 | * Like `AnyObject` w/o the `@objc`.
88 | */
89 | public protocol SwiftObject: AnyObject {
| `- note: protocol 'SwiftObject' does not conform to the 'Sendable' protocol
90 | // is there a standard protocol for this? `AnyObject` also does @objc ...
91 | // hh(2025-04-03): I think AnyObject doesn't imply `@objc` anymore.
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:26:8: warning: associated value 'didNotFindFetchSpecification(name:entity:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any Entity'; this is an error in the Swift 6 language mode
24 | firstObject: SwiftObject)
25 |
26 | case didNotFindFetchSpecification(name: String, entity: Entity)
| `- warning: associated value 'didNotFindFetchSpecification(name:entity:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any Entity'; this is an error in the Swift 6 language mode
27 | case couldNotResolveBindings(fetchSpecification: FetchSpecification,
28 | bindings: Any)
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Entity.swift:20:17: note: protocol 'Entity' does not conform to the 'Sendable' protocol
18 | * involve incomplete attribute sets or a pattern name.
19 | */
20 | public protocol Entity: AnyObject, EquatableType, SmartDescription {
| `- note: protocol 'Entity' does not conform to the 'Sendable' protocol
21 |
22 | var name : String { get }
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:27:8: warning: associated value 'couldNotResolveBindings(fetchSpecification:bindings:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any FetchSpecification'; this is an error in the Swift 6 language mode
25 |
26 | case didNotFindFetchSpecification(name: String, entity: Entity)
27 | case couldNotResolveBindings(fetchSpecification: FetchSpecification,
| `- warning: associated value 'couldNotResolveBindings(fetchSpecification:bindings:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any FetchSpecification'; this is an error in the Swift 6 language mode
28 | bindings: Any)
29 | }
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/FetchSpecification.swift:18:17: note: protocol 'FetchSpecification' does not conform to the 'Sendable' protocol
16 | * Also check out the QueryBuilder extension.
17 | */
18 | public protocol FetchSpecification : SmartDescription {
| `- note: protocol 'FetchSpecification' does not conform to the 'Sendable' protocol
19 | // TODO: This is a little funky now because we refer to Entity. It should be
20 | // a protocol.
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:27:8: warning: associated value 'couldNotResolveBindings(fetchSpecification:bindings:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
25 |
26 | case didNotFindFetchSpecification(name: String, entity: Entity)
27 | case couldNotResolveBindings(fetchSpecification: FetchSpecification,
| `- warning: associated value 'couldNotResolveBindings(fetchSpecification:bindings:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
28 | bindings: Any)
29 | }
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/ActiveDataSource.swift:225:17: warning: let 'countAttr' is not concurrency-safe because non-'Sendable' type 'any Attribute' may have shared mutable state; this is an error in the Swift 6 language mode
223 |
224 | // Swift 3: static stored properties not supported in generic types
225 | fileprivate let countAttr : Attribute = {
| |- warning: let 'countAttr' is not concurrency-safe because non-'Sendable' type 'any Attribute' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'countAttr' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
226 | let countAttr = ModelAttribute(name: "count", externalType: "INT")
227 | countAttr.readFormat = "COUNT(*)"
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Attribute.swift:44:17: note: protocol 'Attribute' does not conform to the 'Sendable' protocol
42 | * - ``CodeValueAttribute``
43 | */
44 | public protocol Attribute : Property, SQLValue, ExpressionEvaluation,
| `- note: protocol 'Attribute' does not conform to the 'Sendable' protocol
45 | SmartDescription
46 | {
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorChannelPool.swift:95:10: warning: capture of 'self' with non-sendable type 'SingleConnectionPool' in a '@Sendable' closure
40 | *
41 | */
42 | public final class SingleConnectionPool: AdaptorChannelPool {
| `- note: class 'SingleConnectionPool' does not conform to the 'Sendable' protocol
43 |
44 | struct Entry {
:
93 |
94 | expirationQueue.async {
95 | if self.gc != nil { return } // already running
| `- warning: capture of 'self' with non-sendable type 'SingleConnectionPool' in a '@Sendable' closure
96 | self.gc = DispatchWorkItem(block: self.expire)
97 | self.expirationQueue.asyncAfter(deadline: .now() + .seconds(1),
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorChannelPool.swift:205:10: warning: capture of 'self' with non-sendable type 'SimpleAdaptorChannelPool' in a '@Sendable' closure
142 | *
143 | */
144 | public final class SimpleAdaptorChannelPool: AdaptorChannelPool {
| `- note: class 'SimpleAdaptorChannelPool' does not conform to the 'Sendable' protocol
145 |
146 | struct Entry {
:
203 |
204 | expirationQueue.async {
205 | if self.gc != nil { return } // already running
| `- warning: capture of 'self' with non-sendable type 'SimpleAdaptorChannelPool' in a '@Sendable' closure
206 |
207 | let now = Date()
[84/97] Compiling ZeeQL ActiveRecordType.swift
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:19:8: warning: associated value 'cannotConstructFetchSpecification' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'AccessDataSourceError.ConstructionErrorReason'; this is an error in the Swift 6 language mode
10 | // cannot nest in generic
11 |
12 | public enum ConstructionErrorReason: Equatable {
| `- note: consider making enum 'ConstructionErrorReason' conform to the 'Sendable' protocol
13 |
14 | case missingEntity
:
17 | }
18 |
19 | case cannotConstructFetchSpecification(ConstructionErrorReason)
| `- warning: associated value 'cannotConstructFetchSpecification' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'AccessDataSourceError.ConstructionErrorReason'; this is an error in the Swift 6 language mode
20 | case cannotConstructCountFetchSpecification
21 | case missingEntity
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:23:8: warning: associated value 'fetchReturnedMoreThanOneResult(fetchSpecification:firstObject:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any FetchSpecification'; this is an error in the Swift 6 language mode
21 | case missingEntity
22 | case countFetchReturnedNoResults
23 | case fetchReturnedMoreThanOneResult(fetchSpecification: FetchSpecification,
| `- warning: associated value 'fetchReturnedMoreThanOneResult(fetchSpecification:firstObject:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any FetchSpecification'; this is an error in the Swift 6 language mode
24 | firstObject: SwiftObject)
25 |
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/FetchSpecification.swift:18:17: note: protocol 'FetchSpecification' does not conform to the 'Sendable' protocol
16 | * Also check out the QueryBuilder extension.
17 | */
18 | public protocol FetchSpecification : SmartDescription {
| `- note: protocol 'FetchSpecification' does not conform to the 'Sendable' protocol
19 | // TODO: This is a little funky now because we refer to Entity. It should be
20 | // a protocol.
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:23:8: warning: associated value 'fetchReturnedMoreThanOneResult(fetchSpecification:firstObject:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any SwiftObject'; this is an error in the Swift 6 language mode
21 | case missingEntity
22 | case countFetchReturnedNoResults
23 | case fetchReturnedMoreThanOneResult(fetchSpecification: FetchSpecification,
| `- warning: associated value 'fetchReturnedMoreThanOneResult(fetchSpecification:firstObject:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any SwiftObject'; this is an error in the Swift 6 language mode
24 | firstObject: SwiftObject)
25 |
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/DataSource.swift:89:17: note: protocol 'SwiftObject' does not conform to the 'Sendable' protocol
87 | * Like `AnyObject` w/o the `@objc`.
88 | */
89 | public protocol SwiftObject: AnyObject {
| `- note: protocol 'SwiftObject' does not conform to the 'Sendable' protocol
90 | // is there a standard protocol for this? `AnyObject` also does @objc ...
91 | // hh(2025-04-03): I think AnyObject doesn't imply `@objc` anymore.
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:26:8: warning: associated value 'didNotFindFetchSpecification(name:entity:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any Entity'; this is an error in the Swift 6 language mode
24 | firstObject: SwiftObject)
25 |
26 | case didNotFindFetchSpecification(name: String, entity: Entity)
| `- warning: associated value 'didNotFindFetchSpecification(name:entity:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any Entity'; this is an error in the Swift 6 language mode
27 | case couldNotResolveBindings(fetchSpecification: FetchSpecification,
28 | bindings: Any)
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Entity.swift:20:17: note: protocol 'Entity' does not conform to the 'Sendable' protocol
18 | * involve incomplete attribute sets or a pattern name.
19 | */
20 | public protocol Entity: AnyObject, EquatableType, SmartDescription {
| `- note: protocol 'Entity' does not conform to the 'Sendable' protocol
21 |
22 | var name : String { get }
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:27:8: warning: associated value 'couldNotResolveBindings(fetchSpecification:bindings:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any FetchSpecification'; this is an error in the Swift 6 language mode
25 |
26 | case didNotFindFetchSpecification(name: String, entity: Entity)
27 | case couldNotResolveBindings(fetchSpecification: FetchSpecification,
| `- warning: associated value 'couldNotResolveBindings(fetchSpecification:bindings:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any FetchSpecification'; this is an error in the Swift 6 language mode
28 | bindings: Any)
29 | }
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/FetchSpecification.swift:18:17: note: protocol 'FetchSpecification' does not conform to the 'Sendable' protocol
16 | * Also check out the QueryBuilder extension.
17 | */
18 | public protocol FetchSpecification : SmartDescription {
| `- note: protocol 'FetchSpecification' does not conform to the 'Sendable' protocol
19 | // TODO: This is a little funky now because we refer to Entity. It should be
20 | // a protocol.
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:27:8: warning: associated value 'couldNotResolveBindings(fetchSpecification:bindings:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
25 |
26 | case didNotFindFetchSpecification(name: String, entity: Entity)
27 | case couldNotResolveBindings(fetchSpecification: FetchSpecification,
| `- warning: associated value 'couldNotResolveBindings(fetchSpecification:bindings:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
28 | bindings: Any)
29 | }
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/ActiveDataSource.swift:225:17: warning: let 'countAttr' is not concurrency-safe because non-'Sendable' type 'any Attribute' may have shared mutable state; this is an error in the Swift 6 language mode
223 |
224 | // Swift 3: static stored properties not supported in generic types
225 | fileprivate let countAttr : Attribute = {
| |- warning: let 'countAttr' is not concurrency-safe because non-'Sendable' type 'any Attribute' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'countAttr' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
226 | let countAttr = ModelAttribute(name: "count", externalType: "INT")
227 | countAttr.readFormat = "COUNT(*)"
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Attribute.swift:44:17: note: protocol 'Attribute' does not conform to the 'Sendable' protocol
42 | * - ``CodeValueAttribute``
43 | */
44 | public protocol Attribute : Property, SQLValue, ExpressionEvaluation,
| `- note: protocol 'Attribute' does not conform to the 'Sendable' protocol
45 | SmartDescription
46 | {
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorChannelPool.swift:95:10: warning: capture of 'self' with non-sendable type 'SingleConnectionPool' in a '@Sendable' closure
40 | *
41 | */
42 | public final class SingleConnectionPool: AdaptorChannelPool {
| `- note: class 'SingleConnectionPool' does not conform to the 'Sendable' protocol
43 |
44 | struct Entry {
:
93 |
94 | expirationQueue.async {
95 | if self.gc != nil { return } // already running
| `- warning: capture of 'self' with non-sendable type 'SingleConnectionPool' in a '@Sendable' closure
96 | self.gc = DispatchWorkItem(block: self.expire)
97 | self.expirationQueue.asyncAfter(deadline: .now() + .seconds(1),
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorChannelPool.swift:205:10: warning: capture of 'self' with non-sendable type 'SimpleAdaptorChannelPool' in a '@Sendable' closure
142 | *
143 | */
144 | public final class SimpleAdaptorChannelPool: AdaptorChannelPool {
| `- note: class 'SimpleAdaptorChannelPool' does not conform to the 'Sendable' protocol
145 |
146 | struct Entry {
:
203 |
204 | expirationQueue.async {
205 | if self.gc != nil { return } // already running
| `- warning: capture of 'self' with non-sendable type 'SimpleAdaptorChannelPool' in a '@Sendable' closure
206 |
207 | let now = Date()
[85/97] Compiling ZeeQL Adaptor.swift
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:19:8: warning: associated value 'cannotConstructFetchSpecification' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'AccessDataSourceError.ConstructionErrorReason'; this is an error in the Swift 6 language mode
10 | // cannot nest in generic
11 |
12 | public enum ConstructionErrorReason: Equatable {
| `- note: consider making enum 'ConstructionErrorReason' conform to the 'Sendable' protocol
13 |
14 | case missingEntity
:
17 | }
18 |
19 | case cannotConstructFetchSpecification(ConstructionErrorReason)
| `- warning: associated value 'cannotConstructFetchSpecification' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'AccessDataSourceError.ConstructionErrorReason'; this is an error in the Swift 6 language mode
20 | case cannotConstructCountFetchSpecification
21 | case missingEntity
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:23:8: warning: associated value 'fetchReturnedMoreThanOneResult(fetchSpecification:firstObject:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any FetchSpecification'; this is an error in the Swift 6 language mode
21 | case missingEntity
22 | case countFetchReturnedNoResults
23 | case fetchReturnedMoreThanOneResult(fetchSpecification: FetchSpecification,
| `- warning: associated value 'fetchReturnedMoreThanOneResult(fetchSpecification:firstObject:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any FetchSpecification'; this is an error in the Swift 6 language mode
24 | firstObject: SwiftObject)
25 |
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/FetchSpecification.swift:18:17: note: protocol 'FetchSpecification' does not conform to the 'Sendable' protocol
16 | * Also check out the QueryBuilder extension.
17 | */
18 | public protocol FetchSpecification : SmartDescription {
| `- note: protocol 'FetchSpecification' does not conform to the 'Sendable' protocol
19 | // TODO: This is a little funky now because we refer to Entity. It should be
20 | // a protocol.
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:23:8: warning: associated value 'fetchReturnedMoreThanOneResult(fetchSpecification:firstObject:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any SwiftObject'; this is an error in the Swift 6 language mode
21 | case missingEntity
22 | case countFetchReturnedNoResults
23 | case fetchReturnedMoreThanOneResult(fetchSpecification: FetchSpecification,
| `- warning: associated value 'fetchReturnedMoreThanOneResult(fetchSpecification:firstObject:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any SwiftObject'; this is an error in the Swift 6 language mode
24 | firstObject: SwiftObject)
25 |
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/DataSource.swift:89:17: note: protocol 'SwiftObject' does not conform to the 'Sendable' protocol
87 | * Like `AnyObject` w/o the `@objc`.
88 | */
89 | public protocol SwiftObject: AnyObject {
| `- note: protocol 'SwiftObject' does not conform to the 'Sendable' protocol
90 | // is there a standard protocol for this? `AnyObject` also does @objc ...
91 | // hh(2025-04-03): I think AnyObject doesn't imply `@objc` anymore.
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:26:8: warning: associated value 'didNotFindFetchSpecification(name:entity:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any Entity'; this is an error in the Swift 6 language mode
24 | firstObject: SwiftObject)
25 |
26 | case didNotFindFetchSpecification(name: String, entity: Entity)
| `- warning: associated value 'didNotFindFetchSpecification(name:entity:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any Entity'; this is an error in the Swift 6 language mode
27 | case couldNotResolveBindings(fetchSpecification: FetchSpecification,
28 | bindings: Any)
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Entity.swift:20:17: note: protocol 'Entity' does not conform to the 'Sendable' protocol
18 | * involve incomplete attribute sets or a pattern name.
19 | */
20 | public protocol Entity: AnyObject, EquatableType, SmartDescription {
| `- note: protocol 'Entity' does not conform to the 'Sendable' protocol
21 |
22 | var name : String { get }
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:27:8: warning: associated value 'couldNotResolveBindings(fetchSpecification:bindings:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any FetchSpecification'; this is an error in the Swift 6 language mode
25 |
26 | case didNotFindFetchSpecification(name: String, entity: Entity)
27 | case couldNotResolveBindings(fetchSpecification: FetchSpecification,
| `- warning: associated value 'couldNotResolveBindings(fetchSpecification:bindings:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any FetchSpecification'; this is an error in the Swift 6 language mode
28 | bindings: Any)
29 | }
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/FetchSpecification.swift:18:17: note: protocol 'FetchSpecification' does not conform to the 'Sendable' protocol
16 | * Also check out the QueryBuilder extension.
17 | */
18 | public protocol FetchSpecification : SmartDescription {
| `- note: protocol 'FetchSpecification' does not conform to the 'Sendable' protocol
19 | // TODO: This is a little funky now because we refer to Entity. It should be
20 | // a protocol.
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:27:8: warning: associated value 'couldNotResolveBindings(fetchSpecification:bindings:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
25 |
26 | case didNotFindFetchSpecification(name: String, entity: Entity)
27 | case couldNotResolveBindings(fetchSpecification: FetchSpecification,
| `- warning: associated value 'couldNotResolveBindings(fetchSpecification:bindings:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
28 | bindings: Any)
29 | }
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/ActiveDataSource.swift:225:17: warning: let 'countAttr' is not concurrency-safe because non-'Sendable' type 'any Attribute' may have shared mutable state; this is an error in the Swift 6 language mode
223 |
224 | // Swift 3: static stored properties not supported in generic types
225 | fileprivate let countAttr : Attribute = {
| |- warning: let 'countAttr' is not concurrency-safe because non-'Sendable' type 'any Attribute' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'countAttr' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
226 | let countAttr = ModelAttribute(name: "count", externalType: "INT")
227 | countAttr.readFormat = "COUNT(*)"
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Attribute.swift:44:17: note: protocol 'Attribute' does not conform to the 'Sendable' protocol
42 | * - ``CodeValueAttribute``
43 | */
44 | public protocol Attribute : Property, SQLValue, ExpressionEvaluation,
| `- note: protocol 'Attribute' does not conform to the 'Sendable' protocol
45 | SmartDescription
46 | {
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorChannelPool.swift:95:10: warning: capture of 'self' with non-sendable type 'SingleConnectionPool' in a '@Sendable' closure
40 | *
41 | */
42 | public final class SingleConnectionPool: AdaptorChannelPool {
| `- note: class 'SingleConnectionPool' does not conform to the 'Sendable' protocol
43 |
44 | struct Entry {
:
93 |
94 | expirationQueue.async {
95 | if self.gc != nil { return } // already running
| `- warning: capture of 'self' with non-sendable type 'SingleConnectionPool' in a '@Sendable' closure
96 | self.gc = DispatchWorkItem(block: self.expire)
97 | self.expirationQueue.asyncAfter(deadline: .now() + .seconds(1),
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorChannelPool.swift:205:10: warning: capture of 'self' with non-sendable type 'SimpleAdaptorChannelPool' in a '@Sendable' closure
142 | *
143 | */
144 | public final class SimpleAdaptorChannelPool: AdaptorChannelPool {
| `- note: class 'SimpleAdaptorChannelPool' does not conform to the 'Sendable' protocol
145 |
146 | struct Entry {
:
203 |
204 | expirationQueue.async {
205 | if self.gc != nil { return } // already running
| `- warning: capture of 'self' with non-sendable type 'SimpleAdaptorChannelPool' in a '@Sendable' closure
206 |
207 | let now = Date()
[86/97] Compiling ZeeQL AdaptorChannel.swift
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:19:8: warning: associated value 'cannotConstructFetchSpecification' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'AccessDataSourceError.ConstructionErrorReason'; this is an error in the Swift 6 language mode
10 | // cannot nest in generic
11 |
12 | public enum ConstructionErrorReason: Equatable {
| `- note: consider making enum 'ConstructionErrorReason' conform to the 'Sendable' protocol
13 |
14 | case missingEntity
:
17 | }
18 |
19 | case cannotConstructFetchSpecification(ConstructionErrorReason)
| `- warning: associated value 'cannotConstructFetchSpecification' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'AccessDataSourceError.ConstructionErrorReason'; this is an error in the Swift 6 language mode
20 | case cannotConstructCountFetchSpecification
21 | case missingEntity
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:23:8: warning: associated value 'fetchReturnedMoreThanOneResult(fetchSpecification:firstObject:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any FetchSpecification'; this is an error in the Swift 6 language mode
21 | case missingEntity
22 | case countFetchReturnedNoResults
23 | case fetchReturnedMoreThanOneResult(fetchSpecification: FetchSpecification,
| `- warning: associated value 'fetchReturnedMoreThanOneResult(fetchSpecification:firstObject:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any FetchSpecification'; this is an error in the Swift 6 language mode
24 | firstObject: SwiftObject)
25 |
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/FetchSpecification.swift:18:17: note: protocol 'FetchSpecification' does not conform to the 'Sendable' protocol
16 | * Also check out the QueryBuilder extension.
17 | */
18 | public protocol FetchSpecification : SmartDescription {
| `- note: protocol 'FetchSpecification' does not conform to the 'Sendable' protocol
19 | // TODO: This is a little funky now because we refer to Entity. It should be
20 | // a protocol.
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:23:8: warning: associated value 'fetchReturnedMoreThanOneResult(fetchSpecification:firstObject:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any SwiftObject'; this is an error in the Swift 6 language mode
21 | case missingEntity
22 | case countFetchReturnedNoResults
23 | case fetchReturnedMoreThanOneResult(fetchSpecification: FetchSpecification,
| `- warning: associated value 'fetchReturnedMoreThanOneResult(fetchSpecification:firstObject:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any SwiftObject'; this is an error in the Swift 6 language mode
24 | firstObject: SwiftObject)
25 |
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/DataSource.swift:89:17: note: protocol 'SwiftObject' does not conform to the 'Sendable' protocol
87 | * Like `AnyObject` w/o the `@objc`.
88 | */
89 | public protocol SwiftObject: AnyObject {
| `- note: protocol 'SwiftObject' does not conform to the 'Sendable' protocol
90 | // is there a standard protocol for this? `AnyObject` also does @objc ...
91 | // hh(2025-04-03): I think AnyObject doesn't imply `@objc` anymore.
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:26:8: warning: associated value 'didNotFindFetchSpecification(name:entity:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any Entity'; this is an error in the Swift 6 language mode
24 | firstObject: SwiftObject)
25 |
26 | case didNotFindFetchSpecification(name: String, entity: Entity)
| `- warning: associated value 'didNotFindFetchSpecification(name:entity:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any Entity'; this is an error in the Swift 6 language mode
27 | case couldNotResolveBindings(fetchSpecification: FetchSpecification,
28 | bindings: Any)
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Entity.swift:20:17: note: protocol 'Entity' does not conform to the 'Sendable' protocol
18 | * involve incomplete attribute sets or a pattern name.
19 | */
20 | public protocol Entity: AnyObject, EquatableType, SmartDescription {
| `- note: protocol 'Entity' does not conform to the 'Sendable' protocol
21 |
22 | var name : String { get }
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:27:8: warning: associated value 'couldNotResolveBindings(fetchSpecification:bindings:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any FetchSpecification'; this is an error in the Swift 6 language mode
25 |
26 | case didNotFindFetchSpecification(name: String, entity: Entity)
27 | case couldNotResolveBindings(fetchSpecification: FetchSpecification,
| `- warning: associated value 'couldNotResolveBindings(fetchSpecification:bindings:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any FetchSpecification'; this is an error in the Swift 6 language mode
28 | bindings: Any)
29 | }
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/FetchSpecification.swift:18:17: note: protocol 'FetchSpecification' does not conform to the 'Sendable' protocol
16 | * Also check out the QueryBuilder extension.
17 | */
18 | public protocol FetchSpecification : SmartDescription {
| `- note: protocol 'FetchSpecification' does not conform to the 'Sendable' protocol
19 | // TODO: This is a little funky now because we refer to Entity. It should be
20 | // a protocol.
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:27:8: warning: associated value 'couldNotResolveBindings(fetchSpecification:bindings:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
25 |
26 | case didNotFindFetchSpecification(name: String, entity: Entity)
27 | case couldNotResolveBindings(fetchSpecification: FetchSpecification,
| `- warning: associated value 'couldNotResolveBindings(fetchSpecification:bindings:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
28 | bindings: Any)
29 | }
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/ActiveDataSource.swift:225:17: warning: let 'countAttr' is not concurrency-safe because non-'Sendable' type 'any Attribute' may have shared mutable state; this is an error in the Swift 6 language mode
223 |
224 | // Swift 3: static stored properties not supported in generic types
225 | fileprivate let countAttr : Attribute = {
| |- warning: let 'countAttr' is not concurrency-safe because non-'Sendable' type 'any Attribute' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'countAttr' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
226 | let countAttr = ModelAttribute(name: "count", externalType: "INT")
227 | countAttr.readFormat = "COUNT(*)"
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Attribute.swift:44:17: note: protocol 'Attribute' does not conform to the 'Sendable' protocol
42 | * - ``CodeValueAttribute``
43 | */
44 | public protocol Attribute : Property, SQLValue, ExpressionEvaluation,
| `- note: protocol 'Attribute' does not conform to the 'Sendable' protocol
45 | SmartDescription
46 | {
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorChannelPool.swift:95:10: warning: capture of 'self' with non-sendable type 'SingleConnectionPool' in a '@Sendable' closure
40 | *
41 | */
42 | public final class SingleConnectionPool: AdaptorChannelPool {
| `- note: class 'SingleConnectionPool' does not conform to the 'Sendable' protocol
43 |
44 | struct Entry {
:
93 |
94 | expirationQueue.async {
95 | if self.gc != nil { return } // already running
| `- warning: capture of 'self' with non-sendable type 'SingleConnectionPool' in a '@Sendable' closure
96 | self.gc = DispatchWorkItem(block: self.expire)
97 | self.expirationQueue.asyncAfter(deadline: .now() + .seconds(1),
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorChannelPool.swift:205:10: warning: capture of 'self' with non-sendable type 'SimpleAdaptorChannelPool' in a '@Sendable' closure
142 | *
143 | */
144 | public final class SimpleAdaptorChannelPool: AdaptorChannelPool {
| `- note: class 'SimpleAdaptorChannelPool' does not conform to the 'Sendable' protocol
145 |
146 | struct Entry {
:
203 |
204 | expirationQueue.async {
205 | if self.gc != nil { return } // already running
| `- warning: capture of 'self' with non-sendable type 'SimpleAdaptorChannelPool' in a '@Sendable' closure
206 |
207 | let now = Date()
[87/97] Compiling ZeeQL AdaptorChannelPool.swift
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:19:8: warning: associated value 'cannotConstructFetchSpecification' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'AccessDataSourceError.ConstructionErrorReason'; this is an error in the Swift 6 language mode
10 | // cannot nest in generic
11 |
12 | public enum ConstructionErrorReason: Equatable {
| `- note: consider making enum 'ConstructionErrorReason' conform to the 'Sendable' protocol
13 |
14 | case missingEntity
:
17 | }
18 |
19 | case cannotConstructFetchSpecification(ConstructionErrorReason)
| `- warning: associated value 'cannotConstructFetchSpecification' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'AccessDataSourceError.ConstructionErrorReason'; this is an error in the Swift 6 language mode
20 | case cannotConstructCountFetchSpecification
21 | case missingEntity
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:23:8: warning: associated value 'fetchReturnedMoreThanOneResult(fetchSpecification:firstObject:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any FetchSpecification'; this is an error in the Swift 6 language mode
21 | case missingEntity
22 | case countFetchReturnedNoResults
23 | case fetchReturnedMoreThanOneResult(fetchSpecification: FetchSpecification,
| `- warning: associated value 'fetchReturnedMoreThanOneResult(fetchSpecification:firstObject:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any FetchSpecification'; this is an error in the Swift 6 language mode
24 | firstObject: SwiftObject)
25 |
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/FetchSpecification.swift:18:17: note: protocol 'FetchSpecification' does not conform to the 'Sendable' protocol
16 | * Also check out the QueryBuilder extension.
17 | */
18 | public protocol FetchSpecification : SmartDescription {
| `- note: protocol 'FetchSpecification' does not conform to the 'Sendable' protocol
19 | // TODO: This is a little funky now because we refer to Entity. It should be
20 | // a protocol.
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:23:8: warning: associated value 'fetchReturnedMoreThanOneResult(fetchSpecification:firstObject:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any SwiftObject'; this is an error in the Swift 6 language mode
21 | case missingEntity
22 | case countFetchReturnedNoResults
23 | case fetchReturnedMoreThanOneResult(fetchSpecification: FetchSpecification,
| `- warning: associated value 'fetchReturnedMoreThanOneResult(fetchSpecification:firstObject:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any SwiftObject'; this is an error in the Swift 6 language mode
24 | firstObject: SwiftObject)
25 |
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/DataSource.swift:89:17: note: protocol 'SwiftObject' does not conform to the 'Sendable' protocol
87 | * Like `AnyObject` w/o the `@objc`.
88 | */
89 | public protocol SwiftObject: AnyObject {
| `- note: protocol 'SwiftObject' does not conform to the 'Sendable' protocol
90 | // is there a standard protocol for this? `AnyObject` also does @objc ...
91 | // hh(2025-04-03): I think AnyObject doesn't imply `@objc` anymore.
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:26:8: warning: associated value 'didNotFindFetchSpecification(name:entity:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any Entity'; this is an error in the Swift 6 language mode
24 | firstObject: SwiftObject)
25 |
26 | case didNotFindFetchSpecification(name: String, entity: Entity)
| `- warning: associated value 'didNotFindFetchSpecification(name:entity:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any Entity'; this is an error in the Swift 6 language mode
27 | case couldNotResolveBindings(fetchSpecification: FetchSpecification,
28 | bindings: Any)
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Entity.swift:20:17: note: protocol 'Entity' does not conform to the 'Sendable' protocol
18 | * involve incomplete attribute sets or a pattern name.
19 | */
20 | public protocol Entity: AnyObject, EquatableType, SmartDescription {
| `- note: protocol 'Entity' does not conform to the 'Sendable' protocol
21 |
22 | var name : String { get }
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:27:8: warning: associated value 'couldNotResolveBindings(fetchSpecification:bindings:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any FetchSpecification'; this is an error in the Swift 6 language mode
25 |
26 | case didNotFindFetchSpecification(name: String, entity: Entity)
27 | case couldNotResolveBindings(fetchSpecification: FetchSpecification,
| `- warning: associated value 'couldNotResolveBindings(fetchSpecification:bindings:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any FetchSpecification'; this is an error in the Swift 6 language mode
28 | bindings: Any)
29 | }
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/FetchSpecification.swift:18:17: note: protocol 'FetchSpecification' does not conform to the 'Sendable' protocol
16 | * Also check out the QueryBuilder extension.
17 | */
18 | public protocol FetchSpecification : SmartDescription {
| `- note: protocol 'FetchSpecification' does not conform to the 'Sendable' protocol
19 | // TODO: This is a little funky now because we refer to Entity. It should be
20 | // a protocol.
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:27:8: warning: associated value 'couldNotResolveBindings(fetchSpecification:bindings:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
25 |
26 | case didNotFindFetchSpecification(name: String, entity: Entity)
27 | case couldNotResolveBindings(fetchSpecification: FetchSpecification,
| `- warning: associated value 'couldNotResolveBindings(fetchSpecification:bindings:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
28 | bindings: Any)
29 | }
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/ActiveDataSource.swift:225:17: warning: let 'countAttr' is not concurrency-safe because non-'Sendable' type 'any Attribute' may have shared mutable state; this is an error in the Swift 6 language mode
223 |
224 | // Swift 3: static stored properties not supported in generic types
225 | fileprivate let countAttr : Attribute = {
| |- warning: let 'countAttr' is not concurrency-safe because non-'Sendable' type 'any Attribute' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'countAttr' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
226 | let countAttr = ModelAttribute(name: "count", externalType: "INT")
227 | countAttr.readFormat = "COUNT(*)"
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Attribute.swift:44:17: note: protocol 'Attribute' does not conform to the 'Sendable' protocol
42 | * - ``CodeValueAttribute``
43 | */
44 | public protocol Attribute : Property, SQLValue, ExpressionEvaluation,
| `- note: protocol 'Attribute' does not conform to the 'Sendable' protocol
45 | SmartDescription
46 | {
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorChannelPool.swift:95:10: warning: capture of 'self' with non-sendable type 'SingleConnectionPool' in a '@Sendable' closure
40 | *
41 | */
42 | public final class SingleConnectionPool: AdaptorChannelPool {
| `- note: class 'SingleConnectionPool' does not conform to the 'Sendable' protocol
43 |
44 | struct Entry {
:
93 |
94 | expirationQueue.async {
95 | if self.gc != nil { return } // already running
| `- warning: capture of 'self' with non-sendable type 'SingleConnectionPool' in a '@Sendable' closure
96 | self.gc = DispatchWorkItem(block: self.expire)
97 | self.expirationQueue.asyncAfter(deadline: .now() + .seconds(1),
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorChannelPool.swift:205:10: warning: capture of 'self' with non-sendable type 'SimpleAdaptorChannelPool' in a '@Sendable' closure
142 | *
143 | */
144 | public final class SimpleAdaptorChannelPool: AdaptorChannelPool {
| `- note: class 'SimpleAdaptorChannelPool' does not conform to the 'Sendable' protocol
145 |
146 | struct Entry {
:
203 |
204 | expirationQueue.async {
205 | if self.gc != nil { return } // already running
| `- warning: capture of 'self' with non-sendable type 'SimpleAdaptorChannelPool' in a '@Sendable' closure
206 |
207 | let now = Date()
[88/97] Compiling ZeeQL AdaptorDataSource.swift
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:19:8: warning: associated value 'cannotConstructFetchSpecification' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'AccessDataSourceError.ConstructionErrorReason'; this is an error in the Swift 6 language mode
10 | // cannot nest in generic
11 |
12 | public enum ConstructionErrorReason: Equatable {
| `- note: consider making enum 'ConstructionErrorReason' conform to the 'Sendable' protocol
13 |
14 | case missingEntity
:
17 | }
18 |
19 | case cannotConstructFetchSpecification(ConstructionErrorReason)
| `- warning: associated value 'cannotConstructFetchSpecification' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'AccessDataSourceError.ConstructionErrorReason'; this is an error in the Swift 6 language mode
20 | case cannotConstructCountFetchSpecification
21 | case missingEntity
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:23:8: warning: associated value 'fetchReturnedMoreThanOneResult(fetchSpecification:firstObject:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any FetchSpecification'; this is an error in the Swift 6 language mode
21 | case missingEntity
22 | case countFetchReturnedNoResults
23 | case fetchReturnedMoreThanOneResult(fetchSpecification: FetchSpecification,
| `- warning: associated value 'fetchReturnedMoreThanOneResult(fetchSpecification:firstObject:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any FetchSpecification'; this is an error in the Swift 6 language mode
24 | firstObject: SwiftObject)
25 |
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/FetchSpecification.swift:18:17: note: protocol 'FetchSpecification' does not conform to the 'Sendable' protocol
16 | * Also check out the QueryBuilder extension.
17 | */
18 | public protocol FetchSpecification : SmartDescription {
| `- note: protocol 'FetchSpecification' does not conform to the 'Sendable' protocol
19 | // TODO: This is a little funky now because we refer to Entity. It should be
20 | // a protocol.
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:23:8: warning: associated value 'fetchReturnedMoreThanOneResult(fetchSpecification:firstObject:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any SwiftObject'; this is an error in the Swift 6 language mode
21 | case missingEntity
22 | case countFetchReturnedNoResults
23 | case fetchReturnedMoreThanOneResult(fetchSpecification: FetchSpecification,
| `- warning: associated value 'fetchReturnedMoreThanOneResult(fetchSpecification:firstObject:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any SwiftObject'; this is an error in the Swift 6 language mode
24 | firstObject: SwiftObject)
25 |
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/DataSource.swift:89:17: note: protocol 'SwiftObject' does not conform to the 'Sendable' protocol
87 | * Like `AnyObject` w/o the `@objc`.
88 | */
89 | public protocol SwiftObject: AnyObject {
| `- note: protocol 'SwiftObject' does not conform to the 'Sendable' protocol
90 | // is there a standard protocol for this? `AnyObject` also does @objc ...
91 | // hh(2025-04-03): I think AnyObject doesn't imply `@objc` anymore.
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:26:8: warning: associated value 'didNotFindFetchSpecification(name:entity:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any Entity'; this is an error in the Swift 6 language mode
24 | firstObject: SwiftObject)
25 |
26 | case didNotFindFetchSpecification(name: String, entity: Entity)
| `- warning: associated value 'didNotFindFetchSpecification(name:entity:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any Entity'; this is an error in the Swift 6 language mode
27 | case couldNotResolveBindings(fetchSpecification: FetchSpecification,
28 | bindings: Any)
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Entity.swift:20:17: note: protocol 'Entity' does not conform to the 'Sendable' protocol
18 | * involve incomplete attribute sets or a pattern name.
19 | */
20 | public protocol Entity: AnyObject, EquatableType, SmartDescription {
| `- note: protocol 'Entity' does not conform to the 'Sendable' protocol
21 |
22 | var name : String { get }
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:27:8: warning: associated value 'couldNotResolveBindings(fetchSpecification:bindings:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any FetchSpecification'; this is an error in the Swift 6 language mode
25 |
26 | case didNotFindFetchSpecification(name: String, entity: Entity)
27 | case couldNotResolveBindings(fetchSpecification: FetchSpecification,
| `- warning: associated value 'couldNotResolveBindings(fetchSpecification:bindings:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any FetchSpecification'; this is an error in the Swift 6 language mode
28 | bindings: Any)
29 | }
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/FetchSpecification.swift:18:17: note: protocol 'FetchSpecification' does not conform to the 'Sendable' protocol
16 | * Also check out the QueryBuilder extension.
17 | */
18 | public protocol FetchSpecification : SmartDescription {
| `- note: protocol 'FetchSpecification' does not conform to the 'Sendable' protocol
19 | // TODO: This is a little funky now because we refer to Entity. It should be
20 | // a protocol.
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:27:8: warning: associated value 'couldNotResolveBindings(fetchSpecification:bindings:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
25 |
26 | case didNotFindFetchSpecification(name: String, entity: Entity)
27 | case couldNotResolveBindings(fetchSpecification: FetchSpecification,
| `- warning: associated value 'couldNotResolveBindings(fetchSpecification:bindings:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
28 | bindings: Any)
29 | }
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/ActiveDataSource.swift:225:17: warning: let 'countAttr' is not concurrency-safe because non-'Sendable' type 'any Attribute' may have shared mutable state; this is an error in the Swift 6 language mode
223 |
224 | // Swift 3: static stored properties not supported in generic types
225 | fileprivate let countAttr : Attribute = {
| |- warning: let 'countAttr' is not concurrency-safe because non-'Sendable' type 'any Attribute' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'countAttr' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
226 | let countAttr = ModelAttribute(name: "count", externalType: "INT")
227 | countAttr.readFormat = "COUNT(*)"
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Attribute.swift:44:17: note: protocol 'Attribute' does not conform to the 'Sendable' protocol
42 | * - ``CodeValueAttribute``
43 | */
44 | public protocol Attribute : Property, SQLValue, ExpressionEvaluation,
| `- note: protocol 'Attribute' does not conform to the 'Sendable' protocol
45 | SmartDescription
46 | {
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorChannelPool.swift:95:10: warning: capture of 'self' with non-sendable type 'SingleConnectionPool' in a '@Sendable' closure
40 | *
41 | */
42 | public final class SingleConnectionPool: AdaptorChannelPool {
| `- note: class 'SingleConnectionPool' does not conform to the 'Sendable' protocol
43 |
44 | struct Entry {
:
93 |
94 | expirationQueue.async {
95 | if self.gc != nil { return } // already running
| `- warning: capture of 'self' with non-sendable type 'SingleConnectionPool' in a '@Sendable' closure
96 | self.gc = DispatchWorkItem(block: self.expire)
97 | self.expirationQueue.asyncAfter(deadline: .now() + .seconds(1),
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorChannelPool.swift:205:10: warning: capture of 'self' with non-sendable type 'SimpleAdaptorChannelPool' in a '@Sendable' closure
142 | *
143 | */
144 | public final class SimpleAdaptorChannelPool: AdaptorChannelPool {
| `- note: class 'SimpleAdaptorChannelPool' does not conform to the 'Sendable' protocol
145 |
146 | struct Entry {
:
203 |
204 | expirationQueue.async {
205 | if self.gc != nil { return } // already running
| `- warning: capture of 'self' with non-sendable type 'SimpleAdaptorChannelPool' in a '@Sendable' closure
206 |
207 | let now = Date()
[89/97] Compiling ZeeQL SchemaSynchronizationFactory.swift
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/CompoundQualifier.swift:16:23: warning: static property 'And' is not concurrency-safe because non-'Sendable' type 'CompoundQualifier.Operator' may have shared mutable state; this is an error in the Swift 6 language mode
9 | public struct CompoundQualifier : Qualifier, QualifierEvaluation, Equatable {
10 |
11 | public enum Operator {
| `- note: consider making enum 'Operator' conform to the 'Sendable' protocol
12 | case and
13 | case or
14 |
15 | @available(*, deprecated, message: "Using `and` is recommended.")
16 | public static let And = Operator.and
| |- warning: static property 'And' is not concurrency-safe because non-'Sendable' type 'CompoundQualifier.Operator' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'And' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 | @available(*, deprecated, message: "Using `or` is recommended.")
18 | public static let Or = Operator.or
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/CompoundQualifier.swift:18:23: warning: static property 'Or' is not concurrency-safe because non-'Sendable' type 'CompoundQualifier.Operator' may have shared mutable state; this is an error in the Swift 6 language mode
9 | public struct CompoundQualifier : Qualifier, QualifierEvaluation, Equatable {
10 |
11 | public enum Operator {
| `- note: consider making enum 'Operator' conform to the 'Sendable' protocol
12 | case and
13 | case or
:
16 | public static let And = Operator.and
17 | @available(*, deprecated, message: "Using `or` is recommended.")
18 | public static let Or = Operator.or
| |- warning: static property 'Or' is not concurrency-safe because non-'Sendable' type 'CompoundQualifier.Operator' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'Or' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |
20 | @inlinable
[90/97] Compiling ZeeQL TypedDatabaseChannel.swift
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/CompoundQualifier.swift:16:23: warning: static property 'And' is not concurrency-safe because non-'Sendable' type 'CompoundQualifier.Operator' may have shared mutable state; this is an error in the Swift 6 language mode
9 | public struct CompoundQualifier : Qualifier, QualifierEvaluation, Equatable {
10 |
11 | public enum Operator {
| `- note: consider making enum 'Operator' conform to the 'Sendable' protocol
12 | case and
13 | case or
14 |
15 | @available(*, deprecated, message: "Using `and` is recommended.")
16 | public static let And = Operator.and
| |- warning: static property 'And' is not concurrency-safe because non-'Sendable' type 'CompoundQualifier.Operator' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'And' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 | @available(*, deprecated, message: "Using `or` is recommended.")
18 | public static let Or = Operator.or
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/CompoundQualifier.swift:18:23: warning: static property 'Or' is not concurrency-safe because non-'Sendable' type 'CompoundQualifier.Operator' may have shared mutable state; this is an error in the Swift 6 language mode
9 | public struct CompoundQualifier : Qualifier, QualifierEvaluation, Equatable {
10 |
11 | public enum Operator {
| `- note: consider making enum 'Operator' conform to the 'Sendable' protocol
12 | case and
13 | case or
:
16 | public static let And = Operator.and
17 | @available(*, deprecated, message: "Using `or` is recommended.")
18 | public static let Or = Operator.or
| |- warning: static property 'Or' is not concurrency-safe because non-'Sendable' type 'CompoundQualifier.Operator' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'Or' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |
20 | @inlinable
[91/97] Compiling ZeeQL TypedFetchSpecification.swift
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/CompoundQualifier.swift:16:23: warning: static property 'And' is not concurrency-safe because non-'Sendable' type 'CompoundQualifier.Operator' may have shared mutable state; this is an error in the Swift 6 language mode
9 | public struct CompoundQualifier : Qualifier, QualifierEvaluation, Equatable {
10 |
11 | public enum Operator {
| `- note: consider making enum 'Operator' conform to the 'Sendable' protocol
12 | case and
13 | case or
14 |
15 | @available(*, deprecated, message: "Using `and` is recommended.")
16 | public static let And = Operator.and
| |- warning: static property 'And' is not concurrency-safe because non-'Sendable' type 'CompoundQualifier.Operator' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'And' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 | @available(*, deprecated, message: "Using `or` is recommended.")
18 | public static let Or = Operator.or
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/CompoundQualifier.swift:18:23: warning: static property 'Or' is not concurrency-safe because non-'Sendable' type 'CompoundQualifier.Operator' may have shared mutable state; this is an error in the Swift 6 language mode
9 | public struct CompoundQualifier : Qualifier, QualifierEvaluation, Equatable {
10 |
11 | public enum Operator {
| `- note: consider making enum 'Operator' conform to the 'Sendable' protocol
12 | case and
13 | case or
:
16 | public static let And = Operator.and
17 | @available(*, deprecated, message: "Using `or` is recommended.")
18 | public static let Or = Operator.or
| |- warning: static property 'Or' is not concurrency-safe because non-'Sendable' type 'CompoundQualifier.Operator' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'Or' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |
20 | @inlinable
[92/97] Compiling ZeeQL ZeeQLTypes.swift
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/CompoundQualifier.swift:16:23: warning: static property 'And' is not concurrency-safe because non-'Sendable' type 'CompoundQualifier.Operator' may have shared mutable state; this is an error in the Swift 6 language mode
9 | public struct CompoundQualifier : Qualifier, QualifierEvaluation, Equatable {
10 |
11 | public enum Operator {
| `- note: consider making enum 'Operator' conform to the 'Sendable' protocol
12 | case and
13 | case or
14 |
15 | @available(*, deprecated, message: "Using `and` is recommended.")
16 | public static let And = Operator.and
| |- warning: static property 'And' is not concurrency-safe because non-'Sendable' type 'CompoundQualifier.Operator' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'And' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 | @available(*, deprecated, message: "Using `or` is recommended.")
18 | public static let Or = Operator.or
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/CompoundQualifier.swift:18:23: warning: static property 'Or' is not concurrency-safe because non-'Sendable' type 'CompoundQualifier.Operator' may have shared mutable state; this is an error in the Swift 6 language mode
9 | public struct CompoundQualifier : Qualifier, QualifierEvaluation, Equatable {
10 |
11 | public enum Operator {
| `- note: consider making enum 'Operator' conform to the 'Sendable' protocol
12 | case and
13 | case or
:
16 | public static let And = Operator.and
17 | @available(*, deprecated, message: "Using `or` is recommended.")
18 | public static let Or = Operator.or
| |- warning: static property 'Or' is not concurrency-safe because non-'Sendable' type 'CompoundQualifier.Operator' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'Or' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |
20 | @inlinable
[93/97] Compiling ZeeQL ArrayDataSource.swift
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/CompoundQualifier.swift:16:23: warning: static property 'And' is not concurrency-safe because non-'Sendable' type 'CompoundQualifier.Operator' may have shared mutable state; this is an error in the Swift 6 language mode
9 | public struct CompoundQualifier : Qualifier, QualifierEvaluation, Equatable {
10 |
11 | public enum Operator {
| `- note: consider making enum 'Operator' conform to the 'Sendable' protocol
12 | case and
13 | case or
14 |
15 | @available(*, deprecated, message: "Using `and` is recommended.")
16 | public static let And = Operator.and
| |- warning: static property 'And' is not concurrency-safe because non-'Sendable' type 'CompoundQualifier.Operator' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'And' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 | @available(*, deprecated, message: "Using `or` is recommended.")
18 | public static let Or = Operator.or
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/CompoundQualifier.swift:18:23: warning: static property 'Or' is not concurrency-safe because non-'Sendable' type 'CompoundQualifier.Operator' may have shared mutable state; this is an error in the Swift 6 language mode
9 | public struct CompoundQualifier : Qualifier, QualifierEvaluation, Equatable {
10 |
11 | public enum Operator {
| `- note: consider making enum 'Operator' conform to the 'Sendable' protocol
12 | case and
13 | case or
:
16 | public static let And = Operator.and
17 | @available(*, deprecated, message: "Using `or` is recommended.")
18 | public static let Or = Operator.or
| |- warning: static property 'Or' is not concurrency-safe because non-'Sendable' type 'CompoundQualifier.Operator' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'Or' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |
20 | @inlinable
[94/97] Compiling ZeeQL BooleanQualifier.swift
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/CompoundQualifier.swift:16:23: warning: static property 'And' is not concurrency-safe because non-'Sendable' type 'CompoundQualifier.Operator' may have shared mutable state; this is an error in the Swift 6 language mode
9 | public struct CompoundQualifier : Qualifier, QualifierEvaluation, Equatable {
10 |
11 | public enum Operator {
| `- note: consider making enum 'Operator' conform to the 'Sendable' protocol
12 | case and
13 | case or
14 |
15 | @available(*, deprecated, message: "Using `and` is recommended.")
16 | public static let And = Operator.and
| |- warning: static property 'And' is not concurrency-safe because non-'Sendable' type 'CompoundQualifier.Operator' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'And' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 | @available(*, deprecated, message: "Using `or` is recommended.")
18 | public static let Or = Operator.or
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/CompoundQualifier.swift:18:23: warning: static property 'Or' is not concurrency-safe because non-'Sendable' type 'CompoundQualifier.Operator' may have shared mutable state; this is an error in the Swift 6 language mode
9 | public struct CompoundQualifier : Qualifier, QualifierEvaluation, Equatable {
10 |
11 | public enum Operator {
| `- note: consider making enum 'Operator' conform to the 'Sendable' protocol
12 | case and
13 | case or
:
16 | public static let And = Operator.and
17 | @available(*, deprecated, message: "Using `or` is recommended.")
18 | public static let Or = Operator.or
| |- warning: static property 'Or' is not concurrency-safe because non-'Sendable' type 'CompoundQualifier.Operator' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'Or' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |
20 | @inlinable
[95/97] Compiling ZeeQL ComparisonOperation.swift
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/CompoundQualifier.swift:16:23: warning: static property 'And' is not concurrency-safe because non-'Sendable' type 'CompoundQualifier.Operator' may have shared mutable state; this is an error in the Swift 6 language mode
9 | public struct CompoundQualifier : Qualifier, QualifierEvaluation, Equatable {
10 |
11 | public enum Operator {
| `- note: consider making enum 'Operator' conform to the 'Sendable' protocol
12 | case and
13 | case or
14 |
15 | @available(*, deprecated, message: "Using `and` is recommended.")
16 | public static let And = Operator.and
| |- warning: static property 'And' is not concurrency-safe because non-'Sendable' type 'CompoundQualifier.Operator' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'And' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 | @available(*, deprecated, message: "Using `or` is recommended.")
18 | public static let Or = Operator.or
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/CompoundQualifier.swift:18:23: warning: static property 'Or' is not concurrency-safe because non-'Sendable' type 'CompoundQualifier.Operator' may have shared mutable state; this is an error in the Swift 6 language mode
9 | public struct CompoundQualifier : Qualifier, QualifierEvaluation, Equatable {
10 |
11 | public enum Operator {
| `- note: consider making enum 'Operator' conform to the 'Sendable' protocol
12 | case and
13 | case or
:
16 | public static let And = Operator.and
17 | @available(*, deprecated, message: "Using `or` is recommended.")
18 | public static let Or = Operator.or
| |- warning: static property 'Or' is not concurrency-safe because non-'Sendable' type 'CompoundQualifier.Operator' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'Or' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |
20 | @inlinable
[96/97] Compiling ZeeQL CompoundQualifier.swift
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/CompoundQualifier.swift:16:23: warning: static property 'And' is not concurrency-safe because non-'Sendable' type 'CompoundQualifier.Operator' may have shared mutable state; this is an error in the Swift 6 language mode
9 | public struct CompoundQualifier : Qualifier, QualifierEvaluation, Equatable {
10 |
11 | public enum Operator {
| `- note: consider making enum 'Operator' conform to the 'Sendable' protocol
12 | case and
13 | case or
14 |
15 | @available(*, deprecated, message: "Using `and` is recommended.")
16 | public static let And = Operator.and
| |- warning: static property 'And' is not concurrency-safe because non-'Sendable' type 'CompoundQualifier.Operator' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'And' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 | @available(*, deprecated, message: "Using `or` is recommended.")
18 | public static let Or = Operator.or
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/CompoundQualifier.swift:18:23: warning: static property 'Or' is not concurrency-safe because non-'Sendable' type 'CompoundQualifier.Operator' may have shared mutable state; this is an error in the Swift 6 language mode
9 | public struct CompoundQualifier : Qualifier, QualifierEvaluation, Equatable {
10 |
11 | public enum Operator {
| `- note: consider making enum 'Operator' conform to the 'Sendable' protocol
12 | case and
13 | case or
:
16 | public static let And = Operator.and
17 | @available(*, deprecated, message: "Using `or` is recommended.")
18 | public static let Or = Operator.or
| |- warning: static property 'Or' is not concurrency-safe because non-'Sendable' type 'CompoundQualifier.Operator' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'Or' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |
20 | @inlinable
[97/97] Compiling ZeeQL Constant.swift
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/CompoundQualifier.swift:16:23: warning: static property 'And' is not concurrency-safe because non-'Sendable' type 'CompoundQualifier.Operator' may have shared mutable state; this is an error in the Swift 6 language mode
9 | public struct CompoundQualifier : Qualifier, QualifierEvaluation, Equatable {
10 |
11 | public enum Operator {
| `- note: consider making enum 'Operator' conform to the 'Sendable' protocol
12 | case and
13 | case or
14 |
15 | @available(*, deprecated, message: "Using `and` is recommended.")
16 | public static let And = Operator.and
| |- warning: static property 'And' is not concurrency-safe because non-'Sendable' type 'CompoundQualifier.Operator' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'And' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 | @available(*, deprecated, message: "Using `or` is recommended.")
18 | public static let Or = Operator.or
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/CompoundQualifier.swift:18:23: warning: static property 'Or' is not concurrency-safe because non-'Sendable' type 'CompoundQualifier.Operator' may have shared mutable state; this is an error in the Swift 6 language mode
9 | public struct CompoundQualifier : Qualifier, QualifierEvaluation, Equatable {
10 |
11 | public enum Operator {
| `- note: consider making enum 'Operator' conform to the 'Sendable' protocol
12 | case and
13 | case or
:
16 | public static let And = Operator.and
17 | @available(*, deprecated, message: "Using `or` is recommended.")
18 | public static let Or = Operator.or
| |- warning: static property 'Or' is not concurrency-safe because non-'Sendable' type 'CompoundQualifier.Operator' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'Or' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |
20 | @inlinable
Build complete! (10.11s)
Fetching https://github.com/ZeeQL/CSQLite3.git
[1/41] Fetching csqlite3
Fetched https://github.com/ZeeQL/CSQLite3.git from cache (0.67s)
Computing version for https://github.com/ZeeQL/CSQLite3.git
Computed https://github.com/ZeeQL/CSQLite3.git at 2.0.3 (3.09s)
Creating working copy for https://github.com/ZeeQL/CSQLite3.git
Working copy of https://github.com/ZeeQL/CSQLite3.git resolved at 2.0.3
Build complete.
{
"dependencies" : [
{
"identity" : "csqlite3",
"requirement" : {
"range" : [
{
"lower_bound" : "2.0.3",
"upper_bound" : "3.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/ZeeQL/CSQLite3.git"
}
],
"manifest_display_name" : "ZeeQL3",
"name" : "ZeeQL3",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "ZeeQL",
"targets" : [
"ZeeQL"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "ZeeQLTests",
"module_type" : "SwiftTarget",
"name" : "ZeeQLTests",
"path" : "Tests/ZeeQLTests",
"sources" : [
"AdaptorActiveRecordTestCase.swift",
"AdaptorOGoTestCase.swift",
"CodeEntityModelTests.swift",
"CodeObjectModelTests.swift",
"ContactsDBModel.swift",
"DumpHelpers.swift",
"EquatableTypeTests.swift",
"FakeAdaptor.swift",
"FormatterTests.swift",
"ModelLoaderTests.swift",
"ModelTests.swift",
"OpenDateIntervalTests.swift",
"QualifierEvaluationTests.swift",
"QualifierParserTests.swift",
"SQLExpressionTests.swift",
"SQLite3ActiveRecordTests.swift",
"SQLite3AdaptorTests.swift",
"SQLite3ExpressionTests.swift",
"SQLite3ModelTests.swift",
"SQLite3OGoAdaptorTests.swift",
"SchemaGenerationTests.swift",
"SchemaSyncTests.swift"
],
"target_dependencies" : [
"ZeeQL"
],
"type" : "test"
},
{
"c99name" : "ZeeQL",
"module_type" : "SwiftTarget",
"name" : "ZeeQL",
"path" : "Sources/ZeeQL",
"product_dependencies" : [
"CSQLite3"
],
"product_memberships" : [
"ZeeQL"
],
"sources" : [
"Access/AccessDataSource.swift",
"Access/AccessDataSourceError.swift",
"Access/AccessDataSourceFinders.swift",
"Access/ActiveDataSource.swift",
"Access/ActiveRecord.swift",
"Access/ActiveRecordType.swift",
"Access/Adaptor.swift",
"Access/AdaptorChannel.swift",
"Access/AdaptorChannelPool.swift",
"Access/AdaptorDataSource.swift",
"Access/AdaptorError.swift",
"Access/AdaptorModelFetch.swift",
"Access/AdaptorOperation.swift",
"Access/AdaptorQueryColumnRepresentable.swift",
"Access/AdaptorQueryType.swift",
"Access/AdaptorRecord.swift",
"Access/AdaptorRecordSchema.swift",
"Access/Attribute.swift",
"Access/AttributeKey.swift",
"Access/AttributeValue.swift",
"Access/CodeAttribute.swift",
"Access/CodeEntity.swift",
"Access/CodeRelationship.swift",
"Access/CodeValueAttribute.swift",
"Access/Database.swift",
"Access/DatabaseChannel.swift",
"Access/DatabaseChannelBase.swift",
"Access/DatabaseChannelFetchHelper.swift",
"Access/DatabaseContext.swift",
"Access/DatabaseDataSource.swift",
"Access/DatabaseObject.swift",
"Access/DatabaseOperation.swift",
"Access/Entity.swift",
"Access/FancyModelMaker.swift",
"Access/Join.swift",
"Access/MirrorHelpers.swift",
"Access/Model.swift",
"Access/ModelLoader.swift",
"Access/ModelPattern.swift",
"Access/ModelSQLizer.swift",
"Access/Property.swift",
"Access/Relationship.swift",
"Access/SQLAttributeChange.swift",
"Access/SQLExpression.swift",
"Access/SQLExpressionFactory.swift",
"Access/SQLForeignKey.swift",
"Access/SQLTableGroups.swift",
"Access/SchemaGeneration.swift",
"Access/SchemaSynchronization.swift",
"Access/SchemaSynchronizationFactory.swift",
"Access/TypedDatabaseChannel.swift",
"Access/TypedFetchSpecification.swift",
"Access/ZeeQLTypes.swift",
"Control/ArrayDataSource.swift",
"Control/BooleanQualifier.swift",
"Control/ComparisonOperation.swift",
"Control/CompoundQualifier.swift",
"Control/Constant.swift",
"Control/DataSource.swift",
"Control/EntityType+Builder.swift",
"Control/EntityType.swift",
"Control/Expression.swift",
"Control/ExpressionEvaluation.swift",
"Control/FetchSpecification+Builder.swift",
"Control/FetchSpecification.swift",
"Control/GlobalID.swift",
"Control/Key.swift",
"Control/KeyComparisonQualifier.swift",
"Control/KeyValueQualifier.swift",
"Control/ModelFetchSpecification.swift",
"Control/NotQualifier.swift",
"Control/ObjectStore.swift",
"Control/ObjectTrackingContext.swift",
"Control/Qualifier.swift",
"Control/QualifierEvaluation.swift",
"Control/QualifierParser.swift",
"Control/QualifierVariable.swift",
"Control/SQLQualifier.swift",
"Control/SortOrdering.swift",
"Control/StoreKeyValueCoding.swift",
"Foundation/AnyOptional.swift",
"Foundation/Dictionary+Extensions.swift",
"Foundation/EquatableType.swift",
"Foundation/KeyValueStringFormatter.swift",
"Foundation/Logger.swift",
"Foundation/OpenDateInterval.swift",
"Foundation/Pluralize.swift",
"Foundation/SimpleKVC.swift",
"Foundation/SmartDescription.swift",
"SQLite3Adaptor/SQLite3Adaptor.swift",
"SQLite3Adaptor/SQLite3AdaptorChannel.swift",
"SQLite3Adaptor/SQLite3Expression.swift",
"SQLite3Adaptor/SQLite3ModelFetch.swift",
"SQLite3Adaptor/SQLite3SchemaSynchronizationFactory.swift"
],
"type" : "library"
}
],
"tools_version" : "5.0"
}
Done.