Skip to content

Commit e925a9b

Browse files
authored
Update to Sailor 2.7.1 (#72)
1 parent 2ddfa9b commit e925a9b

File tree

7 files changed

+4031
-1354
lines changed

7 files changed

+4031
-1354
lines changed

.circleci/config.yml

Lines changed: 6 additions & 4 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,7 +72,7 @@ commands:
7272
jobs:
7373
test:
7474
docker: # run the steps with Docker
75-
- image: cimg/base:stable
75+
- image: cimg/node:18.13.0
7676
steps:
7777
- checkout
7878
- node/install:
@@ -82,13 +82,13 @@ jobs:
8282
override-ci-command: npm install
8383
- run:
8484
name: Audit Dependencies
85-
command: npm audit --production --audit-level=high
85+
command: npm run audit
8686
- run:
8787
name: test
8888
command: npm test
8989
build:
9090
docker:
91-
- image: cimg/base:stable
91+
- image: cimg/node:18.13.0
9292
user: root
9393
steps:
9494
- checkout
@@ -118,6 +118,8 @@ workflows:
118118
jobs:
119119
- build:
120120
name: "Build and publish docker image"
121+
context:
122+
- componentspusher
121123
filters:
122124
branches:
123125
ignore: /.*/

.grype-ignore.yaml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
ignore:
2+
- vulnerability: CVE-2022-3996
3+
package:
4+
name: libssl3
5+
version: 3.0.7-r0
6+
7+
- vulnerability: CVE-2022-3996
8+
package:
9+
name: libcrypto3
10+
version: 3.0.7-r0

.nsprc

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"GHSA-27h2-hvpr-p74q": {
3+
"active": true,
4+
"notes": "We don't use verify function from jsonwebtoken, so not affected"
5+
},
6+
"GHSA-wc69-rhjr-hc9g": {
7+
"active": true,
8+
"notes": "Bunyan library set only new Date to momentjs as parameter"
9+
},
10+
"GHSA-hrpp-h998-j3pp": {
11+
"active": true,
12+
"notes": "There is no query-string user input in sailor"
13+
}
14+
}

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 1.2.9 (February 10, 2023)
2+
3+
* Update Sailor version to 2.7.1
4+
15
## 1.2.8 (April 08, 2022)
26

37
* Update Sailor version to 2.6.27

component.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"title": "Node.js Code",
3-
"version": "1.2.8",
3+
"version": "1.2.9",
44
"description": "You can write your own code and deploy it as part of integration process.",
55
"docsUrl": "http://go2.elastic.io/code-component",
66
"fields": {

0 commit comments

Comments
 (0)