Releases: greguz/fluido
Releases · greguz/fluido
v2.1.3
v2.1.2
v2.1.1
v2.1.0
v2.0.1
v2.0.0
Breaking changes
- Upgrade readable-stream@^4.0.0
- Deprecate and remove
readify
andwritify
in favor ofcompose
- Deprecate and remove
duplexify
in favor ofmerge
- Remove
collect
andsubscribe
(those functions should be left outside this lib) - Rename
isStream
asisNodeStream
- Rename
isReadable
asisReadableStream
- Rename
isWritable
asisWritableStream
- Rename
isDuplex
asisDuplexStream
- Remove
isReadableStrictly
andisWritableStrictly
- Remove custom stream options from
merge
function
Features
- All new features from readable-stream@^4.0.0
- Support native ESM imports
Fix
- Destroy correctly async (
_asyncRead
) Readable streams
v1.0.2
v1.0.1
v1.0.0
Breaking change
- Remove stream factories (
readable
,writable
,duplex
,transform
)- Use
new Readable(options)
instead ofreadable(options)
- Use
- Remove aliases (
readArray
,eos
,finished
,handle
,pump
)- Use the official exposed functions (
Readable.from
,finished
,pipeline
). Promises are supported.
- Use the official exposed functions (
- Remove
async
support fromreadable._read
method- Rename all Promised
_read
methods to_asyncRead
- Rename all Promised
- Remove boolean support from
collect
function- Use
'array'
instead
- Use
- Remove merging functions (
mergeReadables
andmergeWritables
) - Change
readify
signature (options first)- Update arguments order
- Change
writify
signature (options first)- Update arguments order
Feature
- Make this package a drop-in replacement for the
stream
module - Add
readable._asyncRead
method to support async reads