The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Failed to build ParseSwift, reference main (12b8e7), with Swift 6.1 for Linux on 15 May 2025 00:17:07 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.1-latest swift build --triple x86_64-unknown-linux-gnu 2>&1

Build Log

 933 |                 callbackQueue.async {
 934 |                     completion(.failure(parseError))
     |                     |- warning: capture of 'completion' with non-sendable type '(Result<[Query<T>.ResultType], ParseError>) -> Void' (aka '(Result<Array<T>, ParseError>) -> ()') in a '@Sendable' closure; this is an error in the Swift 6 language mode
     |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 935 |                 }
 936 |             }
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query.swift:966:17: warning: capture of 'completion' with non-sendable type '(Result<[U], ParseError>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 964 |         guard limit > 0 else {
 965 |             callbackQueue.async {
 966 |                 completion(.success([U]()))
     |                 |- warning: capture of 'completion' with non-sendable type '(Result<[U], ParseError>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
     |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 967 |             }
 968 |             return
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query.swift:982:21: warning: capture of 'completion' with non-sendable type '(Result<[U], ParseError>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 980 |                                        message: "Cannot decode \"where\" to String.")
 981 |                 callbackQueue.async {
 982 |                     completion(.failure(error))
     |                     |- warning: capture of 'completion' with non-sendable type '(Result<[U], ParseError>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
     |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 983 |                 }
 984 |                 return
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query.swift:1007:25: warning: capture of 'completion' with non-sendable type '(Result<[U], ParseError>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
1005 |                     let parseError = error as? ParseError ?? ParseError(swift: error)
1006 |                     callbackQueue.async {
1007 |                         completion(.failure(parseError))
     |                         |- warning: capture of 'completion' with non-sendable type '(Result<[U], ParseError>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
     |                         `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
1008 |                     }
1009 |                 }
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query.swift:1019:25: warning: capture of 'completion' with non-sendable type '(Result<[U], ParseError>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
1017 |                     let parseError = error as? ParseError ?? ParseError(swift: error)
1018 |                     callbackQueue.async {
1019 |                         completion(.failure(parseError))
     |                         |- warning: capture of 'completion' with non-sendable type '(Result<[U], ParseError>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
     |                         `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
1020 |                     }
1021 |                 }
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query.swift:1044:17: warning: capture of 'completion' with non-sendable type '(Result<[Query<T>.ResultType], ParseError>) -> Void' (aka '(Result<Array<T>, ParseError>) -> ()') in a '@Sendable' closure; this is an error in the Swift 6 language mode
1042 |         guard limit > 0 else {
1043 |             callbackQueue.async {
1044 |                 completion(.success([ResultType]()))
     |                 |- warning: capture of 'completion' with non-sendable type '(Result<[Query<T>.ResultType], ParseError>) -> Void' (aka '(Result<Array<T>, ParseError>) -> ()') in a '@Sendable' closure; this is an error in the Swift 6 language mode
     |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
1045 |             }
1046 |             return
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query.swift:1059:21: warning: capture of 'completion' with non-sendable type '(Result<[Query<T>.ResultType], ParseError>) -> Void' (aka '(Result<Array<T>, ParseError>) -> ()') in a '@Sendable' closure; this is an error in the Swift 6 language mode
1057 |                 let parseError = error as? ParseError ?? ParseError(swift: error)
1058 |                 callbackQueue.async {
1059 |                     completion(.failure(parseError))
     |                     |- warning: capture of 'completion' with non-sendable type '(Result<[Query<T>.ResultType], ParseError>) -> Void' (aka '(Result<Array<T>, ParseError>) -> ()') in a '@Sendable' closure; this is an error in the Swift 6 language mode
     |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
1060 |                 }
1061 |             }
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query.swift:1091:17: warning: capture of 'completion' with non-sendable type '(Result<[U], ParseError>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
1089 |         guard limit > 0 else {
1090 |             callbackQueue.async {
1091 |                 completion(.success([U]()))
     |                 |- warning: capture of 'completion' with non-sendable type '(Result<[U], ParseError>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
     |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
1092 |             }
1093 |             return
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query.swift:1107:25: warning: capture of 'completion' with non-sendable type '(Result<[U], ParseError>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
1105 |                     let parseError = error as? ParseError ?? ParseError(swift: error)
1106 |                     callbackQueue.async {
1107 |                         completion(.failure(parseError))
     |                         |- warning: capture of 'completion' with non-sendable type '(Result<[U], ParseError>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
     |                         `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
1108 |                     }
1109 |                 }
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query.swift:1119:25: warning: capture of 'completion' with non-sendable type '(Result<[U], ParseError>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
1117 |                     let parseError = error as? ParseError ?? ParseError(swift: error)
1118 |                     callbackQueue.async {
1119 |                         completion(.failure(parseError))
     |                         |- warning: capture of 'completion' with non-sendable type '(Result<[U], ParseError>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
     |                         `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
1120 |                     }
1121 |                 }
/host/spi-builder-workspace/Sources/ParseSwift/Types/QueryConstraint.swift:52:9: warning: stored property 'value' of 'Sendable'-conforming struct 'QueryConstraint' has non-sendable type 'AnyCodable?'; this is an error in the Swift 6 language mode
 50 |
 51 |     var key: String
 52 |     var value: AnyCodable?
    |         `- warning: stored property 'value' of 'Sendable'-conforming struct 'QueryConstraint' has non-sendable type 'AnyCodable?'; this is an error in the Swift 6 language mode
 53 |     var comparator: Comparator?
 54 |     var isNull = false
/host/spi-builder-workspace/Sources/ParseSwift/Coding/AnyCodable.swift:18:8: note: consider making struct 'AnyCodable' conform to the 'Sendable' protocol
 16 |  Source: https://github.com/Flight-School/AnyCodable
 17 |  */
 18 | struct AnyCodable: Codable {
    |        `- note: consider making struct 'AnyCodable' conform to the 'Sendable' protocol
 19 |
 20 |     let value: Any
/host/spi-builder-workspace/Sources/ParseSwift/Types/ParseSchema.swift:265:14: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
263 |                       callbackQueue: DispatchQueue = .main,
264 |                       completion: @escaping (Result<Self, ParseError>) -> Void) {
265 |         Task {
    |              `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
266 |             var options = options
267 |             options.insert(.usePrimaryKey)
    :
270 |                 .execute(options: options,
271 |                          callbackQueue: callbackQueue,
272 |                          completion: completion)
    |                                      `- note: closure captures 'completion' which is accessible to code in the current task
273 |         }
274 |     }
/host/spi-builder-workspace/Sources/ParseSwift/Types/ParseSchema.swift:304:14: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
302 |                        callbackQueue: DispatchQueue = .main,
303 |                        completion: @escaping (Result<Self, ParseError>) -> Void) {
304 |         Task {
    |              `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
305 |             var options = options
306 |             options.insert(.usePrimaryKey)
    :
309 |                 .execute(options: options,
310 |                          callbackQueue: callbackQueue,
311 |                          completion: completion)
    |                                      `- note: closure captures 'completion' which is accessible to code in the current task
312 |         }
313 |     }
/host/spi-builder-workspace/Sources/ParseSwift/Types/ParseSchema.swift:338:14: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
336 |         }
337 |         let schema = mutableSchema
338 |         Task {
    |              `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
339 |             var options = options
340 |             options.insert(.usePrimaryKey)
    :
343 |                 .execute(options: options,
344 |                          callbackQueue: callbackQueue,
345 |                          completion: completion)
    |                                      `- note: closure captures 'completion' which is accessible to code in the current task
346 |         }
347 |     }
/host/spi-builder-workspace/Sources/ParseSwift/Types/ParseSchema.swift:389:14: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
387 |         completion: @escaping (Result<Void, ParseError>) -> Void
388 |     ) {
389 |         Task {
    |              `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
390 |             var options = options
391 |             options.insert(.usePrimaryKey)
    :
396 |
397 |                 case .success:
398 |                     completion(.success(()))
    |                     `- note: closure captures 'completion' which is accessible to code in the current task
399 |                 case .failure(let error):
400 |                     completion(.failure(error))
/host/spi-builder-workspace/Sources/ParseSwift/Types/ParseSchema.swift:427:14: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
425 |         completion: @escaping (Result<Void, ParseError>) -> Void
426 |     ) {
427 |         Task {
    |              `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
428 |             var options = options
429 |             options.insert(.usePrimaryKey)
    :
434 |
435 |                 case .success:
436 |                     completion(.success(()))
    |                     `- note: closure captures 'completion' which is accessible to code in the current task
437 |                 case .failure(let error):
438 |                     completion(.failure(error))
/host/spi-builder-workspace/Sources/ParseSwift/Types/ParseServer+async.swift:29:52: warning: sending '$0' risks causing data races; this is an error in the Swift 6 language mode
27 |             Self.health(options: options,
28 |                         allowIntermediateResponses: false,
29 |                         completion: { continuation.resume(with: $0) })
   |                                                    |- warning: sending '$0' risks causing data races; this is an error in the Swift 6 language mode
   |                                                    `- note: task-isolated '$0' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
30 |         }
31 |     }
/host/spi-builder-workspace/Sources/ParseSwift/Types/ParseServer+async.swift:60:57: warning: sending '$0' risks causing data races; this is an error in the Swift 6 language mode
58 |         try await withCheckedThrowingContinuation { continuation in
59 |             Self.information(options: options,
60 |                              completion: { continuation.resume(with: $0) })
   |                                                         |- warning: sending '$0' risks causing data races; this is an error in the Swift 6 language mode
   |                                                         `- note: task-isolated '$0' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
61 |         }
62 |     }
/host/spi-builder-workspace/Sources/ParseSwift/Types/ParseServer.swift:88:14: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
 86 |                               allowIntermediateResponses: Bool = true,
 87 |                               completion: @escaping (Result<Status, ParseError>) -> Void) {
 88 |         Task {
    |              `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
 89 |             var options = options
 90 |             options.insert(.cachePolicy(.reloadIgnoringLocalCacheData))
    :
 93 |                          callbackQueue: callbackQueue,
 94 |                          allowIntermediateResponses: allowIntermediateResponses,
 95 |                          completion: completion)
    |                                      `- note: closure captures 'completion' which is accessible to code in the current task
 96 |         }
 97 |     }
/host/spi-builder-workspace/Sources/ParseSwift/Types/ParseServer.swift:145:14: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
143 |                                    callbackQueue: DispatchQueue = .main,
144 |                                    completion: @escaping (Result<Information, ParseError>) -> Void) {
145 |         Task {
    |              `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
146 |             var options = options
147 |             options.insert(.usePrimaryKey)
    :
150 |                 .execute(options: options,
151 |                          callbackQueue: callbackQueue,
152 |                          completion: completion)
    |                                      `- note: closure captures 'completion' which is accessible to code in the current task
153 |         }
154 |     }
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:47:57: warning: sending '$0' risks causing data races; this is an error in the Swift 6 language mode
 45 |             self.findExplain(usingMongoDB: usingMongoDB,
 46 |                              options: options,
 47 |                              completion: { continuation.resume(with: $0) })
    |                                                         |- warning: sending '$0' risks causing data races; this is an error in the Swift 6 language mode
    |                                                         `- note: task-isolated '$0' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
 48 |         }
 49 |     }
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:101:58: warning: sending '$0' risks causing data races; this is an error in the Swift 6 language mode
 99 |             self.firstExplain(usingMongoDB: usingMongoDB,
100 |                               options: options,
101 |                               completion: { continuation.resume(with: $0) })
    |                                                          |- warning: sending '$0' risks causing data races; this is an error in the Swift 6 language mode
    |                                                          `- note: task-isolated '$0' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
102 |         }
103 |     }
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:137:58: warning: sending '$0' risks causing data races; this is an error in the Swift 6 language mode
135 |             self.countExplain(usingMongoDB: usingMongoDB,
136 |                               options: options,
137 |                               completion: { continuation.resume(with: $0) })
    |                                                          |- warning: sending '$0' risks causing data races; this is an error in the Swift 6 language mode
    |                                                          `- note: task-isolated '$0' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
138 |         }
139 |     }
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:174:62: warning: sending '$0' risks causing data races; this is an error in the Swift 6 language mode
172 |             self.withCountExplain(usingMongoDB: usingMongoDB,
173 |                                   options: options,
174 |                                   completion: { continuation.resume(with: $0) })
    |                                                              |- warning: sending '$0' risks causing data races; this is an error in the Swift 6 language mode
    |                                                              `- note: task-isolated '$0' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
175 |         }
176 |     }
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:222:62: warning: sending '$0' risks causing data races; this is an error in the Swift 6 language mode
220 |                                   usingMongoDB: usingMongoDB,
221 |                                   options: options,
222 |                                   completion: { continuation.resume(with: $0) })
    |                                                              |- warning: sending '$0' risks causing data races; this is an error in the Swift 6 language mode
    |                                                              `- note: task-isolated '$0' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
223 |         }
224 |     }
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:270:61: warning: sending '$0' risks causing data races; this is an error in the Swift 6 language mode
268 |                                  usingMongoDB: usingMongoDB,
269 |                                  options: options,
270 |                                  completion: { continuation.resume(with: $0) })
    |                                                             |- warning: sending '$0' risks causing data races; this is an error in the Swift 6 language mode
    |                                                             `- note: task-isolated '$0' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
271 |         }
272 |     }
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query.swift:483:14: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
 481 |             return
 482 |         }
 483 |         Task {
     |              `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
 484 |             do {
 485 |                 try await findCommand().execute(options: options,
 486 |                                                 callbackQueue: callbackQueue,
 487 |                                                 completion: completion)
     |                                                             `- note: closure captures 'completion' which is accessible to code in the current task
 488 |             } catch {
 489 |                 let parseError = error as? ParseError ?? ParseError(swift: error)
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query.swift:522:14: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
 520 |             return
 521 |         }
 522 |         Task {
     |              `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
 523 |             if !usingMongoDB {
 524 |                 do {
 525 |                     try await findExplainCommand().execute(options: options,
 526 |                                                            callbackQueue: callbackQueue,
 527 |                                                            completion: completion)
     |                                                                        `- note: closure captures 'completion' which is accessible to code in the current task
 528 |                 } catch {
 529 |                     let parseError = error as? ParseError ?? ParseError(swift: error)
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query.swift:583:14: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
 581 |         }
 582 |
 583 |         Task {
     |              `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
 584 |             var query = self
 585 |                 .order([.ascending("objectId")])
     :
 605 |                     let parseError = error as? ParseError ?? ParseError(swift: error)
 606 |                     callbackQueue.async {
 607 |                         completion(.failure(parseError))
     |                         `- note: closure captures 'completion' which is accessible to code in the current task
 608 |                     }
 609 |                     return
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query.swift:639:14: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
 637 |             return
 638 |         }
 639 |         Task {
     |              `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
 640 |             do {
 641 |                 try await firstCommand().execute(options: options,
 642 |                                                  callbackQueue: callbackQueue,
 643 |                                                  completion: completion)
     |                                                              `- note: closure captures 'completion' which is accessible to code in the current task
 644 |             } catch {
 645 |                 let parseError = error as? ParseError ?? ParseError(swift: error)
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query.swift:682:14: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
 680 |             return
 681 |         }
 682 |         Task {
     |              `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
 683 |             if !usingMongoDB {
 684 |                 do {
 685 |                     try await firstExplainCommand().execute(options: options,
 686 |                                                             callbackQueue: callbackQueue,
 687 |                                                             completion: completion)
     |                                                                         `- note: closure captures 'completion' which is accessible to code in the current task
 688 |                 } catch {
 689 |                     let parseError = error as? ParseError ?? ParseError(swift: error)
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query.swift:726:14: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
 724 |             return
 725 |         }
 726 |         Task {
     |              `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
 727 |             do {
 728 |                 try await countCommand().execute(options: options,
 729 |                                                  callbackQueue: callbackQueue,
 730 |                                                  completion: completion)
     |                                                              `- note: closure captures 'completion' which is accessible to code in the current task
 731 |             } catch {
 732 |                 let parseError = error as? ParseError ?? ParseError(swift: error)
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query.swift:765:14: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
 763 |             return
 764 |         }
 765 |         Task {
     |              `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
 766 |             if !usingMongoDB {
 767 |                 do {
 768 |                     try await countExplainCommand().execute(options: options,
 769 |                                                             callbackQueue: callbackQueue,
 770 |                                                             completion: completion)
     |                                                                         `- note: closure captures 'completion' which is accessible to code in the current task
 771 |                 } catch {
 772 |                     let parseError = error as? ParseError ?? ParseError(swift: error)
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query.swift:810:14: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
 808 |             return
 809 |         }
 810 |         Task {
     |              `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
 811 |             do {
 812 |                 try await withCountCommand().execute(options: options,
 813 |                                                      callbackQueue: callbackQueue,
 814 |                                                      completion: completion)
     |                                                                  `- note: closure captures 'completion' which is accessible to code in the current task
 815 |             } catch {
 816 |                 let parseError = error as? ParseError ?? ParseError(swift: error)
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query.swift:849:14: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
 847 |             return
 848 |         }
 849 |         Task {
     |              `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
 850 |             if !usingMongoDB {
 851 |                 do {
 852 |                     try await withCountExplainCommand().execute(options: options,
 853 |                                                                 callbackQueue: callbackQueue,
 854 |                                                                 completion: completion)
     |                                                                             `- note: closure captures 'completion' which is accessible to code in the current task
 855 |                 } catch {
 856 |                     let parseError = error as? ParseError ?? ParseError(swift: error)
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query.swift:898:14: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
 896 |             return
 897 |         }
 898 |         Task {
     |              `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
 899 |             var options = options
 900 |             options.insert(.usePrimaryKey)
     :
 908 |                                        message: "Cannot decode \"where\" to String.")
 909 |                 callbackQueue.async {
 910 |                     completion(.failure(error))
     |                     `- note: closure captures 'completion' which is accessible to code in the current task
 911 |                 }
 912 |                 return
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query.swift:970:14: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
 968 |             return
 969 |         }
 970 |         Task {
     |              `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
 971 |             var options = options
 972 |             options.insert(.usePrimaryKey)
     :
 980 |                                        message: "Cannot decode \"where\" to String.")
 981 |                 callbackQueue.async {
 982 |                     completion(.failure(error))
     |                     `- note: closure captures 'completion' which is accessible to code in the current task
 983 |                 }
 984 |                 return
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query.swift:1048:14: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
1046 |             return
1047 |         }
1048 |         Task {
     |              `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
1049 |             var options = options
1050 |             options.insert(.usePrimaryKey)
     :
1053 |                     .execute(options: options,
1054 |                              callbackQueue: callbackQueue,
1055 |                              completion: completion)
     |                                          `- note: closure captures 'completion' which is accessible to code in the current task
1056 |             } catch {
1057 |                 let parseError = error as? ParseError ?? ParseError(swift: error)
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query.swift:1095:14: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
1093 |             return
1094 |         }
1095 |         Task {
     |              `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
1096 |             var options = options
1097 |             options.insert(.usePrimaryKey)
     :
1101 |                         .execute(options: options,
1102 |                                  callbackQueue: callbackQueue,
1103 |                                  completion: completion)
     |                                              `- note: closure captures 'completion' which is accessible to code in the current task
1104 |                 } catch {
1105 |                     let parseError = error as? ParseError ?? ParseError(swift: error)
[203/203] Compiling ParseSwift Utility.swift
/host/spi-builder-workspace/Sources/ParseSwift/Types/ParsePushPayload/Apple/ParsePushPayloadApple.swift:75:9: warning: stored property 'badge' of 'Sendable'-conforming struct 'ParsePushPayloadApple' has non-sendable type 'AnyCodable?'; this is an error in the Swift 6 language mode
 73 |         }
 74 |     }
 75 |     var badge: AnyCodable?
    |         `- warning: stored property 'badge' of 'Sendable'-conforming struct 'ParsePushPayloadApple' has non-sendable type 'AnyCodable?'; this is an error in the Swift 6 language mode
 76 |     var sound: AnyCodable?
 77 |
/host/spi-builder-workspace/Sources/ParseSwift/Coding/AnyCodable.swift:18:8: note: consider making struct 'AnyCodable' conform to the 'Sendable' protocol
 16 |  Source: https://github.com/Flight-School/AnyCodable
 17 |  */
 18 | struct AnyCodable: Codable {
    |        `- note: consider making struct 'AnyCodable' conform to the 'Sendable' protocol
 19 |
 20 |     let value: Any
