Skip to content

Releases: fatedier/frp

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.

v0.51.3

14 Aug 04:10
466d69e
Compare
Choose a tag to compare

Features

  • Support Go 1.21.

v0.51.2

25 Jul 13:45
7c8cbeb
Compare
Choose a tag to compare

Features

  • Adds a completion command for shell completions.

Fixes

  • fix a goroutine leak issue caused by Login plugin timeout.
  • Fix an issue introduced in version 0.51.1, enabling use_compression will cause some requests to fail.

v0.51.1

20 Jul 14:49
4fd6301
Compare
Choose a tag to compare

Fixes

  • Fix the issue of not disabling tcp keepalive when configuring tcp_keepalive = -1 in frps.
  • Fix a race condition error.

v0.51.0

05 Jul 12:50
53626b3
Compare
Choose a tag to compare

Features

  • frpc supports connecting to frps via the wss protocol by enabling the configuration protocol = wss.
  • frpc supports stopping the service through the stop command.

Improvements

  • service.Run supports passing in context.

Fixes

  • Fix an issue caused by a bug in yamux that prevents wss from working properly in certain plugins.

v0.50.0

26 Jun 09:16
4fd800b
Compare
Choose a tag to compare

Notes

For enhanced security, the default values for tls_enable and disable_custom_tls_first_byte have been set to true.

If you wish to revert to the previous default values, you need to manually set the values of these two parameters to false.

Features

  • Added support for allow_users in stcp, sudp, xtcp. By default, only the same user is allowed to access. Use * to allow access from any user. The visitor configuration now supports server_user to connect to proxies of other users.
  • Added fallback support to a specified alternative visitor when xtcp connection fails.

Improvements

  • Increased the default value of MaxStreamWindowSize for yamux to 6MB, improving traffic forwarding rate in high-latency scenarios.

Fixes

  • Fixed an issue where having proxies with the same name would cause previously working proxies to become ineffective in xtcp.

v0.49.0

28 May 17:23
0d6d968
Compare
Choose a tag to compare

Notes

We have thoroughly refactored xtcp in this version to improve its penetration rate and stability.

In this version, different penetration strategies can be attempted by retrying connections multiple times. Once a hole is successfully punched, the strategy will be recorded in the server cache for future reuse. When new users connect, the successfully penetrated tunnel can be reused instead of punching a new hole.

Due to a significant refactor of xtcp, this version is not compatible with previous versions of xtcp.

To use features related to xtcp, both frpc and frps need to be updated to the latest version.

New

  • The frpc has added the nathole discover command for testing the NAT type of the current network.
  • XTCP has been refactored, resulting in a significant improvement in the success rate of penetration.
  • When verifying passwords, use subtle.ConstantTimeCompare and introduce a certain delay when the password is incorrect.

Fix

  • Fix the problem of lagging when opening multiple table entries in the frps dashboard.