Skip to content

Commit 18d2c9e

Browse files
Update TypeScript, use bash in Docker scripts, bump version to 1.15.0 (#57)
1 parent 6e3a664 commit 18d2c9e

File tree

7 files changed

+16
-13
lines changed

7 files changed

+16
-13
lines changed

CHANGELOG.md

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

7+
## [1.15.0] - 2025-05-20
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/57))
9+
710
## [1.14.0] - 2025-05-12
8-
- Increase `bodyLimit` to 30mb
11+
- Increase the limit of the size of the request's body to 30 MB ([#56](https://github.com/hasura/ndc-nodejs-lambda/pull/56))
912

1013
## [1.13.0] - 2025-03-27
1114
- Added native toolchain support for connector version upgrading and fixed Dockerized connector version upgrading ([#55](https://github.com/hasura/ndc-nodejs-lambda/pull/55))

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ EXPOSE 8080
1616

1717
HEALTHCHECK --interval=5s --timeout=10s --start-period=1s --retries=3 CMD [ "sh", "-c", "exec curl -f http://localhost:${HASURA_CONNECTOR_PORT:-8080}/health" ]
1818

19-
CMD [ "sh", "/scripts/start.sh" ]
19+
CMD [ "bash", "/scripts/start.sh" ]

docker/package-restore.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env sh
1+
#!/usr/bin/env bash
22
set -eu -o pipefail
33

44
cd /functions

docker/start.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env sh
1+
#!/usr/bin/env bash
22
set -eu -o pipefail
33

44
/scripts/package-restore.sh

docker/upgrade.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env sh
1+
#!/usr/bin/env bash
22
set -eu -o pipefail
33

44
# We do a --package-lock-only because we don't want to change the node_modules directory.

ndc-lambda-sdk/package-lock.json

Lines changed: 6 additions & 6 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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hasura/ndc-lambda-sdk",
3-
"version": "1.14.0",
3+
"version": "1.15.0",
44
"description": "SDK that can automatically expose TypeScript functions as Hasura NDC functions/procedures",
55
"author": "Hasura",
66
"license": "Apache-2.0",
@@ -39,7 +39,7 @@
3939
"p-limit": "^3.1.0",
4040
"ts-api-utils": "^2.1.0",
4141
"ts-node": "^10.9.2",
42-
"typescript": "^5.8.2"
42+
"typescript": "^5.8.3"
4343
},
4444
"devDependencies": {
4545
"@types/chai": "^4.3.11",

0 commit comments

Comments
 (0)