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
Fixed MySQL connection crash: Resolved an assertion failure in MySQLConnection.deinit by closing connections through the proper async path before deallocation, instead of bypassing the driver's internal close state.
Eliminated connection race condition: Concurrent requests to the same connection now share a single in-flight task, preventing duplicate connections that were dropped without cleanup and crashed on release.
Concurrency cleanup: Cleaned up Swift 6 default MainActor isolation warnings across the data services.