mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-22 08:31:30 +00:00
Initial release
This commit is contained in:
parent
c5e38203eb
commit
0348ace253
9
Makefile
9
Makefile
|
@ -49,7 +49,14 @@ snapshot:
|
||||||
ghr --delete --draft --prerelease -p 1 nightly dist/release
|
ghr --delete --draft --prerelease -p 1 nightly dist/release
|
||||||
rm -r dist
|
rm -r dist
|
||||||
|
|
||||||
snapshot_install:
|
release:
|
||||||
|
goreleaser release --rm-dist --skip-publish
|
||||||
|
mkdir dist/release
|
||||||
|
mv dist/*.tar.gz dist/*.zip dist/*.deb dist/*.rpm dist/release
|
||||||
|
ghr --delete --draft --prerelease -p 3 $(shell git describe --tags) dist/release
|
||||||
|
rm -r dist
|
||||||
|
|
||||||
|
release_install:
|
||||||
go install -v github.com/goreleaser/goreleaser@latest
|
go install -v github.com/goreleaser/goreleaser@latest
|
||||||
go install -v github.com/tcnksm/ghr@latest
|
go install -v github.com/tcnksm/ghr@latest
|
||||||
|
|
||||||
|
|
|
@ -38,7 +38,7 @@ func printVersion(cmd *cobra.Command, args []string) {
|
||||||
version += runtime.Version()
|
version += runtime.Version()
|
||||||
version += ", "
|
version += ", "
|
||||||
version += runtime.GOOS
|
version += runtime.GOOS
|
||||||
version += ", "
|
version += "/"
|
||||||
version += runtime.GOARCH
|
version += runtime.GOARCH
|
||||||
version += ", "
|
version += ", "
|
||||||
version += "CGO "
|
version += "CGO "
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
package constant
|
package constant
|
||||||
|
|
||||||
var (
|
var (
|
||||||
Version = "1.0"
|
Version = "1.0-beta1"
|
||||||
Commit = ""
|
Commit = ""
|
||||||
)
|
)
|
||||||
|
|
|
@ -1,8 +1,13 @@
|
||||||
#### 2022/08/26
|
#### 1.0-beta1
|
||||||
|
|
||||||
|
* Initial release
|
||||||
|
|
||||||
|
##### 2022/08/26
|
||||||
|
|
||||||
* Fix ipv6 route on linux
|
* Fix ipv6 route on linux
|
||||||
|
* Fix read DNS message
|
||||||
|
|
||||||
#### 2022/08/25
|
##### 2022/08/25
|
||||||
|
|
||||||
* Let vmess use zero instead of auto if TLS enabled
|
* Let vmess use zero instead of auto if TLS enabled
|
||||||
* Add trojan fallback for ALPN
|
* Add trojan fallback for ALPN
|
||||||
|
@ -11,7 +16,7 @@
|
||||||
* Fix http proxy with compressed response
|
* Fix http proxy with compressed response
|
||||||
* Fix route connections
|
* Fix route connections
|
||||||
|
|
||||||
#### 2022/08/24
|
##### 2022/08/24
|
||||||
|
|
||||||
* Fix naive padding
|
* Fix naive padding
|
||||||
* Fix unix search path
|
* Fix unix search path
|
||||||
|
@ -20,7 +25,7 @@
|
||||||
* Fix early close on windows and catch any
|
* Fix early close on windows and catch any
|
||||||
* Initial zh-CN document translation
|
* Initial zh-CN document translation
|
||||||
|
|
||||||
#### 2022/08/23
|
##### 2022/08/23
|
||||||
|
|
||||||
* Add [V2Ray Transport](/configuration/shared/v2ray-transport) support for VMess and Trojan
|
* Add [V2Ray Transport](/configuration/shared/v2ray-transport) support for VMess and Trojan
|
||||||
* Allow plain http request in Naive inbound (It can now be used with nginx)
|
* Allow plain http request in Naive inbound (It can now be used with nginx)
|
||||||
|
@ -29,17 +34,17 @@
|
||||||
* Parse X-Forward-For in HTTP requests
|
* Parse X-Forward-For in HTTP requests
|
||||||
* Handle SIGHUP signal
|
* Handle SIGHUP signal
|
||||||
|
|
||||||
#### 2022/08/22
|
##### 2022/08/22
|
||||||
|
|
||||||
* Add strategy setting for each [DNS server](/configuration/dns/server)
|
* Add strategy setting for each [DNS server](/configuration/dns/server)
|
||||||
* Add bind address to outbound options
|
* Add bind address to outbound options
|
||||||
|
|
||||||
#### 2022/08/21
|
##### 2022/08/21
|
||||||
|
|
||||||
* Add [Tor outbound](/configuration/outbound/tor)
|
* Add [Tor outbound](/configuration/outbound/tor)
|
||||||
* Add [SSH outbound](/configuration/outbound/ssh)
|
* Add [SSH outbound](/configuration/outbound/ssh)
|
||||||
|
|
||||||
#### 2022/08/20
|
##### 2022/08/20
|
||||||
|
|
||||||
* Attempt to unwrap ip-in-fqdn socksaddr
|
* Attempt to unwrap ip-in-fqdn socksaddr
|
||||||
* Fix read packages in android 12
|
* Fix read packages in android 12
|
||||||
|
@ -49,52 +54,52 @@
|
||||||
* Skip bind connection with private destination to interface
|
* Skip bind connection with private destination to interface
|
||||||
* Add [Trojan connection fallback](/configuration/inbound/trojan#fallback)
|
* Add [Trojan connection fallback](/configuration/inbound/trojan#fallback)
|
||||||
|
|
||||||
#### 2022/08/19
|
##### 2022/08/19
|
||||||
|
|
||||||
* Add Hysteria [Inbound](/configuration/inbound/hysteria) and [Outbund](/configuration/outbound/hysteria)
|
* Add Hysteria [Inbound](/configuration/inbound/hysteria) and [Outbund](/configuration/outbound/hysteria)
|
||||||
* Add [ACME TLS certificate issuer](/configuration/shared/tls)
|
* Add [ACME TLS certificate issuer](/configuration/shared/tls)
|
||||||
* Allow read config from stdin (-c stdin)
|
* Allow read config from stdin (-c stdin)
|
||||||
* Update gVisor to 20220815.0
|
* Update gVisor to 20220815.0
|
||||||
|
|
||||||
#### 2022/08/18
|
##### 2022/08/18
|
||||||
|
|
||||||
* Fix find process with lwip stack
|
* Fix find process with lwip stack
|
||||||
* Fix crash on shadowsocks server
|
* Fix crash on shadowsocks server
|
||||||
* Fix crash on darwin tun
|
* Fix crash on darwin tun
|
||||||
* Fix write log to file
|
* Fix write log to file
|
||||||
|
|
||||||
#### 2022/08/17
|
##### 2022/08/17
|
||||||
|
|
||||||
* Improve async dns transports
|
* Improve async dns transports
|
||||||
|
|
||||||
#### 2022/08/16
|
##### 2022/08/16
|
||||||
|
|
||||||
* Add ip_version (route/dns) rule item
|
* Add ip_version (route/dns) rule item
|
||||||
* Add [WireGuard](/configuration/outbound/wireguard) outbound
|
* Add [WireGuard](/configuration/outbound/wireguard) outbound
|
||||||
|
|
||||||
#### 2022/08/15
|
##### 2022/08/15
|
||||||
|
|
||||||
* Add uid, android user and package rules support in [Tun](/configuration/inbound/tun) routing.
|
* Add uid, android user and package rules support in [Tun](/configuration/inbound/tun) routing.
|
||||||
|
|
||||||
#### 2022/08/13
|
##### 2022/08/13
|
||||||
|
|
||||||
* Fix dns concurrent write
|
* Fix dns concurrent write
|
||||||
|
|
||||||
#### 2022/08/12
|
##### 2022/08/12
|
||||||
|
|
||||||
* Performance improvements
|
* Performance improvements
|
||||||
* Add UoT option for [SOCKS](/configuration/outbound/socks) outbound
|
* Add UoT option for [SOCKS](/configuration/outbound/socks) outbound
|
||||||
|
|
||||||
#### 2022/08/11
|
##### 2022/08/11
|
||||||
|
|
||||||
* Add UoT option for [Shadowsocks](/configuration/outbound/shadowsocks) outbound, UoT support for all inbounds
|
* Add UoT option for [Shadowsocks](/configuration/outbound/shadowsocks) outbound, UoT support for all inbounds
|
||||||
|
|
||||||
#### 2022/08/10
|
##### 2022/08/10
|
||||||
|
|
||||||
* Add full-featured [Naive](/configuration/inbound/naive) inbound
|
* Add full-featured [Naive](/configuration/inbound/naive) inbound
|
||||||
* Fix default dns server option [#9] by iKirby
|
* Fix default dns server option [#9] by iKirby
|
||||||
|
|
||||||
#### 2022/08/09
|
##### 2022/08/09
|
||||||
|
|
||||||
No changelog before.
|
No changelog before.
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue