Skip to content

Commit 219f858

Browse files
committed
Update dependencies
1 parent 3c33930 commit 219f858

File tree

3 files changed

+20
-20
lines changed

3 files changed

+20
-20
lines changed

pom.xml

Lines changed: 13 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>io.airlift</groupId>
77
<artifactId>airbase</artifactId>
8-
<version>322</version>
8+
<version>334</version>
99
</parent>
1010

1111
<groupId>pl.net.was</groupId>
@@ -49,26 +49,14 @@
4949
<air.check.fail-checkstyle>true</air.check.fail-checkstyle>
5050
<air.check.skip-checkstyle>false</air.check.skip-checkstyle>
5151
<air.build.jvmsize>4g</air.build.jvmsize>
52+
<air.test.jvm.additional-arguments>--add-modules=jdk.incubator.vector</air.test.jvm.additional-arguments>
5253

53-
<dep.trino.version>478</dep.trino.version>
54-
<dep.airlift.version>369</dep.airlift.version>
54+
<dep.trino.version>479</dep.trino.version>
55+
<dep.airlift.version>386</dep.airlift.version>
5556
<dep.slice.version>2.4</dep.slice.version>
56-
<dep.opentelemetry.version>1.56.0</dep.opentelemetry.version>
57-
<dep.opentelemetry-instrumentation.version>2.22.0</dep.opentelemetry-instrumentation.version>
58-
<dep.packaging.version>${dep.airlift.version}</dep.packaging.version>
59-
<dep.guava.version>33.5.0-jre</dep.guava.version>
60-
<dep.guice.version>7.0.0</dep.guice.version>
61-
<dep.errorprone.version>2.44.0</dep.errorprone.version>
6257
<dep.jackson-annotations.version>2.20</dep.jackson-annotations.version>
63-
<dep.jackson.version>2.20.1</dep.jackson.version>
64-
<dep.joda.version>2.14.0</dep.joda.version>
65-
<dep.junit.version>6.0.1</dep.junit.version>
66-
<dep.slf4j.version>2.0.17</dep.slf4j.version>
67-
<dep.assertj-core.version>3.27.6</dep.assertj-core.version>
68-
<dep.logback.version>1.5.21</dep.logback.version>
69-
<dep.plugin.surefire.version>3.2.5</dep.plugin.surefire.version>
58+
<dep.logback.version>1.5.22</dep.logback.version>
7059
<dep.jna.version>5.18.1</dep.jna.version>
71-
<dep.kotlin.version>2.2.21</dep.kotlin.version>
7260

7361
<project.scm.id>github</project.scm.id>
7462
</properties>
@@ -179,6 +167,12 @@
179167
<artifactId>trino-testing</artifactId>
180168
<version>${dep.trino.version}</version>
181169
<scope>test</scope>
170+
<exclusions>
171+
<exclusion>
172+
<groupId>io.trino</groupId>
173+
<artifactId>trino-exchange-filesystem</artifactId>
174+
</exclusion>
175+
</exclusions>
182176
</dependency>
183177

184178
<dependency>
@@ -215,7 +209,7 @@
215209
</plugin>
216210
<plugin>
217211
<artifactId>maven-release-plugin</artifactId>
218-
<version>3.2.0</version>
212+
<version>3.3.1</version>
219213
<configuration>
220214
<scmCommentPrefix>[ci skip]</scmCommentPrefix>
221215
<tagNameFormat>v@{project.version}</tagNameFormat>
@@ -271,7 +265,7 @@
271265
<dependency>
272266
<groupId>com.github.ferstl</groupId>
273267
<artifactId>pedantic-pom-enforcers</artifactId>
274-
<version>2.2.0</version>
268+
<version>2.3.1</version>
275269
</dependency>
276270
</dependencies>
277271
</plugin>

trino-cloud-aws/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<dependency>
2323
<groupId>software.amazon.awssdk</groupId>
2424
<artifactId>bom</artifactId>
25-
<version>2.39.5</version>
25+
<version>2.40.8</version>
2626
<type>pom</type>
2727
<scope>import</scope>
2828
</dependency>

trino-cloud-aws/src/main/java/pl/net/was/cloud/aws/AwsMergeSink.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,12 @@ public void storeMergedRows(Page page)
9595
}
9696
}
9797

98+
@Override
99+
public long getCompletedBytes()
100+
{
101+
return 0L;
102+
}
103+
98104
private void updateInstance(Page page, int position)
99105
{
100106
String rowId = getRowId(page, position);

0 commit comments

Comments
 (0)