fix(deps): update module github.com/quic-go/quic-go to v0.36.0 #201
No reviewers
Labels
No labels
Priority: High
Priority: Low
Priority: Medium
bug
duplicate
enhancement
help wanted
invalid
question
wontfix
No milestone
No project
No assignees
2 participants
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: sam/awl#201
Loading…
Reference in a new issue
No description provided.
Delete branch "renovate/github.com-quic-go-quic-go-0.x"
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?
This PR contains the following updates:
v0.35.1
->v0.36.0
Release Notes
quic-go/quic-go
v0.36.0
Compare Source
Generic Segmentation Offload (GSO)
This release enables GSO (Generic Segmentation Offload) in the send path, drastically increasing the packet send rate. Without GSO, quic-go had to use a single (sendmsg) syscall for every UDP datagram sent. GSO allows us to pass one giant (up to 64k) datagram to the sendmsg syscall, and have the kernel chop it into MTU sized (~1300 bytes) datagrams before sending them out on the wire. For more details on syscall optimizations, CloudFlare published an excellent blog post about this a while ago. GSO is currently only available on Linux (and with kernels >4.18).
Users who are using the same
net.PacketConn
for QUIC and to send out non-QUIC packets now need to call the newly introducedOptimizeConn
function before passing the connection to theTransport
. Otherwise, calls toWriteTo
will fail after GSO support was enabled. Users who are not using the samenet.PacketConn
in this way don't need to change anything.We also continued our effort to further reduce allocations during data transfers (#3526). Work on improving performance even further will continue in future releases.
Other Notable Changes
Full Changelog
New Contributors
Full Changelog: https://github.com/quic-go/quic-go/compare/v0.35.1...v0.36.0
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Renovate Bot.