Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add observable queue #892

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 6 additions & 2 deletions mobx/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
## 2.1.4

- feat: add ObservableQueue by [@amondnet](https://github.com/amondnet) in [#892](https://github.com/mobxjs/mobx.dart/pull/892)

## 2.1.2 - 2.1.3

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

## 2.1.1

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

## 2.1.0

Expand Down
1 change: 1 addition & 0 deletions mobx/lib/src/api/observable_collections.dart
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ import 'package:mobx/mobx.dart';
part 'observable_collections/observable_list.dart';
part 'observable_collections/observable_map.dart';
part 'observable_collections/observable_set.dart';
part 'observable_collections/observable_queue.dart';