You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| 0.35.7 | 2024-05-20 |[\#38357](https://github.com/airbytehq/airbyte/pull/38357)| Decouple create namespace from per stream operation interface. |
177
178
| 0.35.6 | 2024-05-17 |[\#38107](https://github.com/airbytehq/airbyte/pull/38107)| New interfaces for Destination connectors to plug into AsyncStreamConsumer |
Copy file name to clipboardExpand all lines: airbyte-cdk/java/airbyte-cdk/db-destinations/src/main/kotlin/io/airbyte/cdk/integrations/destination/jdbc/typing_deduping/NoOpJdbcDestinationHandler.kt
+4
Original file line number
Diff line number
Diff line change
@@ -44,6 +44,10 @@ class NoOpJdbcDestinationHandler<DestinationState>(
44
44
throwNotImplementedError("This JDBC Destination Handler does not support typing deduping")
Copy file name to clipboardExpand all lines: airbyte-cdk/java/airbyte-cdk/typing-deduping/src/main/kotlin/io/airbyte/integrations/base/destination/operation/AbstractStreamOperation.kt
-1
Original file line number
Diff line number
Diff line change
@@ -37,7 +37,6 @@ abstract class AbstractStreamOperation<DestinationState : MinimumDestinationStat
37
37
val stream = destinationInitialStatus.streamConfig
Copy file name to clipboardExpand all lines: airbyte-cdk/java/airbyte-cdk/typing-deduping/src/main/kotlin/io/airbyte/integrations/base/destination/operation/DefaultSyncOperation.kt
+16-2
Original file line number
Diff line number
Diff line change
@@ -29,6 +29,7 @@ class DefaultSyncOperation<DestinationState : MinimumDestinationState>(
Copy file name to clipboardExpand all lines: airbyte-cdk/java/airbyte-cdk/typing-deduping/src/main/kotlin/io/airbyte/integrations/base/destination/operation/StorageOperation.kt
Copy file name to clipboardExpand all lines: airbyte-cdk/java/airbyte-cdk/typing-deduping/src/main/kotlin/io/airbyte/integrations/base/destination/operation/StreamOperationFactory.kt
+2-1
Original file line number
Diff line number
Diff line change
@@ -13,6 +13,7 @@ fun interface StreamOperationFactory<DestinationState> {
Copy file name to clipboardExpand all lines: airbyte-cdk/java/airbyte-cdk/typing-deduping/src/main/kotlin/io/airbyte/integrations/base/destination/typing_deduping/DestinationHandler.kt
Copy file name to clipboardExpand all lines: airbyte-cdk/java/airbyte-cdk/typing-deduping/src/main/kotlin/io/airbyte/integrations/base/destination/typing_deduping/SqlGenerator.kt
Copy file name to clipboardExpand all lines: airbyte-cdk/java/airbyte-cdk/typing-deduping/src/test/kotlin/io/airbyte/integrations/base/destination/operation/AbstractStreamOperationTest.kt
-10
Original file line number
Diff line number
Diff line change
@@ -98,7 +98,6 @@ class AbstractStreamOperationTest {
Copy file name to clipboardExpand all lines: airbyte-cdk/java/airbyte-cdk/typing-deduping/src/test/kotlin/io/airbyte/integrations/base/destination/operation/DefaultSyncOperationTest.kt
+7-1
Original file line number
Diff line number
Diff line change
@@ -57,7 +57,7 @@ class DefaultSyncOperationTest {
0 commit comments