Skip to content

Commit

Permalink
Release v5.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
nekohasekai committed Jan 17, 2022
1 parent 49a3d8a commit 1d55bd5
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 15 deletions.
55 changes: 42 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,48 @@

### Important changes

#### Rewritten DNS

- added DNS Over TLS and QUIC support

example:

```
tls://dns.google
quic://dns.adguard.com
```

All available DNS schemes:

```
tcp
tcp+local
udp
udp+local
tls
tls+local
https
https+local
quic
quic+local
```

- multiple DNS now share the cache.
- concurrent query support

```json
{
"dns": [
{
"address": "tls://1.0.0.1",
"concurrency": true
}
]
}
```

#### Other

- concurrency option for outbound observation

```json
Expand Down Expand Up @@ -38,19 +80,6 @@
}
```

- udp+local dns server

```json
{
"dns": {
"servers": [
"udp+local://8.8.8.8"
// without routing rule
]
}
}
```

- removed FakeDNS

```
Expand Down
4 changes: 2 additions & 2 deletions core.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ import (
)

var (
version = "5.0.2"
build = "Custom"
version = "5.0.4"
build = "SagerNet"
codename = "V2Fly, a community-driven edition of V2Ray."
intro = "A unified platform for anti-censorship."
)
Expand Down

0 comments on commit 1d55bd5

Please # to comment.