Skip to content

Commit 9d1130b

Browse files
authored
Update cli images in metadata and connector versions (#34)
1 parent 16ceee0 commit 9d1130b

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

Diff for: ndc-cli/src/main/kotlin/io/hasura/cli/SnowflakeConfigGenerator.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ object SnowflakeConfigGenerator : IConfigGenerator {
2525

2626
// Don't use Arrow memory format so we don't need to --add-opens=java.base/java.nio=ALL-UNNAMED to the JVM
2727
val modifiedJdbcUrl = jdbcUrlString.find { it == '?' }
28-
?.let { "$jdbcUrl&JDBC_QUERY_RESULT_FORMAT=JSON" }
29-
?: "$jdbcUrl?JDBC_QUERY_RESULT_FORMAT=JSON"
28+
?.let { "$jdbcUrlString&JDBC_QUERY_RESULT_FORMAT=JSON" }
29+
?: "$jdbcUrlString?JDBC_QUERY_RESULT_FORMAT=JSON"
3030

3131
val ctx = DSL.using(modifiedJdbcUrl)
3232

Diff for: ndc-connector-mysql/.hasura-connector/connector-metadata.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ commands:
1010
-e JDBC_URL \
1111
-e HASURA_PLUGIN_CONNECTOR_CONTEXT_PATH \
1212
-v ${HASURA_PLUGIN_CONNECTOR_CONTEXT_PATH}:/app/output \
13-
ghcr.io/hasura/ndc-jvm-cli:v0.1.3 update \
13+
ghcr.io/hasura/ndc-jvm-cli:v1.0.0 update \
1414
--database MYSQL \
1515
--schemas $JDBC_SCHEMAS \
1616
--outfile /app/output/configuration.json

Diff for: ndc-connector-oracle/.hasura-connector/connector-metadata.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
packagingDefinition:
22
type: PrebuiltDockerImage
3-
dockerImage: "ghcr.io/hasura/ndc-jvm-oracle:v1.0.3"
3+
dockerImage: "ghcr.io/hasura/ndc-jvm-oracle:v1.0.4"
44
supportedEnvironmentVariables:
55
- name: JDBC_URL
66
description: "The JDBC URL to connect to the database"
@@ -12,7 +12,7 @@ commands:
1212
-e JDBC_URL \
1313
-e HASURA_PLUGIN_CONNECTOR_CONTEXT_PATH \
1414
-v ${HASURA_PLUGIN_CONNECTOR_CONTEXT_PATH}:/app/output \
15-
ghcr.io/hasura/ndc-jvm-cli:v0.1.3 update \
15+
ghcr.io/hasura/ndc-jvm-cli:v1.0.0 update \
1616
--database ORACLE \
1717
--schemas $JDBC_SCHEMAS \
1818
--outfile /app/output/configuration.json

Diff for: ndc-connector-snowflake/.hasura-connector/connector-metadata.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
packagingDefinition:
22
type: PrebuiltDockerImage
3-
dockerImage: "ghcr.io/hasura/ndc-jvm-snowflake:v1.0.2"
3+
dockerImage: "ghcr.io/hasura/ndc-jvm-snowflake:v1.0.3"
44
supportedEnvironmentVariables:
55
- name: JDBC_URL
66
description: "The JDBC URL to connect to the database"
@@ -12,7 +12,7 @@ commands:
1212
-e JDBC_URL \
1313
-e HASURA_PLUGIN_CONNECTOR_CONTEXT_PATH \
1414
-v ${HASURA_PLUGIN_CONNECTOR_CONTEXT_PATH}:/app/output \
15-
ghcr.io/hasura/ndc-jvm-cli:v0.1.0 update \
15+
ghcr.io/hasura/ndc-jvm-cli:v1.0.0 update \
1616
--database SNOWFLAKE \
1717
--schemas $JDBC_SCHEMAS \
1818
--outfile /app/output/configuration.json

0 commit comments

Comments
 (0)