Add changelog entry

This commit is contained in:
Simon Binder 2023-10-18 23:11:09 +02:00
parent 2ba3dfdcd8
commit 22cbd241c4
No known key found for this signature in database
GPG Key ID: 7891917E4147B8C0
2 changed files with 7 additions and 1 deletions

View File

@ -23,11 +23,15 @@ This includes drift databases, but preferences or secure local storage are also
## drift_db_viewer
[drift_db_viewer](https://pub.dev/packages/drift_db_viewer) (and [moor_db_viewer](https://pub.dev/packages/moor_db_viewer)) by [Koen Van Looveren](https://github.com/vanlooverenkoen)
The [drift_db_viewer](https://pub.dev/packages/drift_db_viewer) package by [Koen Van Looveren](https://github.com/vanlooverenkoen)
is a package to view a moor or drift database in your Flutter app directly.
It includes a graphical user interface showing you all rows for each table. You can also filter
rows by columns that you've added to your tables.
Starting with Drift 2.13 and Flutter 3.16, this database viewer is also available in DevTools! Navigate to
the "Drift" tab in DevTools and select your database class to view your database in Flutter's DevTools.
No additional dependencies are needed for this.
## moor2csv
[Dhiman Seal](https://github.com/Dhi13man) wrote a package to export moor or drift databases as csv files.

View File

@ -3,6 +3,8 @@
- Add APIs to setup Wasm databases with custom drift workers.
- Add support for [custom types](https://drift.simonbinder.eu/docs/sql-api/types/),
which are useful when extending drift to support other database engines.
- Drift now provides a DevTools extension embedding the drift inspector written by
[Koen Van Looveren](https://github.co).
- Add `Expression.and` and `Expression.or` to create disjunctions and conjunctions
of sub-predicates.
- Step-by-step migrations now save the intermediate schema version after each step.