Compare commits

..

20 Commits

Author SHA1 Message Date
世界
209f9c361e
documentation: Bump version 2025-08-20 16:28:34 +08:00
世界
16b6cc0479
Fix wireguard crash 2025-08-20 16:28:21 +08:00
世界
3849b130be
documentation: Update behavior of local DNS server on darwin 2025-08-20 16:28:21 +08:00
世界
e53fce3366
Stop using DHCP on iOS and tvOS
We do not have the `com.apple.developer.networking.multicast` entitlement and are unable to obtain it for non-technical reasons.
2025-08-20 16:28:21 +08:00
世界
286d0d4138
Remove use of ldflags -checklinkname=0 on darwin 2025-08-20 16:28:21 +08:00
世界
727ff3c43d
Fix local DNS server on darwin
We mistakenly believed that `libresolv`'s `search` function worked correctly in NetworkExtension, but it seems only `getaddrinfo` does.

This commit changes the behavior of the `local` DNS server in NetworkExtension to prefer DHCP, falling back to `getaddrinfo` if DHCP servers are unavailable.

It's worth noting that `prefer_go` does not disable DHCP since it respects Dial Fields, but `getaddrinfo` does the opposite. The new behavior only applies to NetworkExtension, not to all scenarios (primarily command-line binaries) as it did previously.

In addition, this commit also improves the DHCP DNS server to use the same robust query logic as `local`.
2025-08-20 16:28:21 +08:00
世界
ed5ef93cd8
Fix legacy DNS config 2025-08-20 16:28:20 +08:00
世界
7dd35c93ba
Fix rule-set format 2025-08-20 16:28:20 +08:00
世界
c1023e80dc
documentation: Remove outdated icons 2025-08-20 16:28:20 +08:00
世界
37b2e5c1c9
documentation: Improve local DNS server 2025-08-20 16:28:20 +08:00
世界
9170746e7a
Use libresolv in local DNS server on darwin 2025-08-20 16:28:19 +08:00
世界
f918c5113c
Use resolved in local DNS server if available 2025-08-20 16:28:19 +08:00
xchacha20-poly1305
78208de071
Fix rule set version 2025-08-20 16:28:19 +08:00
世界
fac5643628
documentation: Add preferred_by route rule item 2025-08-20 16:28:18 +08:00
世界
d2c8232dc3
Add preferred_by route rule item 2025-08-20 16:28:18 +08:00
世界
067739cba8
documentation: Add interface address rule items 2025-08-20 16:28:18 +08:00
世界
d404503c16
Add interface address rule items 2025-08-20 16:28:18 +08:00
neletor
9031a3dfa9
Add support for ech retry configs 2025-08-20 16:28:18 +08:00
Zephyruso
a57f22d28e
Add /dns/flush-clash meta api 2025-08-20 16:28:18 +08:00
世界
1468d83895
Make realityClientConnWrapper replaceable 2025-08-20 16:26:27 +08:00
2 changed files with 9 additions and 1 deletions

View File

@ -307,3 +307,11 @@ func (c *realityClientConnWrapper) Upstream() any {
func (c *realityClientConnWrapper) CloseWrite() error {
return c.Close()
}
func (c *realityClientConnWrapper) ReaderReplaceable() bool {
return true
}
func (c *realityClientConnWrapper) WriterReplaceable() bool {
return true
}

View File

@ -2,7 +2,7 @@
icon: material/alert-decagram
---
#### 1.13.0-alpha.4
#### 1.13.0-alpha.5
* Fixes and improvements