File tree Expand file tree Collapse file tree 4 files changed +9
-4
lines changed Expand file tree Collapse file tree 4 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -209,8 +209,8 @@ jobs:
209
209
210
210
- name : Web tests
211
211
run : |
212
- curl https://simon-public.fsn1.your-objectstorage.com/assets/sqlite3/2.6 .0/sqlite3.wasm -o example/web/sqlite3.wasm
213
- curl https://simon-public.fsn1.your-objectstorage.com/assets/sqlite3/2.6 .0/sqlite3mc.wasm -o example/web/sqlite3mc.wasm
212
+ curl https://simon-public.fsn1.your-objectstorage.com/assets/sqlite3/2.7 .0/sqlite3.wasm -o example/web/sqlite3.wasm
213
+ curl https://simon-public.fsn1.your-objectstorage.com/assets/sqlite3/2.7 .0/sqlite3mc.wasm -o example/web/sqlite3mc.wasm
214
214
dart test -P web -r expanded
215
215
# If browsers behave differently on different platforms, surely that's not our fault...
216
216
# So, only run browser tests on Linux to be faster.
Original file line number Diff line number Diff line change
1
+ ## 2.7.0-dev
2
+
3
+ - Add support for commit and rollback hooks as well as a predicate that can
4
+ revert transactions.
5
+
1
6
## 2.6.1
2
7
3
8
- Fix out-of-bound reads in the ` xWrite ` implementation of the OPFS-locks based
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ add_custom_command(
32
32
OUTPUT required_symbols.txt
33
33
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} /../../
34
34
COMMAND dart run tool/wasm_symbols.dart ${CMAKE_CURRENT_BINARY_DIR} /required_symbols.txt
35
- DEPENDS ${CMAKE_CURRENT_SOURCE_DIR} /../../tool/wasm_symbols.dart
35
+ DEPENDS ${CMAKE_CURRENT_SOURCE_DIR} /../../tool/wasm_symbols.dart ${CMAKE_CURRENT_SOURCE_DIR} /../../lib/src/wasm/wasm_interop.dart
36
36
VERBATIM
37
37
)
38
38
add_custom_target (required_symbols DEPENDS required_symbols.txt )
Original file line number Diff line number Diff line change 1
1
name : sqlite3
2
2
description : Provides lightweight yet convenient bindings to SQLite by using dart:ffi
3
- version : 2.6.1
3
+ version : 2.7.0-dev
4
4
homepage : https://github.com/simolus3/sqlite3.dart/tree/main/sqlite3
5
5
issue_tracker : https://github.com/simolus3/sqlite3.dart/issues
6
6
You can’t perform that action at this time.
0 commit comments