Skip to content

Commit 5bb8050

Browse files
edgaoalafanechere
andauthored
Destination snowflake: Depend on published cdk artifact (#36461)
Co-authored-by: alafanechere <[email protected]>
1 parent 7b981cc commit 5bb8050

File tree

5 files changed

+8
-5
lines changed

5 files changed

+8
-5
lines changed

airbyte-cdk/java/airbyte-cdk/README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ This page will walk through the process of developing with the Java CDK.
1616
* [Publishing the CDK and switching to a pinned CDK reference](#publishing-the-cdk-and-switching-to-a-pinned-cdk-reference)
1717
* [Troubleshooting CDK Dependency Caches](#troubleshooting-cdk-dependency-caches)
1818
* [Developing a connector against a pinned CDK version](#developing-a-connector-against-a-pinned-cdk-version)
19-
* [Common Debugging Tips](#common-debugging-tips)
2019
* [Changelog](#changelog)
2120
* [Java CDK](#java-cdk)
2221

@@ -145,7 +144,10 @@ Maven and Gradle will automatically reference the correct (pinned) version of th
145144

146145
| Version | Date | Pull Request | Subject |
147146
|:--------|:-----------|:-----------------------------------------------------------|:---------------------------------------------------------------------------------------------------------------------------------------------------------------|
147+
| 0.27.5 | 2024-03-25 | [\#36461](https://github.com/airbytehq/airbyte/pull/36461) | Destinations: Handle case-sensitive columns in destination state handling. |
148148
| 0.27.4 | 2024-03-25 | [\#36333](https://github.com/airbytehq/airbyte/pull/36333) | Sunset DebeziumSourceDecoratingIterator. |
149+
| 0.27.1 | 2024-03-22 | [\#36296](https://github.com/airbytehq/airbyte/pull/36296) | Destinations: (async framework) Do not log invalid message data. |
150+
| 0.27.0 | 2024-03-21 | [\#36364](https://github.com/airbytehq/airbyte/pull/36364) | Sources: Increase debezium initial record wait time to 40 minute. |
149151
| 0.26.1 | 2024-03-19 | [\#35599](https://github.com/airbytehq/airbyte/pull/35599) | Sunset SourceDecoratingIterator. |
150152
| 0.26.0 | 2024-03-19 | [\#36263](https://github.com/airbytehq/airbyte/pull/36263) | Improve conversion of debezium Date type for some edge case in mssql. |
151153
| 0.25.0 | 2024-03-18 | [\#36203](https://github.com/airbytehq/airbyte/pull/36203) | Wiring of Transformer to StagingConsumerFactory and JdbcBufferedConsumerFactory; import changes for Kotlin conversion; State message logs to debug |
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version=0.27.4
1+
version=0.27.5

airbyte-integrations/connectors/destination-snowflake/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ plugins {
33
}
44

55
airbyteJavaConnector {
6-
cdkVersionRequired = '0.23.18'
6+
cdkVersionRequired = '0.27.5'
77
features = ['db-destinations', 's3-destinations', 'typing-deduping']
8-
useLocalCdk = true
8+
useLocalCdk = false
99
}
1010

1111
java {

airbyte-integrations/connectors/destination-snowflake/metadata.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ data:
55
connectorSubtype: database
66
connectorType: destination
77
definitionId: 424892c4-daac-4491-b35d-c6688ba547ba
8-
dockerImageTag: 3.6.4
8+
dockerImageTag: 3.6.5
99
dockerRepository: airbyte/destination-snowflake
1010
documentationUrl: https://docs.airbyte.com/integrations/destinations/snowflake
1111
githubIssueLabel: destination-snowflake

docs/integrations/destinations/snowflake.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -276,6 +276,7 @@ desired namespace.
276276

277277
| Version | Date | Pull Request | Subject |
278278
|:----------------|:-----------|:-------------------------------------------------------------|:----------------------------------------------------------------------------------------------------------------------------------------------------------------|
279+
| 3.6.5 | 2024-03-25 | [\#36461](https://github.com/airbytehq/airbyte/pull/36461) | Internal code change (use published CDK artifact instead of source dependency) |
279280
| 3.6.4 | 2024-03-25 | [\#36396](https://github.com/airbytehq/airbyte/pull/36396) | Handle instances with `QUOTED_IDENTIFIERS_IGNORE_CASE` enabled globally |
280281
| 3.6.3 | 2024-03-25 | [\#36452](https://github.com/airbytehq/airbyte/pull/36452) | Remove Query timeout |
281282
| 3.6.2 | 2024-03-18 | [\#36240](https://github.com/airbytehq/airbyte/pull/36240) | Hide oAuth config option |

0 commit comments

Comments
 (0)