diff --git a/constant/version.go b/constant/version.go index 32e5b322..1f8cb38b 100644 --- a/constant/version.go +++ b/constant/version.go @@ -1,3 +1,3 @@ package constant -var Version = "1.1-beta9" +var Version = "1.1-beta10" diff --git a/docs/changelog.md b/docs/changelog.md index 4c5e5066..2a3bf512 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,3 +1,31 @@ +#### 1.1-beta10 + +* Add [sniff_timeout](/configuration/shared/listen#sniff_timeout) listen option +* Add [custom route](/configuration/inbound/tun#inet4_route_address) support for tun **1** +* Fix interface monitor +* Fix websocket headroom +* Fix uTLS handshake +* Fix ssh outbound +* Fix sniff fragmented quic client hello +* Fix DF for hysteria +* Fix naive overflow +* Check destination before udp connect +* Update uTLS to v1.1.5 +* Update tfo-go to v2.0.2 +* Update fsnotify to v1.6.0 +* Update grpc to v1.50.1 + +*1*: + +The `strict_route` on windows is removed. + +#### 1.0.6 + +* Fix ssh outbound +* Fix sniff fragmented quic client hello +* Fix naive overflow +* Check destination before udp connect + #### 1.1-beta9 * Fix windows route **1** diff --git a/docs/configuration/shared/listen.md b/docs/configuration/shared/listen.md index 85d3e367..f20d42a3 100644 --- a/docs/configuration/shared/listen.md +++ b/docs/configuration/shared/listen.md @@ -8,6 +8,7 @@ "udp_fragment": false, "sniff": false, "sniff_override_destination": false, + "sniff_timeout": "300ms", "domain_strategy": "prefer_ipv6", "udp_timeout": 300, "proxy_protocol": false, @@ -57,6 +58,12 @@ Override the connection destination address with the sniffed domain. If the domain name is invalid (like tor), this will not work. +#### sniff_timeout + +Timeout for sniffing. + +300ms is used by default. + #### domain_strategy One of `prefer_ipv4` `prefer_ipv6` `ipv4_only` `ipv6_only`. diff --git a/docs/configuration/shared/listen.zh.md b/docs/configuration/shared/listen.zh.md index 46b97bef..f9f469d2 100644 --- a/docs/configuration/shared/listen.zh.md +++ b/docs/configuration/shared/listen.zh.md @@ -8,6 +8,7 @@ "udp_fragment": false, "sniff": false, "sniff_override_destination": false, + "sniff_timeout": "300ms", "domain_strategy": "prefer_ipv6", "udp_timeout": 300, "proxy_protocol": false, @@ -58,6 +59,12 @@ 如果域名无效(如 Tor),将不生效。 +#### sniff_timeout + +探测超时时间。 + +默认使用 300ms。 + #### domain_strategy 可选值: `prefer_ipv4` `prefer_ipv6` `ipv4_only` `ipv6_only`。