[PR #735] [MERGED] bump version to v0.18.0 #4244

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

📋 Pull Request Information

Original PR: https://github.com/fatedier/frp/pull/735
Author: @fatedier
Created: 5/2/2018
Status: Merged
Merged: 5/2/2018
Merged by: @fatedier

Base: masterHead: dev


📝 Commits (5)

  • 976cf3e use yamux instead of smux
  • b87df56 do not ignore config parsing error
  • d5f30cc Merge pull request #726 from shuaihanhungry/develop
  • e43f9f5 Merge pull request #734 from fatedier/mux
  • 853892f change version to v0.18.0

📊 Changes

35 files changed (+3590 additions, -1760 deletions)

View changed files

📝 client/control.go (+4 -4)
📝 cmd/frps/root.go (+22 -4)
📝 glide.lock (+5 -5)
📝 glide.yaml (+3 -2)
📝 server/service.go (+2 -2)
📝 utils/version/version.go (+1 -1)
📝 vendor/github.com/hashicorp/yamux/.gitignore (+0 -1)
vendor/github.com/hashicorp/yamux/LICENSE (+362 -0)
vendor/github.com/hashicorp/yamux/README.md (+86 -0)
vendor/github.com/hashicorp/yamux/addr.go (+60 -0)
vendor/github.com/hashicorp/yamux/bench_test.go (+123 -0)
vendor/github.com/hashicorp/yamux/const.go (+157 -0)
vendor/github.com/hashicorp/yamux/const_test.go (+72 -0)
vendor/github.com/hashicorp/yamux/mux.go (+87 -0)
vendor/github.com/hashicorp/yamux/session.go (+646 -0)
vendor/github.com/hashicorp/yamux/session_test.go (+1256 -0)
vendor/github.com/hashicorp/yamux/spec.md (+140 -0)
vendor/github.com/hashicorp/yamux/stream.go (+470 -0)
vendor/github.com/hashicorp/yamux/util.go (+43 -0)
vendor/github.com/hashicorp/yamux/util_test.go (+50 -0)

...and 15 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/735 **Author:** [@fatedier](https://github.com/fatedier) **Created:** 5/2/2018 **Status:** ✅ Merged **Merged:** 5/2/2018 **Merged by:** [@fatedier](https://github.com/fatedier) **Base:** `master` ← **Head:** `dev` --- ### 📝 Commits (5) - [`976cf3e`](https://github.com/fatedier/frp/commit/976cf3e9f8c9fde505dba38cf07f6f56263d1ef5) use yamux instead of smux - [`b87df56`](https://github.com/fatedier/frp/commit/b87df569e7645ebd5945e9d567ecde6c9ce60e4f) do not ignore config parsing error - [`d5f30cc`](https://github.com/fatedier/frp/commit/d5f30ccd6b5311adef9388ce53c6503f0eaa059b) Merge pull request #726 from shuaihanhungry/develop - [`e43f9f5`](https://github.com/fatedier/frp/commit/e43f9f58500e2b8275e61b686dce09ac7f1436af) Merge pull request #734 from fatedier/mux - [`853892f`](https://github.com/fatedier/frp/commit/853892f3cd5c6253ff76c40adbdfda0b5b72c801) change version to v0.18.0 ### 📊 Changes **35 files changed** (+3590 additions, -1760 deletions) <details> <summary>View changed files</summary> 📝 `client/control.go` (+4 -4) 📝 `cmd/frps/root.go` (+22 -4) 📝 `glide.lock` (+5 -5) 📝 `glide.yaml` (+3 -2) 📝 `server/service.go` (+2 -2) 📝 `utils/version/version.go` (+1 -1) 📝 `vendor/github.com/hashicorp/yamux/.gitignore` (+0 -1) ➕ `vendor/github.com/hashicorp/yamux/LICENSE` (+362 -0) ➕ `vendor/github.com/hashicorp/yamux/README.md` (+86 -0) ➕ `vendor/github.com/hashicorp/yamux/addr.go` (+60 -0) ➕ `vendor/github.com/hashicorp/yamux/bench_test.go` (+123 -0) ➕ `vendor/github.com/hashicorp/yamux/const.go` (+157 -0) ➕ `vendor/github.com/hashicorp/yamux/const_test.go` (+72 -0) ➕ `vendor/github.com/hashicorp/yamux/mux.go` (+87 -0) ➕ `vendor/github.com/hashicorp/yamux/session.go` (+646 -0) ➕ `vendor/github.com/hashicorp/yamux/session_test.go` (+1256 -0) ➕ `vendor/github.com/hashicorp/yamux/spec.md` (+140 -0) ➕ `vendor/github.com/hashicorp/yamux/stream.go` (+470 -0) ➕ `vendor/github.com/hashicorp/yamux/util.go` (+43 -0) ➕ `vendor/github.com/hashicorp/yamux/util_test.go` (+50 -0) _...and 15 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:38:24 -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#4244
No description provided.