Skip to content

Commit 62b5b72

Browse files
committed
Add changelog entry
1 parent 5a2b131 commit 62b5b72

File tree

5 files changed

+8
-5
lines changed

5 files changed

+8
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
# Changelog
22

3-
## 1.3.1 (unreleased)
3+
## 1.4.0 (unreleased)
44

55
* Update SQLite to 3.50.3.
6+
* Remove internal SQLDelight and SQLiter dependencies.
67
* Android: Ensure JNI libraries are 16KB-aligned.
8+
* Add `rawConnection` getter to `ConnectionContext`, which is a `SQLiteConnection` instance from
9+
`androidx.sqlite` that can be used to step through statements in a custom way.
710

811
## 1.3.0
912

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 & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ rsocket = "0.20.0"
1919
uuid = "0.8.2"
2020
powersync-core = "0.4.2"
2121
sqlite-jdbc = "3.50.3.0"
22-
sqliter = "1.3.1"
2322
turbine = "1.2.0"
2423
kotest = "5.9.1"
2524

@@ -36,7 +35,6 @@ android-gradle-plugin = "8.10.1"
3635
skie = "0.10.2"
3736
maven-publish = "0.27.0"
3837
download-plugin = "5.5.0"
39-
grammarkit-composer = "0.1.12"
4038
mokkery = "2.8.0"
4139
kotlinter = "5.0.1"
4240
keeper = "0.16.1"

0 commit comments

Comments
 (0)