[PR #1696] [MERGED] bump version to v0.32.0 #4436

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

📋 Pull Request Information

Original PR: https://github.com/fatedier/frp/pull/1696
Author: @fatedier
Created: 3/11/2020
Status: Merged
Merged: 3/11/2020
Merged by: @fatedier

Base: masterHead: dev


📝 Commits (10+)

  • c8748a2 update .travis.yml
  • c747f16 TlsOnly - only accept TLS connections if enabled
  • e3101b7 Update README.md
  • 7033f3e Test TlsOnly
  • f8c6795 DetailedErrorsToClient - only send detailed error info if this is on
  • 95753eb Merge pull request #1643 from GuyLewin/feature/tls-only
  • 9440bc5 Merge branch 'dev' into feature/detailed-errors-to-client
  • 98fa385 CR: export error string generation to a function
  • 83d8085 Merge pull request #1644 from GuyLewin/feature/detailed-errors-to-client
  • 6c6607a feat: add multiple authentication methods, token and oidc.

📊 Changes

1078 files changed (+48167 additions, -332287 deletions)

View changed files

📝 .gitignore (+1 -0)
📝 .travis.yml (+1 -0)
📝 Makefile (+1 -0)
📝 README.md (+107 -7)
📝 README_zh.md (+101 -3)
📝 client/control.go (+27 -2)
📝 client/proxy/proxy.go (+34 -0)
📝 client/service.go (+20 -13)
📝 cmd/frpc/sub/root.go (+6 -1)
cmd/frpc/sub/tcpmux.go (+91 -0)
📝 cmd/frps/main.go (+1 -0)
📝 cmd/frps/root.go (+5 -1)
📝 conf/frpc_full.ini (+7 -0)
📝 conf/frps_full.ini (+41 -0)
📝 go.mod (+6 -2)
📝 go.sum (+95 -5)
models/auth/auth.go (+151 -0)
models/auth/oidc.go (+255 -0)
models/auth/token.go (+120 -0)
📝 models/config/client_common.go (+5 -9)

...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/1696 **Author:** [@fatedier](https://github.com/fatedier) **Created:** 3/11/2020 **Status:** ✅ Merged **Merged:** 3/11/2020 **Merged by:** [@fatedier](https://github.com/fatedier) **Base:** `master` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`c8748a2`](https://github.com/fatedier/frp/commit/c8748a2948ba91006ffbda6530d67fcd911fa8a6) update .travis.yml - [`c747f16`](https://github.com/fatedier/frp/commit/c747f160aa8979a340519e84c080e0304d1dc0a5) TlsOnly - only accept TLS connections if enabled - [`e3101b7`](https://github.com/fatedier/frp/commit/e3101b7aa81c96fcc425c8f81066d93dc93afb00) Update README.md - [`7033f3e`](https://github.com/fatedier/frp/commit/7033f3e72b43f3364300c70449d92c5355614be3) Test TlsOnly - [`f8c6795`](https://github.com/fatedier/frp/commit/f8c67951196c248119dff3095f025beeb6bf6068) DetailedErrorsToClient - only send detailed error info if this is on - [`95753eb`](https://github.com/fatedier/frp/commit/95753ebf1cefe26c373927af96500ccb4ee078b0) Merge pull request #1643 from GuyLewin/feature/tls-only - [`9440bc5`](https://github.com/fatedier/frp/commit/9440bc5d72814c9fe646c2cded54baa110857fd9) Merge branch 'dev' into feature/detailed-errors-to-client - [`98fa385`](https://github.com/fatedier/frp/commit/98fa3855bd3b05cbd95c5a6e11bf70917628e1fa) CR: export error string generation to a function - [`83d8085`](https://github.com/fatedier/frp/commit/83d80857fdf983df496e0da034fd3428f9b997ac) Merge pull request #1644 from GuyLewin/feature/detailed-errors-to-client - [`6c6607a`](https://github.com/fatedier/frp/commit/6c6607ae6873917e2a913d3a17a5d1a2afd993cc) feat: add multiple authentication methods, token and oidc. ### 📊 Changes **1078 files changed** (+48167 additions, -332287 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+1 -0) 📝 `.travis.yml` (+1 -0) 📝 `Makefile` (+1 -0) 📝 `README.md` (+107 -7) 📝 `README_zh.md` (+101 -3) 📝 `client/control.go` (+27 -2) 📝 `client/proxy/proxy.go` (+34 -0) 📝 `client/service.go` (+20 -13) 📝 `cmd/frpc/sub/root.go` (+6 -1) ➕ `cmd/frpc/sub/tcpmux.go` (+91 -0) 📝 `cmd/frps/main.go` (+1 -0) 📝 `cmd/frps/root.go` (+5 -1) 📝 `conf/frpc_full.ini` (+7 -0) 📝 `conf/frps_full.ini` (+41 -0) 📝 `go.mod` (+6 -2) 📝 `go.sum` (+95 -5) ➕ `models/auth/auth.go` (+151 -0) ➕ `models/auth/oidc.go` (+255 -0) ➕ `models/auth/token.go` (+120 -0) 📝 `models/config/client_common.go` (+5 -9) _...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:42:05 -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#4436
No description provided.