From ac25accb31c9fae2c82bba883acab6cae68bd547 Mon Sep 17 00:00:00 2001
From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com>
Date: Wed, 29 Jul 2026 14:09:50 +0000
Subject: [PATCH 1/2] fix(deps): update quarkus.version to v3.38.0
---
commafeed-server/pom.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/commafeed-server/pom.xml b/commafeed-server/pom.xml
index f4cb7632..2897cbbd 100644
--- a/commafeed-server/pom.xml
+++ b/commafeed-server/pom.xml
@@ -13,7 +13,7 @@
quarkus
- 3.37.4
+ 3.38.0
7.5
2.1.0
From 64fb5ef3a2cc0fac98533090028433eafab1cdea Mon Sep 17 00:00:00 2001
From: Athou
Date: Wed, 29 Jul 2026 18:24:14 +0200
Subject: [PATCH 2/2] fix warning
---
.../src/test/java/com/commafeed/backend/HttpGetterTest.java | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/commafeed-server/src/test/java/com/commafeed/backend/HttpGetterTest.java b/commafeed-server/src/test/java/com/commafeed/backend/HttpGetterTest.java
index 8da32a58..7660ccf5 100644
--- a/commafeed-server/src/test/java/com/commafeed/backend/HttpGetterTest.java
+++ b/commafeed-server/src/test/java/com/commafeed/backend/HttpGetterTest.java
@@ -12,7 +12,6 @@ import io.quarkus.runtime.configuration.MemorySize;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.OutputStream;
-import java.math.BigInteger;
import java.net.NoRouteToHostException;
import java.net.SocketTimeoutException;
import java.net.UnknownHostException;
@@ -71,11 +70,10 @@ class HttpGetterTest {
Mockito.when(config.httpClient().socketTimeout()).thenReturn(Duration.ofSeconds(30));
Mockito.when(config.httpClient().responseTimeout()).thenReturn(Duration.ofSeconds(30));
Mockito.when(config.httpClient().connectionTimeToLive()).thenReturn(Duration.ofSeconds(30));
- Mockito.when(config.httpClient().maxResponseSize())
- .thenReturn(new MemorySize(new BigInteger("10000")));
+ Mockito.when(config.httpClient().maxResponseSize()).thenReturn(MemorySize.of("10000"));
Mockito.when(config.httpClient().cache().enabled()).thenReturn(true);
Mockito.when(config.httpClient().cache().maximumMemorySize())
- .thenReturn(new MemorySize(new BigInteger("100000")));
+ .thenReturn(MemorySize.of("100000"));
Mockito.when(config.httpClient().cache().expiration()).thenReturn(Duration.ofMinutes(1));
Mockito.when(config.feedRefresh().httpThreads()).thenReturn(3);