File tree 7 files changed +48
-5
lines changed
7 files changed +48
-5
lines changed Original file line number Diff line number Diff line change 3
3
All notable changes to this project will be documented in this file.
4
4
See [ Conventional Commits] ( https://conventionalcommits.org ) for commit guidelines.
5
5
6
+ ## 2024-09-03
7
+
8
+ ### Changes
9
+
10
+ ---
11
+
12
+ Packages with breaking changes:
13
+
14
+ - There are no breaking changes in this release.
15
+
16
+ Packages with other changes:
17
+
18
+ - [ ` sqlite_async ` - ` v0.9.0 ` ] ( #sqlite_async---v090 )
19
+ - [ ` drift_sqlite_async ` - ` v0.1.0-alpha.7 ` ] ( #drift_sqlite_async---v010-alpha7 )
20
+
21
+ Packages with dependency updates only:
22
+
23
+ > Packages listed below depend on other packages in this workspace that have had changes. Their versions have been incremented to bump the minimum dependency versions of the packages they depend upon in this project.
24
+
25
+ - ` drift_sqlite_async ` - ` v0.1.0-alpha.7 `
26
+
27
+ ---
28
+
29
+ #### ` sqlite_async ` - ` v0.9.0 `
30
+
31
+ - Support the latest version of package: web and package: sqlite3_web
32
+
33
+ - Export sqlite3 ` open ` for packages that depend on ` sqlite_async `
34
+
35
+
6
36
## 2024-08-21
7
37
8
38
### Changes
Original file line number Diff line number Diff line change @@ -32,10 +32,10 @@ scripts:
32
32
description : Analyze Dart code in packages.
33
33
run : dart analyze packages --fatal-infos
34
34
35
- # TODO: Temporarily setting the exit-code-threshold to 10 until drift_sqlite_async dependencies are updated.
35
+ # TODO: Temporarily setting the exit-code-threshold to 20 until drift_sqlite_async dependencies are updated.
36
36
analyze:packages:pana :
37
37
description : Analyze Dart packages with Pana
38
- exec : dart pub global run pana --no-warning --exit-code-threshold 10
38
+ exec : dart pub global run pana --no-warning --exit-code-threshold 20
39
39
packageFilters :
40
40
noPrivate : true
41
41
Original file line number Diff line number Diff line change
1
+ ## 0.1.0-alpha.7
2
+
3
+ - Update a dependency to the latest release.
4
+
1
5
## 0.1.0-alpha.6
2
6
3
7
- Update a dependency to the latest release.
Original file line number Diff line number Diff line change 1
1
name : drift_sqlite_async
2
- version : 0.1.0-alpha.6
2
+ version : 0.1.0-alpha.7
3
3
homepage : https://github.com/powersync-ja/sqlite_async.dart
4
4
repository : https://github.com/powersync-ja/sqlite_async.dart
5
5
description : Use Drift with a sqlite_async database, allowing both to be used in the same application.
@@ -15,7 +15,7 @@ environment:
15
15
sdk : " >=3.0.0 <4.0.0"
16
16
dependencies :
17
17
drift : " >=2.15.0 <2.19.0"
18
- sqlite_async : ^0.8.3
18
+ sqlite_async : ^0.9.0
19
19
dev_dependencies :
20
20
build_runner : ^2.4.8
21
21
drift_dev : " >=2.15.0 <2.19.0"
Original file line number Diff line number Diff line change
1
+ ## 0.9.0
2
+
3
+ - Support the latest version of package: web and package: sqlite3_web
4
+
5
+ - Export sqlite3 ` open ` for packages that depend on ` sqlite_async `
6
+
1
7
## 0.8.3
2
8
3
9
- Updated web database implementation for get and getOptional. Fixed refreshSchema not working in web.
Original file line number Diff line number Diff line change
1
+ // Re-exports [sqlite3 open](https://pub.dev/packages/sqlite3) to expose sqlite3 open without
2
+ // adding it as a direct dependency.
3
+ export 'package:sqlite3/open.dart' ;
Original file line number Diff line number Diff line change 1
1
name : sqlite_async
2
2
description : High-performance asynchronous interface for SQLite on Dart and Flutter.
3
- version : 0.8.3
3
+ version : 0.9.0
4
4
repository : https://github.com/powersync-ja/sqlite_async.dart
5
5
environment :
6
6
sdk : " >=3.4.0 <4.0.0"
You can’t perform that action at this time.
0 commit comments