Build Information
Failed to build ParseSwift, reference 4.14.2 (dc7666
), with Swift 6.1 for Linux on 27 Apr 2025 05:11:00 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/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
471 | transaction: transaction,
472 | options: options,
473 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
474 | }
475 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:501:53: warning: converting a value of type '(__shared sending Result<[Result<Void, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Void, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
499 | transaction: transaction,
500 | options: options,
501 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[Result<Void, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Void, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
502 | }
503 | }
[181/184] Compiling ParseSwift Increment.swift
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseInstallation+async.swift:32:49: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
30 | self.fetch(includeKeys: includeKeys,
31 | options: options,
32 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
33 | }
34 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseInstallation+async.swift:62:48: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
60 | self.save(ignoringCustomObjectIdConfig: ignoringCustomObjectIdConfig,
61 | options: options,
62 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
63 | }
64 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseInstallation+async.swift:75:50: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
73 | try await withCheckedThrowingContinuation { continuation in
74 | self.create(options: options,
75 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
76 | }
77 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseInstallation+async.swift:89:51: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
87 | try await withCheckedThrowingContinuation { continuation in
88 | self.replace(options: options,
89 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
90 | }
91 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseInstallation+async.swift:103:50: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
101 | try await withCheckedThrowingContinuation { continuation in
102 | self.update(options: options,
103 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
104 | }
105 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseInstallation+async.swift:117:68: warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
115 | func delete(options: API.Options = []) async throws {
116 | let result = try await withCheckedThrowingContinuation { continuation in
117 | self.delete(options: options, completion: continuation.resume)
| |- warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
118 | }
119 | if case let .failure(error) = result {
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseInstallation+async.swift:147:50: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
145 | copyEntireInstallation: copyEntireInstallation,
146 | options: options,
147 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
148 | }
149 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseInstallation+async.swift:171:52: warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
169 | self.fetchAll(includeKeys: includeKeys,
170 | options: options,
171 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
172 | }
173 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseInstallation+async.swift:214:51: warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
212 | ignoringCustomObjectIdConfig: ignoringCustomObjectIdConfig,
213 | options: options,
214 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
215 | }
216 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseInstallation+async.swift:242:53: warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
240 | transaction: transaction,
241 | options: options,
242 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
243 | }
244 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseInstallation+async.swift:271:54: warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
269 | transaction: transaction,
270 | options: options,
271 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
272 | }
273 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseInstallation+async.swift:300:53: warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
298 | transaction: transaction,
299 | options: options,
300 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
301 | }
302 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseInstallation+async.swift:326:53: warning: converting a value of type '(__shared sending Result<[Result<Void, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Void, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
324 | transaction: transaction,
325 | options: options,
326 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[Result<Void, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Void, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
327 | }
328 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseInstallation.swift:339:37: warning: reference to captured var 'currentInstallation' in concurrently-executing code; this is an error in the Swift 6 language mode
337 | // If the installationId's are the same, assume successful replacement already occured.
338 | callbackQueue.async {
339 | completion(.success(currentInstallation))
| `- warning: reference to captured var 'currentInstallation' in concurrently-executing code; this is an error in the Swift 6 language mode
340 | }
341 | return
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseObject+async.swift:31:49: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
29 | self.fetch(includeKeys: includeKeys,
30 | options: options,
31 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
32 | }
33 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseObject+async.swift:49:48: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
47 | self.save(ignoringCustomObjectIdConfig: ignoringCustomObjectIdConfig,
48 | options: options,
49 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
50 | }
51 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseObject+async.swift:62:50: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
60 | try await withCheckedThrowingContinuation { continuation in
61 | self.create(options: options,
62 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
63 | }
64 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseObject+async.swift:75:51: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
73 | try await withCheckedThrowingContinuation { continuation in
74 | self.replace(options: options,
75 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
76 | }
77 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseObject+async.swift:88:50: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
86 | try await withCheckedThrowingContinuation { continuation in
87 | self.update(options: options,
88 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
89 | }
90 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseObject+async.swift:101:50: warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
99 | let result = try await withCheckedThrowingContinuation { continuation in
100 | self.delete(options: options,
101 | completion: continuation.resume)
| |- warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
102 | }
103 | if case let .failure(error) = result {
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseObject+async.swift:126:52: warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
124 | self.fetchAll(includeKeys: includeKeys,
125 | options: options,
126 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
127 | }
128 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseObject+async.swift:168:51: warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
166 | ignoringCustomObjectIdConfig: ignoringCustomObjectIdConfig,
167 | options: options,
168 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
169 | }
170 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseObject+async.swift:196:53: warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
194 | transaction: transaction,
195 | options: options,
196 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
197 | }
198 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseObject+async.swift:224:54: warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
222 | transaction: transaction,
223 | options: options,
224 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
225 | }
226 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseObject+async.swift:252:53: warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
250 | transaction: transaction,
251 | options: options,
252 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
253 | }
254 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseObject+async.swift:277:53: warning: converting a value of type '(__shared sending Result<[Result<Void, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Void, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
275 | transaction: transaction,
276 | options: options,
277 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[Result<Void, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Void, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
278 | }
279 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:36:50: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
34 | password: password,
35 | options: options,
36 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
37 | }
38 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:55:50: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
53 | try await withCheckedThrowingContinuation { continuation in
54 | self.signup(options: options,
55 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
56 | }
57 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:79:49: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
77 | password: password,
78 | options: options,
79 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
80 | }
81 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:99:96: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
97 | options: API.Options = []) async throws -> Self {
98 | try await withCheckedThrowingContinuation { continuation in
99 | self.become(sessionToken: sessionToken, options: options, completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
100 | }
101 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:138:68: warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
136 | static func logout(options: API.Options = []) async throws {
137 | let result = try await withCheckedThrowingContinuation { continuation in
138 | Self.logout(options: options, completion: continuation.resume)
| |- warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
139 | }
140 | if case let .failure(error) = result {
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:157:89: warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
155 | options: API.Options = []) async throws {
156 | let result = try await withCheckedThrowingContinuation { continuation in
157 | Self.passwordReset(email: email, options: options, completion: continuation.resume)
| |- warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
158 | }
159 | if case let .failure(error) = result {
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:184:76: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
182 | Self.verifyPassword(password: password,
183 | usingPost: usingPost,
184 | options: options, completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
185 | }
186 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:200:93: warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
198 | options: API.Options = []) async throws {
199 | let result = try await withCheckedThrowingContinuation { continuation in
200 | Self.verificationEmail(email: email, options: options, completion: continuation.resume)
| |- warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
201 | }
202 | if case let .failure(error) = result {
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:224:49: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
222 | self.fetch(includeKeys: includeKeys,
223 | options: options,
224 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
225 | }
226 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:254:48: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
252 | self.save(ignoringCustomObjectIdConfig: ignoringCustomObjectIdConfig,
253 | options: options,
254 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
255 | }
256 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:269:50: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
267 | try await withCheckedThrowingContinuation { continuation in
268 | self.create(options: options,
269 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
270 | }
271 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:285:51: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
283 | try await withCheckedThrowingContinuation { continuation in
284 | self.replace(options: options,
285 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
286 | }
287 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:301:50: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
299 | try await withCheckedThrowingContinuation { continuation in
300 | self.update(options: options,
301 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
302 | }
303 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:316:68: warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
314 | func delete(options: API.Options = []) async throws {
315 | let result = try await withCheckedThrowingContinuation { continuation in
316 | self.delete(options: options, completion: continuation.resume)
| |- warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
317 | }
318 | if case let .failure(error) = result {
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:344:52: warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
342 | self.fetchAll(includeKeys: includeKeys,
343 | options: options,
344 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
345 | }
346 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:387:51: warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
385 | ignoringCustomObjectIdConfig: ignoringCustomObjectIdConfig,
386 | options: options,
387 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
388 | }
389 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:415:53: warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
413 | transaction: transaction,
414 | options: options,
415 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
416 | }
417 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:444:54: warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
442 | transaction: transaction,
443 | options: options,
444 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
445 | }
446 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:473:53: warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
471 | transaction: transaction,
472 | options: options,
473 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
474 | }
475 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:501:53: warning: converting a value of type '(__shared sending Result<[Result<Void, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Void, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
499 | transaction: transaction,
500 | options: options,
501 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[Result<Void, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Void, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
502 | }
503 | }
[182/184] Compiling ParseSwift Operation.swift
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseInstallation+async.swift:32:49: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
30 | self.fetch(includeKeys: includeKeys,
31 | options: options,
32 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
33 | }
34 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseInstallation+async.swift:62:48: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
60 | self.save(ignoringCustomObjectIdConfig: ignoringCustomObjectIdConfig,
61 | options: options,
62 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
63 | }
64 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseInstallation+async.swift:75:50: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
73 | try await withCheckedThrowingContinuation { continuation in
74 | self.create(options: options,
75 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
76 | }
77 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseInstallation+async.swift:89:51: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
87 | try await withCheckedThrowingContinuation { continuation in
88 | self.replace(options: options,
89 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
90 | }
91 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseInstallation+async.swift:103:50: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
101 | try await withCheckedThrowingContinuation { continuation in
102 | self.update(options: options,
103 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
104 | }
105 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseInstallation+async.swift:117:68: warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
115 | func delete(options: API.Options = []) async throws {
116 | let result = try await withCheckedThrowingContinuation { continuation in
117 | self.delete(options: options, completion: continuation.resume)
| |- warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
118 | }
119 | if case let .failure(error) = result {
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseInstallation+async.swift:147:50: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
145 | copyEntireInstallation: copyEntireInstallation,
146 | options: options,
147 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
148 | }
149 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseInstallation+async.swift:171:52: warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
169 | self.fetchAll(includeKeys: includeKeys,
170 | options: options,
171 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
172 | }
173 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseInstallation+async.swift:214:51: warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
212 | ignoringCustomObjectIdConfig: ignoringCustomObjectIdConfig,
213 | options: options,
214 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
215 | }
216 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseInstallation+async.swift:242:53: warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
240 | transaction: transaction,
241 | options: options,
242 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
243 | }
244 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseInstallation+async.swift:271:54: warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
269 | transaction: transaction,
270 | options: options,
271 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
272 | }
273 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseInstallation+async.swift:300:53: warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
298 | transaction: transaction,
299 | options: options,
300 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
301 | }
302 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseInstallation+async.swift:326:53: warning: converting a value of type '(__shared sending Result<[Result<Void, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Void, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
324 | transaction: transaction,
325 | options: options,
326 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[Result<Void, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Void, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
327 | }
328 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseInstallation.swift:339:37: warning: reference to captured var 'currentInstallation' in concurrently-executing code; this is an error in the Swift 6 language mode
337 | // If the installationId's are the same, assume successful replacement already occured.
338 | callbackQueue.async {
339 | completion(.success(currentInstallation))
| `- warning: reference to captured var 'currentInstallation' in concurrently-executing code; this is an error in the Swift 6 language mode
340 | }
341 | return
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseObject+async.swift:31:49: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
29 | self.fetch(includeKeys: includeKeys,
30 | options: options,
31 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
32 | }
33 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseObject+async.swift:49:48: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
47 | self.save(ignoringCustomObjectIdConfig: ignoringCustomObjectIdConfig,
48 | options: options,
49 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
50 | }
51 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseObject+async.swift:62:50: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
60 | try await withCheckedThrowingContinuation { continuation in
61 | self.create(options: options,
62 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
63 | }
64 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseObject+async.swift:75:51: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
73 | try await withCheckedThrowingContinuation { continuation in
74 | self.replace(options: options,
75 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
76 | }
77 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseObject+async.swift:88:50: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
86 | try await withCheckedThrowingContinuation { continuation in
87 | self.update(options: options,
88 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
89 | }
90 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseObject+async.swift:101:50: warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
99 | let result = try await withCheckedThrowingContinuation { continuation in
100 | self.delete(options: options,
101 | completion: continuation.resume)
| |- warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
102 | }
103 | if case let .failure(error) = result {
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseObject+async.swift:126:52: warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
124 | self.fetchAll(includeKeys: includeKeys,
125 | options: options,
126 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
127 | }
128 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseObject+async.swift:168:51: warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
166 | ignoringCustomObjectIdConfig: ignoringCustomObjectIdConfig,
167 | options: options,
168 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
169 | }
170 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseObject+async.swift:196:53: warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
194 | transaction: transaction,
195 | options: options,
196 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
197 | }
198 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseObject+async.swift:224:54: warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
222 | transaction: transaction,
223 | options: options,
224 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
225 | }
226 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseObject+async.swift:252:53: warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
250 | transaction: transaction,
251 | options: options,
252 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
253 | }
254 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseObject+async.swift:277:53: warning: converting a value of type '(__shared sending Result<[Result<Void, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Void, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
275 | transaction: transaction,
276 | options: options,
277 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[Result<Void, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Void, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
278 | }
279 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:36:50: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
34 | password: password,
35 | options: options,
36 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
37 | }
38 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:55:50: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
53 | try await withCheckedThrowingContinuation { continuation in
54 | self.signup(options: options,
55 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
56 | }
57 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:79:49: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
77 | password: password,
78 | options: options,
79 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
80 | }
81 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:99:96: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
97 | options: API.Options = []) async throws -> Self {
98 | try await withCheckedThrowingContinuation { continuation in
99 | self.become(sessionToken: sessionToken, options: options, completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
100 | }
101 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:138:68: warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
136 | static func logout(options: API.Options = []) async throws {
137 | let result = try await withCheckedThrowingContinuation { continuation in
138 | Self.logout(options: options, completion: continuation.resume)
| |- warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
139 | }
140 | if case let .failure(error) = result {
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:157:89: warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
155 | options: API.Options = []) async throws {
156 | let result = try await withCheckedThrowingContinuation { continuation in
157 | Self.passwordReset(email: email, options: options, completion: continuation.resume)
| |- warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
158 | }
159 | if case let .failure(error) = result {
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:184:76: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
182 | Self.verifyPassword(password: password,
183 | usingPost: usingPost,
184 | options: options, completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
185 | }
186 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:200:93: warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
198 | options: API.Options = []) async throws {
199 | let result = try await withCheckedThrowingContinuation { continuation in
200 | Self.verificationEmail(email: email, options: options, completion: continuation.resume)
| |- warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
201 | }
202 | if case let .failure(error) = result {
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:224:49: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
222 | self.fetch(includeKeys: includeKeys,
223 | options: options,
224 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
225 | }
226 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:254:48: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
252 | self.save(ignoringCustomObjectIdConfig: ignoringCustomObjectIdConfig,
253 | options: options,
254 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
255 | }
256 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:269:50: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
267 | try await withCheckedThrowingContinuation { continuation in
268 | self.create(options: options,
269 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
270 | }
271 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:285:51: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
283 | try await withCheckedThrowingContinuation { continuation in
284 | self.replace(options: options,
285 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
286 | }
287 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:301:50: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
299 | try await withCheckedThrowingContinuation { continuation in
300 | self.update(options: options,
301 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
302 | }
303 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:316:68: warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
314 | func delete(options: API.Options = []) async throws {
315 | let result = try await withCheckedThrowingContinuation { continuation in
316 | self.delete(options: options, completion: continuation.resume)
| |- warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
317 | }
318 | if case let .failure(error) = result {
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:344:52: warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
342 | self.fetchAll(includeKeys: includeKeys,
343 | options: options,
344 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
345 | }
346 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:387:51: warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
385 | ignoringCustomObjectIdConfig: ignoringCustomObjectIdConfig,
386 | options: options,
387 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
388 | }
389 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:415:53: warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
413 | transaction: transaction,
414 | options: options,
415 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
416 | }
417 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:444:54: warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
442 | transaction: transaction,
443 | options: options,
444 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
445 | }
446 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:473:53: warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
471 | transaction: transaction,
472 | options: options,
473 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
474 | }
475 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:501:53: warning: converting a value of type '(__shared sending Result<[Result<Void, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Void, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
499 | transaction: transaction,
500 | options: options,
501 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[Result<Void, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Void, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
502 | }
503 | }
[183/184] Compiling ParseSwift Remove.swift
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseInstallation+async.swift:32:49: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
30 | self.fetch(includeKeys: includeKeys,
31 | options: options,
32 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
33 | }
34 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseInstallation+async.swift:62:48: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
60 | self.save(ignoringCustomObjectIdConfig: ignoringCustomObjectIdConfig,
61 | options: options,
62 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
63 | }
64 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseInstallation+async.swift:75:50: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
73 | try await withCheckedThrowingContinuation { continuation in
74 | self.create(options: options,
75 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
76 | }
77 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseInstallation+async.swift:89:51: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
87 | try await withCheckedThrowingContinuation { continuation in
88 | self.replace(options: options,
89 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
90 | }
91 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseInstallation+async.swift:103:50: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
101 | try await withCheckedThrowingContinuation { continuation in
102 | self.update(options: options,
103 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
104 | }
105 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseInstallation+async.swift:117:68: warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
115 | func delete(options: API.Options = []) async throws {
116 | let result = try await withCheckedThrowingContinuation { continuation in
117 | self.delete(options: options, completion: continuation.resume)
| |- warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
118 | }
119 | if case let .failure(error) = result {
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseInstallation+async.swift:147:50: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
145 | copyEntireInstallation: copyEntireInstallation,
146 | options: options,
147 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
148 | }
149 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseInstallation+async.swift:171:52: warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
169 | self.fetchAll(includeKeys: includeKeys,
170 | options: options,
171 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
172 | }
173 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseInstallation+async.swift:214:51: warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
212 | ignoringCustomObjectIdConfig: ignoringCustomObjectIdConfig,
213 | options: options,
214 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
215 | }
216 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseInstallation+async.swift:242:53: warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
240 | transaction: transaction,
241 | options: options,
242 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
243 | }
244 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseInstallation+async.swift:271:54: warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
269 | transaction: transaction,
270 | options: options,
271 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
272 | }
273 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseInstallation+async.swift:300:53: warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
298 | transaction: transaction,
299 | options: options,
300 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
301 | }
302 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseInstallation+async.swift:326:53: warning: converting a value of type '(__shared sending Result<[Result<Void, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Void, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
324 | transaction: transaction,
325 | options: options,
326 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[Result<Void, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Void, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
327 | }
328 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseInstallation.swift:339:37: warning: reference to captured var 'currentInstallation' in concurrently-executing code; this is an error in the Swift 6 language mode
337 | // If the installationId's are the same, assume successful replacement already occured.
338 | callbackQueue.async {
339 | completion(.success(currentInstallation))
| `- warning: reference to captured var 'currentInstallation' in concurrently-executing code; this is an error in the Swift 6 language mode
340 | }
341 | return
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseObject+async.swift:31:49: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
29 | self.fetch(includeKeys: includeKeys,
30 | options: options,
31 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
32 | }
33 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseObject+async.swift:49:48: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
47 | self.save(ignoringCustomObjectIdConfig: ignoringCustomObjectIdConfig,
48 | options: options,
49 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
50 | }
51 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseObject+async.swift:62:50: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
60 | try await withCheckedThrowingContinuation { continuation in
61 | self.create(options: options,
62 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
63 | }
64 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseObject+async.swift:75:51: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
73 | try await withCheckedThrowingContinuation { continuation in
74 | self.replace(options: options,
75 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
76 | }
77 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseObject+async.swift:88:50: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
86 | try await withCheckedThrowingContinuation { continuation in
87 | self.update(options: options,
88 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
89 | }
90 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseObject+async.swift:101:50: warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
99 | let result = try await withCheckedThrowingContinuation { continuation in
100 | self.delete(options: options,
101 | completion: continuation.resume)
| |- warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
102 | }
103 | if case let .failure(error) = result {
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseObject+async.swift:126:52: warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
124 | self.fetchAll(includeKeys: includeKeys,
125 | options: options,
126 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
127 | }
128 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseObject+async.swift:168:51: warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
166 | ignoringCustomObjectIdConfig: ignoringCustomObjectIdConfig,
167 | options: options,
168 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
169 | }
170 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseObject+async.swift:196:53: warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
194 | transaction: transaction,
195 | options: options,
196 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
197 | }
198 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseObject+async.swift:224:54: warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
222 | transaction: transaction,
223 | options: options,
224 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
225 | }
226 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseObject+async.swift:252:53: warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
250 | transaction: transaction,
251 | options: options,
252 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
253 | }
254 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseObject+async.swift:277:53: warning: converting a value of type '(__shared sending Result<[Result<Void, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Void, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
275 | transaction: transaction,
276 | options: options,
277 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[Result<Void, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Void, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
278 | }
279 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:36:50: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
34 | password: password,
35 | options: options,
36 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
37 | }
38 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:55:50: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
53 | try await withCheckedThrowingContinuation { continuation in
54 | self.signup(options: options,
55 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
56 | }
57 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:79:49: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
77 | password: password,
78 | options: options,
79 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
80 | }
81 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:99:96: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
97 | options: API.Options = []) async throws -> Self {
98 | try await withCheckedThrowingContinuation { continuation in
99 | self.become(sessionToken: sessionToken, options: options, completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
100 | }
101 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:138:68: warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
136 | static func logout(options: API.Options = []) async throws {
137 | let result = try await withCheckedThrowingContinuation { continuation in
138 | Self.logout(options: options, completion: continuation.resume)
| |- warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
139 | }
140 | if case let .failure(error) = result {
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:157:89: warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
155 | options: API.Options = []) async throws {
156 | let result = try await withCheckedThrowingContinuation { continuation in
157 | Self.passwordReset(email: email, options: options, completion: continuation.resume)
| |- warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
158 | }
159 | if case let .failure(error) = result {
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:184:76: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
182 | Self.verifyPassword(password: password,
183 | usingPost: usingPost,
184 | options: options, completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
185 | }
186 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:200:93: warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
198 | options: API.Options = []) async throws {
199 | let result = try await withCheckedThrowingContinuation { continuation in
200 | Self.verificationEmail(email: email, options: options, completion: continuation.resume)
| |- warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
201 | }
202 | if case let .failure(error) = result {
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:224:49: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
222 | self.fetch(includeKeys: includeKeys,
223 | options: options,
224 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
225 | }
226 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:254:48: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
252 | self.save(ignoringCustomObjectIdConfig: ignoringCustomObjectIdConfig,
253 | options: options,
254 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
255 | }
256 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:269:50: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
267 | try await withCheckedThrowingContinuation { continuation in
268 | self.create(options: options,
269 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
270 | }
271 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:285:51: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
283 | try await withCheckedThrowingContinuation { continuation in
284 | self.replace(options: options,
285 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
286 | }
287 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:301:50: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
299 | try await withCheckedThrowingContinuation { continuation in
300 | self.update(options: options,
301 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
302 | }
303 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:316:68: warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
314 | func delete(options: API.Options = []) async throws {
315 | let result = try await withCheckedThrowingContinuation { continuation in
316 | self.delete(options: options, completion: continuation.resume)
| |- warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
317 | }
318 | if case let .failure(error) = result {
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:344:52: warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
342 | self.fetchAll(includeKeys: includeKeys,
343 | options: options,
344 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
345 | }
346 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:387:51: warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
385 | ignoringCustomObjectIdConfig: ignoringCustomObjectIdConfig,
386 | options: options,
387 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
388 | }
389 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:415:53: warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
413 | transaction: transaction,
414 | options: options,
415 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
416 | }
417 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:444:54: warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
442 | transaction: transaction,
443 | options: options,
444 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
445 | }
446 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:473:53: warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
471 | transaction: transaction,
472 | options: options,
473 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
474 | }
475 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:501:53: warning: converting a value of type '(__shared sending Result<[Result<Void, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Void, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
499 | transaction: transaction,
500 | options: options,
501 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[Result<Void, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Void, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
502 | }
503 | }
[184/184] Compiling ParseSwift RemoveRelation.swift
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseInstallation+async.swift:32:49: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
30 | self.fetch(includeKeys: includeKeys,
31 | options: options,
32 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
33 | }
34 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseInstallation+async.swift:62:48: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
60 | self.save(ignoringCustomObjectIdConfig: ignoringCustomObjectIdConfig,
61 | options: options,
62 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
63 | }
64 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseInstallation+async.swift:75:50: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
73 | try await withCheckedThrowingContinuation { continuation in
74 | self.create(options: options,
75 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
76 | }
77 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseInstallation+async.swift:89:51: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
87 | try await withCheckedThrowingContinuation { continuation in
88 | self.replace(options: options,
89 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
90 | }
91 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseInstallation+async.swift:103:50: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
101 | try await withCheckedThrowingContinuation { continuation in
102 | self.update(options: options,
103 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
104 | }
105 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseInstallation+async.swift:117:68: warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
115 | func delete(options: API.Options = []) async throws {
116 | let result = try await withCheckedThrowingContinuation { continuation in
117 | self.delete(options: options, completion: continuation.resume)
| |- warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
118 | }
119 | if case let .failure(error) = result {
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseInstallation+async.swift:147:50: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
145 | copyEntireInstallation: copyEntireInstallation,
146 | options: options,
147 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
148 | }
149 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseInstallation+async.swift:171:52: warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
169 | self.fetchAll(includeKeys: includeKeys,
170 | options: options,
171 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
172 | }
173 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseInstallation+async.swift:214:51: warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
212 | ignoringCustomObjectIdConfig: ignoringCustomObjectIdConfig,
213 | options: options,
214 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
215 | }
216 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseInstallation+async.swift:242:53: warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
240 | transaction: transaction,
241 | options: options,
242 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
243 | }
244 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseInstallation+async.swift:271:54: warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
269 | transaction: transaction,
270 | options: options,
271 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
272 | }
273 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseInstallation+async.swift:300:53: warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
298 | transaction: transaction,
299 | options: options,
300 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
301 | }
302 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseInstallation+async.swift:326:53: warning: converting a value of type '(__shared sending Result<[Result<Void, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Void, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
324 | transaction: transaction,
325 | options: options,
326 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[Result<Void, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Void, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
327 | }
328 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseInstallation.swift:339:37: warning: reference to captured var 'currentInstallation' in concurrently-executing code; this is an error in the Swift 6 language mode
337 | // If the installationId's are the same, assume successful replacement already occured.
338 | callbackQueue.async {
339 | completion(.success(currentInstallation))
| `- warning: reference to captured var 'currentInstallation' in concurrently-executing code; this is an error in the Swift 6 language mode
340 | }
341 | return
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseObject+async.swift:31:49: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
29 | self.fetch(includeKeys: includeKeys,
30 | options: options,
31 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
32 | }
33 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseObject+async.swift:49:48: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
47 | self.save(ignoringCustomObjectIdConfig: ignoringCustomObjectIdConfig,
48 | options: options,
49 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
50 | }
51 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseObject+async.swift:62:50: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
60 | try await withCheckedThrowingContinuation { continuation in
61 | self.create(options: options,
62 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
63 | }
64 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseObject+async.swift:75:51: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
73 | try await withCheckedThrowingContinuation { continuation in
74 | self.replace(options: options,
75 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
76 | }
77 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseObject+async.swift:88:50: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
86 | try await withCheckedThrowingContinuation { continuation in
87 | self.update(options: options,
88 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
89 | }
90 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseObject+async.swift:101:50: warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
99 | let result = try await withCheckedThrowingContinuation { continuation in
100 | self.delete(options: options,
101 | completion: continuation.resume)
| |- warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
102 | }
103 | if case let .failure(error) = result {
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseObject+async.swift:126:52: warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
124 | self.fetchAll(includeKeys: includeKeys,
125 | options: options,
126 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
127 | }
128 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseObject+async.swift:168:51: warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
166 | ignoringCustomObjectIdConfig: ignoringCustomObjectIdConfig,
167 | options: options,
168 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
169 | }
170 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseObject+async.swift:196:53: warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
194 | transaction: transaction,
195 | options: options,
196 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
197 | }
198 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseObject+async.swift:224:54: warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
222 | transaction: transaction,
223 | options: options,
224 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
225 | }
226 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseObject+async.swift:252:53: warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
250 | transaction: transaction,
251 | options: options,
252 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
253 | }
254 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseObject+async.swift:277:53: warning: converting a value of type '(__shared sending Result<[Result<Void, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Void, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
275 | transaction: transaction,
276 | options: options,
277 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[Result<Void, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Void, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
278 | }
279 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:36:50: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
34 | password: password,
35 | options: options,
36 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
37 | }
38 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:55:50: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
53 | try await withCheckedThrowingContinuation { continuation in
54 | self.signup(options: options,
55 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
56 | }
57 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:79:49: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
77 | password: password,
78 | options: options,
79 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
80 | }
81 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:99:96: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
97 | options: API.Options = []) async throws -> Self {
98 | try await withCheckedThrowingContinuation { continuation in
99 | self.become(sessionToken: sessionToken, options: options, completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
100 | }
101 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:138:68: warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
136 | static func logout(options: API.Options = []) async throws {
137 | let result = try await withCheckedThrowingContinuation { continuation in
138 | Self.logout(options: options, completion: continuation.resume)
| |- warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
139 | }
140 | if case let .failure(error) = result {
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:157:89: warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
155 | options: API.Options = []) async throws {
156 | let result = try await withCheckedThrowingContinuation { continuation in
157 | Self.passwordReset(email: email, options: options, completion: continuation.resume)
| |- warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
158 | }
159 | if case let .failure(error) = result {
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:184:76: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
182 | Self.verifyPassword(password: password,
183 | usingPost: usingPost,
184 | options: options, completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
185 | }
186 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:200:93: warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
198 | options: API.Options = []) async throws {
199 | let result = try await withCheckedThrowingContinuation { continuation in
200 | Self.verificationEmail(email: email, options: options, completion: continuation.resume)
| |- warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
201 | }
202 | if case let .failure(error) = result {
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:224:49: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
222 | self.fetch(includeKeys: includeKeys,
223 | options: options,
224 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
225 | }
226 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:254:48: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
252 | self.save(ignoringCustomObjectIdConfig: ignoringCustomObjectIdConfig,
253 | options: options,
254 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
255 | }
256 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:269:50: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
267 | try await withCheckedThrowingContinuation { continuation in
268 | self.create(options: options,
269 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
270 | }
271 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:285:51: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
283 | try await withCheckedThrowingContinuation { continuation in
284 | self.replace(options: options,
285 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
286 | }
287 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:301:50: warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
299 | try await withCheckedThrowingContinuation { continuation in
300 | self.update(options: options,
301 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Self, ParseError>) -> ()' to type '(Result<Self, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
302 | }
303 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:316:68: warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
314 | func delete(options: API.Options = []) async throws {
315 | let result = try await withCheckedThrowingContinuation { continuation in
316 | self.delete(options: options, completion: continuation.resume)
| |- warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
317 | }
318 | if case let .failure(error) = result {
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:344:52: warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
342 | self.fetchAll(includeKeys: includeKeys,
343 | options: options,
344 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
345 | }
346 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:387:51: warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
385 | ignoringCustomObjectIdConfig: ignoringCustomObjectIdConfig,
386 | options: options,
387 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
388 | }
389 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:415:53: warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
413 | transaction: transaction,
414 | options: options,
415 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
416 | }
417 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:444:54: warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
442 | transaction: transaction,
443 | options: options,
444 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
445 | }
446 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:473:53: warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
471 | transaction: transaction,
472 | options: options,
473 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[Result<Self.Element, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Self.Element, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
474 | }
475 | }
/host/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:501:53: warning: converting a value of type '(__shared sending Result<[Result<Void, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Void, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
499 | transaction: transaction,
500 | options: options,
501 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[Result<Void, ParseError>], ParseError>) -> ()' to type '(Result<[Result<Void, ParseError>], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
502 | }
503 | }
BUILD FAILURE 6.1 linux