Skip to content

Commit 35ba5da

Browse files
committed
release version changes
1 parent 19b086a commit 35ba5da

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

changelog.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Open API Lambda Connector Changelog
22

3-
## [Unreleased]
3+
## [[0.0.2-alpha](https://github.com/hasura/ndc-open-api-lambda/releases/tag/v0.0.2-alpha)] 2024-04-19
44

55
- Added [Prettier Code Formatting](https://prettier.io/docs/en/api.html) to the generated `functions.ts` file
66
- 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

connector-definition/.hasura-connector/connector-metadata.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ supportedEnvironmentVariables:
1616
- name: NDC_LAMBDA_SDK_VERSION
1717
description: "Version of the NDC Lambda SDK to be used"
1818
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"
2020
dockerComposeWatch:
2121
# Rebuild the container if a new package restore is required because package[-lock].json changed
2222
- path: package.json

src/cli/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import * as updateCmd from "./update";
55
import { exec, execSync } from "child_process";
66

77
export const program = new Command()
8-
.version("0.0.1")
8+
.version("0.0.2-alpha")
99
.description("OAS Connector CLI")
1010
// .addCommand(initCmd.cmd) TODO: Enable when required by the CLI spec
1111
.addCommand(updateCmd.cmd)

0 commit comments

Comments
 (0)