/host/spi-builder-workspace/Sources/ParseSwift/Types/ParsePushPayload/Apple/ParsePushPayloadApple.swift:76:9: warning: stored property 'sound' of 'Sendable'-conforming struct 'ParsePushPayloadApple' has non-sendable type 'AnyCodable?'; this is an error in the Swift 6 language mode
 74 |     }
 75 |     var badge: AnyCodable?
 76 |     var sound: AnyCodable?
    |         `- warning: stored property 'sound' of 'Sendable'-conforming struct 'ParsePushPayloadApple' has non-sendable type 'AnyCodable?'; this is an error in the Swift 6 language mode
 77 |
 78 |     /// The type of notification.
/host/spi-builder-workspace/Sources/ParseSwift/Coding/AnyCodable.swift:18:8: note: consider making struct 'AnyCodable' conform to the 'Sendable' protocol
 16 |  Source: https://github.com/Flight-School/AnyCodable
 17 |  */
 18 | struct AnyCodable: Codable {
    |        `- note: consider making struct 'AnyCodable' conform to the 'Sendable' protocol
 19 |
 20 |     let value: Any
/host/spi-builder-workspace/Sources/ParseSwift/Types/ParsePushPayload/ParsePushPayloadAny.swift:35:9: warning: stored property 'badge' of 'Sendable'-conforming struct 'ParsePushPayloadAny' has non-sendable type 'AnyCodable?'; this is an error in the Swift 6 language mode
 33 |     public var notification: ParsePushFirebaseNotification?
 34 |     public var alert: ParsePushAppleAlert?
 35 |     var badge: AnyCodable?
    |         `- warning: stored property 'badge' of 'Sendable'-conforming struct 'ParsePushPayloadAny' has non-sendable type 'AnyCodable?'; this is an error in the Swift 6 language mode
 36 |     var sound: AnyCodable?
 37 |     var priority: AnyCodable?
/host/spi-builder-workspace/Sources/ParseSwift/Coding/AnyCodable.swift:18:8: note: consider making struct 'AnyCodable' conform to the 'Sendable' protocol
 16 |  Source: https://github.com/Flight-School/AnyCodable
 17 |  */
 18 | struct AnyCodable: Codable {
    |        `- note: consider making struct 'AnyCodable' conform to the 'Sendable' protocol
 19 |
 20 |     let value: Any
/host/spi-builder-workspace/Sources/ParseSwift/Types/ParsePushPayload/ParsePushPayloadAny.swift:36:9: warning: stored property 'sound' of 'Sendable'-conforming struct 'ParsePushPayloadAny' has non-sendable type 'AnyCodable?'; this is an error in the Swift 6 language mode
 34 |     public var alert: ParsePushAppleAlert?
 35 |     var badge: AnyCodable?
 36 |     var sound: AnyCodable?
    |         `- warning: stored property 'sound' of 'Sendable'-conforming struct 'ParsePushPayloadAny' has non-sendable type 'AnyCodable?'; this is an error in the Swift 6 language mode
 37 |     var priority: AnyCodable?
 38 |     var contentAvailable: AnyCodable?
/host/spi-builder-workspace/Sources/ParseSwift/Coding/AnyCodable.swift:18:8: note: consider making struct 'AnyCodable' conform to the 'Sendable' protocol
 16 |  Source: https://github.com/Flight-School/AnyCodable
 17 |  */
 18 | struct AnyCodable: Codable {
    |        `- note: consider making struct 'AnyCodable' conform to the 'Sendable' protocol
 19 |
 20 |     let value: Any
/host/spi-builder-workspace/Sources/ParseSwift/Types/ParsePushPayload/ParsePushPayloadAny.swift:37:9: warning: stored property 'priority' of 'Sendable'-conforming struct 'ParsePushPayloadAny' has non-sendable type 'AnyCodable?'; this is an error in the Swift 6 language mode
 35 |     var badge: AnyCodable?
 36 |     var sound: AnyCodable?
 37 |     var priority: AnyCodable?
    |         `- warning: stored property 'priority' of 'Sendable'-conforming struct 'ParsePushPayloadAny' has non-sendable type 'AnyCodable?'; this is an error in the Swift 6 language mode
 38 |     var contentAvailable: AnyCodable?
 39 |     var mutableContent: AnyCodable?
/host/spi-builder-workspace/Sources/ParseSwift/Coding/AnyCodable.swift:18:8: note: consider making struct 'AnyCodable' conform to the 'Sendable' protocol
 16 |  Source: https://github.com/Flight-School/AnyCodable
 17 |  */
 18 | struct AnyCodable: Codable {
    |        `- note: consider making struct 'AnyCodable' conform to the 'Sendable' protocol
 19 |
 20 |     let value: Any
/host/spi-builder-workspace/Sources/ParseSwift/Types/ParsePushPayload/ParsePushPayloadAny.swift:38:9: warning: stored property 'contentAvailable' of 'Sendable'-conforming struct 'ParsePushPayloadAny' has non-sendable type 'AnyCodable?'; this is an error in the Swift 6 language mode
 36 |     var sound: AnyCodable?
 37 |     var priority: AnyCodable?
 38 |     var contentAvailable: AnyCodable?
    |         `- warning: stored property 'contentAvailable' of 'Sendable'-conforming struct 'ParsePushPayloadAny' has non-sendable type 'AnyCodable?'; this is an error in the Swift 6 language mode
 39 |     var mutableContent: AnyCodable?
 40 |
/host/spi-builder-workspace/Sources/ParseSwift/Coding/AnyCodable.swift:18:8: note: consider making struct 'AnyCodable' conform to the 'Sendable' protocol
 16 |  Source: https://github.com/Flight-School/AnyCodable
 17 |  */
 18 | struct AnyCodable: Codable {
    |        `- note: consider making struct 'AnyCodable' conform to the 'Sendable' protocol
 19 |
 20 |     let value: Any
/host/spi-builder-workspace/Sources/ParseSwift/Types/ParsePushPayload/ParsePushPayloadAny.swift:39:9: warning: stored property 'mutableContent' of 'Sendable'-conforming struct 'ParsePushPayloadAny' has non-sendable type 'AnyCodable?'; this is an error in the Swift 6 language mode
 37 |     var priority: AnyCodable?
 38 |     var contentAvailable: AnyCodable?
 39 |     var mutableContent: AnyCodable?
    |         `- warning: stored property 'mutableContent' of 'Sendable'-conforming struct 'ParsePushPayloadAny' has non-sendable type 'AnyCodable?'; this is an error in the Swift 6 language mode
 40 |
 41 |     public init(from decoder: Decoder) throws {
/host/spi-builder-workspace/Sources/ParseSwift/Coding/AnyCodable.swift:18:8: note: consider making struct 'AnyCodable' conform to the 'Sendable' protocol
 16 |  Source: https://github.com/Flight-School/AnyCodable
 17 |  */
 18 | struct AnyCodable: Codable {
    |        `- note: consider making struct 'AnyCodable' conform to the 'Sendable' protocol
 19 |
 20 |     let value: Any
/host/spi-builder-workspace/Sources/ParseSwift/Types/ParseSchema.swift:24:18: warning: stored property 'indexes' of 'Sendable'-conforming generic struct 'ParseSchema' has non-sendable type '[String : [String : AnyCodable]]?'; this is an error in the Swift 6 language mode
 22 |     public var classLevelPermissions: ParseCLP?
 23 |     internal var fields: [String: ParseField]?
 24 |     internal var indexes: [String: [String: AnyCodable]]?
    |                  `- warning: stored property 'indexes' of 'Sendable'-conforming generic struct 'ParseSchema' has non-sendable type '[String : [String : AnyCodable]]?'; this is an error in the Swift 6 language mode
 25 |     internal var pendingIndexes = [String: [String: AnyCodable]]()
 26 |
/host/spi-builder-workspace/Sources/ParseSwift/Coding/AnyCodable.swift:18:8: note: consider making struct 'AnyCodable' conform to the 'Sendable' protocol
 16 |  Source: https://github.com/Flight-School/AnyCodable
 17 |  */
 18 | struct AnyCodable: Codable {
    |        `- note: consider making struct 'AnyCodable' conform to the 'Sendable' protocol
 19 |
 20 |     let value: Any
/host/spi-builder-workspace/Sources/ParseSwift/Types/ParseSchema.swift:25:18: warning: stored property 'pendingIndexes' of 'Sendable'-conforming generic struct 'ParseSchema' has non-sendable type '[String : [String : AnyCodable]]'; this is an error in the Swift 6 language mode
 23 |     internal var fields: [String: ParseField]?
 24 |     internal var indexes: [String: [String: AnyCodable]]?
 25 |     internal var pendingIndexes = [String: [String: AnyCodable]]()
    |                  `- warning: stored property 'pendingIndexes' of 'Sendable'-conforming generic struct 'ParseSchema' has non-sendable type '[String : [String : AnyCodable]]'; this is an error in the Swift 6 language mode
 26 |
 27 |     enum CodingKeys: String, CodingKey {
/host/spi-builder-workspace/Sources/ParseSwift/Coding/AnyCodable.swift:18:8: note: consider making struct 'AnyCodable' conform to the 'Sendable' protocol
 16 |  Source: https://github.com/Flight-School/AnyCodable
 17 |  */
 18 | struct AnyCodable: Codable {
    |        `- note: consider making struct 'AnyCodable' conform to the 'Sendable' protocol
 19 |
 20 |     let value: Any
