Skip to content

Releases: fatedier/frp

v0.56.0

21 Mar 10:06
5a6d9f6
Compare
Choose a tag to compare

Features

  • Support range ports mapping in TOML/YAML/JSON configuration file by using go template syntax.

    For example:

    {{- range $_, $v := parseNumberRangePair "6000-6006,6007" "6000-6006,6007" }}
    [[proxies]]
    name = "tcp-{{ $v.First }}"
    type = "tcp"
    localPort = {{ $v.First }}
    remotePort = {{ $v.Second }}
    {{- end }}
    

    This will create 8 proxies such as tcp-6000, tcp-6001, ... tcp-6007.

  • Health check supports custom request headers.

  • Enable compatibility mode for the Android system to solve the issues of incorrect log time caused by time zone problems and default DNS resolution failures.

Fixes

  • Fix the issue of incorrect interval time for rotating the log by day.
  • Disable quic-go's ECN support by default. It may cause issues on certain operating systems.

v0.55.1

12 Mar 10:17
a5b7abf
Compare
Choose a tag to compare

No feature changes, just a fix for the issue of no released assets in version 0.55.0.

v0.55.0

12 Mar 09:12
1e650ea
Compare
Choose a tag to compare

Notable Changes

  • The minimum supported Go version has been updated to 1.22. In the new version of Go, the default minimum supported TLS version has been changed to TLS 1.2.
  • The default value of --strict-config has been changed from false to true. If your configuration file uses a non-existent configuration item or has a spelling error, the application will throw an error. This startup parameter was introduced in version v0.53.0. If you wish to continue using the old behavior, you need to explicitly set --strict-config=false.

Features

  • Proxy supports configuring annotations, which will be displayed in the frps dashboard.

Changes

  • Removed dependencies on the forked version of kcp-go and beego log, kcp-go now uses the upstream version, and golib/log replaces beego log.

v0.54.0

01 Feb 06:37
d689f0f
Compare
Choose a tag to compare

Deprecation Notices

  • Using an underscore in a flag name is deprecated and has been replaced by a hyphen. The underscore format will remain compatible for some time, until it is completely removed in a future version. For example, --remote_port is replaced with --remote-port.

Features

  • The Refresh and ClearOfflineProxies buttons have been added to the Dashboard of frps.

Fixes

  • The host/domain matching in the routing rules has been changed to be case-insensitive.

v0.53.2

21 Dec 13:48
d505ecb
Compare
Choose a tag to compare

Fixes

  • frpc has a certain chance to panic when login: close of closed channel.

v0.53.0

14 Dec 13:04
051299e
Compare
Choose a tag to compare

Features

  • The new command line parameter --strict_config has been added to enable strict configuration validation mode. It will throw an error for unknown fields instead of ignoring them. In future versions, we will set the default value of this parameter to true to avoid misconfigurations.
  • Support SSH reverse tunneling. With this feature, you can expose your local service without running frpc, only using SSH. The SSH reverse tunnel agent has many functional limitations compared to the frpc agent. The currently supported proxy types are tcp, http, https, tcpmux, and stcp.
  • The frpc tcpmux command line parameters have been updated to support configuring http_user and http_pwd.
  • The frpc stcp/sudp/xtcp command line parameters have been updated to support configuring allow_users.

Fixes

  • frpc: Return code 1 when the first login attempt fails and exits.
  • When auth.method is oidc and auth.additionalScopes contains HeartBeats, if obtaining AccessToken fails, the application will be unresponsive.

v0.52.3

24 Oct 02:57
44985f5
Compare
Choose a tag to compare

Fixes

  • admin_user is not effective in the INI configuration.

v0.52.2

23 Oct 03:17
c9ca935
Compare
Choose a tag to compare

Fixes

  • Encryption and compression are not displayed correctly in the dashboard.

v0.52.1

11 Oct 09:20
31fa3f0
Compare
Choose a tag to compare

Fixes

  • transport.tls.disableCustomTLSFirstByte doesn't have any effect.
  • The Server API did not return the data correctly.
  • The Dashboard is unable to display data.
  • natHoleStunServer is missing a default value.

v0.52.0

10 Oct 09:55
2d3af8a
Compare
Choose a tag to compare

Features

  • Configuration: We now support TOML, YAML, and JSON for configuration. Please note that INI is deprecated and will be removed in future releases. New features will only be available in TOML, YAML, or JSON. Users wanting these new features should switch their configuration format accordingly. #2521

Breaking Changes

  • Change the way to start the visitor through the command line from frpc stcp --role=visitor xxx to frpc stcp visitor xxx.
  • Modified the semantics of the server_addr in the command line, no longer including the port. Added the server_port parameter to configure the port.
  • No longer support range ports mapping in TOML/YAML/JSON.