All Versions
10
Latest Version
Avg Release Cycle
41 days
Latest Release
1612 days ago
Changelog History
Changelog History
-
v4.0.0 Changes
October 24, 2020- stream-json is now used instead of JSONStream for JSON processor.
- ๐ JSON processor supports now files encoded in UTF-8 with BOM.
- ๐ Fixed JSON processor not working with bellboy-live-reporter.
๐ฅ BREAKING CHANGES
jsonPath is now RegExp
jsonPath
in JSON processor and HTTP processor is now aRegExp
and if not specified, a root array will be streamed.โ Internally when JSON is streamed, current path is joined together using
.
as separator and then tested against provided regular expression. As an example, if you have this JSON object:{ "animals": { "dogs": ["pug", "bulldog", "poodle"] } }
And want to stream
dogs
array, path you will need to use is/animals.dogs.(\d+)/
.
(\d+)
is used here because each index of the array is a number.nextRequest doesn't have header anymore
๐ In HTTP processor header parameter was removed for
nextRequest
function. -
v3.0.0 Changes
September 16, 2020DelimiterProcessor
now hashasHeader
,qualifier
,delimiter
,rowSeparator
options.
๐ฅ BREAKING CHANGES
delimiter
option renamed torowSeparator
.DelimitedProcessor
now emits an object instead of string:
Before:
"Hello, world!"
After:
{header: [],arr: ["Hello, world!"],obj: undefined,row: "Hello, world!"}
-
v2.13.0 Changes
July 28, 2020- โก๏ธ Update
xlstream
package and allow number to be passed tohasHeader
option ofExcelProcessor
.
- โก๏ธ Update
-
v2.12.0 Changes
May 22, 2020- ๐ Change
ExcelProcessor
sheets
function to support xlstream 2.0.0.
- ๐ Change
-
v2.11.0 Changes
May 20, 2020- ๐ Allow
PostgresDestination
to have column names that doesn't adhere to js syntax for variable names.
- ๐ Allow
-
v2.10.0 Changes
May 08, 2020- Reporters can now be
async
.
- Reporters can now be
-
v2.9.0 Changes
May 08, 2020- โ Added extended event information.
- โ Added new optional field
jobName
.
-
v2.8.4 Changes
May 07, 2020path
is now optional field for directory processors. If not specified, current directory will be matched.- โก๏ธ Updated
pg
packages to support 14 version of nodejs.
-
v2.8.3 Changes
April 09, 2020- ๐ Support xlstream 1.2
-
v2.8.0 Changes
October 25, 2019- โ Add
job.stop
method which stops job execution. - โ Add
job.onAny
method which allows to listen for any event. - โก๏ธ Update docs section about events.
- โ Add