/host/spi-builder-workspace/Sources/ParseSwift/Types/ParseServer.swift:120:26: warning: type 'ParseServer.Status' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 21 |
 22 |     /// The health status value of a Parse Server.
 23 |     public enum Status: String, Codable {
    |                 `- note: consider making enum 'Status' conform to the 'Sendable' protocol
 24 |         /// The server started and is running.
 25 |         case ok
    :
118 |     }
119 |
120 |     internal static func healthCommand() -> API.Command<NoBody, Status> {
    |                          `- warning: type 'ParseServer.Status' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
121 |         return API.Command(method: .POST,
122 |                            path: .health) { (data) -> Status in
/host/spi-builder-workspace/Sources/ParseSwift/Types/ParseServer.swift:156:26: warning: type 'ParseServer.Information' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 33 |
 34 |     /// Any provided information from the Parse Server.
 35 |     public struct Information: Decodable {
    |                   `- note: consider making struct 'Information' conform to the 'Sendable' protocol
 36 |
 37 |         /// The version of the Parse Server.
    :
154 |     }
155 |
156 |     internal static func infoCommand() -> API.Command<NoBody, Information> {
    |                          `- warning: type 'ParseServer.Information' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
157 |         return API.Command(method: .GET,
158 |                            path: .serverInfo) { (data) -> Information in
/host/spi-builder-workspace/Sources/ParseSwift/Types/ParseServer.swift:92:18: warning: type 'ParseServer.Status' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 21 |
 22 |     /// The health status value of a Parse Server.
 23 |     public enum Status: String, Codable {
    |                 `- note: consider making enum 'Status' conform to the 'Sendable' protocol
 24 |         /// The server started and is running.
 25 |         case ok
    :
 90 |             options.insert(.cachePolicy(.reloadIgnoringLocalCacheData))
 91 |             await healthCommand()
 92 |                 .execute(options: options,
    |                  `- warning: type 'ParseServer.Status' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 93 |                          callbackQueue: callbackQueue,
 94 |                          allowIntermediateResponses: allowIntermediateResponses,
/host/spi-builder-workspace/Sources/ParseSwift/Types/ParseServer.swift:121:16: warning: type 'ParseServer.Status' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 21 |
 22 |     /// The health status value of a Parse Server.
 23 |     public enum Status: String, Codable {
    |                 `- note: consider making enum 'Status' conform to the 'Sendable' protocol
 24 |         /// The server started and is running.
 25 |         case ok
    :
119 |
120 |     internal static func healthCommand() -> API.Command<NoBody, Status> {
121 |         return API.Command(method: .POST,
    |                `- warning: type 'ParseServer.Status' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
122 |                            path: .health) { (data) -> Status in
123 |             return try ParseCoding.jsonDecoder().decode(HealthResponse.self, from: data).status
/host/spi-builder-workspace/Sources/ParseSwift/Types/ParseServer.swift:121:20: warning: type 'ParseServer.Status' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 21 |
 22 |     /// The health status value of a Parse Server.
 23 |     public enum Status: String, Codable {
    |                 `- note: consider making enum 'Status' conform to the 'Sendable' protocol
 24 |         /// The server started and is running.
 25 |         case ok
    :
119 |
120 |     internal static func healthCommand() -> API.Command<NoBody, Status> {
121 |         return API.Command(method: .POST,
    |                    `- warning: type 'ParseServer.Status' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
122 |                            path: .health) { (data) -> Status in
123 |             return try ParseCoding.jsonDecoder().decode(HealthResponse.self, from: data).status
/host/spi-builder-workspace/Sources/ParseSwift/Types/ParseServer.swift:150:18: warning: type 'ParseServer.Information' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 33 |
 34 |     /// Any provided information from the Parse Server.
 35 |     public struct Information: Decodable {
    |                   `- note: consider making struct 'Information' conform to the 'Sendable' protocol
 36 |
 37 |         /// The version of the Parse Server.
    :
148 |             options.insert(.cachePolicy(.reloadIgnoringLocalCacheData))
149 |             await infoCommand()
150 |                 .execute(options: options,
    |                  `- warning: type 'ParseServer.Information' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
151 |                          callbackQueue: callbackQueue,
152 |                          completion: completion)
/host/spi-builder-workspace/Sources/ParseSwift/Types/ParseServer.swift:157:16: warning: type 'ParseServer.Information' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 33 |
 34 |     /// Any provided information from the Parse Server.
 35 |     public struct Information: Decodable {
    |                   `- note: consider making struct 'Information' conform to the 'Sendable' protocol
 36 |
 37 |         /// The version of the Parse Server.
    :
155 |
156 |     internal static func infoCommand() -> API.Command<NoBody, Information> {
157 |         return API.Command(method: .GET,
    |                `- warning: type 'ParseServer.Information' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
158 |                            path: .serverInfo) { (data) -> Information in
159 |             return try ParseCoding.jsonDecoder().decode(Information.self, from: data)
/host/spi-builder-workspace/Sources/ParseSwift/Types/ParseServer.swift:157:20: warning: type 'ParseServer.Information' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 33 |
 34 |     /// Any provided information from the Parse Server.
 35 |     public struct Information: Decodable {
    |                   `- note: consider making struct 'Information' conform to the 'Sendable' protocol
 36 |
 37 |         /// The version of the Parse Server.
    :
155 |
156 |     internal static func infoCommand() -> API.Command<NoBody, Information> {
157 |         return API.Command(method: .GET,
    |                    `- warning: type 'ParseServer.Information' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
158 |                            path: .serverInfo) { (data) -> Information in
159 |             return try ParseCoding.jsonDecoder().decode(Information.self, from: data)
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query.swift:25:18: warning: stored property 'hint' of 'Sendable'-conforming generic struct 'Query' has non-sendable type 'AnyCodable?'; this is an error in the Swift 6 language mode
  23 |     internal var isCount: Bool?
  24 |     internal var explain: Bool?
  25 |     internal var hint: AnyCodable?
     |                  `- warning: stored property 'hint' of 'Sendable'-conforming generic struct 'Query' has non-sendable type 'AnyCodable?'; this is an error in the Swift 6 language mode
  26 |     internal var `where` = QueryWhere()
  27 |     internal var excludeKeys: Set<String>?
/host/spi-builder-workspace/Sources/ParseSwift/Coding/AnyCodable.swift:18:8: note: consider making struct 'AnyCodable' conform to the 'Sendable' protocol
 16 |  Source: https://github.com/Flight-School/AnyCodable
 17 |  */
 18 | struct AnyCodable: Codable {
    |        `- note: consider making struct 'AnyCodable' conform to the 'Sendable' protocol
 19 |
 20 |     let value: Any
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query.swift:32:18: warning: stored property 'pipeline' of 'Sendable'-conforming generic struct 'Query' has non-sendable type '[[String : AnyCodable]]?'; this is an error in the Swift 6 language mode
  30 |     internal var subqueryReadPreference: String?
  31 |     internal var distinct: String?
  32 |     internal var pipeline: [[String: AnyCodable]]?
     |                  `- warning: stored property 'pipeline' of 'Sendable'-conforming generic struct 'Query' has non-sendable type '[[String : AnyCodable]]?'; this is an error in the Swift 6 language mode
  33 |     internal var fields: Set<String>?
  34 |     internal var watch: Set<String>?
/host/spi-builder-workspace/Sources/ParseSwift/Coding/AnyCodable.swift:18:8: note: consider making struct 'AnyCodable' conform to the 'Sendable' protocol
 16 |  Source: https://github.com/Flight-School/AnyCodable
 17 |  */
 18 | struct AnyCodable: Codable {
    |        `- note: consider making struct 'AnyCodable' conform to the 'Sendable' protocol
 19 |
 20 |     let value: Any
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query.swift:479:17: warning: capture of 'completion' with non-sendable type '(Result<[Query<T>.ResultType], ParseError>) -> Void' (aka '(Result<Array<T>, ParseError>) -> ()') in a '@Sendable' closure; this is an error in the Swift 6 language mode
 477 |         guard limit > 0 else {
 478 |             callbackQueue.async {
 479 |                 completion(.success([ResultType]()))
     |                 |- warning: capture of 'completion' with non-sendable type '(Result<[Query<T>.ResultType], ParseError>) -> Void' (aka '(Result<Array<T>, ParseError>) -> ()') in a '@Sendable' closure; this is an error in the Swift 6 language mode
     |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 480 |             }
 481 |             return
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query.swift:491:21: warning: capture of 'completion' with non-sendable type '(Result<[Query<T>.ResultType], ParseError>) -> Void' (aka '(Result<Array<T>, ParseError>) -> ()') in a '@Sendable' closure; this is an error in the Swift 6 language mode
 489 |                 let parseError = error as? ParseError ?? ParseError(swift: error)
 490 |                 callbackQueue.async {
 491 |                     completion(.failure(parseError))
     |                     |- warning: capture of 'completion' with non-sendable type '(Result<[Query<T>.ResultType], ParseError>) -> Void' (aka '(Result<Array<T>, ParseError>) -> ()') in a '@Sendable' closure; this is an error in the Swift 6 language mode
     |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 492 |                 }
 493 |             }
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query.swift:518:17: warning: capture of 'completion' with non-sendable type '(Result<[U], ParseError>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 516 |         guard limit > 0 else {
 517 |             callbackQueue.async {
 518 |                 completion(.success([U]()))
     |                 |- warning: capture of 'completion' with non-sendable type '(Result<[U], ParseError>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
     |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 519 |             }
 520 |             return
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query.swift:531:25: warning: capture of 'completion' with non-sendable type '(Result<[U], ParseError>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 529 |                     let parseError = error as? ParseError ?? ParseError(swift: error)
 530 |                     callbackQueue.async {
 531 |                         completion(.failure(parseError))
     |                         |- warning: capture of 'completion' with non-sendable type '(Result<[U], ParseError>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
     |                         `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 532 |                     }
 533 |                 }
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query.swift:542:25: warning: capture of 'completion' with non-sendable type '(Result<[U], ParseError>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 540 |                     let parseError = error as? ParseError ?? ParseError(swift: error)
 541 |                     callbackQueue.async {
 542 |                         completion(.failure(parseError))
     |                         |- warning: capture of 'completion' with non-sendable type '(Result<[U], ParseError>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
     |                         `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 543 |                     }
 544 |                 }
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query.swift:568:17: warning: capture of 'completion' with non-sendable type '(Result<[Query<T>.ResultType], ParseError>) -> Void' (aka '(Result<Array<T>, ParseError>) -> ()') in a '@Sendable' closure; this is an error in the Swift 6 language mode
 566 |         if self.limit == 0 {
 567 |             callbackQueue.async {
 568 |                 completion(.success([ResultType]()))
     |                 |- warning: capture of 'completion' with non-sendable type '(Result<[Query<T>.ResultType], ParseError>) -> Void' (aka '(Result<Array<T>, ParseError>) -> ()') in a '@Sendable' closure; this is an error in the Swift 6 language mode
     |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 569 |             }
 570 |             return
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query.swift:578:17: warning: capture of 'completion' with non-sendable type '(Result<[Query<T>.ResultType], ParseError>) -> Void' (aka '(Result<Array<T>, ParseError>) -> ()') in a '@Sendable' closure; this is an error in the Swift 6 language mode
 576 |                                    message: "Cannot iterate on a query with sort, skip, or limit.")
 577 |             callbackQueue.async {
 578 |                 completion(.failure(error))
     |                 |- warning: capture of 'completion' with non-sendable type '(Result<[Query<T>.ResultType], ParseError>) -> Void' (aka '(Result<Array<T>, ParseError>) -> ()') in a '@Sendable' closure; this is an error in the Swift 6 language mode
     |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 579 |             }
 580 |             return
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query.swift:607:25: warning: capture of 'completion' with non-sendable type '(Result<[Query<T>.ResultType], ParseError>) -> Void' (aka '(Result<Array<T>, ParseError>) -> ()') in a '@Sendable' closure; this is an error in the Swift 6 language mode
 605 |                     let parseError = error as? ParseError ?? ParseError(swift: error)
 606 |                     callbackQueue.async {
 607 |                         completion(.failure(parseError))
     |                         |- warning: capture of 'completion' with non-sendable type '(Result<[Query<T>.ResultType], ParseError>) -> Void' (aka '(Result<Array<T>, ParseError>) -> ()') in a '@Sendable' closure; this is an error in the Swift 6 language mode
     |                         `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 608 |                     }
 609 |                     return
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query.swift:614:17: warning: capture of 'completion' with non-sendable type '(Result<[Query<T>.ResultType], ParseError>) -> Void' (aka '(Result<Array<T>, ParseError>) -> ()') in a '@Sendable' closure; this is an error in the Swift 6 language mode
 612 |             let finalResults = results
 613 |             callbackQueue.async {
 614 |                 completion(.success(finalResults))
     |                 |- warning: capture of 'completion' with non-sendable type '(Result<[Query<T>.ResultType], ParseError>) -> Void' (aka '(Result<Array<T>, ParseError>) -> ()') in a '@Sendable' closure; this is an error in the Swift 6 language mode
     |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 615 |             }
 616 |         }
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query.swift:635:17: warning: capture of 'completion' with non-sendable type '(Result<Query<T>.ResultType, ParseError>) -> Void' (aka '(Result<T, ParseError>) -> ()') in a '@Sendable' closure; this is an error in the Swift 6 language mode
 633 |                                    message: "Object not found on the server.")
 634 |             callbackQueue.async {
 635 |                 completion(.failure(error))
     |                 |- warning: capture of 'completion' with non-sendable type '(Result<Query<T>.ResultType, ParseError>) -> Void' (aka '(Result<T, ParseError>) -> ()') in a '@Sendable' closure; this is an error in the Swift 6 language mode
     |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 636 |             }
 637 |             return
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query.swift:647:21: warning: capture of 'completion' with non-sendable type '(Result<Query<T>.ResultType, ParseError>) -> Void' (aka '(Result<T, ParseError>) -> ()') in a '@Sendable' closure; this is an error in the Swift 6 language mode
 645 |                 let parseError = error as? ParseError ?? ParseError(swift: error)
 646 |                 callbackQueue.async {
 647 |                     completion(.failure(parseError))
     |                     |- warning: capture of 'completion' with non-sendable type '(Result<Query<T>.ResultType, ParseError>) -> Void' (aka '(Result<T, ParseError>) -> ()') in a '@Sendable' closure; this is an error in the Swift 6 language mode
     |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 648 |                 }
 649 |             }
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query.swift:678:17: warning: capture of 'completion' with non-sendable type '(Result<U, ParseError>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 676 |                                    message: "Object not found on the server.")
 677 |             callbackQueue.async {
 678 |                 completion(.failure(error))
     |                 |- warning: capture of 'completion' with non-sendable type '(Result<U, ParseError>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
     |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 679 |             }
 680 |             return
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query.swift:691:25: warning: capture of 'completion' with non-sendable type '(Result<U, ParseError>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 689 |                     let parseError = error as? ParseError ?? ParseError(swift: error)
 690 |                     callbackQueue.async {
 691 |                         completion(.failure(parseError))
     |                         |- warning: capture of 'completion' with non-sendable type '(Result<U, ParseError>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
     |                         `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 692 |                     }
 693 |                 }
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query.swift:702:25: warning: capture of 'completion' with non-sendable type '(Result<U, ParseError>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 700 |                     let parseError = error as? ParseError ?? ParseError(swift: error)
 701 |                     callbackQueue.async {
 702 |                         completion(.failure(parseError))
     |                         |- warning: capture of 'completion' with non-sendable type '(Result<U, ParseError>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
     |                         `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 703 |                     }
 704 |                 }
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query.swift:722:17: warning: capture of 'completion' with non-sendable type '(Result<Int, ParseError>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 720 |         guard limit > 0 else {
 721 |             callbackQueue.async {
 722 |                 completion(.success(0))
     |                 |- warning: capture of 'completion' with non-sendable type '(Result<Int, ParseError>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
     |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 723 |             }
 724 |             return
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query.swift:734:21: warning: capture of 'completion' with non-sendable type '(Result<Int, ParseError>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 732 |                 let parseError = error as? ParseError ?? ParseError(swift: error)
 733 |                 callbackQueue.async {
 734 |                     completion(.failure(parseError))
     |                     |- warning: capture of 'completion' with non-sendable type '(Result<Int, ParseError>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
     |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 735 |                 }
 736 |             }
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query.swift:761:17: warning: capture of 'completion' with non-sendable type '(Result<[U], ParseError>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 759 |         guard limit > 0 else {
 760 |             callbackQueue.async {
 761 |                 completion(.success([U]()))
     |                 |- warning: capture of 'completion' with non-sendable type '(Result<[U], ParseError>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
     |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 762 |             }
 763 |             return
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query.swift:774:25: warning: capture of 'completion' with non-sendable type '(Result<[U], ParseError>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 772 |                     let parseError = error as? ParseError ?? ParseError(swift: error)
 773 |                     callbackQueue.async {
 774 |                         completion(.failure(parseError))
     |                         |- warning: capture of 'completion' with non-sendable type '(Result<[U], ParseError>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
     |                         `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 775 |                     }
 776 |                 }
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query.swift:785:25: warning: capture of 'completion' with non-sendable type '(Result<[U], ParseError>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 783 |                     let parseError = error as? ParseError ?? ParseError(swift: error)
 784 |                     callbackQueue.async {
 785 |                         completion(.failure(parseError))
     |                         |- warning: capture of 'completion' with non-sendable type '(Result<[U], ParseError>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
     |                         `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 786 |                     }
 787 |                 }
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query.swift:806:17: warning: capture of 'completion' with non-sendable type '(Result<([Query<T>.ResultType], Int), ParseError>) -> Void' (aka '(Result<(Array<T>, Int), ParseError>) -> ()') in a '@Sendable' closure; this is an error in the Swift 6 language mode
 804 |         guard limit > 0 else {
 805 |             callbackQueue.async {
 806 |                 completion(.success(([], 0)))
     |                 |- warning: capture of 'completion' with non-sendable type '(Result<([Query<T>.ResultType], Int), ParseError>) -> Void' (aka '(Result<(Array<T>, Int), ParseError>) -> ()') in a '@Sendable' closure; this is an error in the Swift 6 language mode
     |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 807 |             }
 808 |             return
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query.swift:818:21: warning: capture of 'completion' with non-sendable type '(Result<([Query<T>.ResultType], Int), ParseError>) -> Void' (aka '(Result<(Array<T>, Int), ParseError>) -> ()') in a '@Sendable' closure; this is an error in the Swift 6 language mode
 816 |                 let parseError = error as? ParseError ?? ParseError(swift: error)
 817 |                 callbackQueue.async {
 818 |                     completion(.failure(parseError))
     |                     |- warning: capture of 'completion' with non-sendable type '(Result<([Query<T>.ResultType], Int), ParseError>) -> Void' (aka '(Result<(Array<T>, Int), ParseError>) -> ()') in a '@Sendable' closure; this is an error in the Swift 6 language mode
     |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 819 |                 }
 820 |             }
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query.swift:845:17: warning: capture of 'completion' with non-sendable type '(Result<[U], ParseError>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 843 |         guard limit > 0 else {
 844 |             callbackQueue.async {
 845 |                 completion(.success([U]()))
     |                 |- warning: capture of 'completion' with non-sendable type '(Result<[U], ParseError>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
     |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 846 |             }
 847 |             return
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query.swift:858:25: warning: capture of 'completion' with non-sendable type '(Result<[U], ParseError>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 856 |                     let parseError = error as? ParseError ?? ParseError(swift: error)
 857 |                     callbackQueue.async {
 858 |                         completion(.failure(parseError))
     |                         |- warning: capture of 'completion' with non-sendable type '(Result<[U], ParseError>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
     |                         `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 859 |                     }
 860 |                 }
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query.swift:869:25: warning: capture of 'completion' with non-sendable type '(Result<[U], ParseError>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 867 |                     let parseError = error as? ParseError ?? ParseError(swift: error)
 868 |                     callbackQueue.async {
 869 |                         completion(.failure(parseError))
     |                         |- warning: capture of 'completion' with non-sendable type '(Result<[U], ParseError>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
     |                         `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 870 |                     }
 871 |                 }
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query.swift:894:17: warning: capture of 'completion' with non-sendable type '(Result<[Query<T>.ResultType], ParseError>) -> Void' (aka '(Result<Array<T>, ParseError>) -> ()') in a '@Sendable' closure; this is an error in the Swift 6 language mode
 892 |         guard limit > 0 else {
 893 |             callbackQueue.async {
 894 |                 completion(.success([ResultType]()))
     |                 |- warning: capture of 'completion' with non-sendable type '(Result<[Query<T>.ResultType], ParseError>) -> Void' (aka '(Result<Array<T>, ParseError>) -> ()') in a '@Sendable' closure; this is an error in the Swift 6 language mode
     |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 895 |             }
 896 |             return
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query.swift:910:21: warning: capture of 'completion' with non-sendable type '(Result<[Query<T>.ResultType], ParseError>) -> Void' (aka '(Result<Array<T>, ParseError>) -> ()') in a '@Sendable' closure; this is an error in the Swift 6 language mode
 908 |                                        message: "Cannot decode \"where\" to String.")
 909 |                 callbackQueue.async {
 910 |                     completion(.failure(error))
     |                     |- warning: capture of 'completion' with non-sendable type '(Result<[Query<T>.ResultType], ParseError>) -> Void' (aka '(Result<Array<T>, ParseError>) -> ()') in a '@Sendable' closure; this is an error in the Swift 6 language mode
     |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 911 |                 }
 912 |                 return
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query.swift:934:21: warning: capture of 'completion' with non-sendable type '(Result<[Query<T>.ResultType], ParseError>) -> Void' (aka '(Result<Array<T>, ParseError>) -> ()') in a '@Sendable' closure; this is an error in the Swift 6 language mode
 932 |                 let parseError = error as? ParseError ?? ParseError(swift: error)
 933 |                 callbackQueue.async {
 934 |                     completion(.failure(parseError))
     |                     |- warning: capture of 'completion' with non-sendable type '(Result<[Query<T>.ResultType], ParseError>) -> Void' (aka '(Result<Array<T>, ParseError>) -> ()') in a '@Sendable' closure; this is an error in the Swift 6 language mode
     |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 935 |                 }
 936 |             }
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query.swift:966:17: warning: capture of 'completion' with non-sendable type '(Result<[U], ParseError>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 964 |         guard limit > 0 else {
 965 |             callbackQueue.async {
 966 |                 completion(.success([U]()))
     |                 |- warning: capture of 'completion' with non-sendable type '(Result<[U], ParseError>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
     |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 967 |             }
 968 |             return
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query.swift:982:21: warning: capture of 'completion' with non-sendable type '(Result<[U], ParseError>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 980 |                                        message: "Cannot decode \"where\" to String.")
 981 |                 callbackQueue.async {
 982 |                     completion(.failure(error))
     |                     |- warning: capture of 'completion' with non-sendable type '(Result<[U], ParseError>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
     |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 983 |                 }
 984 |                 return
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query.swift:1007:25: warning: capture of 'completion' with non-sendable type '(Result<[U], ParseError>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
1005 |                     let parseError = error as? ParseError ?? ParseError(swift: error)
1006 |                     callbackQueue.async {
1007 |                         completion(.failure(parseError))
     |                         |- warning: capture of 'completion' with non-sendable type '(Result<[U], ParseError>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
     |                         `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
1008 |                     }
1009 |                 }
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query.swift:1019:25: warning: capture of 'completion' with non-sendable type '(Result<[U], ParseError>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
1017 |                     let parseError = error as? ParseError ?? ParseError(swift: error)
1018 |                     callbackQueue.async {
1019 |                         completion(.failure(parseError))
     |                         |- warning: capture of 'completion' with non-sendable type '(Result<[U], ParseError>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
     |                         `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
1020 |                     }
1021 |                 }
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query.swift:1044:17: warning: capture of 'completion' with non-sendable type '(Result<[Query<T>.ResultType], ParseError>) -> Void' (aka '(Result<Array<T>, ParseError>) -> ()') in a '@Sendable' closure; this is an error in the Swift 6 language mode
1042 |         guard limit > 0 else {
1043 |             callbackQueue.async {
1044 |                 completion(.success([ResultType]()))
     |                 |- warning: capture of 'completion' with non-sendable type '(Result<[Query<T>.ResultType], ParseError>) -> Void' (aka '(Result<Array<T>, ParseError>) -> ()') in a '@Sendable' closure; this is an error in the Swift 6 language mode
     |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
1045 |             }
1046 |             return
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query.swift:1059:21: warning: capture of 'completion' with non-sendable type '(Result<[Query<T>.ResultType], ParseError>) -> Void' (aka '(Result<Array<T>, ParseError>) -> ()') in a '@Sendable' closure; this is an error in the Swift 6 language mode
1057 |                 let parseError = error as? ParseError ?? ParseError(swift: error)
1058 |                 callbackQueue.async {
1059 |                     completion(.failure(parseError))
     |                     |- warning: capture of 'completion' with non-sendable type '(Result<[Query<T>.ResultType], ParseError>) -> Void' (aka '(Result<Array<T>, ParseError>) -> ()') in a '@Sendable' closure; this is an error in the Swift 6 language mode
     |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
1060 |                 }
1061 |             }
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query.swift:1091:17: warning: capture of 'completion' with non-sendable type '(Result<[U], ParseError>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
1089 |         guard limit > 0 else {
1090 |             callbackQueue.async {
1091 |                 completion(.success([U]()))
     |                 |- warning: capture of 'completion' with non-sendable type '(Result<[U], ParseError>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
     |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
1092 |             }
1093 |             return
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query.swift:1107:25: warning: capture of 'completion' with non-sendable type '(Result<[U], ParseError>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
1105 |                     let parseError = error as? ParseError ?? ParseError(swift: error)
1106 |                     callbackQueue.async {
1107 |                         completion(.failure(parseError))
     |                         |- warning: capture of 'completion' with non-sendable type '(Result<[U], ParseError>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
     |                         `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
1108 |                     }
1109 |                 }
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query.swift:1119:25: warning: capture of 'completion' with non-sendable type '(Result<[U], ParseError>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
1117 |                     let parseError = error as? ParseError ?? ParseError(swift: error)
1118 |                     callbackQueue.async {
1119 |                         completion(.failure(parseError))
     |                         |- warning: capture of 'completion' with non-sendable type '(Result<[U], ParseError>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
     |                         `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
1120 |                     }
1121 |                 }
/host/spi-builder-workspace/Sources/ParseSwift/Types/QueryConstraint.swift:52:9: warning: stored property 'value' of 'Sendable'-conforming struct 'QueryConstraint' has non-sendable type 'AnyCodable?'; this is an error in the Swift 6 language mode
 50 |
 51 |     var key: String
 52 |     var value: AnyCodable?
    |         `- warning: stored property 'value' of 'Sendable'-conforming struct 'QueryConstraint' has non-sendable type 'AnyCodable?'; this is an error in the Swift 6 language mode
 53 |     var comparator: Comparator?
 54 |     var isNull = false
/host/spi-builder-workspace/Sources/ParseSwift/Coding/AnyCodable.swift:18:8: note: consider making struct 'AnyCodable' conform to the 'Sendable' protocol
 16 |  Source: https://github.com/Flight-School/AnyCodable
 17 |  */
 18 | struct AnyCodable: Codable {
    |        `- note: consider making struct 'AnyCodable' conform to the 'Sendable' protocol
 19 |
 20 |     let value: Any
/host/spi-builder-workspace/Sources/ParseSwift/Types/ParseSchema.swift:265:14: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
263 |                       callbackQueue: DispatchQueue = .main,
264 |                       completion: @escaping (Result<Self, ParseError>) -> Void) {
265 |         Task {
    |              `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
266 |             var options = options
267 |             options.insert(.usePrimaryKey)
    :
270 |                 .execute(options: options,
271 |                          callbackQueue: callbackQueue,
272 |                          completion: completion)
    |                                      `- note: closure captures 'completion' which is accessible to code in the current task
273 |         }
274 |     }
/host/spi-builder-workspace/Sources/ParseSwift/Types/ParseSchema.swift:304:14: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
302 |                        callbackQueue: DispatchQueue = .main,
303 |                        completion: @escaping (Result<Self, ParseError>) -> Void) {
304 |         Task {
    |              `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
305 |             var options = options
306 |             options.insert(.usePrimaryKey)
    :
309 |                 .execute(options: options,
310 |                          callbackQueue: callbackQueue,
311 |                          completion: completion)
    |                                      `- note: closure captures 'completion' which is accessible to code in the current task
312 |         }
313 |     }
/host/spi-builder-workspace/Sources/ParseSwift/Types/ParseSchema.swift:338:14: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
336 |         }
337 |         let schema = mutableSchema
338 |         Task {
    |              `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
339 |             var options = options
340 |             options.insert(.usePrimaryKey)
    :
343 |                 .execute(options: options,
344 |                          callbackQueue: callbackQueue,
345 |                          completion: completion)
    |                                      `- note: closure captures 'completion' which is accessible to code in the current task
346 |         }
347 |     }
/host/spi-builder-workspace/Sources/ParseSwift/Types/ParseSchema.swift:389:14: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
387 |         completion: @escaping (Result<Void, ParseError>) -> Void
388 |     ) {
389 |         Task {
    |              `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
390 |             var options = options
391 |             options.insert(.usePrimaryKey)
    :
396 |
397 |                 case .success:
398 |                     completion(.success(()))
    |                     `- note: closure captures 'completion' which is accessible to code in the current task
399 |                 case .failure(let error):
400 |                     completion(.failure(error))
/host/spi-builder-workspace/Sources/ParseSwift/Types/ParseSchema.swift:427:14: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
425 |         completion: @escaping (Result<Void, ParseError>) -> Void
426 |     ) {
427 |         Task {
    |              `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
428 |             var options = options
429 |             options.insert(.usePrimaryKey)
    :
434 |
435 |                 case .success:
436 |                     completion(.success(()))
    |                     `- note: closure captures 'completion' which is accessible to code in the current task
437 |                 case .failure(let error):
438 |                     completion(.failure(error))
/host/spi-builder-workspace/Sources/ParseSwift/Types/ParseServer+async.swift:29:52: warning: sending '$0' risks causing data races; this is an error in the Swift 6 language mode
27 |             Self.health(options: options,
28 |                         allowIntermediateResponses: false,
29 |                         completion: { continuation.resume(with: $0) })
   |                                                    |- warning: sending '$0' risks causing data races; this is an error in the Swift 6 language mode
   |                                                    `- note: task-isolated '$0' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
30 |         }
31 |     }
/host/spi-builder-workspace/Sources/ParseSwift/Types/ParseServer+async.swift:60:57: warning: sending '$0' risks causing data races; this is an error in the Swift 6 language mode
58 |         try await withCheckedThrowingContinuation { continuation in
59 |             Self.information(options: options,
60 |                              completion: { continuation.resume(with: $0) })
   |                                                         |- warning: sending '$0' risks causing data races; this is an error in the Swift 6 language mode
   |                                                         `- note: task-isolated '$0' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
61 |         }
62 |     }
/host/spi-builder-workspace/Sources/ParseSwift/Types/ParseServer.swift:88:14: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
 86 |                               allowIntermediateResponses: Bool = true,
 87 |                               completion: @escaping (Result<Status, ParseError>) -> Void) {
 88 |         Task {
    |              `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
 89 |             var options = options
 90 |             options.insert(.cachePolicy(.reloadIgnoringLocalCacheData))
    :
 93 |                          callbackQueue: callbackQueue,
 94 |                          allowIntermediateResponses: allowIntermediateResponses,
 95 |                          completion: completion)
    |                                      `- note: closure captures 'completion' which is accessible to code in the current task
 96 |         }
 97 |     }
/host/spi-builder-workspace/Sources/ParseSwift/Types/ParseServer.swift:145:14: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
143 |                                    callbackQueue: DispatchQueue = .main,
144 |                                    completion: @escaping (Result<Information, ParseError>) -> Void) {
145 |         Task {
    |              `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
146 |             var options = options
147 |             options.insert(.usePrimaryKey)
    :
150 |                 .execute(options: options,
151 |                          callbackQueue: callbackQueue,
152 |                          completion: completion)
    |                                      `- note: closure captures 'completion' which is accessible to code in the current task
153 |         }
154 |     }
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:47:57: warning: sending '$0' risks causing data races; this is an error in the Swift 6 language mode
 45 |             self.findExplain(usingMongoDB: usingMongoDB,
 46 |                              options: options,
 47 |                              completion: { continuation.resume(with: $0) })
    |                                                         |- warning: sending '$0' risks causing data races; this is an error in the Swift 6 language mode
    |                                                         `- note: task-isolated '$0' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
 48 |         }
 49 |     }
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:101:58: warning: sending '$0' risks causing data races; this is an error in the Swift 6 language mode
 99 |             self.firstExplain(usingMongoDB: usingMongoDB,
100 |                               options: options,
101 |                               completion: { continuation.resume(with: $0) })
    |                                                          |- warning: sending '$0' risks causing data races; this is an error in the Swift 6 language mode
    |                                                          `- note: task-isolated '$0' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
102 |         }
103 |     }
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:137:58: warning: sending '$0' risks causing data races; this is an error in the Swift 6 language mode
135 |             self.countExplain(usingMongoDB: usingMongoDB,
136 |                               options: options,
137 |                               completion: { continuation.resume(with: $0) })
    |                                                          |- warning: sending '$0' risks causing data races; this is an error in the Swift 6 language mode
    |                                                          `- note: task-isolated '$0' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
138 |         }
139 |     }
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:174:62: warning: sending '$0' risks causing data races; this is an error in the Swift 6 language mode
172 |             self.withCountExplain(usingMongoDB: usingMongoDB,
173 |                                   options: options,
174 |                                   completion: { continuation.resume(with: $0) })
    |                                                              |- warning: sending '$0' risks causing data races; this is an error in the Swift 6 language mode
    |                                                              `- note: task-isolated '$0' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
175 |         }
176 |     }
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:222:62: warning: sending '$0' risks causing data races; this is an error in the Swift 6 language mode
220 |                                   usingMongoDB: usingMongoDB,
221 |                                   options: options,
222 |                                   completion: { continuation.resume(with: $0) })
    |                                                              |- warning: sending '$0' risks causing data races; this is an error in the Swift 6 language mode
    |                                                              `- note: task-isolated '$0' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
