- BREAKING CHANGE:
streams
andasync
libraries have been merged into oneasync
library - BREAKING CHANGE: Pre-1.8.0 SDKs are no longer supported.
- Quiver is now strong mode compliant
- New:
Optional
now implementsIterable
and its methods are generic (using temporary syntax) - New:
isNotEmpty
andisDigit
instrings.dart
- New:
Multimap.fromIterable
- Fix: Change
TreeSearch
fromclass
toenum
. - Fix:
fake_async.dart
timers are now active while executing the callback
- Add stats reporting for fake async tests. You can query the number of
pending microtasks and timers via
microtaskCount
,periodicTimerCount
,nonPeriodicTimerCount
.
- Switch from unittest to test.
- Bugfix: fixed return type on some methods (e.g.
where
ofIterable
s returned by Multimap.
- Bugfix: fix drifting times in
Metronome
. - Add
LruMap
to quiver/collection. - Un-deprecate Glob; feedback was that package:glob was not a suitable replacement in many cases. Key reasons: dependency on dart:io and significantly poorer performance.
- Add optional start param to
Glob.allMatches()
to match superclass method signature. - Add optional start param to
Pattern
returned bymatchesAny()
to match superclass method signature. - Deprecate Glob. Use package:glob. Will be removed in 0.22.0.
- Travis CI integration support added.
- Document that the deprecated functions
padLeft
,padRight
,trimLeft
,trimRight
will be removed in 0.22.0.
- Fix hanging
FakeAsync
unit test.
- Replace
equalsTester
dependency onunittest
with finer-grained dependency onmatcher
. path
is now a dev dependency.
- Multimap:
toMap()
is deprecated and replaced withasMap()
.toMap()
will be removed in v0.22.0. - Cleanup method signatures that were inconsistent with the core library.
- Added
areEqualityGroups
matcher for testingoperator==
andhashCode
. - CONTRIBUTING.md added.
- Multimap: better
toString()
on returned collections. - Multimap: Bugfix: support edits on empty value collections.
- Multimap: Added missing return statment in
fold
. - Added isEmpty() in
strings
. - Added max SDK constraint <2.0.0
- Minor updates to README.md.
- CHANGELOG.md added
- Corrected version constraint suggestion in README.md.