Skip to content

Commit 5fbbc0a

Browse files
Update sailor version to 2.6.7 (#45)
1 parent d5edc49 commit 5fbbc0a

File tree

4 files changed

+106
-44
lines changed

4 files changed

+106
-44
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 1.1.1 (May 19, 2020)
2+
* Update sailor version to 2.6.7
3+
14
## 1.1.0 (May 7, 2020)
25
* Add re-assemble action
36
* Update dependencies

component.json

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@
66
"split": {
77
"deprecated": true,
88
"title": "Split Message By Array",
9-
"description": "This action is deprecated, please use Split on JSONata Expression instead.",
9+
"help": {
10+
"description": "This action is deprecated, please use Split on JSONata Expression instead.",
11+
"link": "/components/splitter/index.html#split-message-by-array"
12+
},
1013
"main": "./split.js",
1114
"fields": {
1215
"splitter": {
@@ -18,7 +21,10 @@
1821
},
1922
"splitOnJsonataExpression": {
2023
"title": "Split on JSONata Expression",
21-
"description": "Evaluates the input based on a JSONata expression. Assuming the evaluation is an array, the array is split and emitted to multiple messages.",
24+
"help": {
25+
"description": "Evaluates the input based on a JSONata expression. Assuming the evaluation is an array, the array is split and emitted to multiple messages.",
26+
"link": "/components/splitter/index.html#split-on-jsonata-expression"
27+
},
2228
"main": "./lib/actions/splitOnJsonata.js",
2329
"fields": {
2430
"expression": {
@@ -32,7 +38,7 @@
3238
"title": "Re-assemble Messages",
3339
"help": {
3440
"description": "Inverse operation from split: Re-assemble a group of messages that have previously been split",
35-
"link": "#re-assemble-messages"
41+
"link": "/components/splitter/index.html#re-assemble-messages"
3642
},
3743
"main": "./lib/actions/reassemble.js",
3844
"fields": {},

package-lock.json

Lines changed: 91 additions & 38 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": "@elasticio/splitter",
3-
"version": "1.1.0",
3+
"version": "1.1.1",
44
"description": "elastic.io component for splitting incoming messages",
55
"scripts": {
66
"pretest": "eslint split.js lib spec --fix",
@@ -13,12 +13,12 @@
1313
"author": "elastic.io GmbH",
1414
"license": "BSD-2-Clause",
1515
"engines": {
16-
"node": "12"
16+
"node": ">=12.13.0"
1717
},
1818
"dependencies": {
1919
"@elastic.io/component-commons-library": "1.1.2",
2020
"elasticio-node": "0.0.9",
21-
"elasticio-sailor-nodejs": "2.6.5",
21+
"elasticio-sailor-nodejs": "2.6.7",
2222
"lodash": "4.17.15"
2323
},
2424
"devDependencies": {

0 commit comments

Comments
 (0)