Skip to content

Commit 2a7aa69

Browse files
authored
Merge pull request #4590 from fatedier/dev
bump version
2 parents 4bbec09 + f47d8ab commit 2a7aa69

15 files changed

+95
-75
lines changed

.golangci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ service:
44
run:
55
concurrency: 4
66
# timeout for analysis, e.g. 30s, 5m, default is 1m
7-
deadline: 20m
7+
timeout: 20m
88
build-tags:
99
- integ
1010
- integfuzz

README.md

+11-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,17 @@
77

88
[README](README.md) | [中文文档](README_zh.md)
99

10+
## Sponsors
11+
12+
frp is an open source project with its ongoing development made possible entirely by the support of our awesome sponsors. If you'd like to join them, please consider [sponsoring frp's development](https://github.com/sponsors/fatedier).
13+
1014
<h3 align="center">Gold Sponsors</h3>
1115
<!--gold sponsors start-->
16+
<p align="center">
17+
<a href="https://jb.gg/frp" target="_blank">
18+
<img width="420px" src="https://raw.githubusercontent.com/fatedier/frp/dev/doc/pic/sponsor_jetbrains.jpg">
19+
</a>
20+
</p>
1221
<p align="center">
1322
<a href="https://workos.com/?utm_campaign=github_repo&utm_medium=referral&utm_content=frp&utm_source=github" target="_blank">
1423
<img width="420px" src="https://raw.githubusercontent.com/fatedier/frp/dev/doc/pic/sponsor_workos.png">
@@ -20,8 +29,8 @@
2029
</a>
2130
</p>
2231
<p align="center">
23-
<a href="https://github.com/beclab/terminus" target="_blank">
24-
<img width="420px" src="https://raw.githubusercontent.com/fatedier/frp/dev/doc/pic/sponsor_terminusos.jpeg">
32+
<a href="https://github.com/beclab/Olares" target="_blank">
33+
<img width="420px" src="https://raw.githubusercontent.com/fatedier/frp/dev/doc/pic/sponsor_olares.jpeg">
2534
</a>
2635
</p>
2736
<!--gold sponsors end-->

README_zh.md

+11-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,17 @@
99

1010
frp 是一个专注于内网穿透的高性能的反向代理应用,支持 TCP、UDP、HTTP、HTTPS 等多种协议,且支持 P2P 通信。可以将内网服务以安全、便捷的方式通过具有公网 IP 节点的中转暴露到公网。
1111

12+
## Sponsors
13+
14+
frp 是一个完全开源的项目,我们的开发工作完全依靠赞助者们的支持。如果你愿意加入他们的行列,请考虑 [赞助 frp 的开发](https://github.com/sponsors/fatedier)
15+
1216
<h3 align="center">Gold Sponsors</h3>
1317
<!--gold sponsors start-->
18+
<p align="center">
19+
<a href="https://jb.gg/frp" target="_blank">
20+
<img width="420px" src="https://raw.githubusercontent.com/fatedier/frp/dev/doc/pic/sponsor_jetbrains.jpg">
21+
</a>
22+
</p>
1423
<p align="center">
1524
<a href="https://workos.com/?utm_campaign=github_repo&utm_medium=referral&utm_content=frp&utm_source=github" target="_blank">
1625
<img width="420px" src="https://raw.githubusercontent.com/fatedier/frp/dev/doc/pic/sponsor_workos.png">
@@ -22,8 +31,8 @@ frp 是一个专注于内网穿透的高性能的反向代理应用,支持 TCP
2231
</a>
2332
</p>
2433
<p align="center">
25-
<a href="https://github.com/beclab/terminus" target="_blank">
26-
<img width="420px" src="https://raw.githubusercontent.com/fatedier/frp/dev/doc/pic/sponsor_terminusos.jpeg">
34+
<a href="https://github.com/beclab/Olares" target="_blank">
35+
<img width="420px" src="https://raw.githubusercontent.com/fatedier/frp/dev/doc/pic/sponsor_olares.jpeg">
2736
</a>
2837
</p>
2938
<!--gold sponsors end-->

Release.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
### Features
22

3-
* The frpc visitor command-line parameter adds the `--server-user` option to specify the username of the server-side proxy to connect to.
4-
* Support multiple frpc instances with different subjects when using oidc authentication.
3+
* `tzdata` is installed by default in the container image, and the time zone can be set using the `TZ` environment variable.
4+
* The `quic-bind-port` command line parameter is supported in frps, which specifies the port for accepting frpc connections using the QUIC protocol.
5+
* The vhost HTTP proxy of frps supports the h2c protocol.

doc/pic/sponsor_jetbrains.jpg

35 KB
Loading

doc/pic/sponsor_olares.jpeg

45.7 KB
Loading

doc/pic/sponsor_terminusos.jpeg

-30.7 KB
Binary file not shown.

dockerfiles/Dockerfile-for-frpc

+2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ RUN make frpc
77

88
FROM alpine:3
99

10+
RUN apk add --no-cache tzdata
11+
1012
COPY --from=building /building/bin/frpc /usr/bin/frpc
1113

1214
ENTRYPOINT ["/usr/bin/frpc"]

dockerfiles/Dockerfile-for-frps

+2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ RUN make frps
77

88
FROM alpine:3
99

10+
RUN apk add --no-cache tzdata
11+
1012
COPY --from=building /building/bin/frps /usr/bin/frps
1113

1214
ENTRYPOINT ["/usr/bin/frps"]

go.mod

+19-19
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/fatedier/frp
22

3-
go 1.22
3+
go 1.22.0
44

55
require (
66
github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5
@@ -10,24 +10,24 @@ require (
1010
github.com/gorilla/mux v1.8.1
1111
github.com/gorilla/websocket v1.5.0
1212
github.com/hashicorp/yamux v0.1.1
13-
github.com/onsi/ginkgo/v2 v2.17.1
14-
github.com/onsi/gomega v1.32.0
13+
github.com/onsi/ginkgo/v2 v2.22.0
14+
github.com/onsi/gomega v1.34.2
1515
github.com/pelletier/go-toml/v2 v2.2.0
1616
github.com/pion/stun/v2 v2.0.0
1717
github.com/pires/go-proxyproto v0.7.0
18-
github.com/prometheus/client_golang v1.19.0
19-
github.com/quic-go/quic-go v0.42.0
18+
github.com/prometheus/client_golang v1.19.1
19+
github.com/quic-go/quic-go v0.48.2
2020
github.com/rodaine/table v1.2.0
21-
github.com/samber/lo v1.39.0
21+
github.com/samber/lo v1.47.0
2222
github.com/spf13/cobra v1.8.0
2323
github.com/spf13/pflag v1.0.5
2424
github.com/stretchr/testify v1.9.0
2525
github.com/tidwall/gjson v1.17.1
2626
github.com/xtaci/kcp-go/v5 v5.6.13
27-
golang.org/x/crypto v0.22.0
28-
golang.org/x/net v0.24.0
27+
golang.org/x/crypto v0.30.0
28+
golang.org/x/net v0.32.0
2929
golang.org/x/oauth2 v0.16.0
30-
golang.org/x/sync v0.6.0
30+
golang.org/x/sync v0.10.0
3131
golang.org/x/time v0.5.0
3232
gopkg.in/ini.v1 v1.67.0
3333
k8s.io/apimachinery v0.28.8
@@ -40,12 +40,12 @@ require (
4040
github.com/cespare/xxhash/v2 v2.2.0 // indirect
4141
github.com/davecgh/go-spew v1.1.1 // indirect
4242
github.com/go-jose/go-jose/v4 v4.0.1 // indirect
43-
github.com/go-logr/logr v1.4.1 // indirect
44-
github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 // indirect
43+
github.com/go-logr/logr v1.4.2 // indirect
44+
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
4545
github.com/golang/protobuf v1.5.4 // indirect
4646
github.com/golang/snappy v0.0.4 // indirect
4747
github.com/google/go-cmp v0.6.0 // indirect
48-
github.com/google/pprof v0.0.0-20210720184732-4bb14d4b1be1 // indirect
48+
github.com/google/pprof v0.0.0-20241206021119-61a79c692802 // indirect
4949
github.com/inconshreveable/mousetrap v1.1.0 // indirect
5050
github.com/klauspost/cpuid/v2 v2.2.6 // indirect
5151
github.com/klauspost/reedsolomon v1.12.0 // indirect
@@ -64,14 +64,14 @@ require (
6464
github.com/tidwall/match v1.1.1 // indirect
6565
github.com/tidwall/pretty v1.2.0 // indirect
6666
github.com/tjfoc/gmsm v1.4.1 // indirect
67-
go.uber.org/mock v0.4.0 // indirect
68-
golang.org/x/exp v0.0.0-20221205204356-47842c84f3db // indirect
69-
golang.org/x/mod v0.14.0 // indirect
70-
golang.org/x/sys v0.19.0 // indirect
71-
golang.org/x/text v0.14.0 // indirect
72-
golang.org/x/tools v0.17.0 // indirect
67+
go.uber.org/mock v0.5.0 // indirect
68+
golang.org/x/exp v0.0.0-20241204233417-43b7b7cde48d // indirect
69+
golang.org/x/mod v0.22.0 // indirect
70+
golang.org/x/sys v0.28.0 // indirect
71+
golang.org/x/text v0.21.0 // indirect
72+
golang.org/x/tools v0.28.0 // indirect
7373
google.golang.org/appengine v1.6.8 // indirect
74-
google.golang.org/protobuf v1.33.0 // indirect
74+
google.golang.org/protobuf v1.34.1 // indirect
7575
gopkg.in/yaml.v2 v2.4.0 // indirect
7676
gopkg.in/yaml.v3 v3.0.1 // indirect
7777
k8s.io/utils v0.0.0-20230406110748-d93618cff8a2 // indirect

0 commit comments

Comments
 (0)