File tree 3 files changed +3
-3
lines changed
connector-definition/.hasura-connector
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Open API Lambda Connector Changelog
2
2
3
- ## [ Unreleased ]
3
+ ## [[ 0.0.2-alpha ] ( https://github.com/hasura/ndc-open-api-lambda/releases/tag/v0.0.2-alpha )] 2024-04-19
4
4
5
5
- Added [ Prettier Code Formatting] ( https://prettier.io/docs/en/api.html ) to the generated ` functions.ts ` file
6
6
- Added ` --ndc-lambda-sdk ` flag and corresponding environment variable ` NDC_LAMBDA_SDK_VERSION ` that can be used to set the preferred version of NDC Lambda SDK to be used
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ supportedEnvironmentVariables:
16
16
- name : NDC_LAMBDA_SDK_VERSION
17
17
description : " Version of the NDC Lambda SDK to be used"
18
18
commands :
19
- update : " docker run --rm -e HASURA_PLUGIN_CONNECTOR_CONTEXT_PATH -e NDC_OAS_BASE_URL -e NDC_OAS_HEADERS -e NDC_OAS_DOCUMENT_URI -e NDC_OAS_LAMBDA_PRETTY_LOGS -e NDC_OAS_FILE_OVERWRITE -e NDC_LAMBDA_SDK_VERSION -v ${HASURA_PLUGIN_CONNECTOR_CONTEXT_PATH}:/etc/connector ghcr.io/hasura/ndc-open-api-lambda:v0.0.1 -alpha update"
19
+ update : " docker run --rm -e HASURA_PLUGIN_CONNECTOR_CONTEXT_PATH -e NDC_OAS_BASE_URL -e NDC_OAS_HEADERS -e NDC_OAS_DOCUMENT_URI -e NDC_OAS_LAMBDA_PRETTY_LOGS -e NDC_OAS_FILE_OVERWRITE -e NDC_LAMBDA_SDK_VERSION -v ${HASURA_PLUGIN_CONNECTOR_CONTEXT_PATH}:/etc/connector ghcr.io/hasura/ndc-open-api-lambda:v0.0.2 -alpha update"
20
20
dockerComposeWatch :
21
21
# Rebuild the container if a new package restore is required because package[-lock].json changed
22
22
- 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.0.1 " )
8
+ . version ( "0.0.2-alpha " )
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