Releases: get-convex/convex-swift
Releases · get-convex/convex-swift
Convex for Swift 0.6.1
This is a bug fix release.
Includes a dependency on an updated version of convex-rs with a fix for a deadlock.
Prior to this version, applications receiving rapid query updates while sending outgoing requests could experience the ConvexClient becoming unresponsive.
Convex for Swift 0.6.0
This is a minor feature addition release.
There's a new initConvexLogging method which will surface Convex client logs in OSLog. This should give developers greater visibility into the state of the Convex client throughout the lifecycle of their applications. Example usage:
import SwiftUI
import ConvexMobile
@main
struct SampleApp: App {
init() {
// After this call, use of ConvexClient elsewhere in the app will generate logs.
initConvexLogging()
}
var body: some Scene {
WindowGroup {
ContentView()
}
}
}