Skip to content

Commit 5515359

Browse files
authored
Updated Sailor (#57)
1 parent 3a46376 commit 5515359

File tree

5 files changed

+429
-731
lines changed

5 files changed

+429
-731
lines changed

.circleci/config.yml

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: 2.1
22
parameters:
33
node-version:
44
type: string
5-
default: "16.13.2"
5+
default: "18.13.0"
66
orbs:
77
node: circleci/[email protected]
88
slack: circleci/[email protected]
@@ -72,23 +72,23 @@ commands:
7272
jobs:
7373
test:
7474
docker:
75-
- image: circleci/node:14-stretch
75+
- image: cimg/node:18.13.0
7676
steps:
7777
- checkout
7878
- node/install:
7979
node-version: << pipeline.parameters.node-version >>
80-
- run:
81-
name: Audit Dependencies
82-
command: npm audit --audit-level=high
8380
- node/install-packages:
8481
cache-path: ./node_modules
8582
override-ci-command: npm install
83+
- run:
84+
name: Audit Dependencies
85+
command: npm run audit
8686
- run:
8787
name: Running Mocha Tests
8888
command: npm test
8989
build:
9090
docker:
91-
- image: circleci/node:14-stretch
91+
- image: cimg/node:18.13.0
9292
user: root
9393
steps:
9494
- checkout
@@ -118,8 +118,10 @@ workflows:
118118
jobs:
119119
- build:
120120
name: "Build and publish docker image"
121+
context:
122+
- componentspusher
121123
filters:
122124
branches:
123125
ignore: /.*/
124126
tags:
125-
only: /^([0-9]+)\.([0-9]+)\.([0-9]+)(?:-([0-9A-Za-z-]+(?:\.[0-9A-Za-z-]+)*))?(?:\+[0-9A-Za-z-]+)?$/
127+
only: /^([0-9]+)\.([0-9]+)\.([0-9]+)(?:-([0-9A-Za-z-]+(?:\.[0-9A-Za-z-]+)*))?(?:\+[0-9A-Za-z-]+)?$/

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 1.0.13 (March 22, 2024)
2+
3+
* Updated Sailor version to 2.7.2
4+
* Updated @elastic.io/component-commons-library to 3.2.0
5+
16
## 1.0.12 (October 28, 2022)
27

38
* Update Sailor version to 2.7.1

component.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
{
22
"title": "Transformation",
3-
"version": "1.0.12",
3+
"version": "1.0.13",
44
"description": "Generic Data Transformation Component",
5+
"docsUrl": "https://docs.elastic.io/components/jsonata/index.html",
56
"actions": {
67
"transform": {
78
"title": "Transform",

0 commit comments

Comments
 (0)