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
4 changes: 2 additions & 2 deletions .github/workflows/ndc-nodejs-lambda-connector.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ jobs:
tags: ${{ env.DOCKER_REGISTRY }}/${{ env.DOCKER_IMAGE_NAME }}:scan

- name: Run Trivy vulnerability scanner (json output)
uses: aquasecurity/trivy-action@0.32.0
uses: aquasecurity/trivy-action@0.34.2
with:
image-ref: ${{ env.DOCKER_REGISTRY }}/${{ env.DOCKER_IMAGE_NAME }}:scan
format: json
Expand All @@ -152,7 +152,7 @@ jobs:
team=engine

- name: Fail build on High/Critical Vulnerabilities
uses: aquasecurity/trivy-action@0.32.0
uses: aquasecurity/trivy-action@0.34.2
with:
skip-setup-trivy: true
image-ref: ${{ env.DOCKER_REGISTRY }}/${{ env.DOCKER_IMAGE_NAME }}:scan
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ This changelog documents the changes between release versions.

Changes to be included in the next upcoming release

## [1.20.3] - 2026-03-06

- Updated ndc-sdk-typescript to v8.5.0

## [1.20.2] - 2026-02-07

- Updated ndc-sdk-typescript to v8.4.0 to address CVE-2026-25223 ([#66](https://github.com/hasura/ndc-nodejs-lambda/pull/66))
Expand Down
70 changes: 13 additions & 57 deletions ndc-lambda-sdk/package-lock.json

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

4 changes: 2 additions & 2 deletions ndc-lambda-sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hasura/ndc-lambda-sdk",
"version": "1.20.2",
"version": "1.20.3",
"description": "SDK that can automatically expose TypeScript functions as Hasura NDC functions/procedures",
"author": "Hasura",
"license": "Apache-2.0",
Expand Down Expand Up @@ -31,7 +31,7 @@
"url": "git+https://github.com/hasura/ndc-nodejs-lambda.git"
},
"dependencies": {
"@hasura/ndc-sdk-typescript": "^8.4.0",
"@hasura/ndc-sdk-typescript": "^8.5.0",
"@hasura/ts-node-dev": "^2.1.0",
"@tsconfig/node20": "^20.1.4",
"commander": "^11.1.0",
Expand Down
Loading