223 |         }
224 |     }
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:270:61: warning: sending '$0' risks causing data races; this is an error in the Swift 6 language mode
268 |                                  usingMongoDB: usingMongoDB,
269 |                                  options: options,
270 |                                  completion: { continuation.resume(with: $0) })
    |                                                             |- warning: sending '$0' risks causing data races; this is an error in the Swift 6 language mode
    |                                                             `- note: task-isolated '$0' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
271 |         }
272 |     }
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query.swift:483:14: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
 481 |             return
 482 |         }
 483 |         Task {
     |              `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
 484 |             do {
 485 |                 try await findCommand().execute(options: options,
 486 |                                                 callbackQueue: callbackQueue,
 487 |                                                 completion: completion)
     |                                                             `- note: closure captures 'completion' which is accessible to code in the current task
 488 |             } catch {
 489 |                 let parseError = error as? ParseError ?? ParseError(swift: error)
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query.swift:522:14: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
 520 |             return
 521 |         }
 522 |         Task {
     |              `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
 523 |             if !usingMongoDB {
 524 |                 do {
 525 |                     try await findExplainCommand().execute(options: options,
 526 |                                                            callbackQueue: callbackQueue,
 527 |                                                            completion: completion)
     |                                                                        `- note: closure captures 'completion' which is accessible to code in the current task
 528 |                 } catch {
 529 |                     let parseError = error as? ParseError ?? ParseError(swift: error)
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query.swift:583:14: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
 581 |         }
 582 |
 583 |         Task {
     |              `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
 584 |             var query = self
 585 |                 .order([.ascending("objectId")])
     :
 605 |                     let parseError = error as? ParseError ?? ParseError(swift: error)
 606 |                     callbackQueue.async {
 607 |                         completion(.failure(parseError))
     |                         `- note: closure captures 'completion' which is accessible to code in the current task
 608 |                     }
 609 |                     return
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query.swift:639:14: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
 637 |             return
 638 |         }
 639 |         Task {
     |              `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
 640 |             do {
 641 |                 try await firstCommand().execute(options: options,
 642 |                                                  callbackQueue: callbackQueue,
 643 |                                                  completion: completion)
     |                                                              `- note: closure captures 'completion' which is accessible to code in the current task
 644 |             } catch {
 645 |                 let parseError = error as? ParseError ?? ParseError(swift: error)
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query.swift:682:14: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
 680 |             return
 681 |         }
 682 |         Task {
     |              `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
 683 |             if !usingMongoDB {
 684 |                 do {
 685 |                     try await firstExplainCommand().execute(options: options,
 686 |                                                             callbackQueue: callbackQueue,
 687 |                                                             completion: completion)
     |                                                                         `- note: closure captures 'completion' which is accessible to code in the current task
 688 |                 } catch {
 689 |                     let parseError = error as? ParseError ?? ParseError(swift: error)
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query.swift:726:14: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
 724 |             return
 725 |         }
 726 |         Task {
     |              `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
 727 |             do {
 728 |                 try await countCommand().execute(options: options,
 729 |                                                  callbackQueue: callbackQueue,
 730 |                                                  completion: completion)
     |                                                              `- note: closure captures 'completion' which is accessible to code in the current task
 731 |             } catch {
 732 |                 let parseError = error as? ParseError ?? ParseError(swift: error)
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query.swift:765:14: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
 763 |             return
 764 |         }
 765 |         Task {
     |              `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
 766 |             if !usingMongoDB {
 767 |                 do {
 768 |                     try await countExplainCommand().execute(options: options,
 769 |                                                             callbackQueue: callbackQueue,
 770 |                                                             completion: completion)
     |                                                                         `- note: closure captures 'completion' which is accessible to code in the current task
 771 |                 } catch {
 772 |                     let parseError = error as? ParseError ?? ParseError(swift: error)
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query.swift:810:14: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
 808 |             return
 809 |         }
 810 |         Task {
     |              `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
 811 |             do {
 812 |                 try await withCountCommand().execute(options: options,
 813 |                                                      callbackQueue: callbackQueue,
 814 |                                                      completion: completion)
     |                                                                  `- note: closure captures 'completion' which is accessible to code in the current task
 815 |             } catch {
 816 |                 let parseError = error as? ParseError ?? ParseError(swift: error)
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query.swift:849:14: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
 847 |             return
 848 |         }
 849 |         Task {
     |              `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
 850 |             if !usingMongoDB {
 851 |                 do {
 852 |                     try await withCountExplainCommand().execute(options: options,
 853 |                                                                 callbackQueue: callbackQueue,
 854 |                                                                 completion: completion)
     |                                                                             `- note: closure captures 'completion' which is accessible to code in the current task
 855 |                 } catch {
 856 |                     let parseError = error as? ParseError ?? ParseError(swift: error)
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query.swift:898:14: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
 896 |             return
 897 |         }
 898 |         Task {
     |              `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
 899 |             var options = options
 900 |             options.insert(.usePrimaryKey)
     :
 908 |                                        message: "Cannot decode \"where\" to String.")
 909 |                 callbackQueue.async {
 910 |                     completion(.failure(error))
     |                     `- note: closure captures 'completion' which is accessible to code in the current task
 911 |                 }
 912 |                 return
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query.swift:970:14: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
 968 |             return
 969 |         }
 970 |         Task {
     |              `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
 971 |             var options = options
 972 |             options.insert(.usePrimaryKey)
     :
 980 |                                        message: "Cannot decode \"where\" to String.")
 981 |                 callbackQueue.async {
 982 |                     completion(.failure(error))
     |                     `- note: closure captures 'completion' which is accessible to code in the current task
 983 |                 }
 984 |                 return
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query.swift:1048:14: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
1046 |             return
1047 |         }
1048 |         Task {
     |              `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
1049 |             var options = options
1050 |             options.insert(.usePrimaryKey)
     :
1053 |                     .execute(options: options,
1054 |                              callbackQueue: callbackQueue,
1055 |                              completion: completion)
     |                                          `- note: closure captures 'completion' which is accessible to code in the current task
1056 |             } catch {
1057 |                 let parseError = error as? ParseError ?? ParseError(swift: error)
/host/spi-builder-workspace/Sources/ParseSwift/Types/Query.swift:1095:14: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
1093 |             return
1094 |         }
1095 |         Task {
     |              `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
1096 |             var options = options
1097 |             options.insert(.usePrimaryKey)
     :
1101 |                         .execute(options: options,
1102 |                                  callbackQueue: callbackQueue,
1103 |                                  completion: completion)
     |                                              `- note: closure captures 'completion' which is accessible to code in the current task
1104 |                 } catch {
1105 |                     let parseError = error as? ParseError ?? ParseError(swift: error)
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.1-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
basic-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:3bdcac04179f4ed3e5b8e9dbd6e74bbf5ebc0f4fde48bbaad7d1e5c757e65bcb
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.1-latest
[0/1] Planning build
Building for debugging...
[0/1] Write swift-version-24593BA9C3E375BF.txt
[2/177] Compiling ParseSwift ParseLDAP+combine.swift
/host/spi-builder-workspace/Sources/ParseSwift/Coding/ParseEncoder.swift:887:25: error: 'let' binding pattern cannot appear in an expression
 885 |             }
 886 |
 887 |         case .formatted(let formatter):
     |                         `- error: 'let' binding pattern cannot appear in an expression
 888 |             return NSString(string: formatter.string(from: date))
 889 |
[3/177] Compiling ParseSwift ParseLDAP.swift
/host/spi-builder-workspace/Sources/ParseSwift/Coding/ParseEncoder.swift:887:25: error: 'let' binding pattern cannot appear in an expression
 885 |             }
 886 |
 887 |         case .formatted(let formatter):
     |                         `- error: 'let' binding pattern cannot appear in an expression
 888 |             return NSString(string: formatter.string(from: date))
 889 |
[4/177] Compiling ParseSwift ParseLinkedIn+async.swift
/host/spi-builder-workspace/Sources/ParseSwift/Coding/ParseEncoder.swift:887:25: error: 'let' binding pattern cannot appear in an expression
 885 |             }
 886 |
 887 |         case .formatted(let formatter):
     |                         `- error: 'let' binding pattern cannot appear in an expression
 888 |             return NSString(string: formatter.string(from: date))
 889 |
[5/177] Compiling ParseSwift ParseLinkedIn+combine.swift
/host/spi-builder-workspace/Sources/ParseSwift/Coding/ParseEncoder.swift:887:25: error: 'let' binding pattern cannot appear in an expression
 885 |             }
 886 |
 887 |         case .formatted(let formatter):
     |                         `- error: 'let' binding pattern cannot appear in an expression
 888 |             return NSString(string: formatter.string(from: date))
 889 |
[6/177] Compiling ParseSwift ParseLinkedIn.swift
/host/spi-builder-workspace/Sources/ParseSwift/Coding/ParseEncoder.swift:887:25: error: 'let' binding pattern cannot appear in an expression
 885 |             }
 886 |
 887 |         case .formatted(let formatter):
     |                         `- error: 'let' binding pattern cannot appear in an expression
 888 |             return NSString(string: formatter.string(from: date))
 889 |
[7/177] Compiling ParseSwift ParseSpotify+async.swift
/host/spi-builder-workspace/Sources/ParseSwift/Coding/ParseEncoder.swift:887:25: error: 'let' binding pattern cannot appear in an expression
 885 |             }
 886 |
 887 |         case .formatted(let formatter):
     |                         `- error: 'let' binding pattern cannot appear in an expression
 888 |             return NSString(string: formatter.string(from: date))
 889 |
[8/177] Compiling ParseSwift ParseSpotify+combine.swift
/host/spi-builder-workspace/Sources/ParseSwift/Coding/ParseEncoder.swift:887:25: error: 'let' binding pattern cannot appear in an expression
 885 |             }
 886 |
 887 |         case .formatted(let formatter):
     |                         `- error: 'let' binding pattern cannot appear in an expression
 888 |             return NSString(string: formatter.string(from: date))
 889 |
[9/177] Compiling ParseSwift ParseSpotify.swift
/host/spi-builder-workspace/Sources/ParseSwift/Coding/ParseEncoder.swift:887:25: error: 'let' binding pattern cannot appear in an expression
 885 |             }
 886 |
 887 |         case .formatted(let formatter):
     |                         `- error: 'let' binding pattern cannot appear in an expression
 888 |             return NSString(string: formatter.string(from: date))
 889 |
[10/177] Compiling ParseSwift ParseTwitter+async.swift
/host/spi-builder-workspace/Sources/ParseSwift/Coding/ParseEncoder.swift:887:25: error: 'let' binding pattern cannot appear in an expression
 885 |             }
 886 |
 887 |         case .formatted(let formatter):
     |                         `- error: 'let' binding pattern cannot appear in an expression
 888 |             return NSString(string: formatter.string(from: date))
 889 |
[11/177] Compiling ParseSwift ParseTwitter+combine.swift
/host/spi-builder-workspace/Sources/ParseSwift/Coding/ParseEncoder.swift:887:25: error: 'let' binding pattern cannot appear in an expression
 885 |             }
 886 |
 887 |         case .formatted(let formatter):
     |                         `- error: 'let' binding pattern cannot appear in an expression
 888 |             return NSString(string: formatter.string(from: date))
 889 |
[12/177] Compiling ParseSwift ParseTwitter.swift
/host/spi-builder-workspace/Sources/ParseSwift/Coding/ParseEncoder.swift:887:25: error: 'let' binding pattern cannot appear in an expression
 885 |             }
 886 |
 887 |         case .formatted(let formatter):
     |                         `- error: 'let' binding pattern cannot appear in an expression
 888 |             return NSString(string: formatter.string(from: date))
 889 |
[13/177] Compiling ParseSwift ParseAnonymous+async.swift
/host/spi-builder-workspace/Sources/ParseSwift/Coding/ParseEncoder.swift:887:25: error: 'let' binding pattern cannot appear in an expression
 885 |             }
 886 |
 887 |         case .formatted(let formatter):
     |                         `- error: 'let' binding pattern cannot appear in an expression
 888 |             return NSString(string: formatter.string(from: date))
 889 |
[14/177] Compiling ParseSwift ParseAnonymous+combine.swift
/host/spi-builder-workspace/Sources/ParseSwift/Coding/ParseEncoder.swift:887:25: error: 'let' binding pattern cannot appear in an expression
 885 |             }
 886 |
 887 |         case .formatted(let formatter):
     |                         `- error: 'let' binding pattern cannot appear in an expression
 888 |             return NSString(string: formatter.string(from: date))
 889 |
[15/177] Compiling ParseSwift ParseAnonymous.swift
/host/spi-builder-workspace/Sources/ParseSwift/Coding/ParseEncoder.swift:887:25: error: 'let' binding pattern cannot appear in an expression
 885 |             }
 886 |
 887 |         case .formatted(let formatter):
     |                         `- error: 'let' binding pattern cannot appear in an expression
 888 |             return NSString(string: formatter.string(from: date))
 889 |
[16/177] Compiling ParseSwift ParseAuthentication+async.swift
/host/spi-builder-workspace/Sources/ParseSwift/Coding/ParseEncoder.swift:887:25: error: 'let' binding pattern cannot appear in an expression
 885 |             }
 886 |
 887 |         case .formatted(let formatter):
     |                         `- error: 'let' binding pattern cannot appear in an expression
 888 |             return NSString(string: formatter.string(from: date))
 889 |
[17/177] Compiling ParseSwift ParseAuthentication+combine.swift
/host/spi-builder-workspace/Sources/ParseSwift/Coding/ParseEncoder.swift:887:25: error: 'let' binding pattern cannot appear in an expression
 885 |             }
 886 |
 887 |         case .formatted(let formatter):
     |                         `- error: 'let' binding pattern cannot appear in an expression
 888 |             return NSString(string: formatter.string(from: date))
 889 |
[18/177] Compiling ParseSwift ParseAuthentication.swift
/host/spi-builder-workspace/Sources/ParseSwift/Coding/ParseEncoder.swift:887:25: error: 'let' binding pattern cannot appear in an expression
 885 |             }
 886 |
 887 |         case .formatted(let formatter):
     |                         `- error: 'let' binding pattern cannot appear in an expression
 888 |             return NSString(string: formatter.string(from: date))
 889 |
[19/177] Compiling ParseSwift AnyCodable.swift
/host/spi-builder-workspace/Sources/ParseSwift/Coding/ParseEncoder.swift:887:25: error: 'let' binding pattern cannot appear in an expression
 885 |             }
 886 |
 887 |         case .formatted(let formatter):
     |                         `- error: 'let' binding pattern cannot appear in an expression
 888 |             return NSString(string: formatter.string(from: date))
 889 |
[20/177] Compiling ParseSwift AnyDecodable.swift
/host/spi-builder-workspace/Sources/ParseSwift/Coding/ParseEncoder.swift:887:25: error: 'let' binding pattern cannot appear in an expression
 885 |             }
 886 |
 887 |         case .formatted(let formatter):
     |                         `- error: 'let' binding pattern cannot appear in an expression
 888 |             return NSString(string: formatter.string(from: date))
 889 |
[21/177] Compiling ParseSwift AnyEncodable.swift
/host/spi-builder-workspace/Sources/ParseSwift/Coding/ParseEncoder.swift:887:25: error: 'let' binding pattern cannot appear in an expression
 885 |             }
 886 |
 887 |         case .formatted(let formatter):
     |                         `- error: 'let' binding pattern cannot appear in an expression
 888 |             return NSString(string: formatter.string(from: date))
 889 |
[22/177] Compiling ParseSwift ParseCoding.swift
/host/spi-builder-workspace/Sources/ParseSwift/Coding/ParseEncoder.swift:887:25: error: 'let' binding pattern cannot appear in an expression
 885 |             }
 886 |
 887 |         case .formatted(let formatter):
     |                         `- error: 'let' binding pattern cannot appear in an expression
 888 |             return NSString(string: formatter.string(from: date))
 889 |
[23/177] Compiling ParseSwift ParseEncoder.swift
/host/spi-builder-workspace/Sources/ParseSwift/Coding/ParseEncoder.swift:887:25: error: 'let' binding pattern cannot appear in an expression
 885 |             }
 886 |
 887 |         case .formatted(let formatter):
     |                         `- error: 'let' binding pattern cannot appear in an expression
 888 |             return NSString(string: formatter.string(from: date))
 889 |
[24/177] Compiling ParseSwift Data.swift
/host/spi-builder-workspace/Sources/ParseSwift/Coding/ParseEncoder.swift:887:25: error: 'let' binding pattern cannot appear in an expression
 885 |             }
 886 |
 887 |         case .formatted(let formatter):
     |                         `- error: 'let' binding pattern cannot appear in an expression
 888 |             return NSString(string: formatter.string(from: date))
 889 |
[25/177] Compiling ParseSwift Date.swift
/host/spi-builder-workspace/Sources/ParseSwift/Coding/ParseEncoder.swift:887:25: error: 'let' binding pattern cannot appear in an expression
 885 |             }
 886 |
 887 |         case .formatted(let formatter):
     |                         `- error: 'let' binding pattern cannot appear in an expression
 888 |             return NSString(string: formatter.string(from: date))
 889 |
[26/177] Compiling ParseSwift Dictionary.swift
/host/spi-builder-workspace/Sources/ParseSwift/Coding/ParseEncoder.swift:887:25: error: 'let' binding pattern cannot appear in an expression
 885 |             }
 886 |
 887 |         case .formatted(let formatter):
     |                         `- error: 'let' binding pattern cannot appear in an expression
 888 |             return NSString(string: formatter.string(from: date))
 889 |
[27/202] Emitting module ParseSwift
/host/spi-builder-workspace/Sources/ParseSwift/API/ParseURLSessionDelegate.swift:14:7: warning: non-final class 'ParseURLSessionDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 12 | #endif
 13 |
 14 | class ParseURLSessionDelegate: NSObject {
    |       `- warning: non-final class 'ParseURLSessionDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 15 |     var callbackQueue: DispatchQueue
 16 |     var authentication: ((URLAuthenticationChallenge,
/host/spi-builder-workspace/Sources/ParseSwift/API/ParseURLSessionDelegate.swift:15:9: warning: stored property 'callbackQueue' of 'Sendable'-conforming class 'ParseURLSessionDelegate' is mutable; this is an error in the Swift 6 language mode
 13 |
 14 | class ParseURLSessionDelegate: NSObject {
 15 |     var callbackQueue: DispatchQueue
    |         `- warning: stored property 'callbackQueue' of 'Sendable'-conforming class 'ParseURLSessionDelegate' is mutable; this is an error in the Swift 6 language mode
 16 |     var authentication: ((URLAuthenticationChallenge,
 17 |                           (URLSession.AuthChallengeDisposition,
/host/spi-builder-workspace/Sources/ParseSwift/Extensions/InputStream.swift:11:1: warning: extension declares a conformance of imported type 'InputStream' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 9 | import Foundation
10 |
11 | extension InputStream: @unchecked Sendable {}
   | |- warning: extension declares a conformance of imported type 'InputStream' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
12 |
[28/202] Compiling ParseSwift Encodable.swift
/host/spi-builder-workspace/Sources/ParseSwift/Extensions/InputStream.swift:11:1: warning: extension declares a conformance of imported type 'InputStream' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 9 | import Foundation
10 |
11 | extension InputStream: @unchecked Sendable {}
   | |- warning: extension declares a conformance of imported type 'InputStream' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
12 |
[29/202] Compiling ParseSwift InputStream.swift
/host/spi-builder-workspace/Sources/ParseSwift/Extensions/InputStream.swift:11:1: warning: extension declares a conformance of imported type 'InputStream' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 9 | import Foundation
10 |
11 | extension InputStream: @unchecked Sendable {}
   | |- warning: extension declares a conformance of imported type 'InputStream' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
12 |
[30/202] Compiling ParseSwift URLCache.swift
/host/spi-builder-workspace/Sources/ParseSwift/Extensions/InputStream.swift:11:1: warning: extension declares a conformance of imported type 'InputStream' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 9 | import Foundation
10 |
11 | extension InputStream: @unchecked Sendable {}
   | |- warning: extension declares a conformance of imported type 'InputStream' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
12 |
[31/202] Compiling ParseSwift URLSession.swift
/host/spi-builder-workspace/Sources/ParseSwift/Extensions/InputStream.swift:11:1: warning: extension declares a conformance of imported type 'InputStream' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 9 | import Foundation
10 |
11 | extension InputStream: @unchecked Sendable {}
   | |- warning: extension declares a conformance of imported type 'InputStream' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
12 |
[32/202] Compiling ParseSwift BaseConfig.swift
/host/spi-builder-workspace/Sources/ParseSwift/Extensions/InputStream.swift:11:1: warning: extension declares a conformance of imported type 'InputStream' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 9 | import Foundation
10 |
11 | extension InputStream: @unchecked Sendable {}
   | |- warning: extension declares a conformance of imported type 'InputStream' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
12 |
[33/202] Compiling ParseSwift BaseParseInstallation.swift
/host/spi-builder-workspace/Sources/ParseSwift/Extensions/InputStream.swift:11:1: warning: extension declares a conformance of imported type 'InputStream' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 9 | import Foundation
10 |
11 | extension InputStream: @unchecked Sendable {}
   | |- warning: extension declares a conformance of imported type 'InputStream' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
12 |
[34/202] Compiling ParseSwift BaseParseUser.swift
/host/spi-builder-workspace/Sources/ParseSwift/Extensions/InputStream.swift:11:1: warning: extension declares a conformance of imported type 'InputStream' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 9 | import Foundation
10 |
11 | extension InputStream: @unchecked Sendable {}
   | |- warning: extension declares a conformance of imported type 'InputStream' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
12 |
[35/202] Compiling ParseSwift NoBody.swift
/host/spi-builder-workspace/Sources/ParseSwift/Extensions/InputStream.swift:11:1: warning: extension declares a conformance of imported type 'InputStream' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 9 | import Foundation
10 |
11 | extension InputStream: @unchecked Sendable {}
   | |- warning: extension declares a conformance of imported type 'InputStream' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
12 |
[36/202] Compiling ParseSwift LiveQueryConstants.swift
/host/spi-builder-workspace/Sources/ParseSwift/Extensions/InputStream.swift:11:1: warning: extension declares a conformance of imported type 'InputStream' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 9 | import Foundation
10 |
11 | extension InputStream: @unchecked Sendable {}
   | |- warning: extension declares a conformance of imported type 'InputStream' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
12 |
[37/202] Compiling ParseSwift LiveQuerySocket.swift
/host/spi-builder-workspace/Sources/ParseSwift/Extensions/InputStream.swift:11:1: warning: extension declares a conformance of imported type 'InputStream' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 9 | import Foundation
10 |
11 | extension InputStream: @unchecked Sendable {}
   | |- warning: extension declares a conformance of imported type 'InputStream' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
12 |
[38/202] Compiling ParseSwift Messages.swift
/host/spi-builder-workspace/Sources/ParseSwift/Extensions/InputStream.swift:11:1: warning: extension declares a conformance of imported type 'InputStream' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 9 | import Foundation
10 |
11 | extension InputStream: @unchecked Sendable {}
   | |- warning: extension declares a conformance of imported type 'InputStream' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
12 |
[39/202] Compiling ParseSwift Operations.swift
/host/spi-builder-workspace/Sources/ParseSwift/Extensions/InputStream.swift:11:1: warning: extension declares a conformance of imported type 'InputStream' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 9 | import Foundation
10 |
11 | extension InputStream: @unchecked Sendable {}
   | |- warning: extension declares a conformance of imported type 'InputStream' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
12 |
[40/202] Compiling ParseSwift ParseLiveQuery+async.swift
/host/spi-builder-workspace/Sources/ParseSwift/Extensions/InputStream.swift:11:1: warning: extension declares a conformance of imported type 'InputStream' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 9 | import Foundation
10 |
11 | extension InputStream: @unchecked Sendable {}
   | |- warning: extension declares a conformance of imported type 'InputStream' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
12 |
[41/202] Compiling ParseSwift ParseLiveQuery+combine.swift
/host/spi-builder-workspace/Sources/ParseSwift/Extensions/InputStream.swift:11:1: warning: extension declares a conformance of imported type 'InputStream' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 9 | import Foundation
10 |
11 | extension InputStream: @unchecked Sendable {}
   | |- warning: extension declares a conformance of imported type 'InputStream' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
12 |
[42/202] Compiling ParseSwift ParseLiveQuery.swift
/host/spi-builder-workspace/Sources/ParseSwift/Extensions/InputStream.swift:11:1: warning: extension declares a conformance of imported type 'InputStream' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 9 | import Foundation
10 |
11 | extension InputStream: @unchecked Sendable {}
   | |- warning: extension declares a conformance of imported type 'InputStream' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
12 |
[43/202] Compiling ParseSwift LiveQuerySocketDelegate.swift
/host/spi-builder-workspace/Sources/ParseSwift/Extensions/InputStream.swift:11:1: warning: extension declares a conformance of imported type 'InputStream' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 9 | import Foundation
10 |
11 | extension InputStream: @unchecked Sendable {}
   | |- warning: extension declares a conformance of imported type 'InputStream' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
12 |
[44/202] Compiling ParseSwift LiveQueryable.swift
/host/spi-builder-workspace/Sources/ParseSwift/Extensions/InputStream.swift:11:1: warning: extension declares a conformance of imported type 'InputStream' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 9 | import Foundation
10 |
11 | extension InputStream: @unchecked Sendable {}
   | |- warning: extension declares a conformance of imported type 'InputStream' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
12 |
[45/202] Compiling ParseSwift ParseLiveQueryDelegate.swift
/host/spi-builder-workspace/Sources/ParseSwift/Extensions/InputStream.swift:11:1: warning: extension declares a conformance of imported type 'InputStream' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 9 | import Foundation
10 |
11 | extension InputStream: @unchecked Sendable {}
   | |- warning: extension declares a conformance of imported type 'InputStream' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
12 |
[46/202] Compiling ParseSwift QuerySubscribable.swift
/host/spi-builder-workspace/Sources/ParseSwift/Extensions/InputStream.swift:11:1: warning: extension declares a conformance of imported type 'InputStream' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 9 | import Foundation
10 |
11 | extension InputStream: @unchecked Sendable {}
   | |- warning: extension declares a conformance of imported type 'InputStream' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
12 |
[47/202] Compiling ParseSwift SocketTasks.swift
/host/spi-builder-workspace/Sources/ParseSwift/Extensions/InputStream.swift:11:1: warning: extension declares a conformance of imported type 'InputStream' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 9 | import Foundation
10 |
11 | extension InputStream: @unchecked Sendable {}
   | |- warning: extension declares a conformance of imported type 'InputStream' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
12 |
[48/202] Compiling ParseSwift Subscription.swift
/host/spi-builder-workspace/Sources/ParseSwift/Extensions/InputStream.swift:11:1: warning: extension declares a conformance of imported type 'InputStream' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 9 | import Foundation
10 |
11 | extension InputStream: @unchecked Sendable {}
   | |- warning: extension declares a conformance of imported type 'InputStream' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
12 |
[49/202] Compiling ParseSwift SubscriptionCallback.swift
/host/spi-builder-workspace/Sources/ParseSwift/Extensions/InputStream.swift:11:1: warning: extension declares a conformance of imported type 'InputStream' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 9 | import Foundation
10 |
11 | extension InputStream: @unchecked Sendable {}
   | |- warning: extension declares a conformance of imported type 'InputStream' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
12 |
[50/202] Compiling ParseSwift Subscriptions.swift
/host/spi-builder-workspace/Sources/ParseSwift/Extensions/InputStream.swift:11:1: warning: extension declares a conformance of imported type 'InputStream' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 9 | import Foundation
10 |
11 | extension InputStream: @unchecked Sendable {}
   | |- warning: extension declares a conformance of imported type 'InputStream' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
12 |
[51/202] Compiling ParseSwift ParseCloudUser.swift
/host/spi-builder-workspace/Sources/ParseSwift/Extensions/InputStream.swift:11:1: warning: extension declares a conformance of imported type 'InputStream' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 9 | import Foundation
10 |
11 | extension InputStream: @unchecked Sendable {}
   | |- warning: extension declares a conformance of imported type 'InputStream' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
12 |
[52/202] Compiling ParseSwift ParseInstallation+async.swift
/host/spi-builder-workspace/Sources/ParseSwift/Extensions/InputStream.swift:11:1: warning: extension declares a conformance of imported type 'InputStream' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 9 | import Foundation
10 |
11 | extension InputStream: @unchecked Sendable {}
   | |- warning: extension declares a conformance of imported type 'InputStream' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
12 |
[53/202] Compiling ParseSwift ParseConfigCodable+combine.swift
/host/spi-builder-workspace/Sources/ParseSwift/Types/ParseConfiguration.swift:230:14: warning: 'isUsingEqualQueryConstraint' is deprecated: Changing has no effect. This will be remove in ParseSwift 6.0.0
228 |         self.isRequiringCustomObjectIds = requiringCustomObjectIds
229 |         self.isUsingTransactions = usingTransactions
230 |         self.isUsingEqualQueryConstraint = usingEqualQueryConstraint
    |              `- warning: 'isUsingEqualQueryConstraint' is deprecated: Changing has no effect. This will be remove in ParseSwift 6.0.0
231 |         self.isUsingPostForQuery = usingPostForQuery
232 |         self.mountPath = "/" + serverURL.pathComponents
[54/202] Compiling ParseSwift ParseConfigCodable.swift
/host/spi-builder-workspace/Sources/ParseSwift/Types/ParseConfiguration.swift:230:14: warning: 'isUsingEqualQueryConstraint' is deprecated: Changing has no effect. This will be remove in ParseSwift 6.0.0
228 |         self.isRequiringCustomObjectIds = requiringCustomObjectIds
229 |         self.isUsingTransactions = usingTransactions
230 |         self.isUsingEqualQueryConstraint = usingEqualQueryConstraint
    |              `- warning: 'isUsingEqualQueryConstraint' is deprecated: Changing has no effect. This will be remove in ParseSwift 6.0.0
231 |         self.isUsingPostForQuery = usingPostForQuery
232 |         self.mountPath = "/" + serverURL.pathComponents
[55/202] Compiling ParseSwift ParseConfiguration.swift
/host/spi-builder-workspace/Sources/ParseSwift/Types/ParseConfiguration.swift:230:14: warning: 'isUsingEqualQueryConstraint' is deprecated: Changing has no effect. This will be remove in ParseSwift 6.0.0
228 |         self.isRequiringCustomObjectIds = requiringCustomObjectIds
229 |         self.isUsingTransactions = usingTransactions
230 |         self.isUsingEqualQueryConstraint = usingEqualQueryConstraint
    |              `- warning: 'isUsingEqualQueryConstraint' is deprecated: Changing has no effect. This will be remove in ParseSwift 6.0.0
231 |         self.isUsingPostForQuery = usingPostForQuery
232 |         self.mountPath = "/" + serverURL.pathComponents
[56/202] Compiling ParseSwift ParseError.swift
/host/spi-builder-workspace/Sources/ParseSwift/Types/ParseConfiguration.swift:230:14: warning: 'isUsingEqualQueryConstraint' is deprecated: Changing has no effect. This will be remove in ParseSwift 6.0.0
228 |         self.isRequiringCustomObjectIds = requiringCustomObjectIds
229 |         self.isUsingTransactions = usingTransactions
230 |         self.isUsingEqualQueryConstraint = usingEqualQueryConstraint
    |              `- warning: 'isUsingEqualQueryConstraint' is deprecated: Changing has no effect. This will be remove in ParseSwift 6.0.0
231 |         self.isUsingPostForQuery = usingPostForQuery
232 |         self.mountPath = "/" + serverURL.pathComponents
[57/202] Compiling ParseSwift ParseField.swift
/host/spi-builder-workspace/Sources/ParseSwift/Types/ParseConfiguration.swift:230:14: warning: 'isUsingEqualQueryConstraint' is deprecated: Changing has no effect. This will be remove in ParseSwift 6.0.0
228 |         self.isRequiringCustomObjectIds = requiringCustomObjectIds
229 |         self.isUsingTransactions = usingTransactions
230 |         self.isUsingEqualQueryConstraint = usingEqualQueryConstraint
    |              `- warning: 'isUsingEqualQueryConstraint' is deprecated: Changing has no effect. This will be remove in ParseSwift 6.0.0
231 |         self.isUsingPostForQuery = usingPostForQuery
232 |         self.mountPath = "/" + serverURL.pathComponents
[58/202] Compiling ParseSwift ParseFieldOptions.swift
/host/spi-builder-workspace/Sources/ParseSwift/Types/ParseConfiguration.swift:230:14: warning: 'isUsingEqualQueryConstraint' is deprecated: Changing has no effect. This will be remove in ParseSwift 6.0.0
228 |         self.isRequiringCustomObjectIds = requiringCustomObjectIds
229 |         self.isUsingTransactions = usingTransactions
230 |         self.isUsingEqualQueryConstraint = usingEqualQueryConstraint
    |              `- warning: 'isUsingEqualQueryConstraint' is deprecated: Changing has no effect. This will be remove in ParseSwift 6.0.0
231 |         self.isUsingPostForQuery = usingPostForQuery
232 |         self.mountPath = "/" + serverURL.pathComponents
[59/202] Compiling ParseSwift ParseFile+async.swift
/host/spi-builder-workspace/Sources/ParseSwift/Types/ParseConfiguration.swift:230:14: warning: 'isUsingEqualQueryConstraint' is deprecated: Changing has no effect. This will be remove in ParseSwift 6.0.0
228 |         self.isRequiringCustomObjectIds = requiringCustomObjectIds
229 |         self.isUsingTransactions = usingTransactions
230 |         self.isUsingEqualQueryConstraint = usingEqualQueryConstraint
    |              `- warning: 'isUsingEqualQueryConstraint' is deprecated: Changing has no effect. This will be remove in ParseSwift 6.0.0
231 |         self.isUsingPostForQuery = usingPostForQuery
232 |         self.mountPath = "/" + serverURL.pathComponents
[60/202] Compiling ParseSwift ParseFile+combine.swift
/host/spi-builder-workspace/Sources/ParseSwift/Types/ParseConfiguration.swift:230:14: warning: 'isUsingEqualQueryConstraint' is deprecated: Changing has no effect. This will be remove in ParseSwift 6.0.0
228 |         self.isRequiringCustomObjectIds = requiringCustomObjectIds
229 |         self.isUsingTransactions = usingTransactions
230 |         self.isUsingEqualQueryConstraint = usingEqualQueryConstraint
    |              `- warning: 'isUsingEqualQueryConstraint' is deprecated: Changing has no effect. This will be remove in ParseSwift 6.0.0
231 |         self.isUsingPostForQuery = usingPostForQuery
232 |         self.mountPath = "/" + serverURL.pathComponents
[61/202] Compiling ParseSwift ParseFile.swift
/host/spi-builder-workspace/Sources/ParseSwift/Types/ParseConfiguration.swift:230:14: warning: 'isUsingEqualQueryConstraint' is deprecated: Changing has no effect. This will be remove in ParseSwift 6.0.0
228 |         self.isRequiringCustomObjectIds = requiringCustomObjectIds
229 |         self.isUsingTransactions = usingTransactions
230 |         self.isUsingEqualQueryConstraint = usingEqualQueryConstraint
    |              `- warning: 'isUsingEqualQueryConstraint' is deprecated: Changing has no effect. This will be remove in ParseSwift 6.0.0
231 |         self.isUsingPostForQuery = usingPostForQuery
232 |         self.mountPath = "/" + serverURL.pathComponents
[62/202] Compiling ParseSwift ParseFileDefaultTransfer.swift
/host/spi-builder-workspace/Sources/ParseSwift/Types/ParseConfiguration.swift:230:14: warning: 'isUsingEqualQueryConstraint' is deprecated: Changing has no effect. This will be remove in ParseSwift 6.0.0
228 |         self.isRequiringCustomObjectIds = requiringCustomObjectIds
229 |         self.isUsingTransactions = usingTransactions
230 |         self.isUsingEqualQueryConstraint = usingEqualQueryConstraint
    |              `- warning: 'isUsingEqualQueryConstraint' is deprecated: Changing has no effect. This will be remove in ParseSwift 6.0.0
231 |         self.isUsingPostForQuery = usingPostForQuery
232 |         self.mountPath = "/" + serverURL.pathComponents
[63/202] Compiling ParseSwift ParseGeoPoint.swift
/host/spi-builder-workspace/Sources/ParseSwift/Types/ParseConfiguration.swift:230:14: warning: 'isUsingEqualQueryConstraint' is deprecated: Changing has no effect. This will be remove in ParseSwift 6.0.0
228 |         self.isRequiringCustomObjectIds = requiringCustomObjectIds
229 |         self.isUsingTransactions = usingTransactions
230 |         self.isUsingEqualQueryConstraint = usingEqualQueryConstraint
    |              `- warning: 'isUsingEqualQueryConstraint' is deprecated: Changing has no effect. This will be remove in ParseSwift 6.0.0
231 |         self.isUsingPostForQuery = usingPostForQuery
232 |         self.mountPath = "/" + serverURL.pathComponents
[64/202] Compiling ParseSwift ParseHookFunction.swift
/host/spi-builder-workspace/Sources/ParseSwift/Types/ParseConfiguration.swift:230:14: warning: 'isUsingEqualQueryConstraint' is deprecated: Changing has no effect. This will be remove in ParseSwift 6.0.0
228 |         self.isRequiringCustomObjectIds = requiringCustomObjectIds
229 |         self.isUsingTransactions = usingTransactions
230 |         self.isUsingEqualQueryConstraint = usingEqualQueryConstraint
    |              `- warning: 'isUsingEqualQueryConstraint' is deprecated: Changing has no effect. This will be remove in ParseSwift 6.0.0
231 |         self.isUsingPostForQuery = usingPostForQuery
232 |         self.mountPath = "/" + serverURL.pathComponents
[65/202] Compiling ParseSwift ParseHookFunctionRequest.swift
/host/spi-builder-workspace/Sources/ParseSwift/Types/ParseConfiguration.swift:230:14: warning: 'isUsingEqualQueryConstraint' is deprecated: Changing has no effect. This will be remove in ParseSwift 6.0.0
228 |         self.isRequiringCustomObjectIds = requiringCustomObjectIds
229 |         self.isUsingTransactions = usingTransactions
230 |         self.isUsingEqualQueryConstraint = usingEqualQueryConstraint
    |              `- warning: 'isUsingEqualQueryConstraint' is deprecated: Changing has no effect. This will be remove in ParseSwift 6.0.0
231 |         self.isUsingPostForQuery = usingPostForQuery
232 |         self.mountPath = "/" + serverURL.pathComponents
[66/202] Compiling ParseSwift ParseHookResponse.swift
/host/spi-builder-workspace/Sources/ParseSwift/Types/ParseConfiguration.swift:230:14: warning: 'isUsingEqualQueryConstraint' is deprecated: Changing has no effect. This will be remove in ParseSwift 6.0.0
228 |         self.isRequiringCustomObjectIds = requiringCustomObjectIds
229 |         self.isUsingTransactions = usingTransactions
230 |         self.isUsingEqualQueryConstraint = usingEqualQueryConstraint
    |              `- warning: 'isUsingEqualQueryConstraint' is deprecated: Changing has no effect. This will be remove in ParseSwift 6.0.0
231 |         self.isUsingPostForQuery = usingPostForQuery
232 |         self.mountPath = "/" + serverURL.pathComponents
[67/202] Compiling ParseSwift ParseHookTrigger.swift
/host/spi-builder-workspace/Sources/ParseSwift/Types/ParseConfiguration.swift:230:14: warning: 'isUsingEqualQueryConstraint' is deprecated: Changing has no effect. This will be remove in ParseSwift 6.0.0
228 |         self.isRequiringCustomObjectIds = requiringCustomObjectIds
229 |         self.isUsingTransactions = usingTransactions
230 |         self.isUsingEqualQueryConstraint = usingEqualQueryConstraint
    |              `- warning: 'isUsingEqualQueryConstraint' is deprecated: Changing has no effect. This will be remove in ParseSwift 6.0.0
231 |         self.isUsingPostForQuery = usingPostForQuery
232 |         self.mountPath = "/" + serverURL.pathComponents
[68/202] Compiling ParseSwift ParseHookTriggerObjectRequest.swift
/host/spi-builder-workspace/Sources/ParseSwift/Types/ParseConfiguration.swift:230:14: warning: 'isUsingEqualQueryConstraint' is deprecated: Changing has no effect. This will be remove in ParseSwift 6.0.0
228 |         self.isRequiringCustomObjectIds = requiringCustomObjectIds
229 |         self.isUsingTransactions = usingTransactions
230 |         self.isUsingEqualQueryConstraint = usingEqualQueryConstraint
    |              `- warning: 'isUsingEqualQueryConstraint' is deprecated: Changing has no effect. This will be remove in ParseSwift 6.0.0
231 |         self.isUsingPostForQuery = usingPostForQuery
232 |         self.mountPath = "/" + serverURL.pathComponents
[69/202] Compiling ParseSwift ParseHookTriggerRequest.swift
/host/spi-builder-workspace/Sources/ParseSwift/Types/ParseConfiguration.swift:230:14: warning: 'isUsingEqualQueryConstraint' is deprecated: Changing has no effect. This will be remove in ParseSwift 6.0.0
228 |         self.isRequiringCustomObjectIds = requiringCustomObjectIds
229 |         self.isUsingTransactions = usingTransactions
230 |         self.isUsingEqualQueryConstraint = usingEqualQueryConstraint
    |              `- warning: 'isUsingEqualQueryConstraint' is deprecated: Changing has no effect. This will be remove in ParseSwift 6.0.0
231 |         self.isUsingPostForQuery = usingPostForQuery
232 |         self.mountPath = "/" + serverURL.pathComponents
[70/202] Compiling ParseSwift ParseKeychainAccessGroup.swift
/host/spi-builder-workspace/Sources/ParseSwift/Types/ParseConfiguration.swift:230:14: warning: 'isUsingEqualQueryConstraint' is deprecated: Changing has no effect. This will be remove in ParseSwift 6.0.0
228 |         self.isRequiringCustomObjectIds = requiringCustomObjectIds
229 |         self.isUsingTransactions = usingTransactions
230 |         self.isUsingEqualQueryConstraint = usingEqualQueryConstraint
    |              `- warning: 'isUsingEqualQueryConstraint' is deprecated: Changing has no effect. This will be remove in ParseSwift 6.0.0
231 |         self.isUsingPostForQuery = usingPostForQuery
232 |         self.mountPath = "/" + serverURL.pathComponents
[71/202] Compiling ParseSwift ParseOperation+async.swift
/host/spi-builder-workspace/Sources/ParseSwift/Types/ParseConfiguration.swift:230:14: warning: 'isUsingEqualQueryConstraint' is deprecated: Changing has no effect. This will be remove in ParseSwift 6.0.0
228 |         self.isRequiringCustomObjectIds = requiringCustomObjectIds
229 |         self.isUsingTransactions = usingTransactions
230 |         self.isUsingEqualQueryConstraint = usingEqualQueryConstraint
    |              `- warning: 'isUsingEqualQueryConstraint' is deprecated: Changing has no effect. This will be remove in ParseSwift 6.0.0
231 |         self.isUsingPostForQuery = usingPostForQuery
232 |         self.mountPath = "/" + serverURL.pathComponents
[72/202] Compiling ParseSwift ParseOperation+combine.swift
/host/spi-builder-workspace/Sources/ParseSwift/Types/ParseConfiguration.swift:230:14: warning: 'isUsingEqualQueryConstraint' is deprecated: Changing has no effect. This will be remove in ParseSwift 6.0.0
228 |         self.isRequiringCustomObjectIds = requiringCustomObjectIds
229 |         self.isUsingTransactions = usingTransactions
230 |         self.isUsingEqualQueryConstraint = usingEqualQueryConstraint
    |              `- warning: 'isUsingEqualQueryConstraint' is deprecated: Changing has no effect. This will be remove in ParseSwift 6.0.0
231 |         self.isUsingPostForQuery = usingPostForQuery
232 |         self.mountPath = "/" + serverURL.pathComponents
[73/202] Compiling ParseSwift ParseOperation.swift
/host/spi-builder-workspace/Sources/ParseSwift/Types/ParseConfiguration.swift:230:14: warning: 'isUsingEqualQueryConstraint' is deprecated: Changing has no effect. This will be remove in ParseSwift 6.0.0
228 |         self.isRequiringCustomObjectIds = requiringCustomObjectIds
229 |         self.isUsingTransactions = usingTransactions
230 |         self.isUsingEqualQueryConstraint = usingEqualQueryConstraint
    |              `- warning: 'isUsingEqualQueryConstraint' is deprecated: Changing has no effect. This will be remove in ParseSwift 6.0.0
231 |         self.isUsingPostForQuery = usingPostForQuery
232 |         self.mountPath = "/" + serverURL.pathComponents
[74/202] Compiling ParseSwift ParsePolygon.swift
/host/spi-builder-workspace/Sources/ParseSwift/Types/ParseConfiguration.swift:230:14: warning: 'isUsingEqualQueryConstraint' is deprecated: Changing has no effect. This will be remove in ParseSwift 6.0.0
228 |         self.isRequiringCustomObjectIds = requiringCustomObjectIds
229 |         self.isUsingTransactions = usingTransactions
230 |         self.isUsingEqualQueryConstraint = usingEqualQueryConstraint
    |              `- warning: 'isUsingEqualQueryConstraint' is deprecated: Changing has no effect. This will be remove in ParseSwift 6.0.0
231 |         self.isUsingPostForQuery = usingPostForQuery
232 |         self.mountPath = "/" + serverURL.pathComponents
[75/202] Compiling ParseSwift ParsePush+async.swift
/host/spi-builder-workspace/Sources/ParseSwift/Types/ParseConfiguration.swift:230:14: warning: 'isUsingEqualQueryConstraint' is deprecated: Changing has no effect. This will be remove in ParseSwift 6.0.0
228 |         self.isRequiringCustomObjectIds = requiringCustomObjectIds
229 |         self.isUsingTransactions = usingTransactions
230 |         self.isUsingEqualQueryConstraint = usingEqualQueryConstraint
    |              `- warning: 'isUsingEqualQueryConstraint' is deprecated: Changing has no effect. This will be remove in ParseSwift 6.0.0
231 |         self.isUsingPostForQuery = usingPostForQuery
232 |         self.mountPath = "/" + serverURL.pathComponents
[76/202] Compiling ParseSwift ParsePush+combine.swift
/host/spi-builder-workspace/Sources/ParseSwift/Types/ParseConfiguration.swift:230:14: warning: 'isUsingEqualQueryConstraint' is deprecated: Changing has no effect. This will be remove in ParseSwift 6.0.0
228 |         self.isRequiringCustomObjectIds = requiringCustomObjectIds
229 |         self.isUsingTransactions = usingTransactions
230 |         self.isUsingEqualQueryConstraint = usingEqualQueryConstraint
    |              `- warning: 'isUsingEqualQueryConstraint' is deprecated: Changing has no effect. This will be remove in ParseSwift 6.0.0
231 |         self.isUsingPostForQuery = usingPostForQuery
232 |         self.mountPath = "/" + serverURL.pathComponents
[77/202] Compiling ParseSwift ParsePush.swift
/host/spi-builder-workspace/Sources/ParseSwift/Types/ParseConfiguration.swift:230:14: warning: 'isUsingEqualQueryConstraint' is deprecated: Changing has no effect. This will be remove in ParseSwift 6.0.0
228 |         self.isRequiringCustomObjectIds = requiringCustomObjectIds
229 |         self.isUsingTransactions = usingTransactions
230 |         self.isUsingEqualQueryConstraint = usingEqualQueryConstraint
    |              `- warning: 'isUsingEqualQueryConstraint' is deprecated: Changing has no effect. This will be remove in ParseSwift 6.0.0
231 |         self.isUsingPostForQuery = usingPostForQuery
232 |         self.mountPath = "/" + serverURL.pathComponents
[78/202] Compiling ParseSwift API+BatchCommand.swift
/host/spi-builder-workspace/Sources/ParseSwift/API/ParseURLSessionDelegate.swift:14:7: warning: non-final class 'ParseURLSessionDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 12 | #endif
 13 |
 14 | class ParseURLSessionDelegate: NSObject {
    |       `- warning: non-final class 'ParseURLSessionDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 15 |     var callbackQueue: DispatchQueue
 16 |     var authentication: ((URLAuthenticationChallenge,
/host/spi-builder-workspace/Sources/ParseSwift/API/ParseURLSessionDelegate.swift:15:9: warning: stored property 'callbackQueue' of 'Sendable'-conforming class 'ParseURLSessionDelegate' is mutable; this is an error in the Swift 6 language mode
 13 |
 14 | class ParseURLSessionDelegate: NSObject {
 15 |     var callbackQueue: DispatchQueue
    |         `- warning: stored property 'callbackQueue' of 'Sendable'-conforming class 'ParseURLSessionDelegate' is mutable; this is an error in the Swift 6 language mode
 16 |     var authentication: ((URLAuthenticationChallenge,
 17 |                           (URLSession.AuthChallengeDisposition,
[79/202] Compiling ParseSwift API+Command+async.swift
/host/spi-builder-workspace/Sources/ParseSwift/API/ParseURLSessionDelegate.swift:14:7: warning: non-final class 'ParseURLSessionDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 12 | #endif
 13 |
 14 | class ParseURLSessionDelegate: NSObject {
    |       `- warning: non-final class 'ParseURLSessionDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 15 |     var callbackQueue: DispatchQueue
 16 |     var authentication: ((URLAuthenticationChallenge,
/host/spi-builder-workspace/Sources/ParseSwift/API/ParseURLSessionDelegate.swift:15:9: warning: stored property 'callbackQueue' of 'Sendable'-conforming class 'ParseURLSessionDelegate' is mutable; this is an error in the Swift 6 language mode
 13 |
 14 | class ParseURLSessionDelegate: NSObject {
 15 |     var callbackQueue: DispatchQueue
    |         `- warning: stored property 'callbackQueue' of 'Sendable'-conforming class 'ParseURLSessionDelegate' is mutable; this is an error in the Swift 6 language mode
 16 |     var authentication: ((URLAuthenticationChallenge,
 17 |                           (URLSession.AuthChallengeDisposition,
[80/202] Compiling ParseSwift API+Command.swift
/host/spi-builder-workspace/Sources/ParseSwift/API/ParseURLSessionDelegate.swift:14:7: warning: non-final class 'ParseURLSessionDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 12 | #endif
 13 |
 14 | class ParseURLSessionDelegate: NSObject {
    |       `- warning: non-final class 'ParseURLSessionDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 15 |     var callbackQueue: DispatchQueue
 16 |     var authentication: ((URLAuthenticationChallenge,
/host/spi-builder-workspace/Sources/ParseSwift/API/ParseURLSessionDelegate.swift:15:9: warning: stored property 'callbackQueue' of 'Sendable'-conforming class 'ParseURLSessionDelegate' is mutable; this is an error in the Swift 6 language mode
 13 |
 14 | class ParseURLSessionDelegate: NSObject {
 15 |     var callbackQueue: DispatchQueue
    |         `- warning: stored property 'callbackQueue' of 'Sendable'-conforming class 'ParseURLSessionDelegate' is mutable; this is an error in the Swift 6 language mode
 16 |     var authentication: ((URLAuthenticationChallenge,
 17 |                           (URLSession.AuthChallengeDisposition,
[81/202] Compiling ParseSwift API+NonParseBodyCommand+async.swift
/host/spi-builder-workspace/Sources/ParseSwift/API/ParseURLSessionDelegate.swift:14:7: warning: non-final class 'ParseURLSessionDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 12 | #endif
 13 |
 14 | class ParseURLSessionDelegate: NSObject {
    |       `- warning: non-final class 'ParseURLSessionDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 15 |     var callbackQueue: DispatchQueue
 16 |     var authentication: ((URLAuthenticationChallenge,
/host/spi-builder-workspace/Sources/ParseSwift/API/ParseURLSessionDelegate.swift:15:9: warning: stored property 'callbackQueue' of 'Sendable'-conforming class 'ParseURLSessionDelegate' is mutable; this is an error in the Swift 6 language mode
 13 |
 14 | class ParseURLSessionDelegate: NSObject {
 15 |     var callbackQueue: DispatchQueue
    |         `- warning: stored property 'callbackQueue' of 'Sendable'-conforming class 'ParseURLSessionDelegate' is mutable; this is an error in the Swift 6 language mode
 16 |     var authentication: ((URLAuthenticationChallenge,
 17 |                           (URLSession.AuthChallengeDisposition,
[82/202] Compiling ParseSwift API+NonParseBodyCommand.swift
/host/spi-builder-workspace/Sources/ParseSwift/API/ParseURLSessionDelegate.swift:14:7: warning: non-final class 'ParseURLSessionDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 12 | #endif
 13 |
 14 | class ParseURLSessionDelegate: NSObject {
    |       `- warning: non-final class 'ParseURLSessionDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 15 |     var callbackQueue: DispatchQueue
 16 |     var authentication: ((URLAuthenticationChallenge,
/host/spi-builder-workspace/Sources/ParseSwift/API/ParseURLSessionDelegate.swift:15:9: warning: stored property 'callbackQueue' of 'Sendable'-conforming class 'ParseURLSessionDelegate' is mutable; this is an error in the Swift 6 language mode
 13 |
 14 | class ParseURLSessionDelegate: NSObject {
 15 |     var callbackQueue: DispatchQueue
    |         `- warning: stored property 'callbackQueue' of 'Sendable'-conforming class 'ParseURLSessionDelegate' is mutable; this is an error in the Swift 6 language mode
 16 |     var authentication: ((URLAuthenticationChallenge,
 17 |                           (URLSession.AuthChallengeDisposition,
[83/202] Compiling ParseSwift API.swift
/host/spi-builder-workspace/Sources/ParseSwift/API/ParseURLSessionDelegate.swift:14:7: warning: non-final class 'ParseURLSessionDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 12 | #endif
 13 |
 14 | class ParseURLSessionDelegate: NSObject {
    |       `- warning: non-final class 'ParseURLSessionDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 15 |     var callbackQueue: DispatchQueue
 16 |     var authentication: ((URLAuthenticationChallenge,
/host/spi-builder-workspace/Sources/ParseSwift/API/ParseURLSessionDelegate.swift:15:9: warning: stored property 'callbackQueue' of 'Sendable'-conforming class 'ParseURLSessionDelegate' is mutable; this is an error in the Swift 6 language mode
 13 |
 14 | class ParseURLSessionDelegate: NSObject {
 15 |     var callbackQueue: DispatchQueue
    |         `- warning: stored property 'callbackQueue' of 'Sendable'-conforming class 'ParseURLSessionDelegate' is mutable; this is an error in the Swift 6 language mode
 16 |     var authentication: ((URLAuthenticationChallenge,
 17 |                           (URLSession.AuthChallengeDisposition,
[84/202] Compiling ParseSwift BatchUtils.swift
/host/spi-builder-workspace/Sources/ParseSwift/API/ParseURLSessionDelegate.swift:14:7: warning: non-final class 'ParseURLSessionDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 12 | #endif
 13 |
 14 | class ParseURLSessionDelegate: NSObject {
    |       `- warning: non-final class 'ParseURLSessionDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 15 |     var callbackQueue: DispatchQueue
 16 |     var authentication: ((URLAuthenticationChallenge,
/host/spi-builder-workspace/Sources/ParseSwift/API/ParseURLSessionDelegate.swift:15:9: warning: stored property 'callbackQueue' of 'Sendable'-conforming class 'ParseURLSessionDelegate' is mutable; this is an error in the Swift 6 language mode
 13 |
 14 | class ParseURLSessionDelegate: NSObject {
 15 |     var callbackQueue: DispatchQueue
    |         `- warning: stored property 'callbackQueue' of 'Sendable'-conforming class 'ParseURLSessionDelegate' is mutable; this is an error in the Swift 6 language mode
 16 |     var authentication: ((URLAuthenticationChallenge,
 17 |                           (URLSession.AuthChallengeDisposition,
[85/202] Compiling ParseSwift ParseURLSessionDelegate.swift
/host/spi-builder-workspace/Sources/ParseSwift/API/ParseURLSessionDelegate.swift:14:7: warning: non-final class 'ParseURLSessionDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 12 | #endif
 13 |
 14 | class ParseURLSessionDelegate: NSObject {
    |       `- warning: non-final class 'ParseURLSessionDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 15 |     var callbackQueue: DispatchQueue
 16 |     var authentication: ((URLAuthenticationChallenge,
/host/spi-builder-workspace/Sources/ParseSwift/API/ParseURLSessionDelegate.swift:15:9: warning: stored property 'callbackQueue' of 'Sendable'-conforming class 'ParseURLSessionDelegate' is mutable; this is an error in the Swift 6 language mode
 13 |
 14 | class ParseURLSessionDelegate: NSObject {
 15 |     var callbackQueue: DispatchQueue
    |         `- warning: stored property 'callbackQueue' of 'Sendable'-conforming class 'ParseURLSessionDelegate' is mutable; this is an error in the Swift 6 language mode
 16 |     var authentication: ((URLAuthenticationChallenge,
 17 |                           (URLSession.AuthChallengeDisposition,
[86/202] Compiling ParseSwift Responses.swift
/host/spi-builder-workspace/Sources/ParseSwift/API/ParseURLSessionDelegate.swift:14:7: warning: non-final class 'ParseURLSessionDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 12 | #endif
 13 |
 14 | class ParseURLSessionDelegate: NSObject {
    |       `- warning: non-final class 'ParseURLSessionDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 15 |     var callbackQueue: DispatchQueue
 16 |     var authentication: ((URLAuthenticationChallenge,
/host/spi-builder-workspace/Sources/ParseSwift/API/ParseURLSessionDelegate.swift:15:9: warning: stored property 'callbackQueue' of 'Sendable'-conforming class 'ParseURLSessionDelegate' is mutable; this is an error in the Swift 6 language mode
 13 |
 14 | class ParseURLSessionDelegate: NSObject {
 15 |     var callbackQueue: DispatchQueue
    |         `- warning: stored property 'callbackQueue' of 'Sendable'-conforming class 'ParseURLSessionDelegate' is mutable; this is an error in the Swift 6 language mode
 16 |     var authentication: ((URLAuthenticationChallenge,
 17 |                           (URLSession.AuthChallengeDisposition,
[87/202] Compiling ParseSwift ParseApple+async.swift
/host/spi-builder-workspace/Sources/ParseSwift/API/ParseURLSessionDelegate.swift:14:7: warning: non-final class 'ParseURLSessionDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 12 | #endif
 13 |
 14 | class ParseURLSessionDelegate: NSObject {
    |       `- warning: non-final class 'ParseURLSessionDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 15 |     var callbackQueue: DispatchQueue
 16 |     var authentication: ((URLAuthenticationChallenge,
/host/spi-builder-workspace/Sources/ParseSwift/API/ParseURLSessionDelegate.swift:15:9: warning: stored property 'callbackQueue' of 'Sendable'-conforming class 'ParseURLSessionDelegate' is mutable; this is an error in the Swift 6 language mode
 13 |
 14 | class ParseURLSessionDelegate: NSObject {
 15 |     var callbackQueue: DispatchQueue
    |         `- warning: stored property 'callbackQueue' of 'Sendable'-conforming class 'ParseURLSessionDelegate' is mutable; this is an error in the Swift 6 language mode
 16 |     var authentication: ((URLAuthenticationChallenge,
 17 |                           (URLSession.AuthChallengeDisposition,
[88/202] Compiling ParseSwift ParseApple+combine.swift
/host/spi-builder-workspace/Sources/ParseSwift/API/ParseURLSessionDelegate.swift:14:7: warning: non-final class 'ParseURLSessionDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 12 | #endif
 13 |
 14 | class ParseURLSessionDelegate: NSObject {
    |       `- warning: non-final class 'ParseURLSessionDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 15 |     var callbackQueue: DispatchQueue
 16 |     var authentication: ((URLAuthenticationChallenge,
/host/spi-builder-workspace/Sources/ParseSwift/API/ParseURLSessionDelegate.swift:15:9: warning: stored property 'callbackQueue' of 'Sendable'-conforming class 'ParseURLSessionDelegate' is mutable; this is an error in the Swift 6 language mode
 13 |
 14 | class ParseURLSessionDelegate: NSObject {
 15 |     var callbackQueue: DispatchQueue
    |         `- warning: stored property 'callbackQueue' of 'Sendable'-conforming class 'ParseURLSessionDelegate' is mutable; this is an error in the Swift 6 language mode
 16 |     var authentication: ((URLAuthenticationChallenge,
 17 |                           (URLSession.AuthChallengeDisposition,
[89/202] Compiling ParseSwift ParseApple.swift
/host/spi-builder-workspace/Sources/ParseSwift/API/ParseURLSessionDelegate.swift:14:7: warning: non-final class 'ParseURLSessionDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 12 | #endif
 13 |
 14 | class ParseURLSessionDelegate: NSObject {
    |       `- warning: non-final class 'ParseURLSessionDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 15 |     var callbackQueue: DispatchQueue
 16 |     var authentication: ((URLAuthenticationChallenge,
/host/spi-builder-workspace/Sources/ParseSwift/API/ParseURLSessionDelegate.swift:15:9: warning: stored property 'callbackQueue' of 'Sendable'-conforming class 'ParseURLSessionDelegate' is mutable; this is an error in the Swift 6 language mode
 13 |
 14 | class ParseURLSessionDelegate: NSObject {
 15 |     var callbackQueue: DispatchQueue
    |         `- warning: stored property 'callbackQueue' of 'Sendable'-conforming class 'ParseURLSessionDelegate' is mutable; this is an error in the Swift 6 language mode
 16 |     var authentication: ((URLAuthenticationChallenge,
 17 |                           (URLSession.AuthChallengeDisposition,
[90/202] Compiling ParseSwift ParseFacebook+async.swift
/host/spi-builder-workspace/Sources/ParseSwift/API/ParseURLSessionDelegate.swift:14:7: warning: non-final class 'ParseURLSessionDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 12 | #endif
 13 |
 14 | class ParseURLSessionDelegate: NSObject {
    |       `- warning: non-final class 'ParseURLSessionDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 15 |     var callbackQueue: DispatchQueue
 16 |     var authentication: ((URLAuthenticationChallenge,
/host/spi-builder-workspace/Sources/ParseSwift/API/ParseURLSessionDelegate.swift:15:9: warning: stored property 'callbackQueue' of 'Sendable'-conforming class 'ParseURLSessionDelegate' is mutable; this is an error in the Swift 6 language mode
 13 |
 14 | class ParseURLSessionDelegate: NSObject {
 15 |     var callbackQueue: DispatchQueue
    |         `- warning: stored property 'callbackQueue' of 'Sendable'-conforming class 'ParseURLSessionDelegate' is mutable; this is an error in the Swift 6 language mode
 16 |     var authentication: ((URLAuthenticationChallenge,
 17 |                           (URLSession.AuthChallengeDisposition,
[91/202] Compiling ParseSwift ParseFacebook+combine.swift
/host/spi-builder-workspace/Sources/ParseSwift/API/ParseURLSessionDelegate.swift:14:7: warning: non-final class 'ParseURLSessionDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 12 | #endif
 13 |
 14 | class ParseURLSessionDelegate: NSObject {
    |       `- warning: non-final class 'ParseURLSessionDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 15 |     var callbackQueue: DispatchQueue
 16 |     var authentication: ((URLAuthenticationChallenge,
/host/spi-builder-workspace/Sources/ParseSwift/API/ParseURLSessionDelegate.swift:15:9: warning: stored property 'callbackQueue' of 'Sendable'-conforming class 'ParseURLSessionDelegate' is mutable; this is an error in the Swift 6 language mode
 13 |
 14 | class ParseURLSessionDelegate: NSObject {
 15 |     var callbackQueue: DispatchQueue
    |         `- warning: stored property 'callbackQueue' of 'Sendable'-conforming class 'ParseURLSessionDelegate' is mutable; this is an error in the Swift 6 language mode
 16 |     var authentication: ((URLAuthenticationChallenge,
 17 |                           (URLSession.AuthChallengeDisposition,
[92/202] Compiling ParseSwift ParseFacebook.swift
/host/spi-builder-workspace/Sources/ParseSwift/API/ParseURLSessionDelegate.swift:14:7: warning: non-final class 'ParseURLSessionDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 12 | #endif
 13 |
 14 | class ParseURLSessionDelegate: NSObject {
    |       `- warning: non-final class 'ParseURLSessionDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 15 |     var callbackQueue: DispatchQueue
 16 |     var authentication: ((URLAuthenticationChallenge,
/host/spi-builder-workspace/Sources/ParseSwift/API/ParseURLSessionDelegate.swift:15:9: warning: stored property 'callbackQueue' of 'Sendable'-conforming class 'ParseURLSessionDelegate' is mutable; this is an error in the Swift 6 language mode
 13 |
 14 | class ParseURLSessionDelegate: NSObject {
 15 |     var callbackQueue: DispatchQueue
    |         `- warning: stored property 'callbackQueue' of 'Sendable'-conforming class 'ParseURLSessionDelegate' is mutable; this is an error in the Swift 6 language mode
 16 |     var authentication: ((URLAuthenticationChallenge,
 17 |                           (URLSession.AuthChallengeDisposition,
[93/202] Compiling ParseSwift ParseGitHub+async.swift
/host/spi-builder-workspace/Sources/ParseSwift/API/ParseURLSessionDelegate.swift:14:7: warning: non-final class 'ParseURLSessionDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 12 | #endif
 13 |
 14 | class ParseURLSessionDelegate: NSObject {
    |       `- warning: non-final class 'ParseURLSessionDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 15 |     var callbackQueue: DispatchQueue
 16 |     var authentication: ((URLAuthenticationChallenge,
/host/spi-builder-workspace/Sources/ParseSwift/API/ParseURLSessionDelegate.swift:15:9: warning: stored property 'callbackQueue' of 'Sendable'-conforming class 'ParseURLSessionDelegate' is mutable; this is an error in the Swift 6 language mode
 13 |
 14 | class ParseURLSessionDelegate: NSObject {
 15 |     var callbackQueue: DispatchQueue
    |         `- warning: stored property 'callbackQueue' of 'Sendable'-conforming class 'ParseURLSessionDelegate' is mutable; this is an error in the Swift 6 language mode
 16 |     var authentication: ((URLAuthenticationChallenge,
 17 |                           (URLSession.AuthChallengeDisposition,
[94/202] Compiling ParseSwift ParseGitHub+combine.swift
/host/spi-builder-workspace/Sources/ParseSwift/API/ParseURLSessionDelegate.swift:14:7: warning: non-final class 'ParseURLSessionDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 12 | #endif
 13 |
 14 | class ParseURLSessionDelegate: NSObject {
    |       `- warning: non-final class 'ParseURLSessionDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 15 |     var callbackQueue: DispatchQueue
 16 |     var authentication: ((URLAuthenticationChallenge,
/host/spi-builder-workspace/Sources/ParseSwift/API/ParseURLSessionDelegate.swift:15:9: warning: stored property 'callbackQueue' of 'Sendable'-conforming class 'ParseURLSessionDelegate' is mutable; this is an error in the Swift 6 language mode
 13 |
 14 | class ParseURLSessionDelegate: NSObject {
 15 |     var callbackQueue: DispatchQueue
    |         `- warning: stored property 'callbackQueue' of 'Sendable'-conforming class 'ParseURLSessionDelegate' is mutable; this is an error in the Swift 6 language mode
 16 |     var authentication: ((URLAuthenticationChallenge,
 17 |                           (URLSession.AuthChallengeDisposition,
[95/202] Compiling ParseSwift ParseGitHub.swift
/host/spi-builder-workspace/Sources/ParseSwift/API/ParseURLSessionDelegate.swift:14:7: warning: non-final class 'ParseURLSessionDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 12 | #endif
 13 |
 14 | class ParseURLSessionDelegate: NSObject {
    |       `- warning: non-final class 'ParseURLSessionDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 15 |     var callbackQueue: DispatchQueue
 16 |     var authentication: ((URLAuthenticationChallenge,
/host/spi-builder-workspace/Sources/ParseSwift/API/ParseURLSessionDelegate.swift:15:9: warning: stored property 'callbackQueue' of 'Sendable'-conforming class 'ParseURLSessionDelegate' is mutable; this is an error in the Swift 6 language mode
 13 |
 14 | class ParseURLSessionDelegate: NSObject {
 15 |     var callbackQueue: DispatchQueue
    |         `- warning: stored property 'callbackQueue' of 'Sendable'-conforming class 'ParseURLSessionDelegate' is mutable; this is an error in the Swift 6 language mode
 16 |     var authentication: ((URLAuthenticationChallenge,
 17 |                           (URLSession.AuthChallengeDisposition,
[96/202] Compiling ParseSwift ParseGoogle+async.swift
/host/spi-builder-workspace/Sources/ParseSwift/API/ParseURLSessionDelegate.swift:14:7: warning: non-final class 'ParseURLSessionDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 12 | #endif
 13 |
 14 | class ParseURLSessionDelegate: NSObject {
    |       `- warning: non-final class 'ParseURLSessionDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 15 |     var callbackQueue: DispatchQueue
 16 |     var authentication: ((URLAuthenticationChallenge,
/host/spi-builder-workspace/Sources/ParseSwift/API/ParseURLSessionDelegate.swift:15:9: warning: stored property 'callbackQueue' of 'Sendable'-conforming class 'ParseURLSessionDelegate' is mutable; this is an error in the Swift 6 language mode
 13 |
 14 | class ParseURLSessionDelegate: NSObject {
 15 |     var callbackQueue: DispatchQueue
    |         `- warning: stored property 'callbackQueue' of 'Sendable'-conforming class 'ParseURLSessionDelegate' is mutable; this is an error in the Swift 6 language mode
 16 |     var authentication: ((URLAuthenticationChallenge,
 17 |                           (URLSession.AuthChallengeDisposition,
[97/202] Compiling ParseSwift ParseGoogle+combine.swift
/host/spi-builder-workspace/Sources/ParseSwift/API/ParseURLSessionDelegate.swift:14:7: warning: non-final class 'ParseURLSessionDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 12 | #endif
 13 |
 14 | class ParseURLSessionDelegate: NSObject {
    |       `- warning: non-final class 'ParseURLSessionDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 15 |     var callbackQueue: DispatchQueue
 16 |     var authentication: ((URLAuthenticationChallenge,
/host/spi-builder-workspace/Sources/ParseSwift/API/ParseURLSessionDelegate.swift:15:9: warning: stored property 'callbackQueue' of 'Sendable'-conforming class 'ParseURLSessionDelegate' is mutable; this is an error in the Swift 6 language mode
 13 |
 14 | class ParseURLSessionDelegate: NSObject {
 15 |     var callbackQueue: DispatchQueue
    |         `- warning: stored property 'callbackQueue' of 'Sendable'-conforming class 'ParseURLSessionDelegate' is mutable; this is an error in the Swift 6 language mode
 16 |     var authentication: ((URLAuthenticationChallenge,
 17 |                           (URLSession.AuthChallengeDisposition,
[98/202] Compiling ParseSwift ParseGoogle.swift
/host/spi-builder-workspace/Sources/ParseSwift/API/ParseURLSessionDelegate.swift:14:7: warning: non-final class 'ParseURLSessionDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 12 | #endif
 13 |
 14 | class ParseURLSessionDelegate: NSObject {
    |       `- warning: non-final class 'ParseURLSessionDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 15 |     var callbackQueue: DispatchQueue
 16 |     var authentication: ((URLAuthenticationChallenge,
/host/spi-builder-workspace/Sources/ParseSwift/API/ParseURLSessionDelegate.swift:15:9: warning: stored property 'callbackQueue' of 'Sendable'-conforming class 'ParseURLSessionDelegate' is mutable; this is an error in the Swift 6 language mode
 13 |
 14 | class ParseURLSessionDelegate: NSObject {
 15 |     var callbackQueue: DispatchQueue
    |         `- warning: stored property 'callbackQueue' of 'Sendable'-conforming class 'ParseURLSessionDelegate' is mutable; this is an error in the Swift 6 language mode
 16 |     var authentication: ((URLAuthenticationChallenge,
 17 |                           (URLSession.AuthChallengeDisposition,
[99/202] Compiling ParseSwift ParseInstagram+async.swift
/host/spi-builder-workspace/Sources/ParseSwift/API/ParseURLSessionDelegate.swift:14:7: warning: non-final class 'ParseURLSessionDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 12 | #endif
 13 |
 14 | class ParseURLSessionDelegate: NSObject {
    |       `- warning: non-final class 'ParseURLSessionDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 15 |     var callbackQueue: DispatchQueue
 16 |     var authentication: ((URLAuthenticationChallenge,
/host/spi-builder-workspace/Sources/ParseSwift/API/ParseURLSessionDelegate.swift:15:9: warning: stored property 'callbackQueue' of 'Sendable'-conforming class 'ParseURLSessionDelegate' is mutable; this is an error in the Swift 6 language mode
 13 |
 14 | class ParseURLSessionDelegate: NSObject {
 15 |     var callbackQueue: DispatchQueue
    |         `- warning: stored property 'callbackQueue' of 'Sendable'-conforming class 'ParseURLSessionDelegate' is mutable; this is an error in the Swift 6 language mode
 16 |     var authentication: ((URLAuthenticationChallenge,
 17 |                           (URLSession.AuthChallengeDisposition,
[100/202] Compiling ParseSwift ParseInstagram+combine.swift
/host/spi-builder-workspace/Sources/ParseSwift/API/ParseURLSessionDelegate.swift:14:7: warning: non-final class 'ParseURLSessionDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 12 | #endif
 13 |
 14 | class ParseURLSessionDelegate: NSObject {
    |       `- warning: non-final class 'ParseURLSessionDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 15 |     var callbackQueue: DispatchQueue
 16 |     var authentication: ((URLAuthenticationChallenge,
/host/spi-builder-workspace/Sources/ParseSwift/API/ParseURLSessionDelegate.swift:15:9: warning: stored property 'callbackQueue' of 'Sendable'-conforming class 'ParseURLSessionDelegate' is mutable; this is an error in the Swift 6 language mode
 13 |
 14 | class ParseURLSessionDelegate: NSObject {
 15 |     var callbackQueue: DispatchQueue
    |         `- warning: stored property 'callbackQueue' of 'Sendable'-conforming class 'ParseURLSessionDelegate' is mutable; this is an error in the Swift 6 language mode
 16 |     var authentication: ((URLAuthenticationChallenge,
 17 |                           (URLSession.AuthChallengeDisposition,
[101/202] Compiling ParseSwift ParseInstagram.swift
/host/spi-builder-workspace/Sources/ParseSwift/API/ParseURLSessionDelegate.swift:14:7: warning: non-final class 'ParseURLSessionDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 12 | #endif
 13 |
 14 | class ParseURLSessionDelegate: NSObject {
    |       `- warning: non-final class 'ParseURLSessionDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 15 |     var callbackQueue: DispatchQueue
 16 |     var authentication: ((URLAuthenticationChallenge,
/host/spi-builder-workspace/Sources/ParseSwift/API/ParseURLSessionDelegate.swift:15:9: warning: stored property 'callbackQueue' of 'Sendable'-conforming class 'ParseURLSessionDelegate' is mutable; this is an error in the Swift 6 language mode
 13 |
 14 | class ParseURLSessionDelegate: NSObject {
 15 |     var callbackQueue: DispatchQueue
    |         `- warning: stored property 'callbackQueue' of 'Sendable'-conforming class 'ParseURLSessionDelegate' is mutable; this is an error in the Swift 6 language mode
 16 |     var authentication: ((URLAuthenticationChallenge,
 17 |                           (URLSession.AuthChallengeDisposition,
[102/202] Compiling ParseSwift ParseLDAP+async.swift
/host/spi-builder-workspace/Sources/ParseSwift/API/ParseURLSessionDelegate.swift:14:7: warning: non-final class 'ParseURLSessionDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 12 | #endif
 13 |
 14 | class ParseURLSessionDelegate: NSObject {
    |       `- warning: non-final class 'ParseURLSessionDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 15 |     var callbackQueue: DispatchQueue
 16 |     var authentication: ((URLAuthenticationChallenge,
/host/spi-builder-workspace/Sources/ParseSwift/API/ParseURLSessionDelegate.swift:15:9: warning: stored property 'callbackQueue' of 'Sendable'-conforming class 'ParseURLSessionDelegate' is mutable; this is an error in the Swift 6 language mode
 13 |
 14 | class ParseURLSessionDelegate: NSObject {
 15 |     var callbackQueue: DispatchQueue
    |         `- warning: stored property 'callbackQueue' of 'Sendable'-conforming class 'ParseURLSessionDelegate' is mutable; this is an error in the Swift 6 language mode
 16 |     var authentication: ((URLAuthenticationChallenge,
 17 |                           (URLSession.AuthChallengeDisposition,
[103/202] Compiling ParseSwift Savable.swift
[104/202] Compiling ParseSwift InMemoryPrimitiveStore.swift
[105/202] Compiling ParseSwift KeychainStore.swift
[106/202] Compiling ParseSwift ParseFileManager.swift
[107/202] Compiling ParseSwift ParsePrimitiveStorable.swift
[108/202] Compiling ParseSwift ParseStorage.swift
[109/202] Compiling ParseSwift SecureStorable.swift
[110/202] Compiling ParseSwift CloudViewModel.swift
[111/202] Compiling ParseSwift ParseOperationAdd.swift
[112/202] Compiling ParseSwift ParseOperationAddRelation.swift
[113/202] Compiling ParseSwift ParseOperationAddUnique.swift
[114/202] Compiling ParseSwift ParseOperationBatch.swift
[115/202] Compiling ParseSwift ParseOperationCommand.swift
[116/202] Compiling ParseSwift ParseOperationDelete.swift
[117/202] Compiling ParseSwift ParseOperationIncrement.swift
[118/202] Compiling ParseSwift ParseOperationIncrementDouble.swift
[119/202] Compiling ParseSwift ParseOperationRemove.swift
[120/202] Compiling ParseSwift ParseOperationRemoveRelation.swift
[121/202] Compiling ParseSwift ParseACL.swift
[122/202] Compiling ParseSwift ParseAnalytics+async.swift
[123/202] Compiling ParseSwift ParseAnalytics+combine.swift
[124/202] Compiling ParseSwift ParseAnalytics.swift
[125/202] Compiling ParseSwift ParseBytes.swift
[126/202] Compiling ParseSwift ParseCLP.swift
[127/202] Compiling ParseSwift ParseConfigCodable+async.swift
[128/202] Compiling ParseSwift ParseFileTransferable.swift
[129/202] Compiling ParseSwift ParseHookFunctionable+async.swift
[130/202] Compiling ParseSwift ParseHookFunctionable+combine.swift
[131/202] Compiling ParseSwift ParseHookFunctionable.swift
[132/202] Compiling ParseSwift ParseHookParametable.swift
[133/202] Compiling ParseSwift ParseHookRequestable+async.swift
[134/202] Compiling ParseSwift ParseHookRequestable+combine.swift
[135/202] Compiling ParseSwift ParseHookRequestable.swift
[136/202] Compiling ParseSwift ParseHookTriggerRequestable.swift
[137/202] Compiling ParseSwift ParseHookTriggerable+async.swift
[138/202] Compiling ParseSwift ParseHookTriggerable+combine.swift
[139/202] Compiling ParseSwift ParseHookTriggerable.swift
[140/202] Compiling ParseSwift ParseHookable.swift
[141/202] Compiling ParseSwift ParseOperationable.swift
[142/202] Compiling ParseSwift ParsePointerable+async.swift
[143/202] Compiling ParseSwift ParsePointerable+combine.swift
[144/202] Compiling ParseSwift ParsePointerable.swift
[145/202] Compiling ParseSwift ParsePushApplePayloadable.swift
[146/202] Compiling ParseSwift ParsePushFirebasePayloadable.swift
[147/202] Compiling ParseSwift ParsePushPayloadable.swift
[148/202] Compiling ParseSwift ParseQueryScorable.swift
[149/202] Compiling ParseSwift ParseRelationOperationable.swift
[150/202] Compiling ParseSwift ParseTypeable.swift
[151/202] Compiling ParseSwift QueryObservable.swift
[152/202] Compiling ParseSwift Queryable.swift
[153/202] Compiling ParseSwift ParseInstallation+combine.swift
[154/202] Compiling ParseSwift ParseInstallation.swift
[155/202] Compiling ParseSwift ParseObject+async.swift
[156/202] Compiling ParseSwift ParseObject+combine.swift
[157/202] Compiling ParseSwift ParseObject.swift
[158/202] Compiling ParseSwift ParsePushStatusable.swift
[159/202] Compiling ParseSwift ParseRole.swift
[160/202] Compiling ParseSwift ParseSession.swift
[161/202] Compiling ParseSwift ParseUser+async.swift
[162/202] Compiling ParseSwift ParseUser+combine.swift
[163/202] Compiling ParseSwift ParseUser.swift
[164/202] Compiling ParseSwift Parse.swift
[165/202] Compiling ParseSwift ParseConstants.swift
[166/202] Compiling ParseSwift CloudObservable.swift
[167/202] Compiling ParseSwift Deletable.swift
[168/202] Compiling ParseSwift Fetchable.swift
[169/202] Compiling ParseSwift Fileable.swift
[170/202] Compiling ParseSwift Objectable.swift
[171/202] Compiling ParseSwift ParseCloudable+async.swift
[172/202] Compiling ParseSwift ParseCloudable+combine.swift
[173/202] Compiling ParseSwift ParseCloudable.swift
[174/202] Compiling ParseSwift ParseConfig+async.swift
[175/202] Compiling ParseSwift ParseConfig+combine.swift
[176/202] Compiling ParseSwift ParseConfig.swift
[177/202] Compiling ParseSwift ParseEncodable.swift
[178/202] Compiling ParseSwift ParsePushAppleAlert.swift
[179/202] Compiling ParseSwift ParsePushAppleSound.swift
[180/202] Compiling ParseSwift ParsePushPayloadApple.swift
[181/202] Compiling ParseSwift ParsePushFirebaseNotification.swift
[182/202] Compiling ParseSwift ParsePushPayloadFirebase.swift
[183/202] Compiling ParseSwift ParsePushPayloadAny.swift
[184/202] Compiling ParseSwift ParsePushStatus.swift
[185/202] Compiling ParseSwift ParseRelation.swift
[186/202] Compiling ParseSwift ParseSchema+async.swift
[187/202] Compiling ParseSwift ParseSchema+combine.swift
[188/202] Compiling ParseSwift ParseSchema.swift
[189/202] Compiling ParseSwift ParseServer+async.swift
[190/202] Compiling ParseSwift ParseServer+combine.swift
[191/202] Compiling ParseSwift ParseServer.swift
[192/202] Compiling ParseSwift ParseVersion.swift
[193/202] Compiling ParseSwift Pointer+async.swift
[194/202] Compiling ParseSwift Pointer+combine.swift
[195/202] Compiling ParseSwift Pointer.swift
[196/202] Compiling ParseSwift Query+async.swift
[197/202] Compiling ParseSwift Query+combine.swift
[198/202] Compiling ParseSwift Query.swift
[199/202] Compiling ParseSwift QueryConstraint.swift
[200/202] Compiling ParseSwift QueryViewModel.swift
[201/202] Compiling ParseSwift QueryWhere.swift
[202/202] Compiling ParseSwift Utility.swift
BUILD FAILURE 6.1 linux