You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/changelog.md
+259Lines changed: 259 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,18 +2,204 @@
2
2
icon: material/alert-decagram
3
3
---
4
4
5
+
#### 1.13.0-beta.5
6
+
7
+
* Fixes and improvements
8
+
5
9
#### 1.12.16
6
10
7
11
* Fixes and improvements
8
12
13
+
#### 1.13.0-beta.4
14
+
15
+
* Apple/Android: Add support for sharing configurations via [QRS](https://github.com/qifi-dev/qrs)
16
+
* Android: Add support for resisting VPN detection via Xposed
17
+
* Update quic-go to v0.59.0
18
+
* Fixes and improvements
19
+
20
+
#### 1.13.0-beta.2
21
+
22
+
* Add `bind_address_no_port` option for dial fields **1**
23
+
* Fixes and improvements
24
+
25
+
**1**:
26
+
27
+
Adds the Linux socket option `IP_BIND_ADDRESS_NO_PORT` support when explicitly binding to a source address.
28
+
29
+
This allows reusing the same source port for multiple connections, improving scalability for high-concurrency proxy scenarios.
30
+
31
+
See [Dial Fields](/configuration/shared/dial/#bind_address_no_port).
32
+
33
+
#### 1.13.0-beta.1
34
+
35
+
* Add system interface support for Tailscale endpoint **1**
36
+
* Fixes and improvements
37
+
38
+
**1**:
39
+
40
+
Tailscale endpoint can now create a system TUN interface to handle traffic directly.
41
+
42
+
See [Tailscale endpoint](/configuration/endpoint/tailscale/#system_interface).
43
+
9
44
#### 1.12.15
10
45
11
46
* Fixes and improvements
12
47
48
+
#### 1.13.0-alpha.36
49
+
50
+
* Downgrade quic-go to v0.57.1
51
+
* Fixes and improvements
52
+
53
+
#### 1.13.0-alpha.35
54
+
55
+
* Add pre-match support for `auto_redirect`**1**
56
+
* Fixes and improvements
57
+
58
+
**1**:
59
+
60
+
`auto_redirect` now allows you to bypass sing-box for connections based on routing rules.
61
+
62
+
A new rule action `bypass` is introduced to support this feature. When matched during pre-match, the connection will bypass sing-box and connect directly.
63
+
64
+
This feature requires Linux with `auto_redirect` enabled.
65
+
66
+
See [Pre-match](/configuration/shared/pre-match/) and [Rule Action](/configuration/route/rule_action/#bypass).
67
+
68
+
#### 1.13.0-alpha.34
69
+
70
+
* Add Chrome Root Store certificate option **1**
71
+
* Add new options for ACME DNS-01 challenge providers **2**
72
+
* Add Wi-Fi state support for Linux and Windows **3**
73
+
* Update naiveproxy to 143.0.7499.109
74
+
* Update quic-go to v0.58.0
75
+
* Update tailscale to v1.92.4
76
+
* Drop support for go1.23 **4**
77
+
* Drop support for Android 5.0 **5**
78
+
79
+
**1**:
80
+
81
+
Adds `chrome` as a new certificate store option alongside `mozilla`.
82
+
Both stores filter out China-based CA certificates.
83
+
84
+
See [Certificate](/configuration/certificate/#store).
85
+
86
+
**2**:
87
+
88
+
See [DNS-01 Challenge](/configuration/shared/dns01_challenge/).
89
+
90
+
**3**:
91
+
92
+
sing-box can now monitor Wi-Fi state on Linux and Windows to enable routing rules based on `wifi_ssid` and `wifi_bssid`.
93
+
94
+
See [Wi-Fi State](/configuration/shared/wifi-state/).
95
+
96
+
**4**:
97
+
98
+
Due to maintenance difficulties, sing-box 1.13.0 requires at least Go 1.24 to compile.
99
+
100
+
**5**:
101
+
102
+
Due to maintenance difficulties, sing-box 1.13.0 will be the last version to support Android 5.0,
103
+
and only through a separate legacy build (with `-legacy-android-5` suffix).
104
+
105
+
For standalone binaries, the minimum Android version has been raised to Android 6.0,
106
+
since Termux requires Android 7.0 or later.
107
+
13
108
#### 1.12.14
14
109
15
110
* Fixes and improvements
16
111
112
+
#### 1.13.0-alpha.33
113
+
114
+
* Fixes and improvements
115
+
116
+
#### 1.13.0-alpha.32
117
+
118
+
* Remove `certificate_public_key_sha256` option for NaiveProxy outbound **1**
119
+
* Fixes and improvements
120
+
121
+
**1**:
122
+
123
+
Self-signed certificates change traffic behavior significantly, which defeats the purpose of NaiveProxy's design to resist traffic analysis.
124
+
For this reason, and due to maintenance costs, there is no reason to continue supporting `certificate_public_key_sha256`, which was designed to simplify the use of self-signed certificates.
125
+
126
+
#### 1.13.0-alpha.31
127
+
128
+
* Add QUIC support for NaiveProxy outbound **1**
129
+
* Add QUIC congestion control option for NaiveProxy **2**
130
+
* Fixes and improvements
131
+
132
+
**1**:
133
+
134
+
NaiveProxy outbound now supports QUIC.
135
+
136
+
See [NaiveProxy outbound](/configuration/outbound/naive/#quic).
137
+
138
+
**2**:
139
+
140
+
NaiveProxy inbound and outbound now supports configurable QUIC congestion control algorithms, including BBR and BBRv2.
141
+
142
+
See [NaiveProxy inbound](/configuration/inbound/naive/#quic_congestion_control) and [NaiveProxy outbound](/configuration/outbound/naive/#quic_congestion_control).
143
+
144
+
#### 1.13.0-alpha.30
145
+
146
+
* Add ECH support for NaiveProxy outbound **1**
147
+
* Add `tls.ech.query_server_name` option **2**
148
+
* Fix NaiveProxy outbound on Windows **3**
149
+
* Add OpenAI Codex Multiplexer service **4**
150
+
* Fixes and improvements
151
+
152
+
**1**:
153
+
154
+
See [NaiveProxy outbound](/configuration/outbound/naive/#tls).
155
+
156
+
**2**:
157
+
158
+
See [TLS](/configuration/shared/tls/#query_server_name).
159
+
160
+
**3**:
161
+
162
+
Each Windows release now includes `libcronet.dll`.
163
+
Ensure this file is in the same directory as `sing-box.exe` or in a directory listed in `PATH`.
164
+
165
+
**4**:
166
+
167
+
See [OCM](/configuration/service/ocm).
168
+
169
+
#### 1.13.0-alpha.29
170
+
171
+
* Add UDP over TCP support for naiveproxy outbound **1**
172
+
* Fixes and improvements
173
+
174
+
**1**:
175
+
176
+
See [NaiveProxy outbound](/configuration/outbound/naive/#udp_over_tcp).
177
+
178
+
#### 1.13.0-alpha.28
179
+
180
+
* Add naiveproxy outbound **1**
181
+
* Add `disable_tcp_keep_alive`, `tcp_keep_alive` and `tcp_keep_alive_interval` options for dial fields **2**
182
+
* Update default TCP keep-alive initial period from 10 minutes to 5 minutes
183
+
* Update quic-go to v0.57.1
184
+
* Fixes and improvements
185
+
186
+
**1**:
187
+
188
+
Only available on Apple platforms, Android, Windows and some Linux architectures.
189
+
190
+
See [NaiveProxy outbound](/configuration/outbound/naive/).
191
+
192
+
**2**:
193
+
194
+
See [Dial Fields](/configuration/shared/dial/#tcp_keep_alive).
195
+
196
+
*__Unfortunately, for non-technical reasons, we are currently unable to notarize the standalone version of the macOS client:
197
+
because system extensions require signatures to function, we have had to temporarily halt its release.__
198
+
199
+
__We plan to fix the App Store release issue and launch a new standalone desktop client, but until then,
200
+
only clients on TestFlight will be available (unless you have an Apple Developer Program and compile from source code).__
201
+
202
+
17
203
#### 1.12.13
18
204
19
205
* Fix naive inbound
@@ -29,10 +215,49 @@ only clients on TestFlight will be available (unless you have an Apple Developer
29
215
30
216
* Fixes and improvements
31
217
218
+
#### 1.13.0-alpha.26
219
+
220
+
* Update quic-go to v0.55.0
221
+
* Fix memory leak in hysteria2
222
+
* Fixes and improvements
223
+
32
224
#### 1.12.11
33
225
34
226
* Fixes and improvements
35
227
228
+
#### 1.13.0-alpha.24
229
+
230
+
* Add Claude Code Multiplexer service **1**
231
+
* Fixes and improvements
232
+
233
+
**1**:
234
+
235
+
CCM (Claude Code Multiplexer) service allows you to access your local Claude Code subscription remotely through custom tokens, eliminating the need for OAuth authentication on remote clients.
236
+
237
+
See [CCM](/configuration/service/ccm).
238
+
239
+
#### 1.13.0-alpha.23
240
+
241
+
* Fix compatibility with MPTCP **1**
242
+
* Fixes and improvements
243
+
244
+
**1**:
245
+
246
+
`auto_redirect` now rejects MPTCP connections by default to fix compatibility issues,
247
+
but you can change it to bypass the sing-box via the new `exclude_mptcp` option.
248
+
249
+
See [TUN](/configuration/inbound/tun/#exclude_mptcp).
250
+
251
+
#### 1.13.0-alpha.22
252
+
253
+
* Update uTLS to v1.8.1 **1**
254
+
* Fixes and improvements
255
+
256
+
**1**:
257
+
258
+
This update fixes an critical issue that could cause simulated Chrome fingerprints to be detected,
259
+
see https://github.com/refraction-networking/utls/pull/375.
260
+
36
261
#### 1.12.10
37
262
38
263
* Update uTLS to v1.8.1 **1**
@@ -43,18 +268,52 @@ only clients on TestFlight will be available (unless you have an Apple Developer
43
268
This update fixes an critical issue that could cause simulated Chrome fingerprints to be detected,
44
269
see https://github.com/refraction-networking/utls/pull/375.
45
270
271
+
#### 1.13.0-alpha.21
272
+
273
+
* Fix missing mTLS support in client options **1**
274
+
* Fixes and improvements
275
+
276
+
See [TLS](/configuration/shared/tls/).
277
+
46
278
#### 1.12.9
47
279
48
280
* Fixes and improvements
49
281
282
+
#### 1.13.0-alpha.16
283
+
284
+
* Add curve preferences, pinned public key SHA256 and mTLS for TLS options **1**
285
+
* Fixes and improvements
286
+
287
+
See [TLS](/configuration/shared/tls/).
288
+
289
+
#### 1.13.0-alpha.15
290
+
291
+
* Update quic-go to v0.54.0
292
+
* Update gVisor to v20250811
293
+
* Update Tailscale to v1.86.5
294
+
* Fixes and improvements
295
+
50
296
#### 1.12.8
51
297
52
298
* Fixes and improvements
53
299
300
+
#### 1.13.0-alpha.11
301
+
302
+
* Fixes and improvements
303
+
54
304
#### 1.12.5
55
305
56
306
* Fixes and improvements
57
307
308
+
#### 1.13.0-alpha.10
309
+
310
+
* Improve kTLS support **1**
311
+
* Fixes and improvements
312
+
313
+
**1**:
314
+
315
+
kTLS is now compatible with custom TLS implementations other than uTLS.
0 commit comments