Releases: kevinoid/stream-compare
Releases · kevinoid/stream-compare
v3.0.0
BREAKING CHANGES
- Additional events after
'end'
are compared by default, if they occur before
the event queue becomes empty since the previous event (i.e. beforesetImmediate
from the last event on a stream). options.delay
applies aftersetImmediate
from the last event.- Drop support for Node.js before 10.13.
Bug Fixes
makeIncremental
now considers whether additional events are expected, rather than whether'end'
has been emitted (f7ddc29)
v2.0.0
v1.0.0
v0.2.0
Breaking Changes
- Remove callback argument and return Promise unconditionally. Consider using
promise-nodeify to migrate.
New Features
endEvents
option for controlling comparison on stream end..checkpoint()
method on returned Promise allows caller to trigger compare..end()
method on returned Promise allows caller to end comparison.