[PR #3499] [MERGED] release v0.50.0 #4763

Closed
opened 2026-05-05 14:48:15 -06:00 by gitea-mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/fatedier/frp/pull/3499
Author: @fatedier
Created: 6/26/2023
Status: Merged
Merged: 6/26/2023
Merged by: @fatedier

Base: masterHead: dev


📝 Commits (10+)

  • 555db9d format import package name (#3455)
  • c7a0cfc xtcp: when connection timeout occurs, support fallback to STCP (#3460)
  • 341a5e3 frps dashboard: remove bind_udp_port (#3463)
  • 9aef3b9 adjust code style about config (#3464)
  • cceab7e client/proxy: simplify the code (#3465)
  • de85c94 stcp, xtcp, sudp: support allow_users and specified server user (#3472)
  • ea08de6 yamux: change default MaxStreamWindowSize to 6MB (#3474)
  • 9ba6a06 e2e: update
  • e1cef05 server/proxy: simplify the code (#3488)
  • 15a2457 fix the issue of duplicate xtcp proxies will cause the previous proxy to become ineffective (#3489)

📊 Changes

79 files changed (+1456 additions, -1317 deletions)

View changed files

📝 .gitignore (+1 -0)
📝 Makefile (+15 -0)
📝 README.md (+2 -5)
📝 Release.md (+9 -10)
📝 assets/frps/static/index-ea3edf22.js (+11 -11)
📝 assets/frps/static/index.html (+1 -1)
📝 client/admin.go (+3 -3)
📝 client/admin_api.go (+1 -1)
📝 client/control.go (+1 -1)
client/proxy/general_tcp.go (+47 -0)
📝 client/proxy/proxy.go (+57 -209)
📝 client/proxy/proxy_manager.go (+4 -6)
📝 client/proxy/proxy_wrapper.go (+1 -1)
📝 client/proxy/sudp.go (+23 -6)
📝 client/proxy/udp.go (+23 -7)
📝 client/proxy/xtcp.go (+20 -23)
📝 client/service.go (+9 -6)
📝 client/visitor/stcp.go (+25 -10)
📝 client/visitor/sudp.go (+8 -6)
📝 client/visitor/visitor.go (+38 -11)

...and 59 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/fatedier/frp/pull/3499 **Author:** [@fatedier](https://github.com/fatedier) **Created:** 6/26/2023 **Status:** ✅ Merged **Merged:** 6/26/2023 **Merged by:** [@fatedier](https://github.com/fatedier) **Base:** `master` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`555db9d`](https://github.com/fatedier/frp/commit/555db9d272565b869be7d825b07f81e93827bd7f) format import package name (#3455) - [`c7a0cfc`](https://github.com/fatedier/frp/commit/c7a0cfc66d98a036d07c851b7fbb5852d906394e) xtcp: when connection timeout occurs, support fallback to STCP (#3460) - [`341a5e3`](https://github.com/fatedier/frp/commit/341a5e3e3a8ffe05b2ef6a392b6e142e851d446c) frps dashboard: remove bind_udp_port (#3463) - [`9aef3b9`](https://github.com/fatedier/frp/commit/9aef3b99446ac8381e711a02cc3c28403bf83f83) adjust code style about config (#3464) - [`cceab7e`](https://github.com/fatedier/frp/commit/cceab7e1b199bd3cf6c806030dfb99482239b3a1) client/proxy: simplify the code (#3465) - [`de85c94`](https://github.com/fatedier/frp/commit/de85c9455a4577ed8635f65806ac23858e1b3820) stcp, xtcp, sudp: support allow_users and specified server user (#3472) - [`ea08de6`](https://github.com/fatedier/frp/commit/ea08de668e91dd988bc3ae510290aa6b6cbb9c88) yamux: change default MaxStreamWindowSize to 6MB (#3474) - [`9ba6a06`](https://github.com/fatedier/frp/commit/9ba6a064709cbf8a0036df905c3f0e1262bb0355) e2e: update - [`e1cef05`](https://github.com/fatedier/frp/commit/e1cef053be195c4e5a80805a238af3cc12199c74) server/proxy: simplify the code (#3488) - [`15a2457`](https://github.com/fatedier/frp/commit/15a245766e293098c23b96ae76cdf8117b245714) fix the issue of duplicate xtcp proxies will cause the previous proxy to become ineffective (#3489) ### 📊 Changes **79 files changed** (+1456 additions, -1317 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+1 -0) 📝 `Makefile` (+15 -0) 📝 `README.md` (+2 -5) 📝 `Release.md` (+9 -10) 📝 `assets/frps/static/index-ea3edf22.js` (+11 -11) 📝 `assets/frps/static/index.html` (+1 -1) 📝 `client/admin.go` (+3 -3) 📝 `client/admin_api.go` (+1 -1) 📝 `client/control.go` (+1 -1) ➕ `client/proxy/general_tcp.go` (+47 -0) 📝 `client/proxy/proxy.go` (+57 -209) 📝 `client/proxy/proxy_manager.go` (+4 -6) 📝 `client/proxy/proxy_wrapper.go` (+1 -1) 📝 `client/proxy/sudp.go` (+23 -6) 📝 `client/proxy/udp.go` (+23 -7) 📝 `client/proxy/xtcp.go` (+20 -23) 📝 `client/service.go` (+9 -6) 📝 `client/visitor/stcp.go` (+25 -10) 📝 `client/visitor/sudp.go` (+8 -6) 📝 `client/visitor/visitor.go` (+38 -11) _...and 59 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
gitea-mirror 2026-05-05 14:48:15 -06:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: github-starred/frp#4763
No description provided.