From a4175a259592bbca549117b2d020f3e66144f953 Mon Sep 17 00:00:00 2001 From: fatedier Date: Thu, 8 Jan 2026 20:25:03 +0800 Subject: [PATCH] update release notes (#5116) --- Release.md | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/Release.md b/Release.md index c1861c58..a0ce59b5 100644 --- a/Release.md +++ b/Release.md @@ -1,13 +1,4 @@ ## Features -* HTTPS proxies now support load balancing groups. Multiple HTTPS proxies can be configured with the same `loadBalancer.group` and `loadBalancer.groupKey` to share the same custom domain and distribute traffic across multiple backend services, similar to the existing TCP and HTTP load balancing capabilities. -* Individual frpc proxies and visitors now accept an `enabled` flag (defaults to true), letting you disable specific entries without relying on the global `start` list—disabled blocks are skipped when client configs load. -* OIDC authentication now supports a `tokenSource` field to dynamically obtain tokens from external sources. You can use `type = "file"` to read a token from a file, or `type = "exec"` to run an external command (e.g., a cloud CLI or secrets manager) and capture its stdout as the token. The `exec` type requires the `--allow-unsafe=TokenSourceExec` CLI flag for security reasons. - -## Improvements - -* **VirtualNet**: Implemented intelligent reconnection with exponential backoff. When connection errors occur repeatedly, the reconnect interval increases from 60s to 300s (max), reducing unnecessary reconnection attempts. Normal disconnections still reconnect quickly at 10s intervals. - -## Fixes - -* Fix deadlock issue when TCP connection is closed. Previously, sending messages could block forever if the connection handler had already stopped. +* frpc now supports a `clientID` option to uniquely identify client instances. The server dashboard displays all connected clients with their online/offline status, connection history, and metadata, making it easier to monitor and manage multiple frpc deployments. +* Redesigned the frps web dashboard with a modern UI, dark mode support, and improved navigation.