File tree Expand file tree Collapse file tree 5 files changed +8
-5
lines changed
core/src/commonMain/kotlin/com/powersync/db Expand file tree Collapse file tree 5 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
- ## 1.3.1 (unreleased)
3
+ ## 1.4.0 (unreleased)
4
4
5
5
* Update SQLite to 3.50.3.
6
+ * Remove internal SQLDelight and SQLiter dependencies.
6
7
* 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.
7
10
8
11
## 1.3.0
9
12
Original file line number Diff line number Diff line change 1
1
package com.powersync.db
2
2
3
- import androidx.sqlite.SQLiteConnection
4
3
import co.touchlab.kermit.Logger
5
4
import com.powersync.DatabaseDriverFactory
6
5
import com.powersync.PowerSyncDatabase
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ import com.powersync.db.SqlCursor
8
8
public interface PowerSyncTransaction : ConnectionContext
9
9
10
10
internal class PowerSyncTransactionImpl (
11
- override val rawConnection : SQLiteConnection
11
+ override val rawConnection : SQLiteConnection ,
12
12
) : PowerSyncTransaction,
13
13
ConnectionContext {
14
14
private val delegate = ConnectionContextImplementation (rawConnection)
Original file line number Diff line number Diff line change
1
+ Internal drivers for SQLite.
2
+
3
+ These projects are currently internal to the PowerSync SDK and should not be depended on directly.
Original file line number Diff line number Diff line change @@ -19,7 +19,6 @@ rsocket = "0.20.0"
19
19
uuid = " 0.8.2"
20
20
powersync-core = " 0.4.2"
21
21
sqlite-jdbc = " 3.50.3.0"
22
- sqliter = " 1.3.1"
23
22
turbine = " 1.2.0"
24
23
kotest = " 5.9.1"
25
24
@@ -36,7 +35,6 @@ android-gradle-plugin = "8.10.1"
36
35
skie = " 0.10.2"
37
36
maven-publish = " 0.27.0"
38
37
download-plugin = " 5.5.0"
39
- grammarkit-composer = " 0.1.12"
40
38
mokkery = " 2.8.0"
41
39
kotlinter = " 5.0.1"
42
40
keeper = " 0.16.1"
You can’t perform that action at this time.
0 commit comments