File tree 3 files changed +15
-5
lines changed
src/main/scala/org/embulk/input/dynamodb
3 files changed +15
-5
lines changed Original file line number Diff line number Diff line change
1
+ 1.0.1 (2023-02-15)
2
+ ==================
3
+
4
+ - [ chore] [ #29 ] ( https://github.com/lulichn/embulk-input-dynamodb/pull/29 ) Upgrade dependencies.
5
+ - Use ` Exec.getPageBuilder ` instead of ` new PageBuilder ` .
6
+ - Upgrade scala 2.13.1 -> 2.13.10
7
+ - Upgrade aws-sdk 1.11.171 -> 1.12.406
8
+
1
9
1.0.0 (2023-02-15)
2
10
==================
3
11
4
- - [ Breaking Change] [ #27 ] (https://github.com/lulichn/embulk-input-dynamodb/pull/27 ) Upgrade embulk 0.9.23 -> 0.10.41 with removing deprecated features.
12
+ - [ Breaking Change] [ #27 ] ( https://github.com/lulichn/embulk-input-dynamodb/pull/27 ) Upgrade embulk 0.9.23 -> 0.10.41 with removing deprecated features.
5
13
- Upgrade Gradle 6.1 -> 7.6
6
14
- Apply gradle-embulk-plugins
7
15
- Remove deprecated features
Original file line number Diff line number Diff line change @@ -30,15 +30,16 @@ targetCompatibility = 1.8
30
30
31
31
dependencies {
32
32
def embulkVersion = " 0.10.41"
33
+ def awsSdkVersion = " 1.12.406"
33
34
compileOnly " org.embulk:embulk-api:${ embulkVersion} "
34
35
compileOnly " org.embulk:embulk-spi:${ embulkVersion} "
35
- implementation " org.scala-lang:scala-library:2.13.1 "
36
+ implementation " org.scala-lang:scala-library:2.13.10 "
36
37
37
38
implementation " org.embulk:embulk-util-config:0.3.2"
38
39
implementation " org.embulk:embulk-util-json:0.1.1"
39
40
implementation " org.embulk:embulk-util-timestamp:0.2.1"
40
- implementation " com.amazonaws:aws-java-sdk-dynamodb:1.11.711 "
41
- implementation " com.amazonaws:aws-java-sdk-sts:1.11.711 "
41
+ implementation " com.amazonaws:aws-java-sdk-dynamodb:${ awsSdkVersion } "
42
+ implementation " com.amazonaws:aws-java-sdk-sts:${ awsSdkVersion } "
42
43
43
44
testImplementation " junit:junit:4.+"
44
45
testImplementation " org.embulk:embulk-junit4:${ embulkVersion} "
Original file line number Diff line number Diff line change @@ -38,7 +38,8 @@ class DynamodbInputPlugin extends InputPlugin {
38
38
output : PageOutput
39
39
): TaskReport = {
40
40
val task : PluginTask = PluginTask .load(taskSource)
41
- val pageBuilder = new PageBuilder (Exec .getBufferAllocator(), schema, output)
41
+ val pageBuilder =
42
+ Exec .getPageBuilder(Exec .getBufferAllocator(), schema, output)
42
43
43
44
Aws (task).withDynamodb { dynamodb =>
44
45
DynamodbOperationProxy (task).run(
You can’t perform that action at this time.
0 commit comments