Skip to content

Commit e483c90

Browse files
committed
documentation: Bump version
1 parent d9579c2 commit e483c90

File tree

1 file changed

+220
-2
lines changed

1 file changed

+220
-2
lines changed

docs/changelog.md

+220-2
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,234 @@
22
icon: material/alert-decagram
33
---
44

5-
### 1.10.6
5+
#### 1.11.0-beta.20
66

7+
* Hysteria2 `ignore_client_bandwidth` behavior update **1**
78
* Fixes and improvements
89

10+
**1**:
11+
12+
When `up_mbps` and `down_mbps` are set, `ignore_client_bandwidth` instead denies clients from using BBR CC.
13+
14+
See [Hysteria2](/configuration/inbound/hysteria2/#ignore_client_bandwidth).
15+
16+
#### 1.11.0-beta.17
17+
18+
* Add port hopping support for Hysteria2 **1**
19+
* Fixes and improvements
20+
21+
**1**:
22+
23+
See [Hysteria2](/configuration/outbound/hysteria2/).
24+
25+
#### 1.11.0-beta.14
26+
27+
* Allow adding route (exclude) address sets to routes **1**
28+
* Fixes and improvements
29+
30+
**1**:
31+
32+
When `auto_redirect` is not enabled, directly add `route[_exclude]_address_set`
33+
to tun routes (equivalent to `route[_exclude]_address`).
34+
35+
Note that it **doesn't work on the Android graphical client** due to
36+
the Android VpnService not being able to handle a large number of routes (DeadSystemException),
37+
but otherwise it works fine on all command line clients and Apple platforms.
38+
39+
See [route_address_set](/configuration/inbound/tun/#route_address_set) and
40+
[route_exclude_address_set](/configuration/inbound/tun/#route_exclude_address_set).
41+
42+
#### 1.11.0-beta.12
43+
44+
* Add `rule-set merge` command
45+
* Fixes and improvements
46+
47+
#### 1.11.0-beta.3
48+
49+
* Add more masquerade options for hysteria2 **1**
50+
* Fixes and improvements
51+
52+
**1**:
53+
54+
See [Hysteria2](/configuration/inbound/hysteria2/#masquerade).
55+
56+
#### 1.11.0-alpha.25
57+
58+
* Update quic-go to v0.48.2
59+
* Fixes and improvements
60+
61+
#### 1.11.0-alpha.22
62+
63+
* Add UDP timeout route option **1**
64+
* Fixes and improvements
65+
66+
**1**:
67+
68+
See [Rule Action](/configuration/route/rule_action/#udp_timeout).
69+
70+
#### 1.11.0-alpha.20
71+
72+
* Add UDP GSO support for WireGuard
73+
* Make GSO adaptive **1**
74+
75+
**1**:
76+
77+
For WireGuard outbound and endpoint, GSO will be automatically enabled when available,
78+
see [WireGuard Outbound](/configuration/outbound/wireguard/#gso).
79+
80+
For TUN, GSO has been removed,
81+
see [Deprecated](/deprecated/#gso-option-in-tun).
82+
83+
#### 1.11.0-alpha.19
84+
85+
* Upgrade WireGuard outbound to endpoint **1**
86+
* Fixes and improvements
87+
88+
**1**:
89+
90+
The new WireGuard endpoint combines inbound and outbound capabilities,
91+
and the old outbound will be removed in sing-box 1.13.0.
92+
93+
See [Endpoint](/configuration/endpoint/), [WireGuard Endpoint](/configuration/endpoint/wireguard/)
94+
and [Migrate WireGuard outbound fields to route options](/migration/#migrate-wireguard-outbound-to-endpoint).
95+
996
### 1.10.2
1097

1198
* Add deprecated warnings
1299
* Fix proxying websocket connections in HTTP/mixed inbounds
13100
* Fixes and improvements
14101

102+
#### 1.11.0-alpha.18
103+
104+
* Fixes and improvements
105+
106+
#### 1.11.0-alpha.16
107+
108+
* Add `cache_capacity` DNS option **1**
109+
* Add `override_address` and `override_port` route options **2**
110+
* Fixes and improvements
111+
112+
**1**:
113+
114+
See [DNS](/configuration/dns/#cache_capacity).
115+
116+
**2**:
117+
118+
See [Rule Action](/configuration/route/#override_address) and
119+
[Migrate destination override fields to route options](/migration/#migrate-destination-override-fields-to-route-options).
120+
121+
#### 1.11.0-alpha.15
122+
123+
* Improve multi network dialing **1**
124+
* Fixes and improvements
125+
126+
**1**:
127+
128+
New options allow you to configure the network strategy flexibly.
129+
130+
See [Dial Fields](/configuration/shared/dial/#network_strategy),
131+
[Rule Action](/configuration/route/rule_action/#network_strategy)
132+
and [Route](/configuration/route/#default_network_strategy).
133+
134+
#### 1.11.0-alpha.14
135+
136+
* Add multi network dialing **1**
137+
* Fixes and improvements
138+
139+
**1**:
140+
141+
Similar to Surge's strategy.
142+
143+
New options allow you to connect using multiple network interfaces,
144+
prefer or only use one type of interface,
145+
and configure a timeout to fallback to other interfaces.
146+
147+
See [Dial Fields](/configuration/shared/dial/#network_strategy),
148+
[Rule Action](/configuration/route/rule_action/#network_strategy)
149+
and [Route](/configuration/route/#default_network_strategy).
150+
151+
#### 1.11.0-alpha.13
152+
153+
* Fixes and improvements
154+
155+
#### 1.11.0-alpha.12
156+
157+
* Merge route options to route actions **1**
158+
* Add `network_type`, `network_is_expensive` and `network_is_constrainted` rule items **2**
159+
* Fixes and improvements
160+
161+
**1**:
162+
163+
Route options in DNS route actions will no longer be considered deprecated,
164+
see [DNS Route Action](/configuration/dns/rule_action/).
165+
166+
Also, now `udp_disable_domain_unmapping` and `udp_connect` can also be configured in route action,
167+
see [Route Action](/configuration/route/rule_action/).
168+
169+
**2**:
170+
171+
When using in graphical clients, new routing rule items allow you to match on
172+
network type (WIFI, cellular, etc.), whether the network is expensive, and whether Low Data Mode is enabled.
173+
174+
See [Route Rule](/configuration/route/rule/), [DNS Route Rule](/configuration/dns/rule/)
175+
and [Headless Rule](/configuration/rule-set/headless-rule/).
176+
177+
#### 1.11.0-alpha.9
178+
179+
* Improve tun compatibility **1**
180+
* Fixes and improvements
181+
182+
**1**:
183+
184+
When `gvisor` tun stack is enabled, even if the request passes routing,
185+
if the outbound connection establishment fails,
186+
the connection still does not need to be established and a TCP RST is replied.
187+
188+
#### 1.11.0-alpha.7
189+
190+
* Introducing rule actions **1**
191+
192+
**1**:
193+
194+
New rule actions replace legacy inbound fields and special outbound fields,
195+
and can be used for pre-matching **2**.
196+
197+
See [Rule](/configuration/route/rule/),
198+
[Rule Action](/configuration/route/rule_action/),
199+
[DNS Rule](/configuration/dns/rule/) and
200+
[DNS Rule Action](/configuration/dns/rule_action/).
201+
202+
For migration, see
203+
[Migrate legacy special outbounds to rule actions](/migration/#migrate-legacy-special-outbounds-to-rule-actions),
204+
[Migrate legacy inbound fields to rule actions](/migration/#migrate-legacy-inbound-fields-to-rule-actions)
205+
and [Migrate legacy DNS route options to rule actions](/migration/#migrate-legacy-dns-route-options-to-rule-actions).
206+
207+
**2**:
208+
209+
Similar to Surge's pre-matching.
210+
211+
Specifically, new rule actions allow you to reject connections with
212+
TCP RST (for TCP connections) and ICMP port unreachable (for UDP packets)
213+
before connection established to improve tun's compatibility.
214+
215+
See [Rule Action](/configuration/route/rule_action/).
216+
217+
#### 1.11.0-alpha.6
218+
219+
* Update quic-go to v0.48.1
220+
* Set gateway for tun correctly
221+
* Fixes and improvements
222+
223+
#### 1.11.0-alpha.2
224+
225+
* Add warnings for usage of deprecated features
226+
* Fixes and improvements
227+
228+
#### 1.11.0-alpha.1
229+
230+
* Update quic-go to v0.48.0
231+
* Fixes and improvements
232+
15233
### 1.10.1
16234

17235
* Fixes and improvements
@@ -87,7 +305,7 @@ allows you to write headless rules directly without creating a rule-set file.
87305

88306
**8**:
89307

90-
With the new access control options, not only can you allow Clash dashboards
308+
With new access control options, not only can you allow Clash dashboards
91309
to access the Clash API on your local network,
92310
you can also manually limit the websites that can access the API instead of allowing everyone.
93311

0 commit comments

Comments
 (0)