You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+15-1
Original file line number
Diff line number
Diff line change
@@ -1,11 +1,25 @@
1
+
## 0.7.0-alpha.3
2
+
3
+
- Add latest changes from master
4
+
1
5
## 0.7.0-alpha.2
2
6
3
-
- Fix re-using a shared Mutex from https://github.com/powersync-ja/sqlite_async.dart/pull/31
7
+
- Fix re-using a shared Mutex from <https://github.com/powersync-ja/sqlite_async.dart/pull/31>
4
8
5
9
## 0.7.0-alpha.1
6
10
7
11
- Added initial support for web platform.
8
12
13
+
## 0.6.1
14
+
15
+
- Fix errors when closing a `SqliteDatabase`.
16
+
- Configure SQLite `busy_timeout` (30s default). This fixes "database is locked (code 5)" error when using multiple `SqliteDatabase` instances for the same database.
17
+
- Fix errors when opening multiple connections at the same time, e.g. when running multiple read queries concurrently
18
+
right after opening the dtaabase.
19
+
- Improved error handling when an Isolate crashes with an uncaught error.
20
+
- Rewrite connection pool logic to fix performance issues when multiple read connections are open.
21
+
- Fix using `SqliteDatabase.isolateConnectionFactory()` in multiple isolates.
22
+
9
23
## 0.6.0
10
24
11
25
- Allow catching errors and continuing the transaction. This is technically a breaking change, although it should not be an issue in most cases.
0 commit comments