[PR #5249] [MERGED] bump version #5206

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

📋 Pull Request Information

Original PR: https://github.com/fatedier/frp/pull/5249
Author: @fatedier
Created: 3/20/2026
Status: Merged
Merged: 3/20/2026
Merged by: @fatedier

Base: masterHead: dev


📝 Commits (10+)

  • 9634fd9 web: ensure npm install runs before build (#5154)
  • 519368b server/api: fix DeleteProxies endpoint returning empty response instead of JSON (#5163)
  • d034732 pkg/config: fix custom domain validation to prevent false matches with subdomain host (#5178)
  • 01997de add persistent proxy/visitor store with CRUD API and web UI (#5188)
  • 381245a build: add noweb tag to allow building without frontend assets (#5189)
  • fbeb6ca refactor: restructure API packages into client/http and server/http with typed proxy/visitor models (#5193)
  • 774478d pkg/config: improve error messages with line number details for config parsing (#5194)
  • b743596 pkg/config: fix line numbers shown incorrectly for TOML type mismatch errors (#5195)
  • 541878a docs: update release notes for config parsing error improvements (#5196)
  • 462c987 pkg/msg: change UDPPacket.Content from string to []byte to avoid redundant base64 encode/decode (#5198)

📊 Changes

277 files changed (+19063 additions, -11995 deletions)

View changed files

📝 .circleci/config.yml (+1 -1)
📝 .github/workflows/golangci-lint.yml (+5 -5)
📝 .github/workflows/goreleaser.yml (+3 -3)
📝 .gitignore (+5 -13)
📝 .golangci.yml (+10 -7)
AGENTS.md (+39 -0)
CLAUDE.md (+1 -0)
📝 Makefile (+11 -10)
📝 README.md (+18 -9)
📝 README_zh.md (+10 -9)
📝 Release.md (+6 -4)
📝 assets/assets.go (+11 -2)
client/api/controller.go (+0 -189)
📝 client/api_router.go (+22 -9)
client/config_manager.go (+464 -0)
client/config_manager_test.go (+137 -0)
client/configmgmt/types.go (+45 -0)
📝 client/control.go (+7 -3)
client/http/controller.go (+433 -0)
client/http/controller_test.go (+662 -0)

...and 80 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/5249 **Author:** [@fatedier](https://github.com/fatedier) **Created:** 3/20/2026 **Status:** ✅ Merged **Merged:** 3/20/2026 **Merged by:** [@fatedier](https://github.com/fatedier) **Base:** `master` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`9634fd9`](https://github.com/fatedier/frp/commit/9634fd99d1be11b08fa5524bacf30a95d58058af) web: ensure npm install runs before build (#5154) - [`519368b`](https://github.com/fatedier/frp/commit/519368b1fd22bd180baba3da6f4c3f46816f600b) server/api: fix DeleteProxies endpoint returning empty response instead of JSON (#5163) - [`d034732`](https://github.com/fatedier/frp/commit/d0347325fc1c41ad31026fba08b6c0277fae8e9b) pkg/config: fix custom domain validation to prevent false matches with subdomain host (#5178) - [`01997de`](https://github.com/fatedier/frp/commit/01997deb98f159f798fc010e1f06d8c3c7a5089a) add persistent proxy/visitor store with CRUD API and web UI (#5188) - [`381245a`](https://github.com/fatedier/frp/commit/381245a4399e1e20e841f7b977305b46e69a856e) build: add noweb tag to allow building without frontend assets (#5189) - [`fbeb6ca`](https://github.com/fatedier/frp/commit/fbeb6ca43affc8878a074a08d463644aad59cf15) refactor: restructure API packages into client/http and server/http with typed proxy/visitor models (#5193) - [`774478d`](https://github.com/fatedier/frp/commit/774478d0710e2bac7a85128bbdcd334e2d6581be) pkg/config: improve error messages with line number details for config parsing (#5194) - [`b743596`](https://github.com/fatedier/frp/commit/b7435967b04bd0d4f9261a91af4c31f91006ab80) pkg/config: fix line numbers shown incorrectly for TOML type mismatch errors (#5195) - [`541878a`](https://github.com/fatedier/frp/commit/541878af4d3950c92b542350b9a4a043080c0980) docs: update release notes for config parsing error improvements (#5196) - [`462c987`](https://github.com/fatedier/frp/commit/462c987f6debaebffa7baf6530e653c2856cea96) pkg/msg: change UDPPacket.Content from string to []byte to avoid redundant base64 encode/decode (#5198) ### 📊 Changes **277 files changed** (+19063 additions, -11995 deletions) <details> <summary>View changed files</summary> 📝 `.circleci/config.yml` (+1 -1) 📝 `.github/workflows/golangci-lint.yml` (+5 -5) 📝 `.github/workflows/goreleaser.yml` (+3 -3) 📝 `.gitignore` (+5 -13) 📝 `.golangci.yml` (+10 -7) ➕ `AGENTS.md` (+39 -0) ➕ `CLAUDE.md` (+1 -0) 📝 `Makefile` (+11 -10) 📝 `README.md` (+18 -9) 📝 `README_zh.md` (+10 -9) 📝 `Release.md` (+6 -4) 📝 `assets/assets.go` (+11 -2) ➖ `client/api/controller.go` (+0 -189) 📝 `client/api_router.go` (+22 -9) ➕ `client/config_manager.go` (+464 -0) ➕ `client/config_manager_test.go` (+137 -0) ➕ `client/configmgmt/types.go` (+45 -0) 📝 `client/control.go` (+7 -3) ➕ `client/http/controller.go` (+433 -0) ➕ `client/http/controller_test.go` (+662 -0) _...and 80 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:56:42 -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#5206
No description provided.