dev -4
Some checks failed
Daily Workflow / daily-job (push) Has been cancelled
Daily Workflow / javadoc-latest (push) Has been cancelled
Daily Workflow / build-java7 (push) Has been cancelled
Java CI / build (push) Has been cancelled
Java CI / javadoc-latest (push) Has been cancelled
Java CI / build-java7 (push) Has been cancelled
Dockerhub / docker (push) Has been cancelled
Java with IzPack Snapshot Setup / setup (push) Has been cancelled
/ repo-sync (push) Has been cancelled

This commit is contained in:
zzz
2025-04-16 06:26:24 -04:00
parent f3215c732e
commit 226a1545d1
2 changed files with 26 additions and 1 deletions

View File

@ -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:

View File

@ -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;