Compare commits

..

21 Commits

Author SHA1 Message Date
世界
a3c108b3a6
documentation: Bump version 2025-08-21 11:31:32 +08:00
世界
315e0f720a
Fix wireguard crash 2025-08-21 09:44:16 +08:00
世界
3e39ac8558
documentation: Update behavior of local DNS server on darwin 2025-08-21 09:44:16 +08:00
世界
9f4aa88ca8
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-21 09:44:16 +08:00
世界
0ed86db4ee
Remove use of ldflags -checklinkname=0 on darwin 2025-08-21 09:44:16 +08:00
世界
3de913c420
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-21 09:44:15 +08:00
世界
d35e71bee6
Fix legacy DNS config 2025-08-21 09:44:15 +08:00
世界
c79fc86c36
Fix rule-set format 2025-08-21 09:44:15 +08:00
世界
e398e01269
documentation: Remove outdated icons 2025-08-21 09:44:15 +08:00
世界
a6a34c1968
documentation: Improve local DNS server 2025-08-21 09:44:14 +08:00
世界
25b9ae17c4
Use libresolv in local DNS server on darwin 2025-08-21 09:44:14 +08:00
世界
354cfe9899
Use resolved in local DNS server if available 2025-08-21 09:44:13 +08:00
xchacha20-poly1305
ca6575b582
Fix rule set version 2025-08-21 09:44:13 +08:00
世界
897c18b3e0
documentation: Add preferred_by route rule item 2025-08-21 09:44:13 +08:00
世界
67d1ab760f
Add preferred_by route rule item 2025-08-21 09:44:13 +08:00
世界
1d91ec5c50
documentation: Add interface address rule items 2025-08-21 09:44:12 +08:00
世界
884144c522
Add interface address rule items 2025-08-21 09:44:12 +08:00
neletor
2413c7caef
Add support for ech retry configs 2025-08-21 09:44:12 +08:00
Zephyruso
d53947be2a
Add /dns/flush-clash meta api 2025-08-21 09:44:12 +08:00
世界
b40f642fa4
Bump version 2025-08-21 09:43:47 +08:00
世界
22782ca6fc
Fix outbound start 2025-08-21 09:41:31 +08:00
2 changed files with 9 additions and 1 deletions

@ -1 +1 @@
Subproject commit 597c18482f6edc44e0c94b7cc849dd03b2121c45
Subproject commit 24b26130071bd96c660deeecc4931a3e31339681

View File

@ -6,6 +6,14 @@ icon: material/alert-decagram
* Fixes and improvements
#### 1.12.3
* Fixes and improvements
#### 1.13.0-alpha.5
* Fixes and improvements
#### 1.12.2
* Fixes and improvements