Prepare 1.6.0 drift release

This commit is contained in:
Simon Binder 2022-05-04 21:05:08 +02:00
parent f971d4ce91
commit 68dce48b6f
No known key found for this signature in database
GPG Key ID: 7891917E4147B8C0
2 changed files with 9 additions and 1 deletions

View File

@ -1,4 +1,4 @@
## 1.6.0-dev
## 1.6.0
- Add the `unique()` method to columns and the `uniqueKeys` override to tables
to define unique constraints in Dart tables.
@ -10,6 +10,9 @@
to access sqlite3 without any external JavaScript libraries, but requires you to
add a [WebAssembly module](https://github.com/simolus3/sqlite3.dart/tree/main/sqlite3#wasm-web-support)
to the `web/` folder.
Please note that this specific library is not subject to semantic versioning
until it leaves its experimental state. It also isn't suitable for production
use at the moment.
- Internally use `package:js` to wrap sql.js.
## 1.5.0

View File

@ -4,6 +4,11 @@
/// This library is highly experimental and not production readdy at the moment.
/// It exists for development and testing purposes for interested users.
///
/// While this library is marked as [experimental], it is not subject to
/// semantic versioning. Future drift updates with a minor update might break
/// APIs defined in this package or change the way data is persisted in
/// backwards-incompatible ways.
///
/// To use drift on the web, use the `package:drift/web.dart` library as
/// described in the [documentation](https://drift.simonbinder.eu/web/).
@experimental