File tree Expand file tree Collapse file tree 4 files changed +29
-31
lines changed Expand file tree Collapse file tree 4 files changed +29
-31
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,11 @@ This changelog documents the changes between release versions.
4
4
## [ Unreleased]
5
5
Changes to be included in the next upcoming release
6
6
7
+ ## [ 1.6.0] - 2024-08-08
8
+ - Updated the NDC TypeScript SDK to v6.0.0 ([ #39 ] ( https://github.com/hasura/ndc-nodejs-lambda/pull/39 ) )
9
+ - The ` /health ` endpoint is now unauthenticated
10
+ - Updated TypeScript to v5.5.4 ([ #39 ] ( https://github.com/hasura/ndc-nodejs-lambda/pull/39 ) )
11
+
7
12
## [ 1.5.0] - 2024-07-30
8
13
- Updated the NDC TypeScript SDK to v5.2.0 ([ #38 ] ( https://github.com/hasura/ndc-nodejs-lambda/pull/38 ) )
9
14
- The connector now listens on both ipv4 and ipv6 interfaces
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @hasura/ndc-lambda-sdk" ,
3
- "version" : " 1.5 .0" ,
3
+ "version" : " 1.6 .0" ,
4
4
"description" : " SDK that can automatically expose TypeScript functions as Hasura NDC functions/procedures" ,
5
5
"author" : " Hasura" ,
6
6
"license" : " Apache-2.0" ,
30
30
"url" : " git+https://github.com/hasura/ndc-nodejs-lambda.git"
31
31
},
32
32
"dependencies" : {
33
- "@hasura/ndc-sdk-typescript" : " ^5.2 .0" ,
34
- "@tsconfig/node20" : " ^20.1.3 " ,
33
+ "@hasura/ndc-sdk-typescript" : " ^6.0 .0" ,
34
+ "@tsconfig/node20" : " ^20.1.4 " ,
35
35
"commander" : " ^11.1.0" ,
36
36
"cross-spawn" : " ^7.0.3" ,
37
37
"p-limit" : " ^3.1.0" ,
38
38
"ts-api-utils" : " ^1.3.0" ,
39
39
"ts-node" : " ^10.9.2" ,
40
40
"ts-node-dev" : " ^2.0.0" ,
41
- "typescript" : " ^5.4.3 "
41
+ "typescript" : " ^5.5.4 "
42
42
},
43
43
"devDependencies" : {
44
44
"@types/chai" : " ^4.3.11" ,
Original file line number Diff line number Diff line change @@ -65,16 +65,13 @@ export function createConnector(options: ConnectorOptions): sdk.Connector<Config
65
65
return { } ;
66
66
} ,
67
67
68
- getCapabilities : function ( configuration : Configuration ) : sdk . CapabilitiesResponse {
68
+ getCapabilities : function ( configuration : Configuration ) : sdk . Capabilities {
69
69
return {
70
- version : "0.1.5" ,
71
- capabilities : {
72
- query : {
73
- variables : { } ,
74
- nested_fields : { } ,
75
- } ,
76
- mutation : { } ,
77
- }
70
+ query : {
71
+ variables : { } ,
72
+ nested_fields : { } ,
73
+ } ,
74
+ mutation : { } ,
78
75
} ;
79
76
} ,
80
77
@@ -98,10 +95,6 @@ export function createConnector(options: ConnectorOptions): sdk.Connector<Config
98
95
throw new Error ( "Function not implemented." ) ;
99
96
} ,
100
97
101
- healthCheck : async function ( configuration : Configuration , state : State ) : Promise < undefined > {
102
- return undefined ;
103
- } ,
104
-
105
98
fetchMetrics : async function ( configuration : Configuration , state : State ) : Promise < undefined > {
106
99
return undefined ;
107
100
} ,
You can’t perform that action at this time.
0 commit comments