1
0
mirror of synced 2025-12-25 02:09:19 -05:00

destination-redshift: update all dependencies (#45435)

This commit is contained in:
Stephane Geneix
2024-09-18 14:20:41 -07:00
committed by GitHub
parent d94b348c17
commit a1bcb79852
3 changed files with 10 additions and 9 deletions

View File

@@ -4,7 +4,7 @@ plugins {
}
airbyteJavaConnector {
cdkVersionRequired = '0.44.19'
cdkVersionRequired = '0.46.0'
features = ['db-destinations', 's3-destinations', 'typing-deduping']
useLocalCdk = false
}
@@ -35,13 +35,13 @@ dependencies {
implementation 'com.amazonaws:aws-java-sdk-s3:1.11.978'
// TODO: Verify no aws sdk code is pulled by this dependency causing classpath conflicts
// https://docs.aws.amazon.com/redshift/latest/mgmt/jdbc20-jdbc10-driver-differences.html
implementation 'com.amazon.redshift:redshift-jdbc42:2.1.0.26'
implementation 'org.apache.commons:commons-csv:1.4'
implementation 'com.github.alexmojaki:s3-stream-upload:2.2.2'
implementation 'com.amazon.redshift:redshift-jdbc42:2.1.0.30'
implementation 'org.apache.commons:commons-csv:1.11.0'
implementation 'com.github.alexmojaki:s3-stream-upload:2.2.4'
testImplementation 'org.apache.commons:commons-text:1.10.0'
testImplementation 'org.apache.commons:commons-lang3:3.11'
testImplementation 'org.apache.commons:commons-dbcp2:2.7.0'
testImplementation "org.mockito:mockito-inline:4.1.0"
testImplementation 'org.apache.commons:commons-text:1.12.0'
testImplementation 'org.apache.commons:commons-lang3:3.17.0'
testImplementation 'org.apache.commons:commons-dbcp2:2.12.0'
testImplementation "org.mockito:mockito-inline:5.2.0"
}

View File

@@ -5,7 +5,7 @@ data:
connectorSubtype: database
connectorType: destination
definitionId: f7a7d195-377f-cf5b-70a5-be6b819019dc
dockerImageTag: 3.4.4
dockerImageTag: 3.5.0
dockerRepository: airbyte/destination-redshift
documentationUrl: https://docs.airbyte.com/integrations/destinations/redshift
githubIssueLabel: destination-redshift

View File

@@ -222,6 +222,7 @@ Each stream will be output into its own raw table in Redshift. Each table will c
| Version | Date | Pull Request | Subject |
| :------ | :--------- | :--------------------------------------------------------- | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| 3.5.0 | 2024-09-18 | [45435](https://github.com/airbytehq/airbyte/pull/45435) | upgrade all dependencies |
| 3.4.4 | 2024-08-20 | [44476](https://github.com/airbytehq/airbyte/pull/44476) | Increase message parsing limit to 100mb |
| 3.4.3 | 2024-08-22 | [44526](https://github.com/airbytehq/airbyte/pull/44526) | Revert protocol compliance fix |
| 3.4.2 | 2024-08-15 | [42506](https://github.com/airbytehq/airbyte/pull/42506) | Fix bug in refreshes logic (already mitigated in platform, just fixing protocol compliance) |