Skip to content

Commit faa0cbd

Browse files
update Sailor to 2.6.7 (#69)
* update Sailor to 2.6.7
1 parent c6a851a commit faa0cbd

File tree

7 files changed

+102
-23
lines changed

7 files changed

+102
-23
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 2.1.2 (May 22, 2020)
2+
3+
* Update sailor version to 2.6.7
4+
15
## 2.1.1 (May 7, 2020)
26

37
* Add input metadata for objects processing

package-lock.json

Lines changed: 91 additions & 19 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "csv-component",
3-
"version": "2.1.1",
3+
"version": "2.1.2",
44
"description": "CSV Component for elastic.io platform",
55
"main": "index.js",
66
"scripts": {
@@ -9,7 +9,7 @@
99
"integration-test": "mocha spec-integration"
1010
},
1111
"engines": {
12-
"node": "12"
12+
"node": ">=12.13.0"
1313
},
1414
"repository": {
1515
"type": "git",
@@ -33,7 +33,7 @@
3333
"csv-parser": "2.2.0",
3434
"elasticio-node": "0.0.9",
3535
"elasticio-rest-node": "1.2.3",
36-
"elasticio-sailor-nodejs": "2.6.5",
36+
"elasticio-sailor-nodejs": "2.6.7",
3737
"lodash": "4.17.13",
3838
"moment": "2.24.0",
3939
"node-uuid": "1.4.3",

spec/testrunner.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ function TestRunner(cb) {
66
const that = this;
77
events.EventEmitter.call(this);
88
this.on('end', () => {
9-
console.log('Ended!');
9+
logger.info('Ended!');
1010
cb(that);
1111
});
1212
this.data = [];

spec/write.spec.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ if (fs.existsSync('.env')) {
1919

2020
const write = require('../lib/actions/write.js');
2121

22+
// eslint-disable-next-line func-names
2223
describe('CSV Write component', function () {
2324
this.timeout(15000);
2425

spec/writeFromArray.spec.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ if (fs.existsSync('.env')) {
1919

2020
const write = require('../lib/actions/writeFromArray.js');
2121

22+
// eslint-disable-next-line func-names
2223
describe('CSV Write From Array component', function () {
2324
this.timeout(15000);
2425

spec/writeFromJson.spec.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ if (fs.existsSync('.env')) {
1919

2020
const write = require('../lib/actions/writeFromJson.js');
2121

22+
// eslint-disable-next-line func-names
2223
describe('CSV Write From JSON component', function () {
2324
this.timeout(15000);
2425

0 commit comments

Comments
 (0)