From 226a1545d1c039129769178ed5c8d18105edfb89 Mon Sep 17 00:00:00 2001 From: zzz Date: Wed, 16 Apr 2025 06:26:24 -0400 Subject: [PATCH] dev -4 --- history.txt | 25 +++++++++++++++++++ .../src/net/i2p/router/RouterVersion.java | 2 +- 2 files changed, 26 insertions(+), 1 deletion(-) diff --git a/history.txt b/history.txt index 9b552ae9a..5b0852dc9 100644 --- a/history.txt +++ b/history.txt @@ -1,3 +1,28 @@ +2025-04-16 zzz + * Tunnels: Implement proposal 168 (part 1) + - Add bw params to build requests + - Add bw param to build reply + - Reject build request if cannot allocate min bw + - Track allocated bw in HopConfig + - Track total allocated bw in TunnelDispatcher + +2025-04-13 zzz + * Console: + - Adjust map Mercator coordinates + - Ensure smaller country circles are above larger ones + - Remove single-point countries on map + +2025-04-12 zzz + * Console: Display changelog in html + +2025-04-10 zzz + * i2ptunnel: Reduce HTTP server thread usage + - Increase performance and properly enforce limits. + - Handle all GET and HEAD requests in the handler thread + - Handle POST and CONNECT in threads from the server pool, to not bypass server thread limits + - For POST and CONNECT, the opposite-direction (Sender) thread is still run in the client pool + - Ensure the server thread limit is at least the streaming max connections limit so we don't run out + 2025-04-09 zzz * Console: Use Basic auth for prometheus plugin * NetDB: diff --git a/router/java/src/net/i2p/router/RouterVersion.java b/router/java/src/net/i2p/router/RouterVersion.java index f2016528b..ca3640d9d 100644 --- a/router/java/src/net/i2p/router/RouterVersion.java +++ b/router/java/src/net/i2p/router/RouterVersion.java @@ -20,7 +20,7 @@ public class RouterVersion { public final static String VERSION = CoreVersion.VERSION; /** for example: "beta", "alpha", "rc" */ public final static String QUALIFIER = ""; - public final static long BUILD = 3; + public final static long BUILD = 4; /** for example "-test" */ public final static String EXTRA = ""; public final static String FULL_VERSION = VERSION + "-" + BUILD + QUALIFIER + EXTRA;