Skip to content

Commit

Permalink
Bump github.com/quic-go/quic-go from 0.33.0 to 0.36.1 (#497)
Browse files Browse the repository at this point in the history
Bumps [github.com/quic-go/quic-go](https://github.com/quic-go/quic-go)
from 0.33.0 to 0.36.1.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/quic-go/quic-go/releases">github.com/quic-go/quic-go's
releases</a>.</em></p>
<blockquote>
<h2>v0.36.1</h2>
<p>This patch release disables GSO support (<a
href="https://redirect.github.com/quic-go/quic-go/pull/3934">quic-go/quic-go#3934</a>),
unless explicitly enabled using an environment variable
(<code>QUIC_GO_ENABLE_GSO=true</code>). We discovered that GSO fails
with some NICs and in some containerized environments. See <a
href="https://redirect.github.com/quic-go/quic-go/issues/3911">#3911</a>
for a detailed discussion.</p>
<p>From the user's perspective, GSO should &quot;just work&quot;. Once
we have a fix that correctly detects GSO support under all circumstances
we'll re-enable GSO by default.</p>
<h2>v0.36.0</h2>
<h2>Generic Segmentation Offload (GSO)</h2>
<p>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 <a
href="https://blog.cloudflare.com/accelerating-udp-packet-transmission-for-quic/">excellent
blog post</a> about this a while ago. GSO is currently only available on
Linux (and with kernels &gt;4.18).</p>
<p>Users who are using the same <code>net.PacketConn</code> for QUIC and
to send out non-QUIC packets now need to call the newly introduced
<code>OptimizeConn</code> function before passing the connection to the
<code>Transport</code>. Otherwise, calls to <code>WriteTo</code> will
fail after GSO support was enabled. Users who are not using the same
<code>net.PacketConn</code> in this way don't need to change
anything.</p>
<p>We also continued our effort to further reduce allocations during
data transfers (<a
href="https://redirect.github.com/quic-go/quic-go/issues/3526">#3526</a>).
Work on improving performance even further will continue in future
releases.</p>
<h2>Other Notable Changes</h2>
<ul>
<li>http3: The server now returns http.ErrServerClosed instead of
quic.ErrServerClosed (<a
href="https://redirect.github.com/quic-go/quic-go/issues/3900">#3900</a>)</li>
<li>quic-go now correctly deals with super-short idle timeouts (<a
href="https://redirect.github.com/quic-go/quic-go/issues/3909">#3909</a>)</li>
<li>uint62 overflows are now correctly handled in the Config (<a
href="https://redirect.github.com/quic-go/quic-go/issues/3866">#3866</a>)</li>
<li>only run DPLPMTUD (RFC 8899) on connections that support setting the
DF bit (<a
href="https://redirect.github.com/quic-go/quic-go/issues/3879">#3879</a>)</li>
<li>switch to the packet number length derivation logic described in the
RFC (<a
href="https://redirect.github.com/quic-go/quic-go/issues/3885">#3885</a>)</li>
<li>fix panics when closing an uninitialized Transport (<a
href="https://redirect.github.com/quic-go/quic-go/issues/3908">#3908</a>)</li>
</ul>
<h2>Full Changelog</h2>
<ul>
<li>use a ring buffer in the framer by <a
href="https://github.com/Glonee"><code>@​Glonee</code></a> in <a
href="https://redirect.github.com/quic-go/quic-go/pull/3857">quic-go/quic-go#3857</a></li>
<li>update Ginkgo to v2.9.5 and Gomega to v1.27.6 by <a
href="https://github.com/marten-seemann"><code>@​marten-seemann</code></a>
in <a
href="https://redirect.github.com/quic-go/quic-go/pull/3845">quic-go/quic-go#3845</a></li>
<li>fix flaky client test by <a
href="https://github.com/marten-seemann"><code>@​marten-seemann</code></a>
in <a
href="https://redirect.github.com/quic-go/quic-go/pull/3834">quic-go/quic-go#3834</a></li>
<li>ackhandler: simplify sentPacketHandler.SentPacket by <a
href="https://github.com/marten-seemann"><code>@​marten-seemann</code></a>
in <a
href="https://redirect.github.com/quic-go/quic-go/pull/3847">quic-go/quic-go#3847</a></li>
<li>readme: restructure RFC section, add QUIC v2 (RFC 9369) by <a
href="https://github.com/marten-seemann"><code>@​marten-seemann</code></a>
in <a
href="https://redirect.github.com/quic-go/quic-go/pull/3871">quic-go/quic-go#3871</a></li>
<li>remove stray print statement in datagram test by <a
href="https://github.com/marten-seemann"><code>@​marten-seemann</code></a>
in <a
href="https://redirect.github.com/quic-go/quic-go/pull/3828">quic-go/quic-go#3828</a></li>
<li>ci: fix ordering of error output of the cross compilation workflow
by <a
href="https://github.com/marten-seemann"><code>@​marten-seemann</code></a>
in <a
href="https://redirect.github.com/quic-go/quic-go/pull/3809">quic-go/quic-go#3809</a></li>
<li>githooks: exclude deleted files from checks by <a
href="https://github.com/marten-seemann"><code>@​marten-seemann</code></a>
in <a
href="https://redirect.github.com/quic-go/quic-go/pull/3864">quic-go/quic-go#3864</a></li>
<li>receive stream: put back the buffer for the last STREAM frame by <a
href="https://github.com/marten-seemann"><code>@​marten-seemann</code></a>
in <a
href="https://redirect.github.com/quic-go/quic-go/pull/3832">quic-go/quic-go#3832</a></li>
<li>config: handle overflows of stream and flow control limits by <a
href="https://github.com/marten-seemann"><code>@​marten-seemann</code></a>
in <a
href="https://redirect.github.com/quic-go/quic-go/pull/3866">quic-go/quic-go#3866</a></li>
<li>improve documentation of the Transport and the dial and listen
functions by <a
href="https://github.com/marten-seemann"><code>@​marten-seemann</code></a>
in <a
href="https://redirect.github.com/quic-go/quic-go/pull/3875">quic-go/quic-go#3875</a></li>
<li>don't use closures for passing OnLost and OnAcked STREAM frame
callbacks by <a
href="https://github.com/marten-seemann"><code>@​marten-seemann</code></a>
in <a
href="https://redirect.github.com/quic-go/quic-go/pull/3833">quic-go/quic-go#3833</a></li>
<li>use ackhandler.Frame directly, not as a pointer, remove its
sync.Pool by <a
href="https://github.com/marten-seemann"><code>@​marten-seemann</code></a>
in <a
href="https://redirect.github.com/quic-go/quic-go/pull/3835">quic-go/quic-go#3835</a></li>
<li>only run DPLPMTUD if the connection can send packets with the DF bit
set by <a
href="https://github.com/marten-seemann"><code>@​marten-seemann</code></a>
in <a
href="https://redirect.github.com/quic-go/quic-go/pull/3879">quic-go/quic-go#3879</a></li>
<li>use a single ACK frame in the receive path by <a
href="https://github.com/marten-seemann"><code>@​marten-seemann</code></a>
in <a
href="https://redirect.github.com/quic-go/quic-go/pull/3878">quic-go/quic-go#3878</a></li>
<li>use the same ACK frame struct in the send path, remove ACK frame
pool by <a
href="https://github.com/marten-seemann"><code>@​marten-seemann</code></a>
in <a
href="https://redirect.github.com/quic-go/quic-go/pull/3831">quic-go/quic-go#3831</a></li>
<li>use GSO by <a
href="https://github.com/marten-seemann"><code>@​marten-seemann</code></a>
in <a
href="https://redirect.github.com/quic-go/quic-go/pull/3808">quic-go/quic-go#3808</a></li>
<li>ci: run linter on all supported platforms by <a
href="https://github.com/marten-seemann"><code>@​marten-seemann</code></a>
in <a
href="https://redirect.github.com/quic-go/quic-go/pull/3816">quic-go/quic-go#3816</a></li>
<li>packer: reduce number of calls to time.Now() when packing packets by
<a
href="https://github.com/marten-seemann"><code>@​marten-seemann</code></a>
in <a
href="https://redirect.github.com/quic-go/quic-go/pull/3815">quic-go/quic-go#3815</a></li>
<li>pass around receivedPacket as struct instead of as pointer by <a
href="https://github.com/marten-seemann"><code>@​marten-seemann</code></a>
in <a
href="https://redirect.github.com/quic-go/quic-go/pull/3823">quic-go/quic-go#3823</a></li>
<li>pass the current timestamp to the pacer instead of calling
time.Now() by <a
href="https://github.com/marten-seemann"><code>@​marten-seemann</code></a>
in <a
href="https://redirect.github.com/quic-go/quic-go/pull/3824">quic-go/quic-go#3824</a></li>
<li>embed packetInfo in receivedPacket struct, use netip.Addr by <a
href="https://github.com/marten-seemann"><code>@​marten-seemann</code></a>
in <a
href="https://redirect.github.com/quic-go/quic-go/pull/3881">quic-go/quic-go#3881</a></li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/quic-go/quic-go/commit/4384df18a317f5c103b7b5f653c2968eeda62a34"><code>4384df1</code></a>
disable GSO unless QUIC_GO_ENABLE_GSO is set (<a
href="https://redirect.github.com/quic-go/quic-go/issues/3934">#3934</a>)</li>
<li><a
href="https://github.com/quic-go/quic-go/commit/4a78b51955d02c3d5f0f21f7f370db5c0544a33a"><code>4a78b51</code></a>
update link to the wiki page about UDP buffer sizes (<a
href="https://redirect.github.com/quic-go/quic-go/issues/3924">#3924</a>)</li>
<li><a
href="https://github.com/quic-go/quic-go/commit/da298d09e159fd545a3a90bd54771aabfe9e9162"><code>da298d0</code></a>
docs: improve documentation of OptimizeConn (<a
href="https://redirect.github.com/quic-go/quic-go/issues/3910">#3910</a>)</li>
<li><a
href="https://github.com/quic-go/quic-go/commit/8352e5dc3236d1b26858ff44f85b699ced095bac"><code>8352e5d</code></a>
check for uninitialized fields when closing the Transport (<a
href="https://redirect.github.com/quic-go/quic-go/issues/3908">#3908</a>)</li>
<li><a
href="https://github.com/quic-go/quic-go/commit/9acce3c6d94a8891b72001b082b19d4db40d824c"><code>9acce3c</code></a>
http3: return http.ErrServerClosed instead of quic.ErrServerClosed (<a
href="https://redirect.github.com/quic-go/quic-go/issues/3900">#3900</a>)</li>
<li><a
href="https://github.com/quic-go/quic-go/commit/e4fe28930a6cf8ca41fb887aa95ad6debbbe10ea"><code>e4fe289</code></a>
docs: add detailed description of the quic package (<a
href="https://redirect.github.com/quic-go/quic-go/issues/3902">#3902</a>)</li>
<li><a
href="https://github.com/quic-go/quic-go/commit/28d5106a1c68722e98c006ecba10f1f00240633f"><code>28d5106</code></a>
wire: switch to crypto/rand for greased transport parameter generation
(<a
href="https://redirect.github.com/quic-go/quic-go/issues/3904">#3904</a>)</li>
<li><a
href="https://github.com/quic-go/quic-go/commit/f57f876446d6ed52dfa34e9ed115a054353f9b84"><code>f57f876</code></a>
respect minimum idle timeout of 3 PTOs (<a
href="https://redirect.github.com/quic-go/quic-go/issues/3909">#3909</a>)</li>
<li><a
href="https://github.com/quic-go/quic-go/commit/85764da3b65997a229a961d9704a03e6c02a682b"><code>85764da</code></a>
docs: improve doc comments for the ConnectionState fields (<a
href="https://redirect.github.com/quic-go/quic-go/issues/3901">#3901</a>)</li>
<li><a
href="https://github.com/quic-go/quic-go/commit/30527c58c2ac336b48b32dd9288147df8cf33b0a"><code>30527c5</code></a>
frame fuzzer: handle frames one by one (<a
href="https://redirect.github.com/quic-go/quic-go/issues/3884">#3884</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/quic-go/quic-go/compare/v0.33.0...v0.36.1">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/quic-go/quic-go&package-manager=go_modules&previous-version=0.33.0&new-version=0.36.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Steve Ayers <[email protected]>
Co-authored-by: Steve Ayers <[email protected]>
  • Loading branch information
3 people authored Jul 10, 2023
1 parent 4de82b9 commit 6fedbe1
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 25 deletions.
14 changes: 7 additions & 7 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ go 1.18

require (
github.com/bufbuild/connect-go v1.9.0
github.com/quic-go/quic-go v0.33.0
github.com/quic-go/quic-go v0.36.1
github.com/rs/cors v1.9.0
github.com/spf13/cobra v1.7.0
github.com/stretchr/testify v1.8.4
Expand All @@ -15,24 +15,24 @@ require (

require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/go-task/slim-sprig v0.0.0-20210107165309-348f09dbbbc0 // indirect
github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 // indirect
github.com/golang/mock v1.6.0 // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/google/pprof v0.0.0-20230207041349-798e818bf904 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/kr/pretty v0.3.0 // indirect
github.com/onsi/ginkgo/v2 v2.8.3 // indirect
github.com/onsi/ginkgo/v2 v2.9.5 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/quic-go/qpack v0.4.0 // indirect
github.com/quic-go/qtls-go1-19 v0.2.1 // indirect
github.com/quic-go/qtls-go1-20 v0.1.1 // indirect
github.com/quic-go/qtls-go1-19 v0.3.2 // indirect
github.com/quic-go/qtls-go1-20 v0.2.2 // indirect
github.com/spf13/pflag v1.0.5 // indirect
golang.org/x/crypto v0.11.0 // indirect
golang.org/x/exp v0.0.0-20230213192124-5e25df0256eb // indirect
golang.org/x/mod v0.8.0 // indirect
golang.org/x/mod v0.10.0 // indirect
golang.org/x/sys v0.10.0 // indirect
golang.org/x/text v0.11.0 // indirect
golang.org/x/tools v0.6.0 // indirect
golang.org/x/tools v0.9.1 // indirect
google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
36 changes: 18 additions & 18 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ3
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/go-logr/logr v1.2.3 h1:2DntVwHkVopvECVRSlL5PSo9eG+cAkDCuckLubN+rq0=
github.com/go-task/slim-sprig v0.0.0-20210107165309-348f09dbbbc0 h1:p104kn46Q8WdvHunIJ9dAyjPVtrBPhSr3KT2yUst43I=
github.com/go-task/slim-sprig v0.0.0-20210107165309-348f09dbbbc0/go.mod h1:fyg7847qk6SyHyPtNmDHnmrv/HOrqktSC+C9fM+CJOE=
github.com/go-logr/logr v1.2.4 h1:g01GSCwiDw2xSZfjJ2/T9M+S6pFdcNtFYsp+Y43HYDQ=
github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 h1:tfuBGBXKqDEevZMzYi5KSi8KkcZtzBcTgAUUtapy0OI=
github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572/go.mod h1:9Pwr4B2jHnOSGXyyzV8ROjYa2ojvAY6HCGYYfMoC3Ls=
github.com/golang/mock v1.6.0 h1:ErTB+efbowRARo13NNdxyJji2egdxLGQhRaY+DUumQc=
github.com/golang/mock v1.6.0/go.mod h1:p6yTPP+5HYm5mzsMV8JkE6ZKdX+/wYM6Hr+LicevLPs=
github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk=
Expand All @@ -26,19 +26,19 @@ github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ=
github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI=
github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY=
github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE=
github.com/onsi/ginkgo/v2 v2.8.3 h1:RpbK1G8nWPNaCVFBWsOGnEQQGgASi6b8fxcWBvDYjxQ=
github.com/onsi/ginkgo/v2 v2.8.3/go.mod h1:6OaUA8BCi0aZfmzYT/q9AacwTzDpNbxILUT+TlBq6MY=
github.com/onsi/gomega v1.27.0 h1:QLidEla4bXUuZVFa4KX6JHCsuGgbi85LC/pCHrt/O08=
github.com/onsi/ginkgo/v2 v2.9.5 h1:+6Hr4uxzP4XIUyAkg61dWBw8lb/gc4/X5luuxN/EC+Q=
github.com/onsi/ginkgo/v2 v2.9.5/go.mod h1:tvAoo1QUJwNEU2ITftXTpR7R1RbCzoZUOs3RonqW57k=
github.com/onsi/gomega v1.27.6 h1:ENqfyGeS5AX/rlXDd/ETokDz93u0YufY1Pgxuy/PvWE=
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
github.com/quic-go/qpack v0.4.0 h1:Cr9BXA1sQS2SmDUWjSofMPNKmvF6IiIfDRmgU0w1ZCo=
github.com/quic-go/qpack v0.4.0/go.mod h1:UZVnYIfi5GRk+zI9UMaCPsmZ2xKJP7XBUvVyT1Knj9A=
github.com/quic-go/qtls-go1-19 v0.2.1 h1:aJcKNMkH5ASEJB9FXNeZCyTEIHU1J7MmHyz1Q1TSG1A=
github.com/quic-go/qtls-go1-19 v0.2.1/go.mod h1:ySOI96ew8lnoKPtSqx2BlI5wCpUVPT05RMAlajtnyOI=
github.com/quic-go/qtls-go1-20 v0.1.1 h1:KbChDlg82d3IHqaj2bn6GfKRj84Per2VGf5XV3wSwQk=
github.com/quic-go/qtls-go1-20 v0.1.1/go.mod h1:JKtK6mjbAVcUTN/9jZpvLbGxvdWIKS8uT7EiStoU1SM=
github.com/quic-go/quic-go v0.33.0 h1:ItNoTDN/Fm/zBlq769lLJc8ECe9gYaW40veHCCco7y0=
github.com/quic-go/quic-go v0.33.0/go.mod h1:YMuhaAV9/jIu0XclDXwZPAsP/2Kgr5yMYhe9oxhhOFA=
github.com/quic-go/qtls-go1-19 v0.3.2 h1:tFxjCFcTQzK+oMxG6Zcvp4Dq8dx4yD3dDiIiyc86Z5U=
github.com/quic-go/qtls-go1-19 v0.3.2/go.mod h1:ySOI96ew8lnoKPtSqx2BlI5wCpUVPT05RMAlajtnyOI=
github.com/quic-go/qtls-go1-20 v0.2.2 h1:WLOPx6OY/hxtTxKV1Zrq20FtXtDEkeY00CGQm8GEa3E=
github.com/quic-go/qtls-go1-20 v0.2.2/go.mod h1:JKtK6mjbAVcUTN/9jZpvLbGxvdWIKS8uT7EiStoU1SM=
github.com/quic-go/quic-go v0.36.1 h1:WsG73nVtnDy1TiACxFxhQ3TqaW+DipmqzLEtNlAwZyY=
github.com/quic-go/quic-go v0.36.1/go.mod h1:zPetvwDlILVxt15n3hr3Gf/I3mDf7LpLKPhR4Ez0AZQ=
github.com/rogpeppe/go-internal v1.6.1 h1:/FiVV8dS/e+YqF2JvO3yXRFbBLTIuSDkuC7aBOAvL+k=
github.com/rogpeppe/go-internal v1.6.1/go.mod h1:xXDCJY+GAPziupqXw64V24skbSoqbTEfhy4qGm1nDQc=
github.com/rs/cors v1.9.0 h1:l9HGsTsHJcvW14Nk7J9KFz8bzeAWXn3CG6bgt7LsrAE=
Expand All @@ -49,7 +49,7 @@ github.com/spf13/cobra v1.7.0/go.mod h1:uLxZILRyS/50WlhOIKD7W6V5bgeIt+4sICxh6uRM
github.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA=
github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg=
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
github.com/stretchr/testify v1.5.1/go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5cxcmMvtA=
github.com/stretchr/testify v1.6.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
github.com/stretchr/testify v1.8.4 h1:CcVxjf3Q8PM0mHUKJCdn+eZZtm5yQwehR5yeSVQQcUk=
github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo=
github.com/yuin/goldmark v1.3.5/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k=
Expand All @@ -60,8 +60,8 @@ golang.org/x/crypto v0.11.0/go.mod h1:xgJhtzW8F9jGdVFWZESrid1U1bjeNy4zgy5cRr/CIi
golang.org/x/exp v0.0.0-20230213192124-5e25df0256eb h1:PaBZQdo+iSDyHT053FjUCgZQ/9uqVwPOcl7KSWhKn6w=
golang.org/x/exp v0.0.0-20230213192124-5e25df0256eb/go.mod h1:CxIveKay+FTh1D0yPZemJVgC/95VzuuOLq5Qi4xnoYc=
golang.org/x/mod v0.4.2/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA=
golang.org/x/mod v0.8.0 h1:LUYupSeNrTNCGzR/hVBk2NHZO4hXcVaW1k4Qx7rjPx8=
golang.org/x/mod v0.8.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs=
golang.org/x/mod v0.10.0 h1:lFO9qtOdlre5W1jxS3r/4szv2/6iXxScdzjoBMXNhYk=
golang.org/x/mod v0.10.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs=
golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=
golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4/go.mod h1:p54w0d4576C0XHj96bSt6lcn1PtDYWL6XObtHCRCNQM=
Expand All @@ -84,8 +84,8 @@ golang.org/x/text v0.11.0/go.mod h1:TvPlkZtksWOMsz7fbANvkp4WM8x/WCo/om8BMLbz+aE=
golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=
golang.org/x/tools v0.1.1/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk=
golang.org/x/tools v0.6.0 h1:BOw41kyTf3PuCW1pVQf8+Cyg8pMlkYB1oo9iJ6D/lKM=
golang.org/x/tools v0.6.0/go.mod h1:Xwgl3UAJ/d3gWutnCtw505GrjyAbvKui8lOU390QaIU=
golang.org/x/tools v0.9.1 h1:8WMNJAz3zrtPmnYC7ISf5dEn3MT0gY7jBJfw27yrrLo=
golang.org/x/tools v0.9.1/go.mod h1:owI94Op576fPu3cIGQeHs3joujW/2Oc6MtlxbF5dfNc=
golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
Expand All @@ -102,6 +102,6 @@ gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 h1:qIbj1fsPNlZgppZ+VLlY7N33q108Sa+fhmuc+sWQYwY=
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
gopkg.in/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI=
gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=

0 comments on commit 6fedbe1

Please sign in to comment.