File tree Expand file tree Collapse file tree 5 files changed +8
-5
lines changed
airbyte-cdk/java/airbyte-cdk
airbyte-integrations/connectors/destination-snowflake
docs/integrations/destinations Expand file tree Collapse file tree 5 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,6 @@ This page will walk through the process of developing with the Java CDK.
16
16
* [ Publishing the CDK and switching to a pinned CDK reference] ( #publishing-the-cdk-and-switching-to-a-pinned-cdk-reference )
17
17
* [ Troubleshooting CDK Dependency Caches] ( #troubleshooting-cdk-dependency-caches )
18
18
* [ Developing a connector against a pinned CDK version] ( #developing-a-connector-against-a-pinned-cdk-version )
19
- * [ Common Debugging Tips] ( #common-debugging-tips )
20
19
* [ Changelog] ( #changelog )
21
20
* [ Java CDK] ( #java-cdk )
22
21
@@ -145,7 +144,10 @@ Maven and Gradle will automatically reference the correct (pinned) version of th
145
144
146
145
| Version | Date | Pull Request | Subject |
147
146
| :--------| :-----------| :-----------------------------------------------------------| :---------------------------------------------------------------------------------------------------------------------------------------------------------------|
147
+ | 0.27.5 | 2024-03-25 | [ \# 36461] ( https://github.com/airbytehq/airbyte/pull/36461 ) | Destinations: Handle case-sensitive columns in destination state handling. |
148
148
| 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. |
149
151
| 0.26.1 | 2024-03-19 | [ \# 35599] ( https://github.com/airbytehq/airbyte/pull/35599 ) | Sunset SourceDecoratingIterator. |
150
152
| 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. |
151
153
| 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 |
Original file line number Diff line number Diff line change 1
- version =0.27.4
1
+ version =0.27.5
Original file line number Diff line number Diff line change @@ -3,9 +3,9 @@ plugins {
3
3
}
4
4
5
5
airbyteJavaConnector {
6
- cdkVersionRequired = ' 0.23.18 '
6
+ cdkVersionRequired = ' 0.27.5 '
7
7
features = [' db-destinations' , ' s3-destinations' , ' typing-deduping' ]
8
- useLocalCdk = true
8
+ useLocalCdk = false
9
9
}
10
10
11
11
java {
Original file line number Diff line number Diff line change 5
5
connectorSubtype : database
6
6
connectorType : destination
7
7
definitionId : 424892c4-daac-4491-b35d-c6688ba547ba
8
- dockerImageTag : 3.6.4
8
+ dockerImageTag : 3.6.5
9
9
dockerRepository : airbyte/destination-snowflake
10
10
documentationUrl : https://docs.airbyte.com/integrations/destinations/snowflake
11
11
githubIssueLabel : destination-snowflake
Original file line number Diff line number Diff line change @@ -276,6 +276,7 @@ desired namespace.
276
276
277
277
| Version | Date | Pull Request | Subject |
278
278
| :----------------| :-----------| :-------------------------------------------------------------| :----------------------------------------------------------------------------------------------------------------------------------------------------------------|
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) |
279
280
| 3.6.4 | 2024-03-25 | [ \# 36396] ( https://github.com/airbytehq/airbyte/pull/36396 ) | Handle instances with ` QUOTED_IDENTIFIERS_IGNORE_CASE ` enabled globally |
280
281
| 3.6.3 | 2024-03-25 | [ \# 36452] ( https://github.com/airbytehq/airbyte/pull/36452 ) | Remove Query timeout |
281
282
| 3.6.2 | 2024-03-18 | [ \# 36240] ( https://github.com/airbytehq/airbyte/pull/36240 ) | Hide oAuth config option |
You can’t perform that action at this time.
0 commit comments