[PR #29] [MERGED] release v0.6.0 #4112

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

📋 Pull Request Information

Original PR: https://github.com/fatedier/frp/pull/29
Author: @fatedier
Created: 6/7/2016
Status: Merged
Merged: 6/7/2016
Merged by: @fatedier

Base: masterHead: dev


📝 Commits (10+)

  • d3c4401 build: support linux/arm and darwin
  • c680d87 test: add function testing case
  • ea32308 test: fix
  • da7c473 fetch commits from master
  • f404a0a models/server: add dashboard for frps by gin
  • cd59bbd Godeps: add package gin for dashboard
  • bc7ad2b update
  • 14607b3 utils/version: update version to v0.6.0
  • d569a60 cmd/frpc: let cli.StartTunnel async
  • ee8786a models/server: fix one possible error when frps accept too many user connections in a short time

📊 Changes

117 files changed (+27761 additions, -129 deletions)

View changed files

📝 .gitignore (+1 -0)
📝 .travis.yml (+1 -1)
📝 Godeps/Godeps.json (+37 -0)
Godeps/_workspace/src/github.com/gin-gonic/gin/.gitignore (+4 -0)
Godeps/_workspace/src/github.com/gin-gonic/gin/.travis.yml (+23 -0)
Godeps/_workspace/src/github.com/gin-gonic/gin/AUTHORS.md (+229 -0)
Godeps/_workspace/src/github.com/gin-gonic/gin/BENCHMARKS.md (+298 -0)
Godeps/_workspace/src/github.com/gin-gonic/gin/CHANGELOG.md (+150 -0)
Godeps/_workspace/src/github.com/gin-gonic/gin/LICENSE (+21 -0)
Godeps/_workspace/src/github.com/gin-gonic/gin/README.md (+710 -0)
Godeps/_workspace/src/github.com/gin-gonic/gin/auth.go (+92 -0)
Godeps/_workspace/src/github.com/gin-gonic/gin/binding/binding.go (+67 -0)
Godeps/_workspace/src/github.com/gin-gonic/gin/binding/default_validator.go (+41 -0)
Godeps/_workspace/src/github.com/gin-gonic/gin/binding/form.go (+54 -0)
Godeps/_workspace/src/github.com/gin-gonic/gin/binding/form_mapping.go (+150 -0)
Godeps/_workspace/src/github.com/gin-gonic/gin/binding/json.go (+25 -0)
Godeps/_workspace/src/github.com/gin-gonic/gin/binding/protobuf.go (+35 -0)
Godeps/_workspace/src/github.com/gin-gonic/gin/binding/xml.go (+24 -0)
Godeps/_workspace/src/github.com/gin-gonic/gin/context.go (+568 -0)
Godeps/_workspace/src/github.com/gin-gonic/gin/debug.go (+71 -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/29 **Author:** [@fatedier](https://github.com/fatedier) **Created:** 6/7/2016 **Status:** ✅ Merged **Merged:** 6/7/2016 **Merged by:** [@fatedier](https://github.com/fatedier) **Base:** `master` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`d3c4401`](https://github.com/fatedier/frp/commit/d3c440147382b209ca9510a69cb463b007818646) build: support linux/arm and darwin - [`c680d87`](https://github.com/fatedier/frp/commit/c680d87edc7aecb43d40e0e74eb9406140504a2d) test: add function testing case - [`ea32308`](https://github.com/fatedier/frp/commit/ea323084adcc8fe2dbbfe41dd666c393f61d9876) test: fix - [`da7c473`](https://github.com/fatedier/frp/commit/da7c473288b88677bb0e8f899c29d3e1f8a9fa97) fetch commits from master - [`f404a0a`](https://github.com/fatedier/frp/commit/f404a0a5eec0e9234ce1bae8093ff4e50defce1f) models/server: add dashboard for frps by gin - [`cd59bbd`](https://github.com/fatedier/frp/commit/cd59bbdad6c2b7683ee4aea393d42cbb7e0a6f7f) Godeps: add package gin for dashboard - [`bc7ad2b`](https://github.com/fatedier/frp/commit/bc7ad2bb201b40276c2088a403bd8e5b9d3bb502) update - [`14607b3`](https://github.com/fatedier/frp/commit/14607b352d0bd895a5adfe07a46506ef3d54af07) utils/version: update version to v0.6.0 - [`d569a60`](https://github.com/fatedier/frp/commit/d569a60efff86452de367f259716d22c49440c73) cmd/frpc: let cli.StartTunnel async - [`ee8786a`](https://github.com/fatedier/frp/commit/ee8786a6b33d14634b40e6866db94aefe1441b3d) models/server: fix one possible error when frps accept too many user connections in a short time ### 📊 Changes **117 files changed** (+27761 additions, -129 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+1 -0) 📝 `.travis.yml` (+1 -1) 📝 `Godeps/Godeps.json` (+37 -0) ➕ `Godeps/_workspace/src/github.com/gin-gonic/gin/.gitignore` (+4 -0) ➕ `Godeps/_workspace/src/github.com/gin-gonic/gin/.travis.yml` (+23 -0) ➕ `Godeps/_workspace/src/github.com/gin-gonic/gin/AUTHORS.md` (+229 -0) ➕ `Godeps/_workspace/src/github.com/gin-gonic/gin/BENCHMARKS.md` (+298 -0) ➕ `Godeps/_workspace/src/github.com/gin-gonic/gin/CHANGELOG.md` (+150 -0) ➕ `Godeps/_workspace/src/github.com/gin-gonic/gin/LICENSE` (+21 -0) ➕ `Godeps/_workspace/src/github.com/gin-gonic/gin/README.md` (+710 -0) ➕ `Godeps/_workspace/src/github.com/gin-gonic/gin/auth.go` (+92 -0) ➕ `Godeps/_workspace/src/github.com/gin-gonic/gin/binding/binding.go` (+67 -0) ➕ `Godeps/_workspace/src/github.com/gin-gonic/gin/binding/default_validator.go` (+41 -0) ➕ `Godeps/_workspace/src/github.com/gin-gonic/gin/binding/form.go` (+54 -0) ➕ `Godeps/_workspace/src/github.com/gin-gonic/gin/binding/form_mapping.go` (+150 -0) ➕ `Godeps/_workspace/src/github.com/gin-gonic/gin/binding/json.go` (+25 -0) ➕ `Godeps/_workspace/src/github.com/gin-gonic/gin/binding/protobuf.go` (+35 -0) ➕ `Godeps/_workspace/src/github.com/gin-gonic/gin/binding/xml.go` (+24 -0) ➕ `Godeps/_workspace/src/github.com/gin-gonic/gin/context.go` (+568 -0) ➕ `Godeps/_workspace/src/github.com/gin-gonic/gin/debug.go` (+71 -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:35:52 -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#4112
No description provided.