diff --git a/docs/changelog.md b/docs/changelog.md index af80fb5b..cdde3ba0 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,3 +1,22 @@ +#### 1.3-beta1 + +* Add [DNS reverse mapping](/configuration/dns#reverse_mapping) support +* Add [L3 routing](/configuration/route/ip-rule) support **1** +* Add `rewrite_ttl` DNS rule action +* Add [FakeIP](/configuration/dns/fakeip) support **2** +* Add `store_fakeip` Clash API option +* Add multi-peer support for [WireGuard](/configuration/outbound/wireguard#peers) outbound +* Add loopback detect + +*1*: + +It can currently be used to [route connections directly to WireGuard](/examples/wireguard-direct) or block connections +at the IP layer. + +*2*: + +See [FAQ](/faq/fakeip) for more information. + #### 1.2.3 * Introducing our [new Android client application](/installation/clients/sfa) diff --git a/docs/configuration/dns/fakeip.md b/docs/configuration/dns/fakeip.md index d8405a55..51db1f42 100644 --- a/docs/configuration/dns/fakeip.md +++ b/docs/configuration/dns/fakeip.md @@ -5,8 +5,8 @@ ```json { "enabled": true, - "inet4_range": "172.19.0.1/15", - "inet6_range": "fdfe:dcba:9876::1/18" + "inet4_range": "198.18.0.0/15", + "inet6_range": "fc00::/18" } ``` diff --git a/docs/configuration/dns/fakeip.zh.md b/docs/configuration/dns/fakeip.zh.md index 38ab0794..3d9a814a 100644 --- a/docs/configuration/dns/fakeip.zh.md +++ b/docs/configuration/dns/fakeip.zh.md @@ -5,8 +5,8 @@ ```json { "enabled": true, - "inet4_range": "172.19.0.1/15", - "inet6_range": "fdfe:dcba:9876::1/18" + "inet4_range": "198.18.0.0/15", + "inet6_range": "fc00::/18" } ```