diff --git a/.pubignore b/.pubignore index 743e4c4..92f9d0f 100644 --- a/.pubignore +++ b/.pubignore @@ -10,4 +10,6 @@ example/analysis_options.yaml .idea .flutter-plugins .flutter-plugins-dependencies -example/build \ No newline at end of file +example/build +build/ +*.iml \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 74b9468..b2447d2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.5.0 + +* Add support for drift 2.4.0 + ## 0.4.0 * Upgrade dependencies diff --git a/lib/src/drift_sql_database_server.dart b/lib/src/drift_sql_database_server.dart index fc70862..691a314 100644 --- a/lib/src/drift_sql_database_server.dart +++ b/lib/src/drift_sql_database_server.dart @@ -156,6 +156,8 @@ SQLDataType _makeType( return SQLDataType.blob; case DriftSqlType.double: return SQLDataType.real; + case DriftSqlType.any: + return SQLDataType.text; } } diff --git a/pubspec.yaml b/pubspec.yaml index 419c292..cf3e53d 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: drift_local_storage_inspector description: A SQL local storage inspector implementation that exposes drift databases -version: 0.4.0 +version: 0.5.0 homepage: https://github.com/NicolaVerbeeck/drift_local_storage_inspector funding: @@ -11,7 +11,7 @@ environment: sdk: ">=2.18.0 <3.0.0" dependencies: - drift: ^2.2.0 + drift: ^2.4.2 flutter: sdk: flutter storage_inspector: ^0.3.0