diff --git a/CHANGELOG.md b/CHANGELOG.md index 61051a6..80f922b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,9 @@ This changelog documents changes between release tags. ## [Unreleased] Upcoming changes for the next versioned release. +## [0.0.8] +* Update connector-metadata.yaml + ## [0.0.7] * Fix the connector-metadata.yaml * Add check for if environment variables are a blank string for optional env vars diff --git a/connector-definition/connector-metadata.yaml b/connector-definition/connector-metadata.yaml index 80f4058..2eb3727 100644 --- a/connector-definition/connector-metadata.yaml +++ b/connector-definition/connector-metadata.yaml @@ -1,6 +1,6 @@ packagingDefinition: type: PrebuiltDockerImage - dockerImage: ghcr.io/hasura/ndc-turso:v0.0.7 + dockerImage: ghcr.io/hasura/ndc-turso:v0.0.8 supportedEnvironmentVariables: - name: TURSO_URL description: The url for the Turso database @@ -9,7 +9,7 @@ supportedEnvironmentVariables: - name: TURSO_SYNC_URL description: The Sync URL for Turso for replicas commands: - update: docker run -it --rm -e TURSO_URL="$TURSO_URL" -e TURSO_AUTH_TOKEN="$TURSO_AUTH_TOKEN" -e TURSO_SYNC_URL="$TURSO_SYNC_URL" -v "$HASURA_PLUGIN_CONNECTOR_CONTEXT_PATH":/etc/connector ghcr.io/hasura/ndc-turso:v0.0.7 update + update: docker run --rm -e TURSO_URL="$TURSO_URL" -e TURSO_AUTH_TOKEN="$TURSO_AUTH_TOKEN" -e TURSO_SYNC_URL="$TURSO_SYNC_URL" -v "$HASURA_PLUGIN_CONNECTOR_CONTEXT_PATH":/etc/connector ghcr.io/hasura/ndc-turso:v0.0.8 update dockerComposeWatch: - path: ./ target: /etc/connector diff --git a/package-lock.json b/package-lock.json index c772880..8822f5f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "ndc-turso", - "version": "0.0.7", + "version": "0.0.8", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "ndc-turso", - "version": "0.0.7", + "version": "0.0.8", "dependencies": { "@hasura/ndc-sdk-typescript": "^4.2.1", "@json-schema-tools/meta-schema": "^1.7.0", diff --git a/package.json b/package.json index 59652a0..94c05ac 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ndc-turso", - "version": "0.0.7", + "version": "0.0.8", "main": "index.js", "author": "Tristen Harr", "scripts": {},