Skip to content

Commit 7c1f637

Browse files
Update TypeScript version and npm in the Docker image (#53)
1 parent 2107b77 commit 7c1f637

File tree

5 files changed

+25
-17
lines changed

5 files changed

+25
-17
lines changed

.editorconfig

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,6 @@ end_of_line = lf
1010
charset = utf-8
1111
trim_trailing_whitespace = true
1212
insert_final_newline = true
13+
14+
[Makefile]
15+
indent_style = tab

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ This changelog documents the changes between release versions.
44
## [Unreleased]
55
Changes to be included in the next upcoming release
66

7+
## [1.12.0] - 2025-03-21
8+
- Updated to use [TypeScript v5.8.2](https://devblogs.microsoft.com/typescript/announcing-typescript-5-8/) ([#53](https://github.com/hasura/ndc-nodejs-lambda/pull/53))
9+
- Updated `cross-spawn` dependency to resolve [security vulnerability](https://www.cve.org/CVERecord?id=CVE-2024-21538) ([#53](https://github.com/hasura/ndc-nodejs-lambda/pull/53))
10+
711
## [1.11.0] - 2025-01-22
812

913
### Added

Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
FROM node:20-alpine
22
ARG CONNECTOR_VERSION
33

4+
RUN npm update -g npm
45
RUN apk add jq curl
56

67
COPY /docker /scripts

ndc-lambda-sdk/package-lock.json

Lines changed: 13 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ndc-lambda-sdk/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hasura/ndc-lambda-sdk",
3-
"version": "1.11.0",
3+
"version": "1.12.0",
44
"description": "SDK that can automatically expose TypeScript functions as Hasura NDC functions/procedures",
55
"author": "Hasura",
66
"license": "Apache-2.0",
@@ -35,11 +35,11 @@
3535
"@hasura/ts-node-dev": "^2.1.0",
3636
"@tsconfig/node20": "^20.1.4",
3737
"commander": "^11.1.0",
38-
"cross-spawn": "^7.0.3",
38+
"cross-spawn": "^7.0.6",
3939
"p-limit": "^3.1.0",
40-
"ts-api-utils": "^1.3.0",
40+
"ts-api-utils": "^2.1.0",
4141
"ts-node": "^10.9.2",
42-
"typescript": "^5.7.3"
42+
"typescript": "^5.8.2"
4343
},
4444
"devDependencies": {
4545
"@types/chai": "^4.3.11",

0 commit comments

Comments
 (0)