From e3cbeaefa9e017f4323b3049dc888e62d51289d9 Mon Sep 17 00:00:00 2001 From: benitav Date: Tue, 12 May 2026 13:25:03 +0200 Subject: [PATCH] Polish documentation for new sync client implementation The flag only exists for backwards compatibility --- Sources/PowerSync/Protocol/PowerSyncDatabaseProtocol.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Sources/PowerSync/Protocol/PowerSyncDatabaseProtocol.swift b/Sources/PowerSync/Protocol/PowerSyncDatabaseProtocol.swift index eac729c..1fdc16c 100644 --- a/Sources/PowerSync/Protocol/PowerSyncDatabaseProtocol.swift +++ b/Sources/PowerSync/Protocol/PowerSyncDatabaseProtocol.swift @@ -68,8 +68,8 @@ public struct ConnectOptions: Sendable { /// Uses a new sync client implemented in Rust instead of the one implemented in Kotlin. /// - /// This option is enabled by default and recommended for all apps. The old Kotlin-based implementation - /// will be removed in a future version of the SDK. + /// This option is enabled by default and exists for backwards compatibility. Support for the legacy + /// Kotlin-based implementation has been removed. public var newClientImplementation: Bool /// Configuration for the sync client used for PowerSync requests. @@ -116,7 +116,7 @@ public struct ConnectOptions: Sendable { @available( *, deprecated, - message: "Specifying the newClientImplementation flag is no longer needed. It is now enabled by default. The use of the old client is deprecated and will be removed in a future version." + message: "Specifying the newClientImplementation flag is no longer needed. It is now enabled by default. Support for the legacy Kotlin-based client was removed." ) public init( crudThrottle: TimeInterval = 1,