Commit Graph

597 Commits

Author SHA1 Message Date
世界 467c3b505b platform: Add tailscale device name and logout 2026-06-02 18:18:33 +08:00
世界 ba2d6c6ba4 Bump version 2026-05-31 18:04:47 +08:00
世界 ebab5b4ae1 tailscale: Add tailssh server 2026-05-31 18:04:47 +08:00
世界 b6c416b048 Bump version 2026-05-26 17:45:17 +08:00
世界 87c36ab251 hysteria2: Add gecko obfs 2026-05-25 23:21:57 +08:00
世界 812a8fdaee Bump version 2026-05-22 12:03:03 +08:00
世界 8785b39b15 tailscale: Revert dialer deprecation and remove control_http_client 2026-05-20 20:33:05 +08:00
世界 6b07a22918 Bump version 2026-05-15 13:19:21 +08:00
世界 588c8bac77 Fix hysteria2 realm server 2026-05-15 07:43:30 +08:00
世界 627558230d Update hysteria2 realm 2026-05-15 07:43:29 +08:00
世界 0ce4cbdeb7 Add hysteria2 realm service and support 2026-05-15 07:43:29 +08:00
macronut ef06e4c2c0 Add more spoof method
Signed-off-by: macronut <4027187+macronut@users.noreply.github.com>
2026-05-15 07:43:29 +08:00
世界 ac900b1742 Allow customizing TUN DNS mode and hijack interface DNS by default 2026-05-15 07:43:29 +08:00
世界 93d3869f48 dns: Add mDNS server 2026-05-15 07:43:29 +08:00
世界 d02a055122 dns: Add preferred_by rule item 2026-05-15 07:43:29 +08:00
世界 d701464377 dns: Add neighbor-based hostname resolution to local server 2026-05-15 07:43:29 +08:00
世界 7b258f2430 dns: Add timeout configuration 2026-05-14 21:56:21 +08:00
世界 19f696d1f6 ssh: Add cipher, MAC, and key exchange configuration 2026-05-14 21:56:21 +08:00
nekohasekai d7f4cefce8 Add Windows TLS engine 2026-05-14 21:56:21 +08:00
世界 88486daac7 Add ACME profile support for IP address certificates 2026-05-14 21:56:21 +08:00
世界 6d1803f2a4 Add search domain support for Tailscale DNS 2026-05-14 21:56:20 +08:00
世界 8224f2e5f9 Reject pure-IP rule-set references without match_response
DNS rules referencing rule-sets that contain only ip_cidr predicates
silently stopped matching when legacy DNS mode was disabled, because the
IP-CIDR branch cannot match against an in-flight DNS query. The existing
validation intentionally let every rule_set through on the premise that
mixed sets still work via their non-IP branches, which is only true when
such a branch exists. Track whether a rule-set carries any non-IP-CIDR
predicate and reject pure-IP references the same way bare ip_cidr fields
are already rejected.
2026-05-14 21:56:20 +08:00
世界 227e0ca30f Add TLS spoof support 2026-05-14 21:56:20 +08:00
世界 195e129000 Refactor: HTTP clients, unified HTTP2/QUIC options, Apple engines 2026-05-14 21:56:20 +08:00
世界 6f23a9652b Add optimistic DNS cache 2026-05-14 21:56:20 +08:00
世界 9b44e1b9da documentation: Fix missing update for ip_version and query_type 2026-05-14 21:56:20 +08:00
世界 0cc595866c Add cloudflared inbound 2026-05-14 21:56:20 +08:00
世界 0a9d8f945e Add package_name_regex route, DNS and headless rule item 2026-05-14 21:56:20 +08:00
世界 39dda9fb42 documentation: Fixes 2026-05-14 21:56:20 +08:00
世界 825f86af7d Un-deprecate ip_accept_any DNS rule item 2026-05-14 21:56:20 +08:00
nekohasekai 6fa641a277 Add evaluate DNS rule action and related rule items 2026-05-14 21:55:53 +08:00
世界 914fc9c2c9 Add BBR profile and hop interval randomization for Hysteria2 2026-05-14 16:37:11 +08:00
nekohasekai 4c6ff22afa Refactor ACME support to certificate provider 2026-05-14 16:37:10 +08:00
世界 f0a057c330 documentation: Update descriptions for neighbor rules 2026-05-14 16:37:10 +08:00
世界 443bec777e Add MAC and hostname rule items 2026-05-14 16:36:54 +08:00
世界 1086ab2563 Bump version 1.13.12 2026-05-14 15:11:09 +08:00
世界 553cfa1f9f Bump version 2026-04-23 07:30:34 +08:00
世界 a3fc14f35f Bump version 2026-04-22 13:40:36 +08:00
世界 d942ecc904 Bump version 1.13.9 2026-04-20 09:49:39 +08:00
世界 c3de6a25fb documentation: Remove warp ads 2026-04-20 09:49:39 +08:00
世界 bb3ad9c694 documentation: Fix typo 2026-04-14 16:00:47 +08:00
世界 d5adb54bc6 Bump version 2026-04-14 14:33:19 +08:00
世界 025b947a24 Bump version 2026-04-10 16:23:45 +08:00
世界 813b634d08 Bump version 2026-04-06 23:09:11 +08:00
世界 7ffdc48b49 Bump version 2026-03-30 23:03:43 +08:00
世界 d09182614c Bump version 2026-03-26 13:28:33 +08:00
世界 b0c6762bc1 route: merge rule_set branches into outer rules
Treat rule_set items as merged branches instead of standalone boolean
sub-items.

Evaluate each branch inside a referenced rule-set as if it were merged
into the outer rule and keep OR semantics between branches. This lets
outer grouped fields satisfy matching groups inside a branch without
introducing a standalone outer fallback or cross-branch state union.

Keep inherited grouped state outside inverted default and logical
branches. Negated rule-set branches now evaluate !(...) against their
own conditions and only reapply the outer grouped match after negation
succeeds, so configs like outer-group && !inner-condition continue to
work.

Add regression tests for same-group merged matches, cross-group and
extra-AND failures, DNS merged-branch behaviour, and inverted merged
branches. Update the route and DNS rule docs to clarify that rule-set
branches merge into the outer rule while keeping OR semantics between
branches.
2026-03-25 14:00:29 +08:00
世界 686cf1f304 documentation: Fix Chinese link anchors 2026-03-16 12:24:10 +08:00
世界 d3768cca36 Bump version 2026-03-15 17:56:37 +08:00
深鸣 f46fbf188a documentation: Minor fixes 2026-03-15 17:56:37 +08:00