Skip to content

Commit 2359b48

Browse files
committed
Add changelog entry
1 parent 522f4c6 commit 2359b48

File tree

5 files changed

+7
-3
lines changed

5 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
to upload multiple transactions in a batch.
77
* Fix modifying severity of the global Kermit logger
88
* Add `PowerSync` tag for the logs
9+
* Remove internal SQLDelight and SQLiter dependencies.
10+
* Add `rawConnection` getter to `ConnectionContext`, which is a `SQLiteConnection` instance from
11+
`androidx.sqlite` that can be used to step through statements in a custom way.
912

1013
## 1.4.0
1114

core/src/commonMain/kotlin/com/powersync/db/PowerSyncDatabaseImpl.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
package com.powersync.db
22

3-
import androidx.sqlite.SQLiteConnection
43
import co.touchlab.kermit.Logger
54
import com.powersync.DatabaseDriverFactory
65
import com.powersync.PowerSyncDatabase

core/src/commonMain/kotlin/com/powersync/db/internal/PowerSyncTransaction.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import com.powersync.db.SqlCursor
88
public interface PowerSyncTransaction : ConnectionContext
99

1010
internal class PowerSyncTransactionImpl(
11-
override val rawConnection: SQLiteConnection
11+
override val rawConnection: SQLiteConnection,
1212
) : PowerSyncTransaction,
1313
ConnectionContext {
1414
private val delegate = ConnectionContextImplementation(rawConnection)

drivers/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Internal drivers for SQLite.
2+
3+
These projects are currently internal to the PowerSync SDK and should not be depended on directly.

gradle/libs.versions.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ android-gradle-plugin = "8.11.1"
3737
skie = "0.10.5"
3838
maven-publish = "0.34.0"
3939
download-plugin = "5.6.0"
40-
grammarkit-composer = "0.1.12"
4140
mokkery = "2.9.0"
4241
kotlinter = "5.1.1"
4342
keeper = "0.16.1"

0 commit comments

Comments
 (0)