From fad6be158ad7f2d7adce3c3ae04132aaa50469c9 Mon Sep 17 00:00:00 2001 From: simoleo89 Date: Tue, 9 Jun 2026 16:15:23 +0000 Subject: [PATCH] chore(deps): upgrade Netty (4.2), HikariCP (7) and JUnit (6) to latest major MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Major-version upgrades of the three the previous bump deliberately held back. Verified: clean compile, all 15 tests run green (surefire 3.5.2 drives the JUnit 6 platform fine — no extra launcher dep needed), and the shaded jar assembles. - io.netty:netty-all 4.1.135.Final -> 4.2.15.Final - com.zaxxer:HikariCP 6.3.3 -> 7.0.2 - org.junit.jupiter:junit-jupiter 5.14.4 -> 6.1.0 Notes: - Stayed on Netty 4.2 (GA), not 5.0 which is still Alpha. No source changes needed; the channel ALLOCATOR is set explicitly so 4.2's new default adaptive allocator doesn't apply. NioEventLoopGroup is deprecated in 4.2 but still functions as before (left as-is to avoid an event-loop behavioural change). netty-all 4.2 pulls more transitive modules, so the fat jar grows (~20->32 MB). - HikariCP 7.x baselines Java 17; our HikariConfig usage is unchanged. --- Emulator/pom.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Emulator/pom.xml b/Emulator/pom.xml index 2964c8b2..30c0c42c 100644 --- a/Emulator/pom.xml +++ b/Emulator/pom.xml @@ -83,7 +83,7 @@ io.netty netty-all - 4.1.135.Final + 4.2.15.Final @@ -113,7 +113,7 @@ com.zaxxer HikariCP - 6.3.3 + 7.0.2 compile @@ -190,7 +190,7 @@ org.junit.jupiter junit-jupiter - 5.14.4 + 6.1.0 test