File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change
1
+ ## 0.8.0
2
+
3
+ - Added web support (web functionality is in beta)
4
+
1
5
## 0.7.0
2
6
3
7
- BREAKING CHANGE: Update all Database types to use a ` CommonDatabase ` interface.
Original file line number Diff line number Diff line change @@ -78,6 +78,8 @@ void main() async {
78
78
79
79
# Web
80
80
81
+ Note: Web support is currently in Beta.
82
+
81
83
Web support requires Sqlite3 WASM and web worker Javascript files to be accessible via configurable URIs.
82
84
83
85
Default URIs are shown in the example below. URIs only need to be specified if they differ from default values.
Original file line number Diff line number Diff line change @@ -3,12 +3,7 @@ import 'dart:js_interop';
3
3
4
4
import 'package:sqlite3/common.dart' ;
5
5
import 'package:sqlite3_web/sqlite3_web.dart' ;
6
- import 'package:sqlite_async/mutex.dart' ;
7
6
import 'package:sqlite_async/sqlite_async.dart' ;
8
- import 'package:sqlite_async/src/common/sqlite_database.dart' ;
9
- import 'package:sqlite_async/src/sqlite_connection.dart' ;
10
- import 'package:sqlite_async/src/sqlite_queries.dart' ;
11
- import 'package:sqlite_async/src/update_notification.dart' ;
12
7
import 'package:sqlite_async/src/utils/shared_utils.dart' ;
13
8
import 'protocol.dart' ;
14
9
Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ import 'dart:js_util' as js_util;
4
4
import 'package:mutex/mutex.dart' ;
5
5
import 'package:sqlite3/wasm.dart' ;
6
6
import 'package:sqlite3_web/sqlite3_web.dart' ;
7
- import 'package:sqlite_async/sqlite3_common.dart' ;
8
7
9
8
import '../protocol.dart' ;
10
9
You can’t perform that action at this time.
0 commit comments