Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ dependencies:
sdp_transform: ^0.3.2
slugify: ^2.0.0
sqflite_common: ^2.4.5
sqlite3: ^2.1.0
sqlite3: ^3.3.3

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

sqlite3 3.x is a breaking major bump that this SDK can't take as-is:

  • It requires Dart >=3.10 (pub reports >=3.9.999), but this package declares sdk: ">=3.3.0 <4.0.0" (line 13), so dart pub get fails on CI's Dart 3.9.2 and for consumers on Dart 3.3–3.9.
  • It removes package:sqlite3/open.dart / open.overrideForAll, used by lib/src/database/sqflite_encryption_helper/io.dart (SQfLiteEncryptionHelper.ffiInit), so it won't compile.
  • It drops bundled SQLCipher, which SQfLiteEncryptionHelper relies on for at-rest DB encryption.

Recommend keeping sqlite3: ^2.x unless this lands with a full v3-hooks migration + an SDK-floor bump.

typed_data: ^1.3.2
vodozemac: ^0.5.0
web: ^1.1.1
Expand Down
Loading