File tree 3 files changed +7
-3
lines changed
connector-definition/.hasura-connector
3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## Unreleased
4
4
5
+ ## [[ 0.1.4] ( https://github.com/hasura/ndc-open-api-lambda/releases/tag/v0.1.4 )] 2024-09-12
6
+
7
+ - Fix spelling ([ #55 ] ( https://github.com/hasura/ndc-open-api-lambda/pull/55 ) )
8
+
5
9
## [[ 0.1.3] ( https://github.com/hasura/ndc-open-api-lambda/releases/tag/v0.1.3 )] 2024-09-09
6
10
7
11
- Update NDC NodeJS Lambda SDK version to ` v1.7.0 ` . ([ #53 ] ( https://github.com/hasura/ndc-open-api-lambda/pull/53 ) )
Original file line number Diff line number Diff line change @@ -14,11 +14,11 @@ supportedEnvironmentVariables:
14
14
commands :
15
15
update :
16
16
type : Dockerized
17
- dockerImage : ghcr.io/hasura/ndc-open-api-lambda:v0.1.3
17
+ dockerImage : ghcr.io/hasura/ndc-open-api-lambda:v0.1.4
18
18
commandArgs : [ "update" ]
19
19
cliPlugin :
20
20
type : Docker
21
- dockerImage : ghcr.io/hasura/ndc-open-api-lambda:v0.1.3
21
+ dockerImage : ghcr.io/hasura/ndc-open-api-lambda:v0.1.4
22
22
dockerComposeWatch :
23
23
# Rebuild the container if a new package restore is required because package[-lock].json changed
24
24
- path : package.json
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ import * as updateCmd from "./update";
5
5
import { exec , execSync } from "child_process" ;
6
6
7
7
export const program = new Command ( )
8
- . version ( "0.1.3 " )
8
+ . version ( "0.1.4 " )
9
9
. description ( "OAS Connector CLI" )
10
10
// .addCommand(initCmd.cmd) TODO: Enable when required by the CLI spec
11
11
. addCommand ( updateCmd . cmd )
You can’t perform that action at this time.
0 commit comments