File tree Expand file tree Collapse file tree 3 files changed +5
-26
lines changed
airbyte-integrations/connectors/source-dynamodb
docs/integrations/sources Expand file tree Collapse file tree 3 files changed +5
-26
lines changed Original file line number Diff line number Diff line change 1
1
plugins {
2
- id ' application'
3
2
id ' airbyte-java-connector'
4
3
}
5
4
6
5
airbyteJavaConnector {
7
- cdkVersionRequired = ' 0.13.2 '
6
+ cdkVersionRequired = ' 0.20.4 '
8
7
features = [' db-sources' ]
9
8
useLocalCdk = false
10
9
}
11
10
12
- // remove once upgrading the CDK version to 0.4.x or later
13
- java {
14
- compileJava {
15
- options. compilerArgs. remove(" -Werror" )
16
- }
17
- }
18
-
19
- airbyteJavaConnector. addCdkDependencies()
20
-
21
11
application {
22
12
mainClass = ' io.airbyte.integrations.source.dynamodb.DynamodbSource'
23
13
}
24
14
25
- def testContainersVersion = ' 1.17.5'
26
- def assertVersion = ' 3.23.1'
27
-
28
15
dependencies {
29
16
30
17
implementation platform(' software.amazon.awssdk:bom:2.18.1' )
31
18
// https://mvnrepository.com/artifact/software.amazon.awssdk/dynamodb
32
19
implementation ' software.amazon.awssdk:dynamodb'
33
20
34
21
testImplementation ' org.skyscreamer:jsonassert:1.5.1'
35
-
36
-
37
- // https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind
38
- implementation ' com.fasterxml.jackson.core:jackson-databind:2.13.4.2'
39
- // https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-core
40
- implementation ' com.fasterxml.jackson.core:jackson-core:2.13.4'
41
-
42
-
43
- testImplementation " org.assertj:assertj-core:${ assertVersion} "
44
- testImplementation " org.testcontainers:localstack:${ testContainersVersion} "
45
- integrationTestJavaImplementation ' com.amazonaws:aws-java-sdk:1.12.610'
22
+ testImplementation " org.assertj:assertj-core:3.23.1"
23
+ testImplementation " org.testcontainers:localstack:1.19.4"
46
24
47
25
}
Original file line number Diff line number Diff line change 5
5
connectorSubtype : api
6
6
connectorType : source
7
7
definitionId : 50401137-8871-4c5a-abb7-1f5fda35545a
8
- dockerImageTag : 0.2.2
8
+ dockerImageTag : 0.2.3
9
9
dockerRepository : airbyte/source-dynamodb
10
10
documentationUrl : https://docs.airbyte.com/integrations/sources/dynamodb
11
11
githubIssueLabel : source-dynamodb
Original file line number Diff line number Diff line change @@ -69,6 +69,7 @@ This guide describes in details how you can configure the connector to connect w
69
69
70
70
| Version | Date | Pull Request | Subject |
71
71
| :--------| :--------- | :-------------------------------------------------------- | :---------------------------------------------------------------------|
72
+ | 0.2.3 | 2024-02-13 | [ 35232] ( https://github.com/airbytehq/airbyte/pull/35232 ) | Adopt CDK 0.20.4 |
72
73
| 0.2.2 | 2024-01-24 | [ 34453] ( https://github.com/airbytehq/airbyte/pull/34453 ) | bump CDK version |
73
74
| 0.2.1 | 2024-01-03 | [ #33924 ] ( https://github.com/airbytehq/airbyte/pull/33924 ) | Add new ap-southeast-3 AWS region |
74
75
| 0.2.0 | 18-12-2023 | https://github.com/airbytehq/airbyte/pull/33485 | Remove LEGACY state |
You can’t perform that action at this time.
0 commit comments