mirror of https://github.com/AMT-Cheif/drift.git
Prepare to release moor 4.3.2
This commit is contained in:
parent
04caf09abb
commit
ac30bb5989
|
@ -1,3 +1,9 @@
|
||||||
|
## 4.3.2
|
||||||
|
|
||||||
|
- Fix `insertReturning` not updating streams
|
||||||
|
- Fix streams emitting stale data if a new subscriber attaches immediately
|
||||||
|
after an update.
|
||||||
|
|
||||||
## 4.3.1
|
## 4.3.1
|
||||||
|
|
||||||
- Fix encoding table updates without a kind over isolates
|
- Fix encoding table updates without a kind over isolates
|
||||||
|
|
|
@ -13,8 +13,6 @@ class Lock {
|
||||||
final blockCompleted = Completer<void>();
|
final blockCompleted = Completer<void>();
|
||||||
_last = blockCompleted.future;
|
_last = blockCompleted.future;
|
||||||
|
|
||||||
// Note: We can't use async/await here because this future must complete
|
|
||||||
// just before the blockCompleted completer.
|
|
||||||
Future<T> callBlockAndComplete() async {
|
Future<T> callBlockAndComplete() async {
|
||||||
try {
|
try {
|
||||||
return await block();
|
return await block();
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
name: moor
|
name: moor
|
||||||
description: Moor is a safe and reactive persistence library for Dart applications
|
description: Moor is a safe and reactive persistence library for Dart applications
|
||||||
version: 4.3.1
|
version: 4.3.2
|
||||||
repository: https://github.com/simolus3/moor
|
repository: https://github.com/simolus3/moor
|
||||||
homepage: https://moor.simonbinder.eu/
|
homepage: https://moor.simonbinder.eu/
|
||||||
issue_tracker: https://github.com/simolus3/moor/issues
|
issue_tracker: https://github.com/simolus3/moor/issues
|
||||||
|
|
Loading…
Reference in New Issue