Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: 2.1
parameters:
node-version:
type: string
default: "16.13.2"
default: "18.13.0"
orbs:
node: circleci/[email protected]
slack: circleci/[email protected]
Expand Down Expand Up @@ -72,7 +72,7 @@ commands:
jobs:
test:
docker: # run the steps with Docker
- image: cimg/base:stable
- image: cimg/node:18.13.0
steps:
- checkout
- node/install:
Expand All @@ -82,13 +82,13 @@ jobs:
override-ci-command: npm install
- run:
name: Audit Dependencies
command: npm audit --production --audit-level=high
command: npm run audit
- run:
name: test
command: npm test
build:
docker:
- image: cimg/base:stable
- image: cimg/node:18.13.0
user: root
steps:
- checkout
Expand Down Expand Up @@ -118,6 +118,8 @@ workflows:
jobs:
- build:
name: "Build and publish docker image"
context:
- componentspusher
filters:
branches:
ignore: /.*/
Expand Down
10 changes: 10 additions & 0 deletions .grype-ignore.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
ignore:
- vulnerability: CVE-2022-3996
package:
name: libssl3
version: 3.0.7-r0

- vulnerability: CVE-2022-3996
package:
name: libcrypto3
version: 3.0.7-r0
14 changes: 14 additions & 0 deletions .nsprc
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"GHSA-27h2-hvpr-p74q": {
"active": true,
"notes": "We don't use verify function from jsonwebtoken, so not affected"
},
"GHSA-wc69-rhjr-hc9g": {
"active": true,
"notes": "Bunyan library set only new Date to momentjs as parameter"
},
"GHSA-hrpp-h998-j3pp": {
"active": true,
"notes": "There is no query-string user input in sailor"
}
}
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.2.9 (February 10, 2023)

* Update Sailor version to 2.7.1

## 1.2.8 (April 08, 2022)

* Update Sailor version to 2.6.27
Expand Down
2 changes: 1 addition & 1 deletion component.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"title": "Node.js Code",
"version": "1.2.8",
"version": "1.2.9",
"description": "You can write your own code and deploy it as part of integration process.",
"docsUrl": "http://go2.elastic.io/code-component",
"fields": {
Expand Down
Loading