Skip to content

Commit e8eafa2

Browse files
committed
feat: add observable queue
1 parent 13b7e6d commit e8eafa2

File tree

6 files changed

+960
-4
lines changed

6 files changed

+960
-4
lines changed

mobx/CHANGELOG.md

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
1+
## 2.1.4
2+
3+
- feat: add ObservableQueue by [@amondnet](https://github.com/amondnet) in [#892](https://github.com/mobxjs/mobx.dart/pull/892)
4+
15
## 2.1.2 - 2.1.3
26

3-
- Fix tests in dart 2.19 - [@amondnet](https://github.com/amondnet)
7+
- Fix tests in dart 2.19 by [@amondnet](https://github.com/amondnet) in [#879](https://github.com/mobxjs/mobx.dart/pull/879)
48
- Dart formatting fixes
59

610
## 2.1.1
711

8-
- Allow a custom equals parameter for ObservableStream - [@amondnet](https://github.com/amondnet)
12+
- Allow a custom equals parameter for ObservableStream by [@amondnet](https://github.com/amondnet) in [#771](https://github.com/mobxjs/mobx.dart/pull/771)
913

1014
## 2.1.0
1115

mobx/lib/src/api/observable_collections.dart

+1
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@ import 'package:mobx/mobx.dart';
77
part 'observable_collections/observable_list.dart';
88
part 'observable_collections/observable_map.dart';
99
part 'observable_collections/observable_set.dart';
10+
part 'observable_collections/observable_queue.dart';

0 commit comments

Comments
 (0)