Skip to content

Commit

Permalink
update Sailor to 2.6.7 (#69)
Browse files Browse the repository at this point in the history
* update Sailor to 2.6.7
  • Loading branch information
kirill-levitskiy authored May 21, 2020
1 parent c6a851a commit faa0cbd
Show file tree
Hide file tree
Showing 7 changed files with 102 additions and 23 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 2.1.2 (May 22, 2020)

* Update sailor version to 2.6.7

## 2.1.1 (May 7, 2020)

* Add input metadata for objects processing
Expand Down
110 changes: 91 additions & 19 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "csv-component",
"version": "2.1.1",
"version": "2.1.2",
"description": "CSV Component for elastic.io platform",
"main": "index.js",
"scripts": {
Expand All @@ -9,7 +9,7 @@
"integration-test": "mocha spec-integration"
},
"engines": {
"node": "12"
"node": ">=12.13.0"
},
"repository": {
"type": "git",
Expand All @@ -33,7 +33,7 @@
"csv-parser": "2.2.0",
"elasticio-node": "0.0.9",
"elasticio-rest-node": "1.2.3",
"elasticio-sailor-nodejs": "2.6.5",
"elasticio-sailor-nodejs": "2.6.7",
"lodash": "4.17.13",
"moment": "2.24.0",
"node-uuid": "1.4.3",
Expand Down
2 changes: 1 addition & 1 deletion spec/testrunner.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ function TestRunner(cb) {
const that = this;
events.EventEmitter.call(this);
this.on('end', () => {
console.log('Ended!');
logger.info('Ended!');
cb(that);
});
this.data = [];
Expand Down
1 change: 1 addition & 0 deletions spec/write.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ if (fs.existsSync('.env')) {

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

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

Expand Down
1 change: 1 addition & 0 deletions spec/writeFromArray.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ if (fs.existsSync('.env')) {

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

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

Expand Down
1 change: 1 addition & 0 deletions spec/writeFromJson.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ if (fs.existsSync('.env')) {

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

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

Expand Down

0 comments on commit faa0cbd

Please sign in to comment.