Skip to content

Commit 4f8b382

Browse files
committed
documentation: Bump version
1 parent 41f4b71 commit 4f8b382

File tree

1 file changed

+203
-1
lines changed

1 file changed

+203
-1
lines changed

docs/changelog.md

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

5+
#### 1.11.0-beta.14
6+
7+
* Allow adding route (exclude) address sets to routes **1**
8+
* Fixes and improvements
9+
10+
**1**:
11+
12+
When `auto_redirect` is not enabled, directly add `route[_exclude]_address_set`
13+
to tun routes (equivalent to `route[_exclude]_address`).
14+
15+
Note that it **doesn't work on the Android graphical client** due to
16+
the Android VpnService not being able to handle a large number of routes (DeadSystemException),
17+
but otherwise it works fine on all command line clients and Apple platforms.
18+
19+
See [route_address_set](/configuration/inbound/tun/#route_address_set) and
20+
[route_exclude_address_set](/configuration/inbound/tun/#route_exclude_address_set).
21+
22+
#### 1.11.0-beta.12
23+
24+
* Add `rule-set merge` command
25+
* Fixes and improvements
26+
527
### 1.10.5
628

729
* Fixes and improvements
830

31+
#### 1.11.0-beta.3
32+
33+
* Add more masquerade options for hysteria2 **1**
34+
* Fixes and improvements
35+
36+
**1**:
37+
38+
See [Hysteria2](/configuration/inbound/hysteria2/#masquerade).
39+
40+
#### 1.11.0-alpha.25
41+
42+
* Update quic-go to v0.48.2
43+
* Fixes and improvements
44+
45+
#### 1.11.0-alpha.22
46+
47+
* Add UDP timeout route option **1**
48+
* Fixes and improvements
49+
50+
**1**:
51+
52+
See [Rule Action](/configuration/route/rule_action/#udp_timeout).
53+
54+
#### 1.11.0-alpha.20
55+
56+
* Add UDP GSO support for WireGuard
57+
* Make GSO adaptive **1**
58+
59+
**1**:
60+
61+
For WireGuard outbound and endpoint, GSO will be automatically enabled when available,
62+
see [WireGuard Outbound](/configuration/outbound/wireguard/#gso).
63+
64+
For TUN, GSO has been removed,
65+
see [Deprecated](/deprecated/#gso-option-in-tun).
66+
67+
#### 1.11.0-alpha.19
68+
69+
* Upgrade WireGuard outbound to endpoint **1**
70+
* Fixes and improvements
71+
72+
**1**:
73+
74+
The new WireGuard endpoint combines inbound and outbound capabilities,
75+
and the old outbound will be removed in sing-box 1.13.0.
76+
77+
See [Endpoint](/configuration/endpoint/), [WireGuard Endpoint](/configuration/endpoint/wireguard/)
78+
and [Migrate WireGuard outbound fields to route options](/migration/#migrate-wireguard-outbound-to-endpoint).
79+
980
### 1.10.2
1081

1182
* Add deprecated warnings
1283
* Fix proxying websocket connections in HTTP/mixed inbounds
1384
* Fixes and improvements
1485

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

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

88290
**8**:
89291

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

0 commit comments

Comments
 (0)