You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since Xcode 15 with Build Setting Strict Concurrency Checking set to Targeted, the compiler warns that ParseObject is not conform to Sendable. So it cannot leave its actor boundaries.
Trying to make ParseObject conform to Sendable fails because it contains the ParseACL type which is not conform as well.
Feature / Enhancement Description
Please make ParseObject also conform to Sendable.
Example Use Case
Alternatives / Workarounds
Ignoring the warnings. At some case it is possible to annotate import ParseSwift with @preconcurrency.
3rd Party References
The text was updated successfully, but these errors were encountered:
New Feature / Enhancement Checklist
Current Limitation
Since Xcode 15 with Build Setting Strict Concurrency Checking set to Targeted, the compiler warns that ParseObject is not conform to Sendable. So it cannot leave its actor boundaries.
Trying to make ParseObject conform to Sendable fails because it contains the ParseACL type which is not conform as well.
Feature / Enhancement Description
Please make ParseObject also conform to Sendable.Example Use Case
Alternatives / Workarounds
Ignoring the warnings. At some case it is possible to annotate import ParseSwift with @preconcurrency.3rd Party References
The text was updated successfully, but these errors were encountered: