Skip to content

Commit

Permalink
feat: release 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
zema1 committed Jun 29, 2023
1 parent 87773da commit ca4b7ad
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 20 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# 更新记录

## [0.9.0] 2023.06-29

- 增加脏数据跳过逻辑, 自动计算偏移 #11
- 增加 `jspx` 形式的服务端, 通过全部中间件的测试 #31
- 允许连接测试时的 `EOF` 的情况,解决部分 Listener 内存马连不上的问题

### 修复
- 修复上游代理对连接测试的这个请求不生效的问题

## [0.8.0] 2023.05-23

### 修复
- 上一个版本因上游库忘记更新导致的连接超时问题 #28 #29

## [0.7.0] 2023-05-17

### 新增
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ USAGE:
suo5 [global options] command [command options] [arguments...]
VERSION:
v0.7.0
v0.9.0
COMMANDS:
help, h Shows a list of commands or help for one command
Expand Down
37 changes: 19 additions & 18 deletions README_EN.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,32 +50,33 @@ Windows 11 and MacOS already come with this component, other systems will have a
### Command line

```text
NAME:
suo5 - A super http proxy tunnel
USAGE:
suo5 [global options] command [command options] [arguments...]
VERSION:
v0.3.0
v0.9.0
COMMANDS:
help, h Shows a list of commands or help for one command
help, h Shows a list of commands or help for one command
GLOBAL OPTIONS:
--target value, -t value set the remote server url, ex: http://localhost:8080/tomcat_debug_war_exploded/
--listen value, -l value set the listen address of socks5 server (default: "127.0.0.1:1111")
--method value, -m value http request method (default: "POST")
--no-auth disable socks5 authentication (default: true)
--auth value socks5 creds, username:password, leave empty to auto generate
--mode value connection mode, choices are auto, full, half (default: "auto")
--ua value the user-agent used to send request (default: "Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.1.2.3")
--timeout value http request timeout in seconds (default: 10)
--buf-size value set the request max body size (default: 327680)
--proxy value use upstream socks5 proxy
--debug, -d debug the traffic, print more details (default: false)
--help, -h show help
--version, -v print the version
--target value, -t value set the remote server url, ex: http://localhost:8080/tomcat_debug_war_exploded/
--listen value, -l value set the listen address of socks5 server (default: "127.0.0.1:1111")
--method value, -m value http request method (default: "POST")
--redirect value, -r value redirect to the url if host not matched, used to bypass load balance
--no-auth disable socks5 authentication (default: true)
--auth value socks5 creds, username:password, leave empty to auto generate
--mode value connection mode, choices are auto, full, half (default: "auto")
--ua value the user-agent used to send request (default: "Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.1.2.3")
--header value, -H value [ --header value, -H value ] use extra header, ex -H 'Cookie: abc'
--timeout value http request timeout in seconds (default: 10)
--buf-size value set the request max body size (default: 327680)
--proxy value use upstream proxy, support both socks5 and http(s), eg: socks5://127.0.0.1:7890
--debug, -d debug the traffic, print more details (default: false)
--no-heartbeat, --nh disable heartbeat to the remote server which will send data every 5s (default: false)
--no-gzip, --ng disable gzip compression, which will improve compatibility with some old servers (default: false)
--help, -h show help
--version, -v print the version
```

The command line version is exactly the same as the GUI version, You can refer to the GUI version to use it. The
Expand Down
2 changes: 1 addition & 1 deletion gui/frontend/src/Home.vue
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
<span>连接数: {{ status.connection_count }}</span>
<span>CPU: {{ status.cpu_percent }}</span>
<span>内存: {{ status.memory_usage }}</span>
<span>版本: 0.8.0</span>
<span>版本: 0.9.0</span>
</n-space>

<div class="footer">
Expand Down

0 comments on commit ca4b7ad

Please sign in to comment.