Skip to content

Commit

Permalink
chore(deps): Bump github.com/ipfs/boxo from 0.16.0 to 0.18.0 (#3212)
Browse files Browse the repository at this point in the history
Bumps [github.com/ipfs/boxo](https://github.com/ipfs/boxo) from 0.16.0
to 0.18.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/ipfs/boxo/releases">github.com/ipfs/boxo's
releases</a>.</em></p>
<blockquote>
<h2>v0.18.0</h2>
<h2>Added</h2>
<ul>
<li><code>blockservice</code> now has <code>ContextWithSession</code>
and <code>EmbedSessionInContext</code> functions, which allows to embed
a session in a context. Future calls to
<code>BlockGetter.GetBlock</code>, <code>BlockGetter.GetBlocks</code>
and <code>NewSession</code> will use the session in the context.</li>
<li><code>blockservice.NewWritethrough</code> deprecated function has
been removed, instead you can do <code>blockservice.New(..., ...,
WriteThrough())</code> like previously.</li>
<li><code>gateway</code>: a new header configuration middleware has been
added to replace the existing header configuration, which can be used
more generically.</li>
<li><code>namesys</code> now has a <code>WithMaxCacheTTL</code> option,
which allows you to define a maximum TTL that will be used for caching
IPNS entries.</li>
</ul>
<h2>Fixed</h2>
<ul>
<li>🛠 <code>boxo/gateway</code>: when making a trustless CAR request
with the &quot;entity-bytes&quot; parameter, using a negative index
greater than the underlying entity length could trigger reading more
data than intended</li>
<li>🛠 <code>boxo/gateway</code>: the header configuration
<code>Config.Headers</code> and <code>AddAccessControlHeaders</code> has
been replaced by the new middleware provided by
<code>NewHeaders</code>.</li>
<li>🛠 <code>routing/http/client</code>: the default HTTP client is no
longer a global singleton. Therefore, using <code>WithUserAgent</code>
won't modify the user agent of existing routing clients. This will also
prevent potential race conditions. In addition, incompatible options
will now return errors instead of silently failing.</li>
</ul>
<h2>What's Changed</h2>
<ul>
<li>Merge Release v0.16.0 by <a
href="https://github.com/hacdias"><code>@​hacdias</code></a> in <a
href="https://github.com/ipfs/boxo/pull/519">ipfs/boxo#519</a></li>
<li>all: run perfsprint by <a
href="https://github.com/Jorropo"><code>@​Jorropo</code></a> in <a
href="https://github.com/ipfs/boxo/pull/521">ipfs/boxo#521</a></li>
<li>gateway/assets: process each template and ETag hash in parallel by
<a href="https://github.com/Jorropo"><code>@​Jorropo</code></a> in <a
href="https://github.com/ipfs/boxo/pull/530">ipfs/boxo#530</a></li>
<li>Update tracing.md by <a
href="https://github.com/0xbasar"><code>@​0xbasar</code></a> in <a
href="https://github.com/ipfs/boxo/pull/531">ipfs/boxo#531</a></li>
<li>blockservice: fix panic when closing an offline blockservice by <a
href="https://github.com/Jorropo"><code>@​Jorropo</code></a> in <a
href="https://github.com/ipfs/boxo/pull/533">ipfs/boxo#533</a></li>
<li>feat(pinning): add support for names by <a
href="https://github.com/hacdias"><code>@​hacdias</code></a> in <a
href="https://github.com/ipfs/boxo/pull/525">ipfs/boxo#525</a></li>
<li>chore: update otlp by <a
href="https://github.com/Jorropo"><code>@​Jorropo</code></a> in <a
href="https://github.com/ipfs/boxo/pull/532">ipfs/boxo#532</a></li>
<li>feat(pinning): pinning existing CID with different name updates pin
by <a href="https://github.com/hacdias"><code>@​hacdias</code></a> in <a
href="https://github.com/ipfs/boxo/pull/537">ipfs/boxo#537</a></li>
<li>chore: update dependencies by <a
href="https://github.com/hacdias"><code>@​hacdias</code></a> in <a
href="https://github.com/ipfs/boxo/pull/541">ipfs/boxo#541</a></li>
<li>Release v0.17.0 by <a
href="https://github.com/hacdias"><code>@​hacdias</code></a> in <a
href="https://github.com/ipfs/boxo/pull/542">ipfs/boxo#542</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/0xbasar"><code>@​0xbasar</code></a> made
their first contribution in <a
href="https://github.com/ipfs/boxo/pull/531">ipfs/boxo#531</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/ipfs/boxo/compare/v0.16.0...v0.18.0">https://github.com/ipfs/boxo/compare/v0.16.0...v0.18.0</a></p>
<h2>v0.17.0</h2>
<h2>Added</h2>
<ul>
<li>🛠 <code>pinning/pinner</code>: you can now give a custom name when
pinning a CID. To reflect this, the <code>Pinner</code> has been
adjusted. Note that calling <code>Pin</code> for the same CID with a
different name will replace its current name by the newly given
name.</li>
</ul>
<h2>Removed</h2>
<ul>
<li>🛠 <code>tracing</code> <code>jaeger</code> exporter has been removed
due to it's deprecation and removal from upstream, you should use
<code>otlp</code> exporter instead. See the <a
href="https://github.com/ipfs/boxo/blob/HEAD/docs/tracing.md">docs</a>
for an example.</li>
</ul>
<h2>What's Changed</h2>
<ul>
<li>Merge Release v0.16.0 by <a
href="https://github.com/hacdias"><code>@​hacdias</code></a> in <a
href="https://github.com/ipfs/boxo/pull/519">ipfs/boxo#519</a></li>
<li>all: run perfsprint by <a
href="https://github.com/Jorropo"><code>@​Jorropo</code></a> in <a
href="https://github.com/ipfs/boxo/pull/521">ipfs/boxo#521</a></li>
<li>gateway/assets: process each template and ETag hash in parallel by
<a href="https://github.com/Jorropo"><code>@​Jorropo</code></a> in <a
href="https://github.com/ipfs/boxo/pull/530">ipfs/boxo#530</a></li>
<li>Update tracing.md by <a
href="https://github.com/0xbasar"><code>@​0xbasar</code></a> in <a
href="https://github.com/ipfs/boxo/pull/531">ipfs/boxo#531</a></li>
<li>blockservice: fix panic when closing an offline blockservice by <a
href="https://github.com/Jorropo"><code>@​Jorropo</code></a> in <a
href="https://github.com/ipfs/boxo/pull/533">ipfs/boxo#533</a></li>
<li>feat(pinning): add support for names by <a
href="https://github.com/hacdias"><code>@​hacdias</code></a> in <a
href="https://github.com/ipfs/boxo/pull/525">ipfs/boxo#525</a></li>
<li>chore: update otlp by <a
href="https://github.com/Jorropo"><code>@​Jorropo</code></a> in <a
href="https://github.com/ipfs/boxo/pull/532">ipfs/boxo#532</a></li>
<li>feat(pinning): pinning existing CID with different name updates pin
by <a href="https://github.com/hacdias"><code>@​hacdias</code></a> in <a
href="https://github.com/ipfs/boxo/pull/537">ipfs/boxo#537</a></li>
<li>chore: update dependencies by <a
href="https://github.com/hacdias"><code>@​hacdias</code></a> in <a
href="https://github.com/ipfs/boxo/pull/541">ipfs/boxo#541</a></li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/ipfs/boxo/blob/main/CHANGELOG.md">github.com/ipfs/boxo's
changelog</a>.</em></p>
<blockquote>
<h2>[v0.18.0]</h2>
<h3>Added</h3>
<ul>
<li><code>blockservice</code> now has <code>ContextWithSession</code>
and <code>EmbedSessionInContext</code> functions, which allows to embed
a session in a context. Future calls to
<code>BlockGetter.GetBlock</code>, <code>BlockGetter.GetBlocks</code>
and <code>NewSession</code> will use the session in the context.</li>
<li><code>blockservice.NewWritethrough</code> deprecated function has
been removed, instead you can do <code>blockservice.New(..., ...,
WriteThrough())</code> like previously.</li>
<li><code>gateway</code>: a new header configuration middleware has been
added to replace the existing header configuration, which can be used
more generically.</li>
<li><code>namesys</code> now has a <code>WithMaxCacheTTL</code> option,
which allows you to define a maximum TTL that will be used for caching
IPNS entries.</li>
</ul>
<h3>Fixed</h3>
<ul>
<li>🛠 <code>boxo/gateway</code>: when making a trustless CAR request
with the &quot;entity-bytes&quot; parameter, using a negative index
greater than the underlying entity length could trigger reading more
data than intended</li>
<li>🛠 <code>boxo/gateway</code>: the header configuration
<code>Config.Headers</code> and <code>AddAccessControlHeaders</code> has
been replaced by the new middleware provided by
<code>NewHeaders</code>.</li>
<li>🛠 <code>routing/http/client</code>: the default HTTP client is no
longer a global singleton. Therefore, using <code>WithUserAgent</code>
won't modify the user agent of existing routing clients. This will also
prevent potential race conditions. In addition, incompatible options
will now return errors instead of silently failing.</li>
</ul>
<h2>[v0.17.0]</h2>
<h3>Added</h3>
<ul>
<li>🛠 <code>pinning/pinner</code>: you can now give a custom name when
pinning a CID. To reflect this, the <code>Pinner</code> has been
adjusted. Note that calling <code>Pin</code> for the same CID with a
different name will replace its current name by the newly given
name.</li>
</ul>
<h3>Removed</h3>
<ul>
<li>🛠 <code>tracing</code> <code>jaeger</code> exporter has been removed
due to it's deprecation and removal from upstream, you should use
<code>otlp</code> exporter instead. See the <a
href="https://github.com/ipfs/boxo/blob/main/docs/tracing.md">docs</a>
for an example.</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/ipfs/boxo/commit/c336fc96353a6809829369bc87ed2309089de444"><code>c336fc9</code></a>
Merge pull request <a
href="https://github.com/ipfs/boxo/issues/581">#581</a> from
ipfs/release-v0.18.0</li>
<li><a
href="https://github.com/ipfs/boxo/commit/4f5b2c08df2f61b0ae1da53f7560c61dc6965be4"><code>4f5b2c0</code></a>
chore: bump version to v0.18.0</li>
<li><a
href="https://github.com/ipfs/boxo/commit/28f1c4037ef91bb0d00f6666a44ecdfd2b6a81cd"><code>28f1c40</code></a>
docs: prepare changelog for v0.18.0</li>
<li><a
href="https://github.com/ipfs/boxo/commit/39f4588f154831de8c551d0cc71270e7c8095aad"><code>39f4588</code></a>
routing/http/client: avoid race by not using global http.Client</li>
<li><a
href="https://github.com/ipfs/boxo/commit/79cb4e2886d72af06f3b102982520a743835c02f"><code>79cb4e2</code></a>
gateway: tests for simpler superfluous namespace handling (<a
href="https://github.com/ipfs/boxo/issues/572">#572</a>)</li>
<li><a
href="https://github.com/ipfs/boxo/commit/89bceff34bf108a46795d26938e6aa8c2f876fc4"><code>89bceff</code></a>
chore: Update .github/workflows/stale.yml [skip ci]</li>
<li><a
href="https://github.com/ipfs/boxo/commit/fdfcfcc0708a39b06825e158e9bfa96b30cf42aa"><code>fdfcfcc</code></a>
namesys: add WithMaxCacheTTL</li>
<li><a
href="https://github.com/ipfs/boxo/commit/bf34cd0777d8813def8a5fc3312b7287501df9a7"><code>bf34cd0</code></a>
fix(gw): entity-bytes with negative indexes beyond file size (<a
href="https://github.com/ipfs/boxo/issues/523">#523</a>)</li>
<li><a
href="https://github.com/ipfs/boxo/commit/3d57bce7998cad85517d1e1dc4602a0f55e59dee"><code>3d57bce</code></a>
gateway: extract CORS to headers middleware</li>
<li><a
href="https://github.com/ipfs/boxo/commit/4c3a1f2f343637b615c26a27a55afa12dd5aaed5"><code>4c3a1f2</code></a>
gateway: remove dead, unexported lazySeek</li>
<li>Additional commits viewable in <a
href="https://github.com/ipfs/boxo/compare/v0.16.0...v0.18.0">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/ipfs/boxo&package-manager=go_modules&previous-version=0.16.0&new-version=0.18.0)](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 show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@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] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Feb 26, 2024
1 parent 1a20776 commit b560d25
Show file tree
Hide file tree
Showing 2 changed files with 78 additions and 75 deletions.
48 changes: 24 additions & 24 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ require (
github.com/hashicorp/go-retryablehttp v0.7.5
github.com/hashicorp/golang-lru/v2 v2.0.7
github.com/imdario/mergo v0.3.16
github.com/ipfs/boxo v0.16.0
github.com/ipfs/boxo v0.18.0
github.com/ipfs/go-block-format v0.2.0
github.com/ipfs/go-blockservice v0.5.0
github.com/ipfs/go-cid v0.4.1
Expand Down Expand Up @@ -78,7 +78,7 @@ require (
)

require (
cloud.google.com/go v0.110.10 // indirect
cloud.google.com/go v0.111.0 // indirect
cloud.google.com/go/compute v1.23.3 // indirect
cloud.google.com/go/compute/metadata v0.2.3 // indirect
cloud.google.com/go/iam v1.1.5 // indirect
Expand Down Expand Up @@ -136,14 +136,14 @@ require (
github.com/dgraph-io/ristretto v0.1.1 // indirect
github.com/dgryski/go-farm v0.0.0-20200201041132-a6ae2369ad13 // indirect
github.com/docker/go-units v0.5.0 // indirect
github.com/dustin/go-humanize v1.0.1-0.20200219035652-afde56e7acac // indirect
github.com/dustin/go-humanize v1.0.1 // indirect
github.com/dvsekhvalnov/jose2go v1.5.0 // indirect
github.com/elastic/gosigar v0.14.2 // indirect
github.com/etclabscore/go-jsonschema-walk v0.0.6 // indirect
github.com/ethereum/c-kzg-4844 v0.3.1 // indirect
github.com/ethereum/go-ethereum v1.13.2 // indirect
github.com/felixge/httpsnoop v1.0.1 // indirect
github.com/flynn/noise v1.0.0 // indirect
github.com/flynn/noise v1.0.1 // indirect
github.com/francoispqt/gojay v1.2.13 // indirect
github.com/fsnotify/fsnotify v1.6.0 // indirect
github.com/gammazero/deque v0.2.0 // indirect
Expand Down Expand Up @@ -171,7 +171,7 @@ require (
github.com/google/go-cmp v0.6.0 // indirect
github.com/google/gopacket v1.1.19 // indirect
github.com/google/orderedcode v0.0.1 // indirect
github.com/google/pprof v0.0.0-20231023181126-ff6d637d2a7b // indirect
github.com/google/pprof v0.0.0-20231229205709-960ae82b1e42 // indirect
github.com/google/s2a-go v0.1.7 // indirect
github.com/google/uuid v1.5.0 // indirect
github.com/googleapis/enterprise-certificate-proxy v0.3.2 // indirect
Expand All @@ -180,7 +180,7 @@ require (
github.com/gorilla/websocket v1.5.0 // indirect
github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 // indirect
github.com/grpc-ecosystem/grpc-gateway v1.16.0 // indirect
github.com/grpc-ecosystem/grpc-gateway/v2 v2.16.0 // indirect
github.com/grpc-ecosystem/grpc-gateway/v2 v2.19.0 // indirect
github.com/gsterjov/go-libsecret v0.0.0-20161001094733-a6f4afe4910c // indirect
github.com/gtank/merlin v0.1.1 // indirect
github.com/gtank/ristretto255 v0.1.2 // indirect
Expand Down Expand Up @@ -215,7 +215,7 @@ require (
github.com/ipfs/go-metrics-interface v0.0.1 // indirect
github.com/ipfs/go-peertaskqueue v0.8.1 // indirect
github.com/ipfs/go-verifcid v0.0.2 // indirect
github.com/ipld/go-car/v2 v2.11.0 // indirect
github.com/ipld/go-car/v2 v2.13.1 // indirect
github.com/ipld/go-codec-dagpb v1.6.0 // indirect
github.com/ipld/go-ipld-prime v0.21.0 // indirect
github.com/jackpal/go-nat-pmp v1.0.2 // indirect
Expand All @@ -224,15 +224,15 @@ require (
github.com/jmespath/go-jmespath v0.4.0 // indirect
github.com/jmhodges/levigo v1.0.0 // indirect
github.com/josharian/intern v1.0.0 // indirect
github.com/klauspost/compress v1.17.2 // indirect
github.com/klauspost/compress v1.17.4 // indirect
github.com/klauspost/cpuid/v2 v2.2.6 // indirect
github.com/klauspost/reedsolomon v1.11.8 // indirect
github.com/koron/go-ssdp v0.0.4 // indirect
github.com/lib/pq v1.10.7 // indirect
github.com/libp2p/go-buffer-pool v0.1.0 // indirect
github.com/libp2p/go-cidranger v1.1.0 // indirect
github.com/libp2p/go-flow-metrics v0.1.0 // indirect
github.com/libp2p/go-libp2p-asn-util v0.3.0 // indirect
github.com/libp2p/go-libp2p-asn-util v0.4.1 // indirect
github.com/libp2p/go-libp2p-kbucket v0.6.3 // indirect
github.com/libp2p/go-msgio v0.3.0 // indirect
github.com/libp2p/go-nat v0.2.0 // indirect
Expand All @@ -246,7 +246,7 @@ require (
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0 // indirect
github.com/miekg/dns v1.1.56 // indirect
github.com/miekg/dns v1.1.57 // indirect
github.com/mikioh/tcpinfo v0.0.0-20190314235526-30a79bb1804b // indirect
github.com/mikioh/tcpopt v0.0.0-20190314235656-172688c1accc // indirect
github.com/mimoo/StrobeGo v0.0.0-20210601165009-122bf33a46e0 // indirect
Expand All @@ -263,7 +263,7 @@ require (
github.com/multiformats/go-multicodec v0.9.0 // indirect
github.com/multiformats/go-multistream v0.5.0 // indirect
github.com/multiformats/go-varint v0.0.7 // indirect
github.com/onsi/ginkgo/v2 v2.13.0 // indirect
github.com/onsi/ginkgo/v2 v2.13.2 // indirect
github.com/opencontainers/runtime-spec v1.1.0 // indirect
github.com/opentracing/opentracing-go v1.2.0 // indirect
github.com/pbnjay/memory v0.0.0-20210728143218-7b4eea64cf58 // indirect
Expand All @@ -279,8 +279,8 @@ require (
github.com/prometheus/procfs v0.12.0 // indirect
github.com/pyroscope-io/godeltaprof v0.1.2 // indirect
github.com/quic-go/qpack v0.4.0 // indirect
github.com/quic-go/qtls-go1-20 v0.3.4 // indirect
github.com/quic-go/quic-go v0.39.4 // indirect
github.com/quic-go/qtls-go1-20 v0.4.1 // indirect
github.com/quic-go/quic-go v0.40.1 // indirect
github.com/quic-go/webtransport-go v0.6.0 // indirect
github.com/rakyll/statik v0.1.7 // indirect
github.com/raulk/go-watchdog v1.3.0 // indirect
Expand All @@ -307,30 +307,30 @@ require (
github.com/tklauser/numcpus v0.6.1 // indirect
github.com/ulikunitz/xz v0.5.10 // indirect
github.com/whyrusleeping/cbor v0.0.0-20171005072247-63513f603b11 // indirect
github.com/whyrusleeping/cbor-gen v0.0.0-20230818171029-f91ae536ca25 // indirect
github.com/whyrusleeping/cbor-gen v0.0.0-20240109153615-66e95c3e8a87 // indirect
github.com/whyrusleeping/go-keyspace v0.0.0-20160322163242-5b898ac5add1 // indirect
github.com/zondax/hid v0.9.2 // indirect
github.com/zondax/ledger-go v0.14.3 // indirect
go.etcd.io/bbolt v1.3.6 // indirect
go.opencensus.io v0.24.0 // indirect
go.opentelemetry.io/otel/exporters/stdout/stdouttrace v1.15.1 // indirect
go.opentelemetry.io/otel/exporters/stdout/stdouttrace v1.21.0 // indirect
go.uber.org/atomic v1.11.0 // indirect
go.uber.org/dig v1.17.1 // indirect
go.uber.org/mock v0.3.0 // indirect
go.uber.org/mock v0.4.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
golang.org/x/mod v0.14.0 // indirect
golang.org/x/net v0.19.0 // indirect
golang.org/x/oauth2 v0.13.0 // indirect
golang.org/x/net v0.20.0 // indirect
golang.org/x/oauth2 v0.16.0 // indirect
golang.org/x/sys v0.17.0 // indirect
golang.org/x/term v0.17.0 // indirect
golang.org/x/tools v0.16.0 // indirect
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
gonum.org/v1/gonum v0.13.0 // indirect
golang.org/x/tools v0.16.1 // indirect
golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028 // indirect
gonum.org/v1/gonum v0.14.0 // indirect
google.golang.org/api v0.149.0 // indirect
google.golang.org/appengine v1.6.8 // indirect
google.golang.org/genproto v0.0.0-20231211222908-989df2bf70f3 // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20231120223509-83a465c0220f // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20231212172506-995d672761c0 // indirect
google.golang.org/genproto v0.0.0-20240102182953-50ed04b92917 // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20240108191215-35c7eff3a6b1 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20240108191215-35c7eff3a6b1 // indirect
gopkg.in/ini.v1 v1.67.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
Expand Down
Loading

0 comments on commit b560d25

Please sign in to comment.