Skip to content

Commit 440d93c

Browse files
authored
[bq] prepare new release
1 parent 8ca7780 commit 440d93c

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

spring-batch-bigquery/pom.xml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>org.springframework.boot</groupId>
2424
<artifactId>spring-boot-starter-parent</artifactId>
25-
<version>4.0.0</version>
25+
<version>4.0.1</version>
2626
<relativePath/>
2727
</parent>
2828

@@ -64,7 +64,7 @@
6464
<dependency>
6565
<groupId>com.google.cloud</groupId>
6666
<artifactId>google-cloud-bigquery</artifactId>
67-
<version>2.56.0</version>
67+
<version>2.57.1</version>
6868
<exclusions>
6969
<!-- Avoid version conflicts -->
7070
<exclusion>
@@ -182,7 +182,7 @@
182182
<dependency>
183183
<groupId>org.testcontainers</groupId>
184184
<artifactId>junit-jupiter</artifactId>
185-
<version>1.21.3</version>
185+
<version>1.21.4</version>
186186
<scope>test</scope>
187187
<exclusions>
188188
<!-- Avoid version conflicts -->
@@ -284,6 +284,7 @@
284284
</plugin>
285285

286286
<!-- Formatting -->
287+
<!-- https://mvnrepository.com/artifact/io.spring.javaformat/spring-javaformat-maven-plugin -->
287288
<plugin>
288289
<groupId>io.spring.javaformat</groupId>
289290
<artifactId>spring-javaformat-maven-plugin</artifactId>

spring-batch-bigquery/src/main/java/org/springframework/batch/extensions/bigquery/reader/BigQueryQueryItemReader.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ public void setJobConfiguration(final QueryJobConfiguration jobConfiguration) {
9595
}
9696

9797
@Override
98-
public T read() throws Exception {
98+
public T read() throws InterruptedException {
9999
if (iterator == null) {
100100
doOpen();
101101
}
@@ -107,7 +107,7 @@ public T read() throws Exception {
107107
return iterator.hasNext() ? rowMapper.convert(iterator.next()) : null;
108108
}
109109

110-
private void doOpen() throws Exception {
110+
private void doOpen() throws InterruptedException {
111111
if (logger.isDebugEnabled()) {
112112
logger.debug("Executing query");
113113
}

0 commit comments

Comments
 (0)