mirror of
https://github.com/fatedier/frp.git
synced 2026-05-15 08:05:49 -06:00
[PR #4861] [CLOSED] feat: update quic-go dependency from v0.48.2 to v0.53.0 #5062
Labels
No labels
In Progress
WIP
WaitingForInfo
bug
doc
duplicate
easy
enhancement
future
help wanted
invalid
lifecycle/stale
need-issue-template
need-usage-help
no plan
proposal
pull-request
question
todo
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: github-starred/frp#5062
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/fatedier/frp/pull/4861
Author: @fatedier
Created: 7/1/2025
Status: ❌ Closed
Base:
dev← Head:devin/1751363235-update-quic-go📝 Commits (10+)
a23455aupdate feature gates doc (#4755)e687aefvnet: fix issues (#4771)75edea3update release notes (#4772)6cbb262build: add x64 openbsd (#4780)3be6efdfix: type error in server_plugin doc (#4799)3128350feat: support YAML merge in strict configuration mode (#4809)ce366eeadd proxy protocol support for UDP proxies (#4810)1ced733update test package (#4814)de690a5update golangci-lint version (#4817)9ccb55cfeat: update quic-go dependency from v0.48.2 to v0.53.0📊 Changes
55 files changed (+940 additions, -485 deletions)
View changed files
📝
.github/workflows/golangci-lint.yml(+2 -8)📝
.github/workflows/stale.yml(+1 -1)📝
.golangci.yml(+92 -120)📝
Makefile.cross-compiles(+1 -1)📝
README.md(+2 -4)📝
Release.md(+3 -7)📝
client/admin_api.go(+6 -6)📝
client/connector.go(+1 -1)📝
client/control.go(+1 -1)📝
client/proxy/proxy.go(+4 -20)📝
client/proxy/sudp.go(+1 -1)📝
client/proxy/udp.go(+3 -1)📝
client/service.go(+4 -5)📝
client/visitor/xtcp.go(+1 -1)📝
doc/server_plugin.md(+1 -1)📝
doc/virtual_net.md(+1 -3)📝
go.mod(+9 -10)📝
go.sum(+20 -18)📝
hack/run-e2e.sh(+3 -3)📝
package.sh(+1 -1)...and 35 more files
📄 Description
feat: update quic-go dependency from v0.48.2 to v0.53.0
Summary
This PR addresses issue #4852 by updating the quic-go dependency from v0.48.2 to v0.53.0 to resolve build compatibility issues. The quic-go v0.53.0 release introduced breaking API changes where:
quic.Connectioninterface was replaced with*quic.Connstructquic.Streaminterface was replaced with*quic.StreamstructAll affected code has been updated to use the new API throughout the codebase, including client connections, server handling, and P2P (XTCP) functionality.
Review & Testing Checklist for Human
⚠️ HIGH RISK - Core networking dependency change with breaking API changes
Recommended test plan: Set up a test environment with frps and frpc using QUIC transport, create XTCP proxies, and verify both basic connectivity and edge cases like connection drops.
Diagram
Notes
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.