Build Information
Successful build of ParseSwift, reference 4.14.2 (dc7666
), with Swift 6.0 for macOS (SPM) on 29 Nov 2024 01:29:36 UTC.
Swift 6 data race errors: 27
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures
Build Log
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 {
/Users/admin/builder/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 | }
/Users/admin/builder/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 {
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 {
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
[180/184] Compiling ParseSwift Delete.swift
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 {
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:121:84: 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
119 | @discardableResult static func loginUsingObjCKeychain(options: API.Options = []) async throws -> Self {
120 | try await withCheckedThrowingContinuation { continuation in
121 | Self.loginUsingObjCKeychain(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
122 | }
123 | }
/Users/admin/builder/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 {
/Users/admin/builder/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 {
/Users/admin/builder/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 | }
/Users/admin/builder/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 {
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 {
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 {
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:121:84: 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
119 | @discardableResult static func loginUsingObjCKeychain(options: API.Options = []) async throws -> Self {
120 | try await withCheckedThrowingContinuation { continuation in
121 | Self.loginUsingObjCKeychain(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
122 | }
123 | }
/Users/admin/builder/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 {
/Users/admin/builder/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 {
/Users/admin/builder/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 | }
/Users/admin/builder/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 {
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 {
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 {
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:121:84: 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
119 | @discardableResult static func loginUsingObjCKeychain(options: API.Options = []) async throws -> Self {
120 | try await withCheckedThrowingContinuation { continuation in
121 | Self.loginUsingObjCKeychain(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
122 | }
123 | }
/Users/admin/builder/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 {
/Users/admin/builder/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 {
/Users/admin/builder/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 | }
/Users/admin/builder/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 {
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 {
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 {
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:121:84: 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
119 | @discardableResult static func loginUsingObjCKeychain(options: API.Options = []) async throws -> Self {
120 | try await withCheckedThrowingContinuation { continuation in
121 | Self.loginUsingObjCKeychain(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
122 | }
123 | }
/Users/admin/builder/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 {
/Users/admin/builder/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 {
/Users/admin/builder/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 | }
/Users/admin/builder/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 {
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 {
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 {
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Objects/ParseUser+async.swift:121:84: 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
119 | @discardableResult static func loginUsingObjCKeychain(options: API.Options = []) async throws -> Self {
120 | try await withCheckedThrowingContinuation { continuation in
121 | Self.loginUsingObjCKeychain(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
122 | }
123 | }
/Users/admin/builder/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 {
/Users/admin/builder/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 {
/Users/admin/builder/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 | }
/Users/admin/builder/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 {
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 {
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 of target: 'ParseSwift' complete! (4.04s)
4207
30 /Users/admin/builder/spi-builder-workspace/.docs/parse-community/parse-swift/4.14.2
✅ Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/parse-community/parse-swift/4.14.2
File count: 4207
Doc size: 30.0MB
Preparing doc bundle ...
Uploading prod-parse-community-parse-swift-4.14.2-783da3d9.zip to s3://spi-docs-inbox/prod-parse-community-parse-swift-4.14.2-783da3d9.zip
Copying... [11%]
Copying... [20%]
Copying... [31%]
Copying... [41%]
Copying... [50%]
Copying... [61%]
Copying... [71%]
Copying... [80%]
Copying... [91%]
Copying... [100%]
Done.