All Versions
35
Latest Version
Avg Release Cycle
93 days
Latest Release
1085 days ago
Changelog History
Page 2
Changelog History
Page 2
-
v2.13.3 Changes
February 20, 2019๐ Bugfix
- ๐ Fixes a bug in
pipe
where errors would be emitted twice.
- ๐ Fixes a bug in
-
v2.13.2 Changes
February 20, 2019๐ Bugfix
- ๐ Fixes a regression in the
through
transform. If it is called with an un-paused through stream and the source Highland stream has buffered data (or generates data synchronously), then that data may be lost. #671. - ๐ Fix
pipe
so that it does not emit data synchronously. This allows for chained pipes to work properly even if a stream in the middle of the pipe is unpaused. #671.
- ๐ Fixes a regression in the
-
v2.13.1 Changes
February 15, 2019๐ Bugfix
- ๐ Fixes a potential deadlock when wrapping node
Readables
in node 10+. #670.
- ๐ Fixes a potential deadlock when wrapping node
-
v2.13.0 Changes
March 21, 2018๐ New additions
isNil
: Returnstrue
if the argument is the end of stream marker. This can be useful as a user-defined type guard in Typescript. #645
-
v2.12.0 Changes
๐ New additions
toNodeStream
: Returns a native node Readable #644
-
v2.11.1 Changes
๐ Bugfix
- โ Remove usages of
Function.prototype.bind
. We support IE8. #632. - โ Add a section about supported JS engines to the documentation.
- โ Remove usages of
-
v2.10.4 Changes
๐ Bugfix
- Same as
2.10.3
but with a more conservative fix to minimize the risk of regressions.
- Same as
-
v2.10.3 Changes
๐ Bugfix
- In certain cases, consuming a stream that has been resumed may cause a stream generator/consume handler to be called twice without next() ever being called. This is mostly relevant for .each(...).done(...) use cases. Noticed in #570 (comment). #608.