Skip to content

Commit 660e6a9

Browse files
authored
Merge pull request #29 from lulichn/chore/upgrade-dependencies
chore: upgrade dependencies
2 parents 2524ee3 + 94463e0 commit 660e6a9

File tree

3 files changed

+15
-5
lines changed

3 files changed

+15
-5
lines changed

CHANGELOG.md

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,15 @@
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+
19
1.0.0 (2023-02-15)
210
==================
311

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.
513
- Upgrade Gradle 6.1 -> 7.6
614
- Apply gradle-embulk-plugins
715
- Remove deprecated features

build.gradle

+4-3
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,16 @@ targetCompatibility = 1.8
3030

3131
dependencies {
3232
def embulkVersion = "0.10.41"
33+
def awsSdkVersion = "1.12.406"
3334
compileOnly "org.embulk:embulk-api:${embulkVersion}"
3435
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"
3637

3738
implementation "org.embulk:embulk-util-config:0.3.2"
3839
implementation "org.embulk:embulk-util-json:0.1.1"
3940
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}"
4243

4344
testImplementation "junit:junit:4.+"
4445
testImplementation "org.embulk:embulk-junit4:${embulkVersion}"

src/main/scala/org/embulk/input/dynamodb/DynamodbInputPlugin.scala

+2-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ class DynamodbInputPlugin extends InputPlugin {
3838
output: PageOutput
3939
): TaskReport = {
4040
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)
4243

4344
Aws(task).withDynamodb { dynamodb =>
4445
DynamodbOperationProxy(task).run(

0 commit comments

Comments
 (0)