Skip to content

Commit

Permalink
pull out bq + snowflake changes
Browse files Browse the repository at this point in the history
  • Loading branch information
cynthiaxyin committed Jan 23, 2024
1 parent 1bc1725 commit 8a4436a
Show file tree
Hide file tree
Showing 8 changed files with 6 additions and 18 deletions.
Expand Up @@ -4,9 +4,9 @@ plugins {
}

airbyteJavaConnector {
cdkVersionRequired = '0.13.3'
cdkVersionRequired = '0.12.0'
features = ['db-destinations', 's3-destinations', 'typing-deduping']
useLocalCdk = true
useLocalCdk = false
}

airbyteJavaConnector.addCdkDependencies()
Expand Down
Expand Up @@ -5,7 +5,7 @@ data:
connectorSubtype: database
connectorType: destination
definitionId: 22f6c74f-5699-40ff-833c-4a879ea40133
dockerImageTag: 2.3.32
dockerImageTag: 2.3.31
dockerRepository: airbyte/destination-bigquery
documentationUrl: https://docs.airbyte.com/integrations/destinations/bigquery
githubIssueLabel: destination-bigquery
Expand Down
Expand Up @@ -457,11 +457,6 @@ private TyperDeduper buildTyperDeduper(final BigQuerySqlGenerator sqlGenerator,

}

@Override
public Boolean isV2Destination() {
return true;
}

public static void main(final String[] args) throws Exception {
AirbyteExceptionHandler.addThrowableForDeinterpolation(BigQueryException.class);
final Destination destination = new BigQueryDestination();
Expand Down
Expand Up @@ -4,9 +4,9 @@ plugins {
}

airbyteJavaConnector {
cdkVersionRequired = '0.13.3'
cdkVersionRequired = '0.12.0'
features = ['db-destinations', 's3-destinations', 'typing-deduping']
useLocalCdk = true
useLocalCdk = false
}

airbyteJavaConnector.addCdkDependencies()
Expand Down
Expand Up @@ -5,7 +5,7 @@ data:
connectorSubtype: database
connectorType: destination
definitionId: 424892c4-daac-4491-b35d-c6688ba547ba
dockerImageTag: 3.4.23
dockerImageTag: 3.4.22
dockerRepository: airbyte/destination-snowflake
documentationUrl: https://docs.airbyte.com/integrations/destinations/snowflake
githubIssueLabel: destination-snowflake
Expand Down
Expand Up @@ -40,9 +40,4 @@ public SerializedAirbyteMessageConsumer getSerializedMessageConsumer(final JsonN
return new SnowflakeInternalStagingDestination(airbyteEnvironment).getSerializedMessageConsumer(config, catalog, outputRecordCollector);
}

@Override
public Boolean isV2Destination() {
return true;
}

}
1 change: 0 additions & 1 deletion docs/integrations/destinations/bigquery.md
Expand Up @@ -210,7 +210,6 @@ tutorials:

| Version | Date | Pull Request | Subject |
|:--------|:-----------|:-----------------------------------------------------------|:----------------------------------------------------------------------------------------------------------------------------------------------------------------|
| 2.3.32 | 2024-01-22 | [\#34077](https://github.com/airbytehq/airbyte/pull/34077) | Internal code changes for Destinations V2 |
| 2.3.31 | 2024-01-22 | [\#34023](https://github.com/airbytehq/airbyte/pull/34023) | Combine DDL operations into a single execution |
| 2.3.30 | 2024-01-12 | [\#34226](https://github.com/airbytehq/airbyte/pull/34226) | Upgrade CDK to 0.12.0; Cleanup dependencies |
| 2.3.29 | 2024-01-09 | [\#34003](https://github.com/airbytehq/airbyte/pull/34003) | Fix loading credentials from GCP Env |
Expand Down
1 change: 0 additions & 1 deletion docs/integrations/destinations/snowflake.md
Expand Up @@ -246,7 +246,6 @@ Otherwise, make sure to grant the role the required permissions in the desired n

| Version | Date | Pull Request | Subject |
|:----------------|:-----------|:-----------------------------------------------------------|:----------------------------------------------------------------------------------------------------------------------------------------------------------------|
| 3.4.23 | 2024-01-22 | [\#34077](https://github.com/airbytehq/airbyte/pull/34077) | Internal code changes for Destinations V2 |
| 3.4.22 | 2024-01-12 | [\#34227](https://github.com/airbytehq/airbyte/pull/34227) | Upgrade CDK to 0.12.0; Cleanup unused dependencies |
| 3.4.21 | 2024-01-10 | [\#34083](https://github.com/airbytehq/airbyte/pull/34083) | Emit destination stats as part of the state message |
| 3.4.20 | 2024-01-05 | [\#33948](https://github.com/airbytehq/airbyte/pull/33948) | Skip retrieving initial table state when setup fails |
Expand Down

0 comments on commit 8a4436a

Please sign in to comment.