diff --git a/airbyte-cdk/bulk/changelog.md b/airbyte-cdk/bulk/changelog.md index c51fe513cc3..bf1ed4c2e4c 100644 --- a/airbyte-cdk/bulk/changelog.md +++ b/airbyte-cdk/bulk/changelog.md @@ -1,3 +1,7 @@ +## Version 0.1.91 + +load cdk: upsert records test uses proper target schema + ## Version 0.1.90 load cdk: components tests: data coercion tests cover all data types diff --git a/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/component/TableOperationsSuite.kt b/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/component/TableOperationsSuite.kt index 490baffe267..c36a3b5a421 100644 --- a/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/component/TableOperationsSuite.kt +++ b/airbyte-cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/load/component/TableOperationsSuite.kt @@ -607,7 +607,7 @@ interface TableOperationsSuite { val targetTableSchema = schemaFactory.make( targetTable, - Fixtures.TEST_INTEGER_SCHEMA.properties, + Fixtures.ID_TEST_WITH_CDC_SCHEMA.properties, Dedupe( primaryKey = listOf(listOf(Fixtures.ID_FIELD)), cursor = listOf(Fixtures.TEST_FIELD), diff --git a/airbyte-cdk/bulk/version.properties b/airbyte-cdk/bulk/version.properties index 754a5e41c51..0d52db362aa 100644 --- a/airbyte-cdk/bulk/version.properties +++ b/airbyte-cdk/bulk/version.properties @@ -1 +1 @@ -version=0.1.90 +version=0.1.91