Skip to content

Commit dff8f01

Browse files
committed
Update kintone-java-client to 2.3.0
1 parent bb3fdde commit dff8f01

File tree

3 files changed

+11
-13
lines changed

3 files changed

+11
-13
lines changed

shadow/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ configurations {
1616
}
1717

1818
dependencies {
19-
implementation("com.kintone:kintone-java-client:1.4.0") {
19+
implementation("com.kintone:kintone-java-client:2.3.0") {
2020
exclude group: "org.slf4j", module: "slf4j-api"
2121
}
2222
}

shadow/gradle.lockfile

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
# This is a Gradle generated file for dependency locking.
22
# Manual edits can break the build and are not advised.
33
# This file is expected to be part of source control.
4-
com.fasterxml.jackson.core:jackson-annotations:2.13.2=runtimeClasspath
5-
com.fasterxml.jackson.core:jackson-core:2.13.2=runtimeClasspath
6-
com.fasterxml.jackson.core:jackson-databind:2.13.2.2=runtimeClasspath
7-
com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.2=runtimeClasspath
8-
com.fasterxml.jackson:jackson-bom:2.13.2=runtimeClasspath
9-
com.kintone:kintone-java-client:1.4.0=compileClasspath,runtimeClasspath
10-
commons-codec:commons-codec:1.15=runtimeClasspath
11-
org.apache.httpcomponents.client5:httpclient5:5.1.3=runtimeClasspath
12-
org.apache.httpcomponents.core5:httpcore5-h2:5.1.3=runtimeClasspath
13-
org.apache.httpcomponents.core5:httpcore5:5.1.3=runtimeClasspath
4+
com.fasterxml.jackson.core:jackson-annotations:2.17.1=runtimeClasspath
5+
com.fasterxml.jackson.core:jackson-core:2.17.1=runtimeClasspath
6+
com.fasterxml.jackson.core:jackson-databind:2.17.1=runtimeClasspath
7+
com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.17.1=runtimeClasspath
8+
com.fasterxml.jackson:jackson-bom:2.17.1=runtimeClasspath
9+
com.kintone:kintone-java-client:2.3.0=compileClasspath,runtimeClasspath
10+
org.apache.httpcomponents.client5:httpclient5:5.3.1=runtimeClasspath
11+
org.apache.httpcomponents.core5:httpcore5-h2:5.2.4=runtimeClasspath
12+
org.apache.httpcomponents.core5:httpcore5:5.2.4=runtimeClasspath
1413
empty=

src/main/java/org/embulk/output/kintone/deserializer/Deserializer.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,9 +134,8 @@ private NumberFieldValue deserializeNumber(JsonParser parser, DeserializationCon
134134
return new NumberFieldValue(read(parser, BigDecimal::new));
135135
}
136136

137-
@SuppressWarnings("cast")
138137
private CalcFieldValue deserializeCalc(JsonParser parser, DeserializationContext context) {
139-
LOGGER.warn("Ignore field: {}", new CalcFieldValue((BigDecimal) read(parser, BigDecimal::new)));
138+
LOGGER.warn("Ignore field: {}", new CalcFieldValue(readText(parser)));
140139
return null;
141140
}
142141

0 commit comments

Comments
 (0)