Prepare 2.10 drift release

This commit is contained in:
Simon Binder 2023-07-13 16:53:51 +02:00
parent 77fc624322
commit d0db9ac02f
No known key found for this signature in database
GPG Key ID: 7891917E4147B8C0
4 changed files with 11 additions and 3 deletions

View File

@ -2,6 +2,8 @@
- Adds the `schema steps` command to `drift_dev`. It generates an API making it
easier to write safe schema migrations ([docs](https://drift.simonbinder.eu/docs/advanced-features/migrations/#step-by-step)).
- Fix drift WASM not being unusable after a previous database implementation becomes
unavailable in the browser.
## 2.9.0

View File

@ -1,6 +1,6 @@
name: drift
description: Drift is a reactive library to store relational data in Dart and Flutter applications.
version: 2.9.0
version: 2.10.0
repository: https://github.com/simolus3/drift
homepage: https://drift.simonbinder.eu/
issue_tracker: https://github.com/simolus3/drift/issues

View File

@ -1,3 +1,9 @@
## 2.10.0
- Add the `schema steps` command to generate help in writing step-by-step schema migrations.
- Report a warning when Dart tables are implicitly added due to `include`. They should be
added to a database via `tables` or `views` explicitly.
## 2.9.0
- Add `fatal_warnings` builder option to fail the build when drift reports warnings.

View File

@ -1,6 +1,6 @@
name: drift_dev
description: Dev-dependency for users of drift. Contains the generator and development tools.
version: 2.9.0
version: 2.10.0
repository: https://github.com/simolus3/drift
homepage: https://drift.simonbinder.eu/
issue_tracker: https://github.com/simolus3/drift/issues
@ -30,7 +30,7 @@ dependencies:
io: ^1.0.3
# Drift-specific analysis and apis
drift: '>=2.9.0 <2.10.0'
drift: '>=2.10.0 <2.11.0'
sqlite3: '>=0.1.6 <3.0.0'
sqlparser: '^0.30.0'