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
Describe the bug
Missing Sendable conformance in core MongoKitten types (Field and Reference) causing compiler errors when used in concurrent contexts. The generic types Field and Reference were marked as Sendable but didn't properly handle the Sendable requirements of their generic parameters.
To Reproduce
Use MongoKitten in a project with strict concurrency checking enabled
Create a model using @Field property wrapper with any Codable type
Use Reference with any ReadableModel
Compile the project
Observe compiler errors about Sendable conformance
Describe the bug
Missing Sendable conformance in core MongoKitten types (Field and Reference) causing compiler errors when used in concurrent contexts. The generic types Field and Reference were marked as Sendable but didn't properly handle the Sendable requirements of their generic parameters.
To Reproduce
@Field
property wrapper with any Codable typeExpected behavior
Environment:
The text was updated successfully, but these errors were encountered: