Compare commits

..

27 Commits

Author SHA1 Message Date
世界
2e24f6a7f7 documentation: Bump version 2024-05-18 17:25:33 +08:00
世界
100911f9b7 documentation: Add manuel for mitigating tunnelvision attacks 2024-05-18 17:25:04 +08:00
世界
9bd961bfe4 documentation: Update DNS manual 2024-05-18 17:25:03 +08:00
世界
0141a47be7 dialer: Allow nil router 2024-05-18 17:25:03 +08:00
世界
bf1d4d045c Add rule-set match command 2024-05-18 17:25:03 +08:00
世界
423430c060 Add bypass_domain and search_domain platform HTTP proxy options 2024-05-18 17:25:03 +08:00
世界
44e0579f26 Handle includeAllNetworks 2024-05-18 17:25:03 +08:00
世界
1c87693aa4 Update gVisor to 20240422.0 2024-05-18 17:25:03 +08:00
世界
d2e2345bd5 Update quic-go to v0.43.1 2024-05-18 17:24:46 +08:00
世界
dcf68feec8 Fixed order for Clash modes 2024-05-18 17:23:55 +08:00
世界
3f6f879780 Add custom prefix support in EDNS0 client subnet options 2024-05-18 17:23:55 +08:00
气息
1fa7de078b Fix DNS exchange index
Signed-off-by: 气息 <qdshizh@gmail.com>
2024-05-18 17:23:55 +08:00
dyhkwong
3efaf834db Always disable cache for fake-ip servers 2024-05-18 17:23:55 +08:00
PuerNya
041a4992cf Always disable cache for fake-ip DNS transport if independent_cache disabled 2024-05-18 17:23:55 +08:00
世界
926e436347 Fix missing rule_set_ipcidr_match_source item in DNS rules 2024-05-18 17:23:55 +08:00
世界
8fc13e41d0 Improve DNS truncate behavior 2024-05-18 17:23:55 +08:00
世界
38eaf15360 Fix DNS fallthrough incorrectly 2024-05-18 17:23:54 +08:00
世界
f287856162 Add rejected DNS response cache support 2024-05-18 17:23:54 +08:00
世界
7763c7847e Add support for client-subnet DNS options 2024-05-18 17:23:54 +08:00
世界
53c3445291 Add address filter support for DNS rules 2024-05-18 17:23:54 +08:00
世界
6ebec97500 Fix timezone for Android and iOS 2024-05-18 17:23:15 +08:00
世界
fd38020bf4 Improve loopback detector 2024-05-18 17:23:15 +08:00
世界
e596213646 Remove unused fakeip packet conn 2024-05-18 17:23:15 +08:00
世界
fd36b07feb Set the default TCP keep alive period 2024-05-18 17:23:15 +08:00
世界
5ce43842d0 Migrate ntp service to library 2024-05-18 17:23:15 +08:00
世界
a8e480a35a Handle Windows power events 2024-05-18 17:23:15 +08:00
世界
8eee98f74e Improve domain suffix match behavior
For historical reasons, sing-box's `domain_suffix` rule matches literal prefixes instead of the same as other projects.

This change modifies the behavior of `domain_suffix`: If the rule value is prefixed with `.`,
the behavior is unchanged, otherwise it matches `(domain|.+\.domain)` instead.
2024-05-18 17:22:54 +08:00
3 changed files with 7 additions and 12 deletions

View File

@@ -2,15 +2,10 @@
icon: material/alert-decagram
---
#### 1.9.0-rc.21
#### 1.9.0-rc.19
* Fixes and improvements
#### 1.9.0-rc.20
* Prioritize `*_route_address` in linux auto-route
* Fix `*_route_address` in darwin auto-route
#### 1.8.14
* Fix hysteria2 panic

4
go.mod
View File

@@ -26,14 +26,14 @@ require (
github.com/sagernet/gvisor v0.0.0-20240428053021-e691de28565f
github.com/sagernet/quic-go v0.43.1-beta.1
github.com/sagernet/reality v0.0.0-20230406110435-ee17307e7691
github.com/sagernet/sing v0.4.0-beta.20
github.com/sagernet/sing v0.4.0-beta.19
github.com/sagernet/sing-dns v0.2.0-beta.18
github.com/sagernet/sing-mux v0.2.0
github.com/sagernet/sing-quic v0.2.0-beta.5
github.com/sagernet/sing-shadowsocks v0.2.6
github.com/sagernet/sing-shadowsocks2 v0.2.0
github.com/sagernet/sing-shadowtls v0.1.4
github.com/sagernet/sing-tun v0.3.0-beta.5
github.com/sagernet/sing-tun v0.3.0-beta.2
github.com/sagernet/sing-vmess v0.1.8
github.com/sagernet/smux v0.0.0-20231208180855-7041f6ea79e7
github.com/sagernet/tfo-go v0.0.0-20231209031829-7b5343ac1dc6

8
go.sum
View File

@@ -106,8 +106,8 @@ github.com/sagernet/quic-go v0.43.1-beta.1/go.mod h1:BkrQYeop7Jx3hN3TW8/76CXcdhY
github.com/sagernet/reality v0.0.0-20230406110435-ee17307e7691 h1:5Th31OC6yj8byLGkEnIYp6grlXfo1QYUfiYFGjewIdc=
github.com/sagernet/reality v0.0.0-20230406110435-ee17307e7691/go.mod h1:B8lp4WkQ1PwNnrVMM6KyuFR20pU8jYBD+A4EhJovEXU=
github.com/sagernet/sing v0.2.18/go.mod h1:OL6k2F0vHmEzXz2KW19qQzu172FDgSbUSODylighuVo=
github.com/sagernet/sing v0.4.0-beta.20 h1:8rEepj4LMcR0Wd389fJIziv/jr3MBtX5qXBHsfxJ+dY=
github.com/sagernet/sing v0.4.0-beta.20/go.mod h1:PFQKbElc2Pke7faBLv8oEba5ehtKO21Ho+TkYemTI3Y=
github.com/sagernet/sing v0.4.0-beta.19 h1:Kzh2f6eaxt09S+bEL8F4Bgy03qkNf+4Tt8g7/5lxp/o=
github.com/sagernet/sing v0.4.0-beta.19/go.mod h1:PFQKbElc2Pke7faBLv8oEba5ehtKO21Ho+TkYemTI3Y=
github.com/sagernet/sing-dns v0.2.0-beta.18 h1:6vzXZThRdA7YUzBOpSbUT48XRumtl/KIpIHFSOP0za8=
github.com/sagernet/sing-dns v0.2.0-beta.18/go.mod h1:k/dmFcQpg6+m08gC1yQBy+13+QkuLqpKr4bIreq4U24=
github.com/sagernet/sing-mux v0.2.0 h1:4C+vd8HztJCWNYfufvgL49xaOoOHXty2+EAjnzN3IYo=
@@ -120,8 +120,8 @@ github.com/sagernet/sing-shadowsocks2 v0.2.0 h1:wpZNs6wKnR7mh1wV9OHwOyUr21VkS3wK
github.com/sagernet/sing-shadowsocks2 v0.2.0/go.mod h1:RnXS0lExcDAovvDeniJ4IKa2IuChrdipolPYWBv9hWQ=
github.com/sagernet/sing-shadowtls v0.1.4 h1:aTgBSJEgnumzFenPvc+kbD9/W0PywzWevnVpEx6Tw3k=
github.com/sagernet/sing-shadowtls v0.1.4/go.mod h1:F8NBgsY5YN2beQavdgdm1DPlhaKQlaL6lpDdcBglGK4=
github.com/sagernet/sing-tun v0.3.0-beta.5 h1:z+4l1mGjPeepxT3mzHzE2pms995iUac/AyKQvRnWbWA=
github.com/sagernet/sing-tun v0.3.0-beta.5/go.mod h1:xPaOkQhngPMILx+/9DMLCFl4vSxUU2tMnCPSlf05HLo=
github.com/sagernet/sing-tun v0.3.0-beta.2 h1:sfeHWnBTKGpFUjXpT+O/JEwFP8oVAo3M0Xx94ghesjU=
github.com/sagernet/sing-tun v0.3.0-beta.2/go.mod h1:xPaOkQhngPMILx+/9DMLCFl4vSxUU2tMnCPSlf05HLo=
github.com/sagernet/sing-vmess v0.1.8 h1:XVWad1RpTy9b5tPxdm5MCU8cGfrTGdR8qCq6HV2aCNc=
github.com/sagernet/sing-vmess v0.1.8/go.mod h1:vhx32UNzTDUkNwOyIjcZQohre1CaytquC5mPplId8uA=
github.com/sagernet/smux v0.0.0-20231208180855-7041f6ea79e7 h1:DImB4lELfQhplLTxeq2z31Fpv8CQqqrUwTbrIRumZqQ=