-
-
Notifications
You must be signed in to change notification settings - Fork 13.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2088 from fatedier/dev
bump version to v0.34.3
- Loading branch information
Showing
15 changed files
with
174 additions
and
79 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
--- | ||
name: Bug Report | ||
about: Bug Report for FRP | ||
title: '' | ||
labels: Requires Testing | ||
assignees: '' | ||
|
||
--- | ||
|
||
<!-- From Chinese to English by machine translation, welcome to revise and polish. --> | ||
|
||
<!-- ⚠️⚠️ Incomplete reports will be marked as invalid, and closed, with few exceptions ⚠️⚠️ --> | ||
<!-- in addition, please use search well so that the same solution can be found in the feedback, we will close it directly --> | ||
<!-- for convenience of differentiation, use FRPS or FRPC to refer to the FRP server or client --> | ||
|
||
**[REQUIRED] hat version of frp are you using** | ||
<!-- Use ./frpc -v or ./frps -v --> | ||
Version: | ||
|
||
**[REQUIRED] What operating system and processor architecture are you using** | ||
OS: | ||
CPU architecture: | ||
|
||
**[REQUIRED] description of errors** | ||
|
||
**confile** | ||
<!-- Please pay attention to hiding the token, server_addr and other privacy information --> | ||
|
||
**log file** | ||
<!-- If the file is too large, use Pastebin, for example https://pastebin.ubuntu.com/ --> | ||
|
||
**Steps to reproduce the issue** | ||
1. | ||
2. | ||
3. | ||
|
||
**Supplementary information** | ||
|
||
**Can you guess what caused this issue** | ||
|
||
**Checklist**: | ||
<!--- Make sure you've completed the following steps (put an "X" between of brackets): --> | ||
- [] I included all information required in the sections above | ||
- [] I made sure there are no duplicates of this report [(Use Search)](https://github.com/fatedier/frp/issues?q=is%3Aissue) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: DOCS | ||
url: https://github.com/fatedier/frp | ||
about: Here you can find out how to configure frp. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
--- | ||
name: Feature request | ||
about: Suggest an idea for this project | ||
title: '' | ||
labels: "[+] Enhancement" | ||
assignees: '' | ||
|
||
--- | ||
|
||
<!-- From Chinese to English by machine translation, welcome to revise and polish. --> | ||
|
||
**The solution you want** | ||
<!--A clear and concise description of the solution you want. --> | ||
|
||
**Alternatives considered** | ||
<!--A clear and concise description of any alternative solutions or features you have considered. --> | ||
|
||
**How to implement this function** | ||
<!--Implementation steps for the solution you want. --> | ||
|
||
**Application scenarios of this function** | ||
<!--Make a clear and concise description of the application scenario of the solution you want. --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: goreleaser | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
goreleaser: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Set up Go | ||
uses: actions/setup-go@v2 | ||
with: | ||
go-version: 1.15 | ||
|
||
- name: Make All | ||
run: | | ||
./package.sh | ||
- name: Run GoReleaser | ||
uses: goreleaser/goreleaser-action@v2 | ||
with: | ||
version: latest | ||
args: release --rm-dist --release-notes=./Release.md | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,6 +29,7 @@ packages/ | |
release/ | ||
test/bin/ | ||
vendor/ | ||
dist/ | ||
|
||
# Cache | ||
*.swp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
builds: | ||
- skip: true | ||
checksum: | ||
name_template: 'checksums.txt' | ||
release: | ||
# Same as for github | ||
# Note: it can only be one: either github, gitlab or gitea | ||
github: | ||
owner: fatedier | ||
name: frp | ||
|
||
draft: false | ||
|
||
# You can add extra pre-existing files to the release. | ||
# The filename on the release will be the last part of the path (base). If | ||
# another file with the same name exists, the latest one found will be used. | ||
# Defaults to empty. | ||
extra_files: | ||
- glob: ./release/packages/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,8 +2,8 @@ sudo: false | |
language: go | ||
|
||
go: | ||
- 1.13.x | ||
- 1.14.x | ||
- 1.15.x | ||
|
||
install: | ||
- make | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
### New | ||
|
||
* Command line parameters support `enable_prometheus`. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters