Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Sources/PowerSync/Protocol/PowerSyncDatabaseProtocol.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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,
Expand Down
Loading